@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  /* ── Brand palette ───────────────────────────────── */
  --forest-deep: #0e0520;   /* deep hero bg — dark indigo-purple        */
  --forest: #4b0082;        /* brand purple (primary dark)               */
  --forest-mid: #6b1ba8;    /* mid purple                                */
  --sage: #228b22;          /* brand green                               */
  --sage-light: #2ca42c;    /* lighter green                             */
  --amber: #ff9933;         /* brand orange (primary CTA)                */
  --amber-light: #ffb366;   /* lighter orange (hover)                    */
  --amber-dark: #e07800;    /* darker orange                             */
  --terra: #e2725b;         /* coral accent                              */
  --cream: #fdf6ee;         /* warm off-white body bg                    */
  --cream-dark: #f5ece0;    /* slightly darker cream                     */
  --warm-bg: #fdfaf6;       /* page background                           */
  --card-bg: #ffffff;
  --text-dark: #1a0a2e;     /* near-black with purple undertone          */
  --text-body: #2c2c2c;     /* brand dark                                */
  --text-muted: #7a7088;    /* muted purple-grey                         */
  --border: rgba(75,0,130,.10);
  --border-mid: rgba(75,0,130,.18);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 4px rgba(75,0,130,.06), 0 2px 8px rgba(75,0,130,.04);
  --shadow-md: 0 4px 16px rgba(75,0,130,.10), 0 1px 4px rgba(75,0,130,.05);
  --shadow-lg: 0 8px 32px rgba(75,0,130,.14), 0 2px 8px rgba(75,0,130,.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--warm-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────── */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}
.heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.subheading {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}
.label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── LAYOUT ─────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background .25s, box-shadow .25s;
}
.nav.scrolled {
  background: linear-gradient(90deg, #6b1ba8 0%, #2d0858 40%, #0e0520 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 4px 24px rgba(0,0,0,.35);
}
/* Non-scrolled: subtle dark top gradient so links stay readable over any section */
.nav:not(.scrolled) {
  background: linear-gradient(180deg, rgba(14,5,32,.6) 0%, rgba(14,5,32,0) 100%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .dot { color: var(--amber); }
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0px 1px 3px rgba(0,0,0,0.4));
  image-rendering: -webkit-optimize-contrast;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest-deep) !important;
  background: var(--amber) !important;
  padding: 8px 18px !important;
  border-radius: var(--r-sm);
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--amber-light) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: .25s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--forest-deep);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-mobile .nav-cta {
  margin-top: 8px;
  text-align: center;
  display: block;
  padding: 12px !important;
  border-radius: var(--r-md);
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(107,27,168,.5) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255,153,51,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,148,58,.15);
  border: 1px solid rgba(232,148,58,.3);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 24px;
}
.hero-label .dot-pulse {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-label span {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber-light);
  letter-spacing: 0.06em;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(44px, 6vw, 70px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber-light);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--forest-deep);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  letter-spacing: 0.01em;
  transition: background .2s, transform .15s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.2);
  transition: border-color .2s, color .2s, background .2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.05); }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.proof-item { display: flex; flex-direction: column; gap: 1px; }
.proof-item .num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.proof-item .txt {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: transform .3s;
}
.app-card:hover { transform: translateY(-3px); }
.app-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.av-green { background: var(--sage); color: #fff; }
.av-amber { background: var(--amber); color: var(--forest-deep); }
.av-terra { background: var(--terra); color: #fff; }
.av-teal { background: #2A7A6A; color: #fff; }
.card-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; color: #fff; }
.card-detail { font-size: 12px; color: rgba(255,255,255,.5); }
.card-body { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(232,148,58,.2);
  border: 1px solid rgba(232,148,58,.3);
  color: var(--amber-light);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 10px;
}
.match-pct {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--amber-light);
}
.match-label { font-size: 11px; color: rgba(255,255,255,.5); }
.card-members {
  display: flex;
  align-items: center;
  gap: -6px;
  margin-top: 10px;
}
.member-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  margin-left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  font-family: 'Syne', sans-serif;
}
.member-dot:first-child { margin-left: 0; }

/* ─── SECTION LABELS ─────────────────────────────── */
.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
}
.section-eyebrow-light { color: rgba(232,148,58,.7); }

