/* Abundance Access � one-page portal */

:root {
  --copper-100: #f0c080;
  --copper-200: #e8a45a;
  --copper-300: #c47a3a;
  --copper-400: #b87333;
  --copper-500: #8b4e28;
  --copper-600: #6e3a1c;
  --ink: #0e0d0c;
  --ink-soft: #1a1816;
  --stone: #f3f2f0;
  --stone-2: #e8e6e3;
  --muted: #7a756e;
  --text: #2a2724;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(14, 13, 12, 0.12);
  --font-display: "Plus Jakarta Sans", "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--stone);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

.btn, .card-link, .nav-links a, .nav-cta {
  -webkit-tap-highlight-color: transparent;
}


a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(14, 13, 12, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.nav {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  z-index: 2;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-mark {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-200);
  margin-bottom: 1rem;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper-200);
  display: block;
  margin-bottom: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--copper-200);
}

.nav-cta {
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper-200), var(--copper-400));
  color: var(--ink) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  color: var(--ink) !important;
  filter: brightness(1.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--copper-200), var(--copper-400) 55%, var(--copper-500));
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(196, 122, 58, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(196, 122, 58, 0.45);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  border-color: var(--copper-200);
  color: var(--copper-100);
}

.btn-outline {
  width: 100%;
  border-color: var(--copper-300);
  color: var(--copper-500);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(196, 122, 58, 0.08);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
  padding: calc(var(--header-h) + 2rem) 1.25rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatGlow 12s ease-in-out infinite;
}

.hero-glow--1 {
  width: min(70vw, 560px);
  height: min(70vw, 560px);
  top: -10%;
  right: -8%;
  background: radial-gradient(circle, rgba(196, 122, 58, 0.45), transparent 70%);
}

.hero-glow--2 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  bottom: 5%;
  left: -5%;
  background: radial-gradient(circle, rgba(139, 78, 40, 0.4), transparent 70%);
  animation-delay: -4s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff4e8;
  background: linear-gradient(135deg, #ffffff 0%, var(--copper-100) 45%, var(--copper-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 28px rgba(196, 122, 58, 0.35));
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.85rem;
}

.hero-support {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  max-width: 34rem;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--copper-200);
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* Sections */
.section {
  padding: clamp(4.5rem, 10vw, 7rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head.reveal,
.section-head {
  text-align: left;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-300);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 36rem;
}

/* About */
.about {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(196, 122, 58, 0.1), transparent 55%),
    var(--stone);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.about-copy p {
  margin-bottom: 1.1rem;
  color: var(--text);
  font-size: 1.05rem;
}

.about-pillars {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.about-pillars li {
  display: grid;
  gap: 0.2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--copper-300);
}

.about-pillars strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}

.about-pillars span {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-panel {
  background: linear-gradient(160deg, var(--ink-soft), var(--ink));
  color: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(196, 122, 58, 0.35), transparent 70%);
}

.about-panel h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.about-panel ol {
  position: relative;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.about-panel li {
  counter-increment: step;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.about-panel li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--copper-200);
  flex-shrink: 0;
  padding-top: 0.15rem;
}

/* Products */
.products {
  background: var(--white);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--stone);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 122, 58, 0.35);
  box-shadow: 0 20px 48px rgba(14, 13, 12, 0.08);
}

.card-icon {
  width: 44px;
  height: 44px;
  color: var(--copper-300);
  margin-bottom: 0.25rem;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}

.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--copper-400);
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card-link::after {
  content: "?";
  transition: transform 0.25s var(--ease);
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* Membership */
.membership {
  background:
    linear-gradient(180deg, rgba(14, 13, 12, 0.02), transparent),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(196, 122, 58, 0.08), transparent),
    var(--stone);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  padding: 2rem 1.6rem;
  border: 1px solid var(--stone-2);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.price-card--featured {
  background: linear-gradient(165deg, var(--ink-soft), var(--ink));
  color: var(--white);
  border-color: transparent;
  position: relative;
  transform: scale(1.03);
  box-shadow: 0 28px 60px rgba(14, 13, 12, 0.28);
}

.price-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper-200), var(--copper-400));
  color: var(--ink);
}

.price-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-300);
}

.price-card--featured .price-tier {
  color: var(--copper-200);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.price-card--featured .price-amount {
  color: var(--white);
}

.price-amount span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
  vertical-align: super;
}

.price-amount span:last-child {
  vertical-align: baseline;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.15rem;
}

.price-card--featured .price-amount span:last-child {
  color: rgba(255, 255, 255, 0.55);
}

.price-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.price-card--featured .price-desc {
  color: rgba(255, 255, 255, 0.65);
}

.price-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0.5rem 0 1.25rem;
  flex: 1;
}

.price-card li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  color: var(--text);
}

.price-card--featured li {
  color: rgba(255, 255, 255, 0.82);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper-300);
}

.price-card--featured .btn-primary {
  width: 100%;
}

/* Testimonials */
.testimonials {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  background: var(--stone);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 3px solid var(--copper-300);
  transition: transform 0.35s var(--ease);
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial blockquote {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
}

.t-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.t-role {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, #241c16 50%, var(--copper-600) 160%);
  color: var(--white);
  text-align: center;
  padding: clamp(4rem, 8vw, 5.5rem) 0;
}

.cta-inner {
  max-width: 560px;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-brand p {
  max-width: 240px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--copper-200);
}

.footer-copy {
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  animation: heroReveal 0.9s var(--ease) forwards;
}

.hero .reveal.delay-1 { animation-delay: 0.12s; }
.hero .reveal.delay-2 { animation-delay: 0.22s; }
.hero .reveal.delay-3 { animation-delay: 0.32s; }
.hero .reveal.delay-4 { animation-delay: 0.42s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 24px) scale(1.08); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 960px) {
  .about-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .price-card--featured {
    transform: none;
    order: -1;
  }

  .price-card--featured:hover {
    transform: translateY(-6px);
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    gap: 1.25rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .nav {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .nav-brand-text {
    font-size: .78rem;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(14, 13, 12, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1;
    padding: 5rem 1.5rem 2rem;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.15rem;
    text-align: center;
  }

  .nav-cta {
    width: min(240px, 100%);
    justify-content: center;
    text-align: center;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: calc(var(--header-h) + 1.25rem) 1rem 4.5rem;
    min-height: 100svh;
  }

  .hero-mark {
    letter-spacing: 0.16em;
  }

  .hero-brand {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .section-head {
    text-align: left;
  }

  .hero-headline {
    font-size: 1.05rem;
  }

  .hero-support {
    font-size: .95rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .lead {
    font-size: 1rem;
  }

  .section-head {
    text-align: left;
    margin-bottom: 2rem;
  }

  .about-panel {
    padding: 1.5rem 1.25rem;
  }

  .price-card {
    padding: 1.5rem 1.25rem;
  }

  .price-amount {
    font-size: 2.4rem;
  }

  .cta-band h2 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .cta-band .btn {
    width: 100%;
    max-width: 320px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: .85rem 1.1rem;
  }
}

@media (max-width: 480px) {
  .nav-brand-text {
    max-width: 110px;
  }

  .hero-actions {
    max-width: none;
  }

  .btn {
    padding: .85rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-glow,
  .hero-scroll span {
    animation: none;
  }
}
