/* ============================================
   RENTICE — DESIGN SYSTEM
   ============================================ */

:root {
  --green-900: #0D3D2C;
  --green-800: #145238;
  --gold-400:  #EAC84A;
  --gold-300:  #F0D778;
  --cream-50:  #F5F2EA;
  --cream-100: #EDE2CE;
  --cream-200: #E2D4BC;
  --cream-700: #5C4A36;
  --sage-500:  #7A9B7A;
  --sage-100:  #E7F0E7;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --font-mono:    'Geist Mono', monospace;

  --radius-sm: 7px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-card: 0 8px 24px -6px rgba(13,61,44,0.12);
  --transition: 200ms ease-out;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--cream-50);
  color: var(--cream-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button, a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

img, svg { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn--large {
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
}

.btn--primary {
  background: var(--green-900);
  color: var(--gold-400);
}
.btn--primary:hover {
  background: var(--green-800);
}

.btn--gold {
  background: var(--gold-400);
  color: var(--green-900);
}
.btn--gold:hover {
  background: #dab93e;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -4px rgba(234,200,74,0.45);
}
.btn--gold:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--green-900);
  color: var(--green-900);
}
.btn--outline:hover {
  background: var(--cream-100);
  transform: translateY(-1px);
}
.btn--outline:active {
  transform: translateY(0);
}

.btn--on-dark {
  background: rgba(234,200,74,0.15);
  color: var(--gold-400);
  border: 1px solid rgba(234,200,74,0.3);
}
.btn--on-dark:hover {
  background: rgba(234,200,74,0.25);
}

/* ============================================
   PILLS
   ============================================ */

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.pill--dark {
  background: var(--green-900);
  color: var(--gold-400);
}

.pill--gold-outline {
  background: rgba(234,200,74,0.15);
  color: var(--gold-400);
  border: 1px solid rgba(234,200,74,0.3);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-title--light {
  color: var(--cream-50);
}

.section-subtitle {
  font-size: 18px;
  color: var(--sage-500);
  font-weight: 400;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,242,234,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-200);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px -4px rgba(13,61,44,0.10);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-700);
  transition: color var(--transition);
}
.navbar__link:hover {
  color: var(--green-900);
}

.navbar__cta {
  flex-shrink: 0;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--cream-200);
}

.navbar__mobile.open {
  display: flex;
}

.navbar__mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--cream-700);
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-200);
  transition: color var(--transition);
}
.navbar__mobile-link:hover {
  color: var(--green-900);
}

.navbar__mobile-cta {
  margin-top: 12px;
  width: 100%;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  background: var(--cream-50);
  padding: 80px 0 96px;
  overflow: hidden;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--cream-700);
  line-height: 1.65;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.hero__stat {
  font-size: 13px;
  font-weight: 500;
  color: var(--sage-500);
}

.hero__sep {
  color: var(--cream-200);
  font-size: 16px;
}

/* ---- Hero Highlight ---- */

.hero__highlight {
  position: relative;
  display: inline-block;
}

.hero__highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 5px;
  background: var(--gold-400);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: underlineDraw 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* ---- Hero Social Proof ---- */

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack__item {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-400);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream-50);
  margin-left: -8px;
  flex-shrink: 0;
  transition: margin-left 200ms ease-out, transform 200ms ease-out;
}

.avatar-stack__item:first-child { margin-left: 0; }

.hero__social-proof:hover .avatar-stack__item:not(:first-child) {
  margin-left: -2px;
}
.avatar-stack__item:nth-child(2) { background: var(--green-800); }
.avatar-stack__item:nth-child(3) { background: #2a6b42; }
.avatar-stack__item:nth-child(4) { background: var(--sage-500); color: var(--green-900); }

.hero__social-text {
  font-size: 13px;
  color: var(--sage-500);
}

.hero__social-text strong {
  color: var(--green-900);
  font-weight: 600;
}

/* ---- Hero Trust Badges ---- */

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sage-500);
}

.hero__trust-item svg {
  color: var(--sage-500);
  flex-shrink: 0;
}

.hero__trust-sep {
  color: var(--cream-200);
  font-size: 14px;
  line-height: 1;
}

/* ---- Mock UI Card ---- */

.hero__mock {
  display: flex;
  justify-content: center;
}

.mock-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  width: 100%;
  box-shadow: 0 20px 60px -12px rgba(13,61,44,0.15), 0 4px 16px -4px rgba(13,61,44,0.08);
}