/* ─── BUTTONS (light bg) ─────────────────────────── */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  letter-spacing: 0.01em;
  transition: background .2s, transform .15s;
  cursor: pointer;
  border: none;
}
.btn-dark:hover { background: var(--forest-mid); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-body);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-mid);
  transition: border-color .2s, background .2s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--forest); background: rgba(21,42,26,.04); }

/* ─── VALUE PROPS ───────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: box-shadow .25s, transform .25s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.value-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.vi-green { background: rgba(59,107,66,.1); }
.vi-amber { background: rgba(232,148,58,.1); }
.vi-terra { background: rgba(200,92,46,.1); }
.value-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ─── HOW IT WORKS ──────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--amber) 100%);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: var(--forest);
  margin-bottom: 20px;
  border: 3px solid var(--cream);
}
.step:nth-child(2) .step-num { background: var(--sage); }
.step:nth-child(3) .step-num { background: var(--amber); color: var(--forest-deep); }
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── FEATURES ──────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow .25s, transform .25s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feat-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.feature-card .feat-tag {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(59,107,66,.1);
  color: var(--sage);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.feature-card ul {
  padding-left: 14px;
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
}
.feature-card ul li { margin-bottom: 5px; }

/* ─── DARK SECTION ──────────────────────────────── */
.dark-section {
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(107,27,168,.35) 0%, transparent 70%);
  pointer-events: none;
}
.dark-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.dark-section h2 em { font-style: italic; color: var(--amber-light); }
.dark-section p { color: rgba(255,255,255,.65); }

