@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Light palette */
  --white:        #f8faf8;
  --cream:        #f4f7f2;
  --sage:         #e8ede3;
  --sage-dark:    #d4dece;

  /* Dark sections */
  --forest:       #122018;
  --forest-mid:   #1a3022;
  --forest-card:  #243d2e;

  /* Text */
  --text:         #131f17;
  --text-mid:     #3a5044;
  --text-muted:   #6b8a74;

  /* Accent — green */
  --green:        #2a6640;
  --green-light:  #3ecf6c;
  --green-dim:    rgba(42, 102, 64, 0.08);
  --green-glow:   rgba(62, 207, 108, 0.25);

  /* Borders */
  --border-light: #dce8e0;
  --border-dark:  rgba(62, 207, 108, 0.16);

  --radius:       12px;
  --radius-lg:    20px;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Inter', system-ui, -apple-system, sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- Typography ---- */

h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
}

/* On dark sections, override heading color */
.dark-section h1,
.dark-section h2,
.dark-section h3 {
  color: #f0f7f2;
}

h1 { font-size: clamp(48px, 7vw, 104px); }
h2 { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: clamp(20px, 2.4vw, 28px); }

p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
}

.dark-section p { color: #8aab96; }

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ---- Labels ---- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--green);
  flex-shrink: 0;
}

.dark-section .eyebrow {
  color: var(--green-light);
}

.dark-section .eyebrow::before {
  background: var(--green-light);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ---- Buttons ---- */

/* On light backgrounds: dark green solid */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
  white-space: nowrap;
}

.btn-primary:hover {
  background: #1e5030;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(42, 102, 64, 0.25);
}

/* On dark backgrounds: bright green */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  color: #0c1a10;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
  white-space: nowrap;
}

.btn-hero:hover {
  background: #52e07e;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px var(--green-glow);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(240, 247, 242, 0.8);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1px solid rgba(240, 247, 242, 0.22);
  cursor: pointer;
  transition: border-color 0.22s, background 0.22s;
}

.btn-ghost-dark:hover {
  border-color: rgba(240, 247, 242, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: #f0f7f2;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--green);
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
}

.btn-outline:hover {
  background: var(--green);
  color: #ffffff;
}

/* ---- Scroll fade-in ---- */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ==============================================
   NAV
   ============================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled: white nav, dark text */
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 13px 0;
  box-shadow: 0 1px 0 var(--border-light);
}

.nav.scrolled .nav-logo-text { color: var(--text); }
.nav.scrolled .nav-links a   { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--text); }
.nav.scrolled .nav-links a::after { background: var(--green); }
.nav.scrolled .nav-waitlist {
  background: var(--green);
  color: #fff;
}
.nav.scrolled .nav-waitlist:hover { background: #1e5030; }
.nav.scrolled .nav-hamburger span { background: var(--text); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon { width: 34px; height: 34px; }

.nav-logo-text {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: #f0f7f2;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(240, 247, 242, 0.7);
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-light);
  transition: width 0.22s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: #f0f7f2; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-waitlist {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-light);
  color: #0c1a10;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}

.nav-waitlist:hover {
  background: #52e07e;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--green-glow);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 201;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f0f7f2;
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.28s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.open { transform: translateX(0); }

.nav-mobile a {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--green); }

.nav-mobile .btn-primary {
  font-size: 16px;
  padding: 16px 40px;
  margin-top: 12px;
}

/* ==============================================
   HERO — dark forest green
   ============================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg,
    #071008 0%,
    #133524 22%,
    #2d7a48 48%,
    #153624 74%,
    #08110a 100%
  );
  position: relative;
  overflow: hidden;
}

.dark-section {
  background: linear-gradient(135deg, #060c08 0%, #1e5030 100%);
}

/* Subtle dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* Warm gold bloom — upper right */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(62, 207, 108, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 100px;
  width: 100%;
}

.hero-eyebrow {
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) forwards 0.15s;
}

.hero h1 {
  color: #f0f7f2;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) forwards 0.3s;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-light);
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: #8aab96;
  max-width: 580px;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) forwards 0.45s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) forwards 0.6s;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b8a74;
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) forwards 0.75s;
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) forwards 0.4s;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(62, 207, 108, 0.15) 0%, transparent 68%);
  z-index: 0;
}

.phone-back {
  position: absolute;
  width: 248px;
  height: 520px;
  background: var(--forest-card);
  border-radius: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transform: rotate(6deg) translateX(90px) translateY(20px);
  z-index: 1;
  opacity: 0.5;
}

