/* ============================================================
   DONERIGHT ECOSYSTEM HUB — Premium Design System
   Brand: Navy #1a1a2e · Gold #c9a84c · Cream #faf8f5
   Fonts: Playfair Display + DM Sans
   ============================================================ */

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --navy:        #1a1a2e;
  --navy-deep:   #0f0f1e;
  --navy-light:  #252545;
  --gold:        #c9a84c;
  --gold-light:  #dfc278;
  --gold-pale:   #f0e2b8;
  --cream:       #faf8f5;
  --cream-dark:  #f0ece4;
  --white:       #ffffff;
  --muted:       #6b6878;
  --muted-light: #9997a8;
  --border:      rgba(26,26,46,0.12);
  --border-gold: rgba(201,168,76,0.25);

  /* Typography Scale (fluid) */
  --text-xs:   clamp(0.70rem, 0.65rem + 0.25vw, 0.75rem);
  --text-sm:   clamp(0.825rem, 0.8rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  --text-md:   clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl:   clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
  --text-2xl:  clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --text-3xl:  clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  --text-4xl:  clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);
  --text-hero: clamp(3rem, 2rem + 5vw, 6rem);

  /* Spacing */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;
  --sp-32: 128px;

  /* Radii */
  --r-sm: 4px; --r-md: 8px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(26,26,46,0.08), 0 1px 2px rgba(26,26,46,0.06);
  --shadow-md:  0 4px 16px rgba(26,26,46,0.1), 0 2px 6px rgba(26,26,46,0.06);
  --shadow-lg:  0 16px 48px rgba(26,26,46,0.14), 0 4px 12px rgba(26,26,46,0.08);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.2);

  /* Easing */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w: 1280px;
  --max-w-prose: 68ch;
  --nav-h: 72px;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Utility Classes ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--sp-5); }
}

.serif { font-family: 'Playfair Display', Georgia, serif; }

.gold-text { color: var(--gold); }
.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 200ms var(--ease-spring);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(250,248,245,0.4);
}
.btn-ghost-light:hover {
  background: rgba(250,248,245,0.12);
  border-color: rgba(250,248,245,0.7);
}

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; }
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-spring), transform 0.65s var(--ease-spring);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 250ms var(--ease-out);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(26,26,46,0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav__logo-name span { color: var(--gold); }
.nav__logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  position: relative;
  transition: color 180ms;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-spring);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { margin-left: var(--sp-4); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 250ms var(--ease-spring);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) var(--sp-5);
  flex-direction: column;
  gap: var(--sp-5);
  box-shadow: var(--shadow-md);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--navy);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--sp-32) 0 var(--sp-24);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-6);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  max-width: 18ch;
  margin-bottom: var(--sp-8);
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(250,248,245,0.72);
  max-width: 60ch;
  line-height: 1.7;
  margin-bottom: var(--sp-10);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-16);
}

/* Timeline visual */
.hero__timeline {
  position: relative;
  margin: var(--sp-16) 0 var(--sp-8);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--sp-4);
}
.hero__timeline::-webkit-scrollbar { display: none; }

.timeline-track {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  padding: 0 var(--sp-4);
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  position: relative;
}

.timeline-node__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 2px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  transition: all 300ms var(--ease-spring);
}
.timeline-node:hover .timeline-node__dot {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
  box-shadow: 0 0 24px rgba(201,168,76,0.4);
}

.timeline-node__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.6);
  text-align: center;
  white-space: nowrap;
  transition: color 200ms;
}
.timeline-node:hover .timeline-node__label { color: var(--gold); }

.timeline-connector {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,0.4), rgba(201,168,76,0.15));
  min-width: 48px;
  max-width: 80px;
  position: relative;
  top: -16px;
}

/* Trust badges */
.hero__badges {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  border-top: 1px solid rgba(250,248,245,0.1);
  padding-top: var(--sp-8);
  margin-top: var(--sp-8);
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.55);
}
.hero__badge svg { color: var(--gold); flex-shrink: 0; }