.mock-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.mock-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mock-card__dot--green { background: #4CAF50; }

.mock-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-900);
  flex: 1;
}

.mock-card__badge {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: #4CAF50;
  background: rgba(76,175,80,0.1);
  padding: 4px 12px;
  border-radius: 999px;
}

.mock-card__profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.mock-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-400);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--green-900);
}

.mock-card__school {
  font-size: 14px;
  color: var(--sage-500);
  margin-top: 3px;
}

.mock-card__progress-wrap {
  margin-bottom: 28px;
}

.mock-card__progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--sage-500);
  margin-bottom: 10px;
}

.mock-card__progress-pct {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--green-900);
}

.mock-card__progress-bar {
  height: 8px;
  background: var(--sage-100);
  border-radius: 999px;
  overflow: hidden;
}

.mock-card__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-900), #1a6b48);
  border-radius: 999px;
  transition: width 1s ease-out;
}

.mock-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.mock-stat {
  text-align: center;
  padding: 20px 10px;
  background: var(--cream-50);
  border-radius: 10px;
}

.mock-stat__value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--green-900);
  line-height: 1;
}

.mock-stat__value--gold { color: var(--gold-400); }
.mock-stat__value--green { color: #2e7d4f; }

.mock-stat__label {
  font-size: 12px;
  color: var(--sage-500);
  margin-top: 6px;
  line-height: 1.3;
}

.mock-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-200);
  font-size: 13px;
  color: var(--sage-500);
}

/* ============================================
   INBOX CARD (Hero Mockup)
   ============================================ */

.inbox-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px -12px rgba(13,61,44,0.16), 0 4px 16px -4px rgba(13,61,44,0.08);
}

.inbox-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--cream-200);
  background: var(--cream-50);
}

.inbox-card__header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inbox-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-900);
}

.inbox-card__badge {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: #2e7d4f;
  background: rgba(46,125,79,0.12);
  padding: 3px 10px;
  border-radius: 999px;
  animation: badgePulse 2.5s ease-in-out 1.5s 2;
}

.inbox-email {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--cream-200);
  position: relative;
  transition: background 150ms ease-out;
  cursor: default;
}

.inbox-email:last-of-type {
  border-bottom: none;
}

.inbox-email:hover {
  background: var(--cream-50);
}

.inbox-email--new {
  background: rgba(122,155,122,0.05);
}

.inbox-email--new::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-400);
}

.inbox-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}