.phone-back::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 19px;
  background: var(--forest-card);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.phone-main {
  width: 292px;
  height: 612px;
  background: #0a160d;
  border-radius: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 48px 96px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
  position: relative;
  transform: rotate(-4deg);
  z-index: 2;
}

.phone-main::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 23px;
  background: #0a160d;
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  z-index: 30;
}

/* iMessage UI */
.phone-ui {
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  padding-top: 52px;
}

.phone-ui-bar {
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.phone-ui-avatar {
  width: 28px;
  height: 28px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(62, 207, 108, 0.2);
}

.phone-ui-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: #f0f0f0;
}

.phone-ui-sub {
  font-family: var(--sans);
  font-size: 9px;
  color: #666;
}

.phone-messages {
  flex: 1;
  padding: 14px 11px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow: hidden;
}

.msg {
  max-width: 74%;
  padding: 7px 11px;
  border-radius: 15px;
  font-family: var(--sans);
  font-size: 10.5px;
  line-height: 1.45;
}

.msg-recv {
  background: #2a2a2a;
  color: #e0e0e0;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-sent {
  background: #1a8fe3;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ts-card {
  background: #1a2e1f;
  border: 1px solid rgba(62, 207, 108, 0.28);
  border-radius: 13px;
  overflow: hidden;
  margin: 2px 0;
}

.ts-card-header {
  background: #142219;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(62, 207, 108, 0.15);
}

.ts-card-logo { width: 15px; height: 15px; }

.ts-card-brand {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 0.05em;
}

.ts-card-body { padding: 9px 11px; }

.ts-card-course {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 2px;
}

.ts-card-info {
  font-family: var(--sans);
  font-size: 9px;
  color: #888;
  margin-bottom: 9px;
}

.ts-slots {
  display: flex;
  gap: 4px;
  margin-bottom: 9px;
}

.ts-slot {
  background: rgba(62, 207, 108, 0.1);
  border: 1px solid rgba(62, 207, 108, 0.2);
  border-radius: 5px;
  padding: 4px 7px;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  color: var(--green-light);
}

.ts-slot.active {
  background: var(--green-light);
  border-color: var(--green-light);
  color: #060c08;
}

.ts-book-btn {
  width: 100%;
  background: var(--green-light);
  color: #060c08;
  border: none;
  border-radius: 7px;
  padding: 7px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

/* ==============================================
   HOME — FEATURES  (light sage background)
   ============================================== */

.features-strip {
  padding: 120px 0;
  background: var(--sage);
  border-top: 1px solid var(--sage-dark);
  border-bottom: 1px solid var(--sage-dark);
}

.section-header {
  margin-bottom: 52px;
}

.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 520px; }

.section-header-centered {
  text-align: center;
  margin-bottom: 52px;
}

.section-header-centered h2 { margin-bottom: 14px; }
.section-header-centered p  { max-width: 540px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(42, 102, 64, 0.1);
  border-color: var(--sage-dark);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dim);
  border: 1px solid var(--border-light);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 19px;
  color: var(--text);
  margin-bottom: 11px;
}

.feature-card p { font-size: 15px; }

/* ==============================================
   HOME — COURSES  (white background)
   ============================================== */

.courses-section {
  padding: 120px 0;
  background: var(--white);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(42, 102, 64, 0.12);
}

.course-img-wrap {
  overflow: hidden;
  height: 158px;
}

.course-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.course-card:hover .course-card-img { transform: scale(1.06); }

.course-card-body { padding: 20px 22px 24px; }

.course-card-body h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.course-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.course-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s var(--ease);
}

.course-card:hover .course-link { gap: 9px; }

/* ==============================================
   TESTIMONIAL STRIP  (cream)
   ============================================== */

.testimonials {
  padding: 120px 0;
  background: var(--cream);
  border-top: 1px solid var(--sage-dark);
  border-bottom: 1px solid var(--sage-dark);
}

.testimonials-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testimonial-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--sage-dark);
}

.testimonial-item:first-child { border-top: 1px solid var(--sage-dark); }

.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 26px);
  color: var(--text);
  font-style: italic;
  line-height: 1.4;
  flex: 1;
}

.testimonial-attr {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  min-width: 200px;
  padding-top: 6px;
}

/* ==============================================
   INNER PAGE HERO  (dark)
   ============================================== */