/* ── SECTION HEADERS ────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: var(--sp-5);
}

.section-sub {
  font-size: var(--text-md);
  color: var(--muted);
  line-height: 1.7;
  max-width: 58ch;
}

/* ── THE SUITE ──────────────────────────────────────────────── */
.suite {
  padding: var(--sp-32) 0;
  background: var(--cream);
}

.suite__header {
  margin-bottom: var(--sp-16);
  max-width: 55ch;
}

/* Staggered card layout */
.suite__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-5);
}

.suite__grid .product-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.suite__grid .product-card:nth-child(2) { grid-column: 2; grid-row: 1; margin-top: var(--sp-8); }
.suite__grid .product-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.suite__grid .product-card:nth-child(4) { grid-column: 1 / 3; grid-row: 2; margin-top: calc(-1 * var(--sp-8)); }
.suite__grid .product-card:nth-child(5) { grid-column: 3; grid-row: 2; margin-top: calc(-1 * var(--sp-4)); }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: all 280ms var(--ease-spring);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 280ms;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--gold);
}
.product-card:hover::before { opacity: 1; }

.product-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  background: rgba(26,26,46,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 280ms var(--ease-spring);
  flex-shrink: 0;
}
.product-card:hover .product-card__icon {
  background: var(--gold);
  transform: scale(1.05);
}

.product-card__for {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.product-card__name {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product-card__tagline {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.product-card__price {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.product-card__hover-panel {
  position: absolute;
  inset: 0;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--sp-8);
  gap: var(--sp-4);
  opacity: 0;
  transform: translateY(8px);
  transition: all 280ms var(--ease-spring);
  pointer-events: none;
}
.product-card:hover .product-card__hover-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-card__hover-panel .product-card__name { color: var(--cream); }
.product-card__hover-panel .product-card__tagline { color: rgba(250,248,245,0.72); }

.product-card__visit-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 180ms var(--ease-spring);
}
.product-card__visit-btn:hover {
  background: var(--gold-light);
  transform: translateX(2px);
}

.product-card__special-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-full);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 1024px) {
  .suite__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .suite__grid .product-card:nth-child(1) { grid-column: 1; grid-row: 1; margin-top: 0; }
  .suite__grid .product-card:nth-child(2) { grid-column: 2; grid-row: 1; margin-top: 0; }
  .suite__grid .product-card:nth-child(3) { grid-column: 1; grid-row: 2; margin-top: 0; }
  .suite__grid .product-card:nth-child(4) { grid-column: 2; grid-row: 2; margin-top: 0; }
  .suite__grid .product-card:nth-child(5) { grid-column: 1 / 3; grid-row: 3; margin-top: 0; }
}

@media (max-width: 640px) {
  .suite__grid {
    grid-template-columns: 1fr;
  }
  .suite__grid .product-card { grid-column: 1 !important; grid-row: auto !important; margin-top: 0 !important; }
}

/* ── JOURNEY NAVIGATOR ──────────────────────────────────────── */
.journey {
  padding: var(--sp-32) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.journey__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.journey__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.journey__header .section-title { color: var(--cream); }
.journey__header .section-sub { color: rgba(250,248,245,0.6); margin: 0 auto; }

.journey__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

@media (max-width: 900px) {
  .journey__options { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .journey__options { grid-template-columns: 1fr; }
}

.journey-card {
  background: rgba(250,248,245,0.05);
  border: 1.5px solid rgba(250,248,245,0.1);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-6);
  cursor: pointer;
  transition: all 240ms var(--ease-spring);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  text-align: left;
}

.journey-card:hover {
  background: rgba(250,248,245,0.09);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

.journey-card.active {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
}

.journey-card__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.journey-card__text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: var(--sp-1);
}
.journey-card__text span {
  font-size: var(--text-xs);
  color: rgba(250,248,245,0.5);
}

/* Recommendation Panel */
.journey__recommendation {
  background: rgba(250,248,245,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-10);
  display: none;
  opacity: 0;
  transition: opacity 350ms var(--ease-out);
}
.journey__recommendation.visible {
  display: block;
  opacity: 1;
  animation: fadeInUp 0.4s var(--ease-spring) forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rec__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.rec__title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.02em;
}

.rec__products {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.rec__product {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(250,248,245,0.07);
  border: 1px solid rgba(250,248,245,0.12);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-6);
  transition: all 200ms var(--ease-spring);
}
.rec__product:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}
.rec__product__icon { font-size: 1.4rem; }
.rec__product__info strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--cream);
}
.rec__product__info span {
  font-size: var(--text-xs);
  color: rgba(250,248,245,0.5);
}