.inbox-avatar--green  { background: #2e7d4f; }
.inbox-avatar--blue   { background: #1565c0; }
.inbox-avatar--purple { background: #6a1b9a; }

.inbox-email__body {
  flex: 1;
  min-width: 0;
}

.inbox-email__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 3px;
}

.inbox-email__from {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-email__time {
  font-size: 11px;
  color: var(--sage-500);
  flex-shrink: 0;
  font-family: var(--font-mono);
}

.inbox-email__subject {
  font-size: 13px;
  color: var(--green-900);
  font-weight: 500;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-email__preview {
  font-size: 12px;
  color: var(--sage-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  background: var(--cream-50);
  border-top: 1px solid var(--cream-200);
}

.inbox-card__footer-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--sage-500);
  font-family: var(--font-mono);
  white-space: nowrap;
}

.inbox-card__stats {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inbox-stat {
  text-align: center;
}

.inbox-stat__value {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--green-900);
  line-height: 1;
}

.inbox-stat__value--gold  { color: var(--gold-400); }
.inbox-stat__value--green { color: #2e7d4f; }

.inbox-stat__label {
  font-size: 9px;
  color: var(--sage-500);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.inbox-stat-sep {
  width: 1px;
  height: 24px;
  background: var(--cream-200);
}

/* ============================================
   CRÉDIBILITÉ STRIP
   ============================================ */

.cred,
.how,
.pricing,
.faq,
.waitlist {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

.cred {
  background: var(--green-900);
  padding: 64px 0;
}

.cred__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

.cred__quote {
  text-align: center;
  max-width: 760px;
}

.cred__blockquote {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream-50);
  line-height: 1.6;
  margin-bottom: 28px;
}

.cred__author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.cred__author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cred__author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream-50);
  text-align: left;
}

.cred__author-role {
  font-size: 13px;
  color: rgba(245,242,234,0.5);
  margin-top: 2px;
  text-align: left;
}

.cred__stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 760px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,242,234,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 0;
}

.cred__stat {
  flex: 1;
  padding: 0 32px;
  text-align: center;
}
.cred__stat:first-child { padding-left: 0; }
.cred__stat:last-child  { padding-right: 0; }

.cred__stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}

.cred__stat-label {
  font-size: 13px;
  color: rgba(245,242,234,0.7);
  line-height: 1.4;
  margin-bottom: 6px;
}

.cred__stat-source {
  font-size: 11px;
  color: rgba(245,242,234,0.4);
  font-style: italic;
}

.cred__divider {
  width: 1px;
  background: rgba(245,242,234,0.12);
  flex-shrink: 0;
  align-self: stretch;
  min-height: 80px;
}

/* ============================================
   FONCTIONNEMENT
   ============================================ */

.how {
  background: var(--cream-50);
  padding: 96px 0;
}

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

.feature-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.feature-card--dark {
  background: var(--green-900);
  border-color: transparent;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon--sage { background: var(--sage-100); }
.feature-card__icon--gold { background: #FBF4D5; }
.feature-card__icon--dark { background: rgba(234,200,74,0.15); }

.feature-card__step {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: 8px;
}

.feature-card__step--light {
  color: rgba(234,200,74,0.6);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
  line-height: 1.25;
}

.feature-card__title--light { color: var(--cream-50); }

.feature-card__desc {
  font-size: 14px;
  color: var(--cream-700);
  line-height: 1.6;
}

.feature-card__desc--light { color: rgba(245,242,234,0.7); }

/* ============================================
   HOW IT WORKS — STEPS
   ============================================ */

.how__steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: stretch;
  gap: 0;
}

.how__step {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  padding-right: 80px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.how__step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.how__step--dark {
  background: var(--green-900);
  border-color: transparent;
}

.how__step--dark:hover {
  box-shadow: 0 8px 24px -6px rgba(13,61,44,0.35);
}

.how__step-num {
  font-family: var(--font-display);
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
  color: var(--cream-100);
  position: absolute;
  top: 10px;
  right: 14px;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

.how__step--dark .how__step-num {
  color: rgba(234,200,74,0.12);
}

.how__step-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--sage-500);
  background: var(--sage-100);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  position: relative;
}

.how__step--dark .how__step-tag {
  color: var(--gold-400);
  background: rgba(234,200,74,0.12);
}

.how__step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 12px;
  line-height: 1.2;
  position: relative;
  hyphens: none;
}

.how__step--dark .how__step-title {
  color: var(--cream-50);
}

.how__step-desc {
  font-size: 14px;
  color: var(--cream-700);
  line-height: 1.65;
  position: relative;
  hyphens: none;
  overflow-wrap: break-word;
}

.how__step--dark .how__step-desc {
  color: rgba(245,242,234,0.7);
}

/* ---- Step 02 email typewriter ---- */

.how__email-preview {
  margin-top: 20px;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 11px;
  position: relative;
  z-index: 1;
}

.how__email-meta {
  padding: 8px 12px;
  border-bottom: 1px solid var(--cream-200);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.how__email-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--cream-700);
  font-size: 11px;
  font-family: var(--font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.how__email-label {
  font-weight: 600;
  color: var(--sage-500);
  flex-shrink: 0;
  min-width: 32px;
}

.how__email-body {
  padding: 10px 12px 12px;
  min-height: 68px;
  font-size: 12px;
  color: var(--cream-700);
  line-height: 1.65;
  font-family: var(--font-body);
}

.how__email-text {
  white-space: pre-wrap;
}

.how__email-cursor {
  display: inline-block;
  width: 1.5px;
  height: 13px;
  background: var(--green-900);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: cursorBlink 0.75s step-end infinite;
}

.how__email-cursor--done {
  animation-duration: 1.2s;
  opacity: 0.5;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.how__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================
   PRICING
   ============================================ */

.pricing {
  background: var(--green-900);
  padding: 96px 0;
}

.pricing__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.pricing__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(234,200,74,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}

.pricing__price {
  margin-bottom: 24px;
}

.pricing__amount {
  display: block;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing__period {
  font-size: 14px;
  color: rgba(245,242,234,0.6);
}

.pricing__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.pricing__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(245,242,234,0.85);
  line-height: 1.5;
}

.pricing__item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Garantie */
.pricing__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  background: rgba(234,200,74,0.08);
  border: 1px solid rgba(234,200,74,0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 28px;
}

.pricing__guarantee-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(234,200,74,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing__guarantee-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 4px;
}

.pricing__guarantee-desc {
  font-size: 12px;
  color: rgba(245,242,234,0.65);
  line-height: 1.5;
}

.pricing__cta {
  width: 100%;
  margin-bottom: 16px;
}

.pricing__note {
  font-size: 12px;
  color: rgba(245,242,234,0.45);
  font-style: italic;
}

/* Timeline garantie */
.pricing__timeline {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,242,234,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.timeline__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 28px;
}

.timeline__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  padding-bottom: 20px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 14px;
  bottom: 0;
  width: 1px;
  background: rgba(245,242,234,0.1);
}

.timeline__item--guarantee:not(:last-child)::before {
  background: rgba(234,200,74,0.2);
}

.timeline__marker {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid rgba(245,242,234,0.2);
  background: transparent;
  flex-shrink: 0;
  margin-top: 3px;
}

.timeline__marker--active {
  border-color: var(--gold-400);
  background: var(--gold-400);
}

.timeline__marker--gold {
  border-color: var(--gold-400);
  background: rgba(234,200,74,0.25);
}

.timeline__marker--cream {
  border-color: rgba(245,242,234,0.4);
  background: rgba(245,242,234,0.1);
}

.timeline__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.timeline__day {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-400);
}

.timeline__label {
  font-size: 13px;
  color: rgba(245,242,234,0.75);
  line-height: 1.45;
}

.timeline__item--guarantee .timeline__label {
  color: rgba(245,242,234,0.9);
  font-weight: 500;
}

.timeline__item--total .timeline__label {
  color: rgba(245,242,234,0.55);
  font-style: italic;
  font-size: 12px;
}

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

.faq {
  background: var(--cream-50);
  padding: 96px 0;
  border-top: 1px solid var(--cream-200);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--cream-200);
}