.page-hero {
  padding: 160px 0 90px;
  background: linear-gradient(150deg,
    #060c08 0%,
    #112518 30%,
    #1e5030 60%,
    #0e1c12 100%
  );
  border-bottom: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: #f0f7f2; margin-bottom: 18px; }
.page-hero p  { max-width: 580px; margin: 0 auto; font-size: 18px; color: #8aab96; }

/* ==============================================
   ABOUT
   ============================================== */

.about-mission {
  padding: 120px 0;
  background: var(--white);
}

.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission h2 { margin-bottom: 20px; }
.about-mission p  { margin-bottom: 18px; }
.about-mission p:last-child { margin-bottom: 0; }

.about-mission-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

/* Founders */
.founders-section {
  padding: 120px 0;
  background: var(--sage);
  border-top: 1px solid var(--sage-dark);
}

.founders-intro { max-width: 600px; margin-bottom: 52px; }
.founders-intro h2 { margin-bottom: 14px; }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.founder-card:hover {
  box-shadow: 0 16px 48px rgba(42, 102, 64, 0.1);
}

.founder-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.founder-body { padding: 28px 30px 34px; }

.founder-name {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--text);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.founder-school {
  display: inline-block;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--green-dim);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.founder-body p { font-size: 15px; }

/* Social section */
.social-section {
  padding: 120px 0;
  background: var(--cream);
  border-top: 1px solid var(--sage-dark);
  text-align: center;
}

.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 52px;
}

.social-btn {
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, border-color 0.22s, transform 0.22s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: var(--green);
}

.social-btn:hover {
  background: var(--green-dim);
  border-color: var(--sage-dark);
  transform: translateY(-3px);
}

.social-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.social-photo-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

/* ==============================================
   HOW IT WORKS
   ============================================== */

/* --- Steps: alternating showcase layout --- */
.hiw-steps {
  padding: 140px 0;
  background: var(--white);
}

.hiw-steps-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 96px;
}

.hiw-steps-header h2 { margin-bottom: 16px; }

.hiw-timeline {
  max-width: 1080px;
  margin: 0 auto;
}

.hiw-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.hiw-step:first-child { padding-top: 0; }
.hiw-step:last-child  { border-bottom: none; padding-bottom: 0; }

/* Even steps: flip content/visual order */
.hiw-step:nth-child(even) .hiw-step-content { order: 2; }
.hiw-step:nth-child(even) .hiw-step-visual  { order: 1; }

.hiw-step-num {
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 700;
  color: rgba(42, 102, 64, 0.07);
  line-height: 1;
  display: block;
  margin-bottom: -6px;
  letter-spacing: -3px;
  user-select: none;
}

.hiw-step-content h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--text);
  margin-bottom: 16px;
}

.hiw-step-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.hiw-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hiw-bullets li {
  font-size: 15px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 11px;
}

.hiw-bullets li::before {
  content: '';
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1.5px solid rgba(42, 102, 64, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%232a6640' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Visual panel */
.hiw-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--cream) 0%, var(--sage) 100%);
  border: 1px solid var(--sage-dark);
  border-radius: 24px;
  padding: 16px 16px;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.hiw-step-visual::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(42, 102, 64, 0.05);
  right: -70px;
  bottom: -70px;
  pointer-events: none;
}

/* Mockup card */
.hiw-mockup {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px 22px;
  width: 100%;
  max-width: 272px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.04);
  position: relative;
  z-index: 1;
}

.hiw-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.hiw-mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hiw-dot-green { background: var(--green-light); }

.hiw-mockup-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hiw-mockup-course {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 16px;
}

.hiw-mockup-course-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.hiw-mockup-course-detail {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.hiw-mockup-btn {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 9px 0;
  border-radius: 8px;
}

/* RSVP list */
.hiw-rsvp-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.hiw-rsvp-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 8px;
}

.hiw-rsvp-yes     { background: rgba(62, 207, 108, 0.08); }
.hiw-rsvp-pending { background: rgba(0, 0, 0, 0.03); }

.hiw-rsvp-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.hiw-rsvp-status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hiw-rsvp-yes     .hiw-rsvp-status { color: var(--green); }
.hiw-rsvp-pending .hiw-rsvp-status { color: var(--text-muted); }

.hiw-mockup-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