.rec__description {
  font-size: var(--text-sm);
  color: rgba(250,248,245,0.65);
  line-height: 1.7;
  max-width: 65ch;
  margin-bottom: var(--sp-6);
}

.rec__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* ── ECOSYSTEM STORY ────────────────────────────────────────── */
.ecosystem {
  padding: var(--sp-32) 0;
  background: var(--cream-dark);
  overflow: hidden;
}

.ecosystem__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.ecosystem__header .section-sub { margin: 0 auto; }

.lifecycle-scroll {
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  padding: var(--sp-8) 0 var(--sp-12);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.lifecycle-scroll::-webkit-scrollbar { display: none; }

.lifecycle-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
  padding: var(--sp-4) var(--sp-10);
  position: relative;
}

.lifecycle-track::before {
  content: '';
  position: absolute;
  top: 44px;
  left: var(--sp-10);
  right: var(--sp-10);
  height: 2px;
  background: linear-gradient(90deg,
    var(--gold) 0%,
    rgba(201,168,76,0.3) 40%,
    rgba(201,168,76,0.5) 70%,
    var(--gold) 100%);
}

.lifecycle-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  position: relative;
  z-index: 2;
  min-width: 120px;
}

.lifecycle-node__circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: all 300ms var(--ease-spring);
  position: relative;
}

.lifecycle-node:hover .lifecycle-node__circle {
  background: var(--gold);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.lifecycle-node__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-align: center;
  max-width: 90px;
}

.lifecycle-node__product {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-align: center;
  max-width: 90px;
}

.lifecycle-arrow {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  color: rgba(201,168,76,0.4);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lifecycle-loop {
  display: flex;
  align-items: center;
  padding: 22px var(--sp-4) 0;
}

.lifecycle-loop__label {
  background: rgba(201,168,76,0.1);
  border: 1px dashed rgba(201,168,76,0.4);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.ecosystem__lfl {
  margin-top: var(--sp-12);
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.ecosystem__lfl::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.ecosystem__lfl-icon {
  font-size: 3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ecosystem__lfl-content { position: relative; z-index: 1; }
.ecosystem__lfl-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--sp-2);
}
.ecosystem__lfl-desc {
  font-size: var(--text-sm);
  color: rgba(250,248,245,0.65);
  max-width: 55ch;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .ecosystem__lfl { flex-direction: column; }
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about {
  padding: var(--sp-32) 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: var(--sp-12); }
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-10);
}

.about__stat {
  background: var(--cream-dark);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--border);
}
.about__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.about__stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__founders {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  transition: all 240ms var(--ease-spring);
}
.founder-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.founder-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.founder-card__name {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.founder-card__role {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__states {
  margin-top: var(--sp-8);
}
.about__states-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-4);
}
.about__states-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.state-tag {
  padding: 4px 10px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  transition: all 180ms;
}
.state-tag:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials {
  padding: var(--sp-32) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 60% 40% at 0% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.testimonials__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.testimonials__header .section-title { color: var(--cream); }

.testimonials__trust {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.testimonials__trust-line {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-md);
  font-weight: 500;
  color: rgba(250,248,245,0.7);
}
.testimonials__trust-line::before,
.testimonials__trust-line::after {
  content: '';
  flex: 1;
  min-width: 40px;
  height: 1px;
  background: rgba(250,248,245,0.15);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  background: rgba(250,248,245,0.05);
  border: 1px solid rgba(250,248,245,0.1);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: relative;
  transition: all 250ms var(--ease-spring);
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(250,248,245,0.07);
}

.testimonial-card__quote {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-6);
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(201,168,76,0.15);
  line-height: 1;
}