.faq__item:first-child {
  border-top: 1px solid var(--cream-200);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--green-900);
  line-height: 1.4;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--green-800);
}

.faq__icon {
  flex-shrink: 0;
  color: var(--sage-500);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), color var(--transition);
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
  color: var(--green-900);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item--open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer > div {
  overflow: hidden;
}

.faq__answer p {
  font-size: 15px;
  color: var(--cream-700);
  line-height: 1.7;
  padding-bottom: 22px;
}

/* ============================================
   WAITLIST
   ============================================ */

.waitlist {
  background: var(--cream-50);
  padding: 96px 0;
}

.waitlist__inner {
  max-width: 600px;
}

.waitlist__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.waitlist__input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.waitlist__input {
  width: 100%;
  max-width: 480px;
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--green-900);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.waitlist__input::placeholder { color: var(--cream-200); }

.waitlist__input:focus {
  border-color: var(--green-900);
  box-shadow: 0 0 0 3px rgba(13,61,44,0.08);
}

.waitlist__select {
  width: 100%;
  max-width: 480px;
  height: 48px;
  padding: 0 40px 0 16px;
  background: #fff;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cream-700);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A9B7A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.waitlist__select:focus {
  border-color: var(--green-900);
  box-shadow: 0 0 0 3px rgba(13,61,44,0.08);
}

.waitlist__submit {
  width: 100%;
  max-width: 480px;
}

.waitlist__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.waitlist__jotform-btn {
  min-width: 280px;
  font-size: 17px;
  height: 56px;
  padding: 0 40px;
  box-shadow: 0 8px 24px -4px rgba(234,200,74,0.35);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms ease-out;
}

.waitlist__jotform-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(234,200,74,0.45);
}

.waitlist__disclaimer {
  font-size: 12px;
  color: var(--sage-500);
  text-align: center;
}

/* ============================================
   MID CTA
   ============================================ */

.mid-cta {
  text-align: center;
  padding: 48px 5vw;
  background: var(--cream-50);
  border-top: 1px solid var(--cream-200);
}

.mid-cta-note {
  font-size: 12px;
  color: var(--sage-500);
  margin-top: 10px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--green-900);
  padding: 48px 0 calc(48px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__brand {
  margin-right: auto;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 13px;
  color: rgba(245,242,234,0.55);
  transition: color var(--transition);
}
.footer__link:hover {
  color: rgba(245,242,234,0.9);
}

.footer__copy {
  width: 100%;
  font-size: 12px;
  color: rgba(245,242,234,0.35);
  margin-top: 16px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-hero {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

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

@keyframes underlineDraw {
  to { transform: scaleX(1); }
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,125,79,0); }
  50%       { box-shadow: 0 0 0 4px rgba(46,125,79,0.2); }
}

.observe-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--stagger, 0s);
}