/* Confirmation mockup */
.hiw-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.hiw-confirm-check {
  width: 56px;
  height: 56px;
  background: rgba(62, 207, 108, 0.1);
  border: 2px solid rgba(62, 207, 108, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.hiw-confirm-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.hiw-confirm-time {
  font-size: 13px;
  color: var(--text-muted);
}

.hiw-confirm-ref {
  font-size: 11px;
  color: var(--green);
  margin-top: 6px;
  padding: 5px 12px;
  background: var(--green-dim);
  border-radius: 20px;
  font-weight: 600;
}

/* --- Alerts section (dark) --- */
.hiw-alerts {
  padding: 130px 0;
  background: linear-gradient(145deg, #060c08 0%, #122018 45%, #1a3022 100%);
  position: relative;
  overflow: hidden;
}

.hiw-alerts::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 207, 108, 0.06) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.hiw-alerts .eyebrow {
  color: var(--green-light);
}

.hiw-alerts .eyebrow::before {
  background: var(--green-light);
}

.hiw-alerts-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 72px;
}

.hiw-alerts-header h2 {
  color: #f0f7f2;
  margin-bottom: 16px;
}

.hiw-alerts-header p {
  color: #8aab96;
  font-size: 17px;
}

.hiw-alerts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.hiw-alert-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(62, 207, 108, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background 0.25s, border-color 0.25s;
}

.hiw-alert-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(62, 207, 108, 0.24);
}

.hiw-alert-icon {
  width: 48px;
  height: 48px;
  background: rgba(62, 207, 108, 0.1);
  border: 1px solid rgba(62, 207, 108, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hiw-alert-item h3 {
  font-size: 18px;
  color: #e8f4ee;
  margin-bottom: 10px;
}

.hiw-alert-item p {
  font-size: 14px;
  color: #7a9e88;
  line-height: 1.75;
}

/* Phone frame for step visuals */
.hiw-phone {
  width: 260px;
  height: 540px;
  background: #0a160d;
  border-radius: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.hiw-phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background: #0a160d;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  z-index: 30;
}

.hiw-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Features section --- */
.hiw-features {
  padding: 130px 0;
  background: var(--cream);
  border-top: 1px solid var(--sage-dark);
}

.hiw-features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}

.hiw-features-header h2 { margin-bottom: 16px; }
.hiw-features-header p { font-size: 17px; }
.hiw-features .eyebrow { color: var(--green); }
.hiw-features .eyebrow::before { background: var(--green); }

.hiw-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hiw-feature {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.hiw-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(42, 102, 64, 0.09);
}

.hiw-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dim);
  border: 1px solid rgba(42, 102, 64, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hiw-feature h3 {
  font-size: 19px;
  color: var(--text);
  margin-bottom: 10px;
}

.hiw-feature p { font-size: 15px; line-height: 1.75; }

/* CTA band */
.how-cta-band {
  padding: 100px 0;
  background: var(--forest);
  text-align: center;
}

.how-cta-band .eyebrow { color: var(--green-light); justify-content: center; margin-bottom: 22px; }
.how-cta-band .eyebrow::before { background: var(--green-light); }
.how-cta-band h2 { color: #f0f7f2; margin-bottom: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }
.how-cta-band p  { color: #8aab96; max-width: 480px; margin: 0 auto 40px; font-size: 18px; }

/* ==============================================
   FAQ
   ============================================== */

.faq-section {
  padding: 80px 0 120px;
  background: var(--white);
}

.faq-list { max-width: 740px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--sage-dark); }

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
}

.faq-q {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--sage);
  border: 1px solid var(--sage-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.25s;
  color: var(--green);
}

.faq-item.open .faq-icon {
  background: var(--green-dim);
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
}

.faq-body-inner { padding: 0 0 28px; }
.faq-body-inner p { font-size: 16px; line-height: 1.8; }
.faq-body-inner p + p { margin-top: 14px; }
.faq-body-inner ul { font-size: 16px; line-height: 1.8; margin: 10px 0 4px; padding-left: 22px; }
.faq-body-inner li { margin-bottom: 6px; }

.faq-item.open .faq-body { max-height: 500px; }
/* Legal items (Privacy Policy, Terms) hold long content */
#privacy-policy.open .faq-body,
#terms.open .faq-body { max-height: 6000px; }

/* ==============================================
   CONTACT
   ============================================== */

.contact-section {
  padding: 80px 0 120px;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { font-size: 17px; margin-bottom: 46px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-dim);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.contact-value a {
  color: var(--text);
  transition: color 0.2s;
}

.contact-value a:hover { color: var(--green); }

.contact-form-box {
  background: var(--sage);
  border: 1px solid var(--sage-dark);
  border-radius: var(--radius-lg);
  padding: 42px 38px;
}

.contact-form-box h3 { font-size: 26px; margin-bottom: 10px; }
.contact-form-box > p { margin-bottom: 30px; font-size: 15px; }

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--sage-dark);
  border-radius: 10px;
  padding: 13px 15px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.22s;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); opacity: 0.5; }