.testimonial-card__text {
  font-size: var(--text-md);
  color: rgba(250,248,245,0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--sp-6);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  margin-bottom: var(--sp-4);
}

.testimonial-card__author {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.45);
}

.testimonials__placeholder-note {
  text-align: center;
  margin-top: var(--sp-8);
  font-size: var(--text-xs);
  color: rgba(250,248,245,0.25);
  font-style: italic;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq {
  padding: var(--sp-32) 0;
  background: var(--cream);
}

.faq__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-20);
  align-items: start;
}

@media (max-width: 900px) {
  .faq__layout { grid-template-columns: 1fr; gap: var(--sp-10); }
}

.faq__sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-8));
}

.faq__list { display: flex; flex-direction: column; gap: var(--sp-2); }

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 200ms;
}
.faq__item.open { border-color: var(--gold); }
.faq__item.open .faq__question { background: rgba(201,168,76,0.05); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background 200ms;
}
.faq__question:hover { background: rgba(201,168,76,0.04); }

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--muted);
  transition: all 250ms var(--ease-spring);
}
.faq__item.open .faq__icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease-spring);
  background: var(--white);
}
.faq__answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.75;
}
.faq__answer-inner a { color: var(--gold); text-decoration: underline; }
.faq__item.open .faq__answer { max-height: 300px; }

/* ── CTA ────────────────────────────────────────────────────── */
.cta-section {
  padding: var(--sp-32) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
}

.cta-section__inner { position: relative; z-index: 1; }

.cta-section__title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-5);
}
.cta-section__title em { font-style: italic; color: var(--gold); }

.cta-section__sub {
  font-size: var(--text-md);
  color: rgba(250,248,245,0.65);
  max-width: 55ch;
  margin: 0 auto var(--sp-10);
  line-height: 1.7;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.cta-section__contact {
  font-size: var(--text-sm);
  color: rgba(250,248,245,0.45);
}
.cta-section__contact a { color: var(--gold); transition: opacity 180ms; }
.cta-section__contact a:hover { opacity: 0.8; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  padding: var(--sp-16) 0 var(--sp-8);
  border-top: 1px solid rgba(250,248,245,0.06);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(250,248,245,0.08);
  margin-bottom: var(--sp-8);
}

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-8); }
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}
.footer__brand-name span { color: var(--gold); }

.footer__brand-tagline {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.3);
  margin-bottom: var(--sp-5);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: rgba(250,248,245,0.45);
  line-height: 1.7;
  max-width: 36ch;
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.4);
  margin-bottom: var(--sp-5);
}

.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__links a {
  font-size: var(--text-sm);
  color: rgba(250,248,245,0.55);
  transition: color 180ms;
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.footer__legal {
  font-size: var(--text-xs);
  color: rgba(250,248,245,0.25);
  line-height: 1.65;
  max-width: 70ch;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.footer__social a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(250,248,245,0.45);
  transition: color 180ms;
}
.footer__social a:hover { color: var(--gold); }

/* ── SVG Icons inline ───────────────────────────────────────── */
.icon { display: inline-block; vertical-align: middle; }

/* ── Divider ────────────────────────────────────────────────── */
.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
}

/* ── Delay helpers for staggered reveals ───────────────────── */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.18s !important; }
.delay-3 { transition-delay: 0.26s !important; }
.delay-4 { transition-delay: 0.34s !important; }
.delay-5 { transition-delay: 0.42s !important; }
.delay-6 { transition-delay: 0.50s !important; }