.observe-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */

/* ============================================
   TABLET — 1024px
   ============================================ */

@media (max-width: 1024px) {

  .hero__inner {
    gap: 40px;
  }

  .hero__title {
    font-size: clamp(38px, 5vw, 52px);
  }

  .how__step {
    padding: 28px 64px 28px 24px;
  }

  .pricing__layout {
    gap: 20px;
  }

  .pricing__card {
    padding: 32px 28px;
  }

}

/* ============================================
   MOBILE — 768px
   ============================================ */

@media (max-width: 768px) {

  /* Navbar */
  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 56px 0 72px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__mock {
    order: -1;
  }

  .mock-card {
    max-width: 100%;
  }

  .inbox-card {
    width: 100%;
    max-width: 100%;
  }

  .inbox-card__footer {
    flex-wrap: wrap;
    gap: 8px;
  }

  .inbox-card__footer-text {
    font-size: 10px;
  }

  /* Cred */
  .cred__inner {
    gap: 40px;
  }

  .cred__blockquote {
    font-size: 18px;
  }

  .cred__stats {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .cred__stat {
    padding: 20px 24px;
    text-align: left;
  }

  .cred__stat:first-child { padding-top: 24px; padding-left: 24px; }
  .cred__stat:last-child  { padding-bottom: 24px; padding-right: 24px; }

  .cred__divider {
    width: calc(100% - 48px);
    height: 1px;
    min-height: unset;
    margin: 0 24px;
  }

  /* How */
  .how {
    padding: 64px 0;
  }

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

  .how__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how__connector {
    display: none;
  }

  /* Pricing */
  .pricing {
    padding: 64px 0;
  }

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

  .pricing__card {
    padding: 36px 24px;
  }

  .pricing__amount {
    font-size: 56px;
  }

  .pricing__timeline {
    padding: 28px 20px;
  }

  /* Waitlist */
  .waitlist {
    padding: 64px 0;
  }

  .waitlist__input-group {
    flex-direction: column;
  }

  .waitlist__submit {
    width: 100%;
  }

  .waitlist__input,
  .waitlist__select {
    font-size: 16px;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__brand {
    margin-right: 0;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 40px;
  }

  /* Container padding */
  .container {
    padding: 0 20px;
  }

  /* Section subtitle */
  .section-subtitle {
    font-size: 16px;
  }

  /* Hero trust badges */
  .hero__trust {
    gap: 8px;
  }

  .hero__trust-sep {
    display: none;
  }

  .hero__trust-item {
    font-size: 12px;
  }

  /* Email preview */
  .how__email-preview {
    margin-top: 16px;
  }

  .how__email-body {
    min-height: 48px;
  }

  .how__step {
    padding: 28px 20px 24px;
  }

  .how__step-num {
    font-size: 72px;
    right: 10px;
  }

  /* FAQ */
  .faq {
    padding: 64px 0;
  }

  .faq__list {
    max-width: 100%;
  }

  .faq__question {
    font-size: 15px;
    padding: 18px 0;
  }

  .faq__answer p {
    font-size: 14px;
  }

}

/* ============================================
   SMALL PHONES — 480px
   ============================================ */

@media (max-width: 480px) {

  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero {
    padding: 40px 0 56px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero__social-proof {
    flex-wrap: wrap;
  }

  /* Cred */
  .cred {
    padding: 48px 0;
  }

  .cred__stat-value {
    font-size: 28px;
  }

  /* How */
  .how {
    padding: 48px 0;
  }

  .how__step {
    padding: 24px 16px 20px;
  }

  .how__step-num {
    font-size: 56px;
  }

  .how__step-title {
    font-size: 19px;
  }

  /* Pricing */
  .pricing {
    padding: 48px 0;
  }

  .pricing__card {
    padding: 28px 20px;
  }

  .pricing__amount {
    font-size: 44px;
  }

  .pricing__guarantee {
    flex-direction: column;
    gap: 10px;
  }

  .pricing__timeline {
    padding: 24px 16px;
  }

  /* FAQ */
  .faq {
    padding: 48px 0;
  }

  .faq__question {
    font-size: 14px;
    gap: 12px;
  }

  /* Waitlist */
  .waitlist {
    padding: 48px 0;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 32px;
  }

  .section-subtitle {
    font-size: 15px;
  }

}