/* ─── TESTIMONIALS ──────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.testi-author .name {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--text-dark);
}
.testi-author .city { font-size: 12px; color: var(--text-muted); }

/* ─── JOURNAL CARDS ────────────────────────────── */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.journal-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.journal-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.journal-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.journal-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  background: var(--forest-mid);
}
.jc-forest { background: linear-gradient(135deg, #152A1A 0%, #3B6B42 100%); }
.jc-desert { background: linear-gradient(135deg, #5A3010 0%, #C85C2E 100%); }
.jc-ocean { background: linear-gradient(135deg, #1A3048 0%, #2A7A6A 100%); }
.jc-mountain { background: linear-gradient(135deg, #1A1A2E 0%, #3D4A6B 100%); }
.jc-city { background: linear-gradient(135deg, #2A1A10 0%, #6B4A2A 100%); }
.jc-plains { background: linear-gradient(135deg, #2A1A2A 0%, #6B2A5A 100%); }
.journal-img-icon { font-size: 48px; opacity: .4; position: absolute; top: 16px; right: 16px; }
.journal-category {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.15);
  padding: 3px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.journal-body { padding: 20px; }
.journal-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 8px;
}
.journal-body p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.journal-meta { display: flex; align-items: center; justify-content: space-between; }
.author-mini { display: flex; align-items: center; gap: 7px; }
.author-mini .av {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--forest); color: #fff;
  font-size: 10px; font-weight: 700;
  font-family: 'Syne', sans-serif;
  display: flex; align-items: center; justify-content: center;
}
.author-mini .an { font-size: 12px; color: var(--text-muted); }
.read-time { font-size: 11px; color: var(--text-muted); }

/* ─── STATS ROW ─────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 600;
  color: #fff; line-height: 1;
  letter-spacing: -0.02em;
}
.stat-item .stat-num span { color: var(--amber); }
.stat-item .stat-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 6px; }

/* ─── FAQ ───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background .15s;
  gap: 16px;
}
.faq-question:hover { background: rgba(21,42,26,.03); }
.faq-question h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(21,42,26,.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--sage);
  transition: transform .25s, background .2s;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--sage); color: #fff; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ─── ABOUT / TEAM ──────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 24px; font-weight: 700;
  color: #fff;
  margin: 0 auto 16px;
}
.team-card h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.team-card .role { font-size: 13px; color: var(--amber-dark); font-weight: 500; margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.team-links { display: flex; justify-content: center; gap: 8px; }
.team-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-family: 'Syne', sans-serif; font-weight: 600;
  color: var(--sage); border: 1px solid rgba(59,107,66,.25);
  padding: 4px 12px; border-radius: 100px;
  transition: background .2s, color .2s;
}
.team-link:hover { background: var(--sage); color: #fff; }

/* ─── VALUES GRID ───────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.value-item .vi-icon {
  font-size: 28px; flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(59,107,66,.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.value-item h3 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.value-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ─── CTA BLOCK ─────────────────────────────────── */
.cta-block {
  text-align: center;
  padding: 80px 0;
}
.cta-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-block h2 em { font-style: italic; color: var(--amber-light); }
.cta-block p { font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─── WAITLIST FORM ─────────────────────────────── */
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1;
  height: 50px;
  padding: 0 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-sm);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.waitlist-form input::placeholder { color: rgba(255,255,255,.4); }
.waitlist-form input:focus { border-color: var(--amber); background: rgba(255,255,255,.12); }
.waitlist-form button {
  height: 50px;
  padding: 0 24px;
  background: var(--amber);
  color: var(--forest-deep);
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  border: none; border-radius: var(--r-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.waitlist-form button:hover { background: var(--amber-light); }
.form-note { font-size: 12px; color: rgba(255,255,255,.4); text-align: center; margin-top: 10px; }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--forest-deep);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.footer-brand .logo .dot { color: var(--amber); }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 280px; }
.footer-brand .socials { display: flex; gap: 8px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px; font-family: 'Syne', sans-serif; font-weight: 700;
  transition: background .2s, color .2s;
}
.social-btn:hover { background: rgba(255,255,255,.08); color: #fff; }
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13.5px; color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.35); }
.footer-rti {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(232,148,58,.7);
  font-family: 'Syne', sans-serif; font-weight: 600;
}

/* ─── PAGE HERO (inner pages) ───────────────────── */
.page-hero {
  background: var(--forest-deep);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(107,27,168,.45) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(38px, 5vw, 58px);
  color: #fff; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; color: var(--amber-light); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.6); max-width: 560px; }

/* ─── SQUADS SPECIFIC ───────────────────────────── */
.squad-demo {
  background: var(--forest-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 28px;
}
.squad-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.squad-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: #fff; }
.squad-destination { font-size: 12px; color: rgba(255,255,255,.5); }
.squad-members-row { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.squad-member {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 6px 12px 6px 6px;
}
.squad-member .av { width: 28px; height: 28px; border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Syne', sans-serif; }
.squad-member .mn { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); font-family: 'Syne', sans-serif; }
.squad-msg {
  background: rgba(255,255,255,.05);
  border-radius: var(--r-md);
  padding: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  margin-bottom: 8px;
  border-left: 2px solid var(--amber);
}
.squad-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.squad-type-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.squad-type-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.squad-type-card .icon { font-size: 32px; margin-bottom: 12px; display: block; }
.squad-type-card h3 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.squad-type-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }

/* ─── RTI ────────────────────────────────────────── */
.rti-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rti-pillar {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
}
.rti-pillar .icon { font-size: 36px; margin-bottom: 16px; display: block; }
.rti-pillar h3 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.rti-pillar p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ─── MOVEMENT ──────────────────────────────────── */
.movement-manifesto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  line-height: 1.3;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.movement-manifesto em { color: var(--amber-light); font-style: normal; }
.principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.principle {
  display: flex; gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
}
.principle .icon { font-size: 24px; flex-shrink: 0; }
.principle h3 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.principle p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ─── BREADCRUMB ─────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  font-family: 'Syne', sans-serif;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb .sep { opacity: .4; }

/* ─── ANIMATIONS ─────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }
.fade-up:nth-child(5) { transition-delay: .32s; }
.fade-up:nth-child(6) { transition-delay: .40s; }

/* ─── UTILITIES ──────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-12 { gap: 12px; }

.tw-200 { max-width: 200px; }
.tw-500 { max-width: 500px; }
.tw-600 { max-width: 600px; }
.tw-700 { max-width: 700px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.highlight { color: var(--amber-dark); font-weight: 500; }
.cream-bg { background: var(--cream); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .rti-pillars { grid-template-columns: 1fr 1fr; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form button { width: 100%; }
  .principles-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ─── MOBILE CAROUSELS ────────────────────────────── */
/* On phones, all card grids become smooth horizontal swipe carousels */
@media (max-width: 768px) {

  /* Universal carousel base */
  .journal-grid,
  .features-grid,
  .value-grid,
  .testimonials-grid,
  .squad-types-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 14px;
    padding: 6px 20px 24px;
    margin: 0 -24px;
    /* Disable grid columns override */
    grid-template-columns: unset;
  }
  .journal-grid::-webkit-scrollbar,
  .features-grid::-webkit-scrollbar,
  .value-grid::-webkit-scrollbar,
  .testimonials-grid::-webkit-scrollbar,
  .squad-types-grid::-webkit-scrollbar { display: none; }

  /* Each card snaps and fills ~85% width so next card peeks */
  .journal-grid > *,
  .features-grid > *,
  .value-grid > *,
  .testimonials-grid > *,
  .squad-types-grid > * {
    flex: 0 0 82vw !important;
    max-width: 310px;
    scroll-snap-align: start;
    min-width: 0;
  }

  /* RTI pillars → 2-col grid stays (works nicely as 2x2) */
  .rti-pillars { grid-template-columns: 1fr 1fr; }

  /* Steps → vertical stack on mobile (3 steps is too wide for carousel) */
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Hero stats: 2x2 grid */
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .proof-divider { display: none; }

  /* Featured article on journal: stack vertically */
  .featured-article-grid { grid-template-columns: 1fr !important; }
  .featured-article-grid .featured-img { display: none; }

  /* General grid stacking */
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .values-grid { grid-template-columns: 1fr; }

  /* Section padding tighter on phones */
  .section { padding: 56px 0; }
  .section-sm { padding: 44px 0; }
  .hero { padding: 100px 0 64px; }

  /* Footer single column */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .rti-pillars { grid-template-columns: 1fr 1fr; }
  .squad-types-grid { grid-template-columns: 1fr; }

  /* Bigger touch targets */
  .btn-primary, .btn-dark, .btn-secondary, .btn-outline {
    min-height: 50px;
    font-size: 15px;
  }
  .nav-cta { padding: 10px 20px !important; }

  /* Hero text size adjustments */
  .hero h1 { font-size: clamp(36px, 9vw, 52px); }
  .hero-sub { font-size: 16px; }

  /* Ensure journal cards maintain correct height in carousel */
  .journal-grid > a.journal-card {
    display: flex !important;
    flex-direction: column;
  }
  .journal-grid > a.journal-card .journal-img {
    height: 160px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  /* Even tighter on very small phones */
  .journal-grid > *,
  .features-grid > *,
  .value-grid > *,
  .testimonials-grid > *,
  .squad-types-grid > * {
    flex: 0 0 88vw !important;
  }
  .container { padding: 0 18px; }
  .page-hero { padding: 100px 0 48px; }
  .page-hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .waitlist-hero { padding: 100px 0 56px; }
}

@keyframes spin { to { transform: rotate(360deg); } }