.form-input:focus,
.form-textarea:focus { border-color: var(--green); }

.form-textarea { resize: vertical; min-height: 128px; }
.form-submit    { width: 100%; margin-top: 6px; }

/* ==============================================
   FOOTER  (dark)
   ============================================== */

.footer {
  background: linear-gradient(180deg, #1a3c24 0%, #080e0a 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 72px 0 38px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand-logo-icon { width: 30px; height: 30px; }

.footer-brand-logo-text {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: #f0f7f2;
}

.footer-brand p {
  font-size: 14px;
  max-width: 270px;
  line-height: 1.7;
  color: #6b8a74;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #6b8a74;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: #8aab96;
  transition: color 0.2s;
}

.footer-col a:hover { color: #f0f7f2; }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--forest-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p { font-size: 13px; color: #6b8a74; }

.footer-social { display: flex; gap: 14px; align-items: center; }

.footer-social a {
  color: #6b8a74;
  transition: color 0.2s, transform 0.2s var(--ease);
  display: flex;
  align-items: center;
}

.footer-social a:hover { color: #f0f7f2; transform: translateY(-2px); }

/* ==============================================
   KEYFRAMES
   ============================================== */

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

@keyframes float {
  0%, 100% { transform: rotate(-4deg) translateY(0px); }
  50%       { transform: rotate(-4deg) translateY(-14px); }
}

@keyframes floatBack {
  0%, 100% { transform: rotate(6deg) translateX(78px) translateY(18px); }
  50%       { transform: rotate(6deg) translateX(78px) translateY(6px); }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

@keyframes pulse-ring {
  0%   { transform: scale(0.92); opacity: 0.6; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* Apply floating to phones */
.phone-main {
  animation: float 5s ease-in-out infinite;
}

.phone-back {
  animation: floatBack 5s ease-in-out infinite 0.6s;
}

/* Stat strip */
.stats-strip {
  background: linear-gradient(90deg, #112518 0%, #1e5030 50%, #112518 100%);
  border-top:    1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid rgba(62, 207, 108, 0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #6b8a74;
  text-transform: uppercase;
}

/* Pulse ring on hero waitlist btn */
.btn-hero {
  position: relative;
}

.btn-hero::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 1.5px solid rgba(62, 207, 108, 0.4);
  animation: pulse-ring 2.2s ease-out infinite;
  pointer-events: none;
}

/* Reveal line under section h2 on visible */
.section-reveal {
  position: relative;
  display: inline-block;
}

.section-reveal::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--green);
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.fade-in.visible .section-reveal::after {
  width: 100%;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-item {
    border-right: none;
  }
  .phone-main, .phone-back {
    animation: none;
  }
}

/* ==============================================
   RESPONSIVE
   ============================================== */

@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }

  .hiw-step { gap: 56px; }
  .hiw-alerts-grid,
  .hiw-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 52px;
    text-align: center;
    padding-top: 108px;
    padding-bottom: 60px;
  }

  .hero-visual { order: -1; }

  .hero h1,
  .hero-sub,
  .hero-eyebrow,
  .hero-actions,
  .hero-note { opacity: 1; transform: none; animation: none; }

  .hero-actions { justify-content: center; }
  .hero-note    { justify-content: center; }
  .hero-sub     { margin-left: auto; margin-right: auto; }

  .phone-main { width: 232px; height: 486px; }
  .phone-back { width: 196px; height: 412px; }

  .features-grid { grid-template-columns: 1fr; }

  .hiw-step {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .hiw-step:nth-child(even) .hiw-step-content { order: 0; }
  .hiw-step:nth-child(even) .hiw-step-visual  { order: 0; }

  .hiw-step-visual { min-height: 260px; padding: 36px 28px; }

  .hiw-alerts-grid,
  .hiw-features-grid { grid-template-columns: 1fr; }

  .about-mission-inner,
  .contact-inner,
  .founders-grid { grid-template-columns: 1fr; gap: 44px; }

  .callout-items { grid-template-columns: 1fr; gap: 16px; max-width: 100%; }

  .social-photo-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }

  .page-hero { padding: 136px 0 60px; }
  .about-mission-img { height: 300px; }

  .testimonial-item { flex-direction: column; gap: 12px; }
  .testimonial-attr  { min-width: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .hero-actions { flex-direction: column; width: 100%; align-items: stretch; }
  .btn-hero, .btn-ghost-dark { width: 100%; justify-content: center; }

  .courses-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 22px; }
}
