/* ============================================================
   Sales Parrot - Founders' Cohort Deal Page
   Light theme only. General Sans (body) + Cabinet Grotesk (display)
   ============================================================ */

/* ---- WELCOME GATE ---- */
.gate {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef0f3;
  padding: 2rem 1.5rem;
  transition: opacity 350ms ease;
}

.gate.gate-hidden {
  opacity: 0;
  pointer-events: none;
}

.gate-inner {
  text-align: center;
  max-width: 420px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 2px 32px rgba(0,0,0,0.065), 0 1px 4px rgba(0,0,0,0.04);
}

.gate-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gate-logo {
  width: 30px;
  height: 30px;
  border-radius: 0.375rem;
  object-fit: cover;
}

.gate-brand-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #2b2b2b;
}

.gate-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 3px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.gate-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(42, 181, 160, 0.08);
  border: 1.5px solid rgba(42, 181, 160, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a9485;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.gate-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(1.75rem, 1.4rem + 1.25vw, 2.25rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.gate-text {
  font-size: 0.9375rem;
  color: #6b7280;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.gate-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid #e0e3e8;
  border-radius: 0.75rem;
  font-size: 1rem;
  color: #2b2b2b;
  background: #fff;
  text-align: center;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.gate-input:focus {
  border-color: #2ab5a0;
  box-shadow: 0 0 0 3px rgba(42, 181, 160, 0.12);
}

.gate-input::placeholder {
  color: #b0b8c4;
}

.gate-btn {
  width: 100%;
  padding: 0.9375rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  letter-spacing: 0.01em;
}

.gate-error {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-bottom: 0.25rem;
  display: none;
}

.gate-error.show {
  display: block;
}

.gate-hint {
  font-size: 0.8125rem;
  color: #9ca3af;
  line-height: 1.5;
  margin-top: 0.75rem;
}

/* ============================
   ARC PHOTO CLUSTER
   Orbital carousel — photos slide between 5 arc positions.
   Arc shape is always maintained; only the occupants change.
   ============================ */

/* Container canvas */
.gate-arc {
  position: relative;
  width: 300px;
  height: 140px;
  margin: 0 auto 1.75rem;
}

/* Base item — shared by every photo circle */
.arc-item {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  background: #e5e7eb;
  /* Smooth slide between positions (left, bottom, width, height) */
  transition:
    left    1s cubic-bezier(0.4, 0, 0.2, 1),
    bottom  1s cubic-bezier(0.4, 0, 0.2, 1),
    width   1s cubic-bezier(0.4, 0, 0.2, 1),
    height  1s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s ease,
    box-shadow 1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: left, bottom, width, height;
}

.arc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* ---- 5 arc positions (perfectly symmetric) ----
   Container: 300px wide.
   Arc curve: parabolic, center highest.

   Pos 0 (far-left)  : 54×54  — left: 6,   bottom: 2
   Pos 1 (mid-left)  : 68×68  — left: 52,  bottom: 28
   Pos 2 (center)    : 90×90  — left: 105, bottom: 48
   Pos 3 (mid-right) : 68×68  — left: 180, bottom: 28
   Pos 4 (far-right) : 54×54  — left: 240, bottom: 2

   Symmetry check:
   Pos 0 center: 33   | Pos 4 center: 267  | dist from 150: 117 ✓
   Pos 1 center: 86   | Pos 3 center: 214  | dist from 150: 64  ✓
   Pos 2 center: 150  | dead center ✓
*/

.arc-item[data-pos="0"] {
  width: 54px; height: 54px;
  left: 6px;   bottom: 2px;
  z-index: 1;
  box-shadow: 0 0 0 2.5px #fff, 0 3px 10px rgba(0,0,0,0.10);
}

.arc-item[data-pos="1"] {
  width: 68px; height: 68px;
  left: 52px;  bottom: 28px;
  z-index: 2;
  box-shadow: 0 0 0 3px #fff, 0 4px 14px rgba(0,0,0,0.12);
}

.arc-item[data-pos="2"] {
  width: 90px; height: 90px;
  left: 105px; bottom: 48px;
  z-index: 5;
  box-shadow: 0 0 0 3.5px #fff, 0 8px 24px rgba(0,0,0,0.16);
}

.arc-item[data-pos="3"] {
  width: 68px; height: 68px;
  left: 180px; bottom: 28px;
  z-index: 2;
  box-shadow: 0 0 0 3px #fff, 0 4px 14px rgba(0,0,0,0.12);
}

.arc-item[data-pos="4"] {
  width: 54px; height: 54px;
  left: 240px; bottom: 2px;
  z-index: 1;
  box-shadow: 0 0 0 2.5px #fff, 0 3px 10px rgba(0,0,0,0.10);
}

/* Main page: hidden by default, shown via JS class */
.main-page {
  display: none;
  transition: opacity 400ms ease;
}

.main-page.show {
  display: block;
}



/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  hanging-punctuation: first last;
  scroll-padding-top: 5rem;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: #2b2b2b;
  background-color: #ffffff;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }

::selection {
  background: rgba(42, 181, 160, 0.2);
  color: #2b2b2b;
}

:focus-visible {
  outline: 2px solid #2ab5a0;
  outline-offset: 3px;
  border-radius: 0.375rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a, button, [role="button"], input, textarea, select {
  transition: color 180ms cubic-bezier(0.16, 1, 0.3, 1),
              background 180ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ---- DESIGN TOKENS ---- */
:root {
  --color-primary: #2ab5a0;
  --color-primary-dark: #229e8b;
  --color-primary-darker: #1a7d6e;
  --color-primary-light: rgba(42, 181, 160, 0.1);
  --color-primary-medium: rgba(42, 181, 160, 0.15);

  --color-text: #2b2b2b;
  --color-text-muted: #6b6b6b;
  --color-text-faint: #9a9a9a;

  --color-bg: #ffffff;
  --color-surface: #f8f9fa;
  --color-surface-alt: #f1f3f5;
  --color-border: #e5e7eb;
  --color-border-light: #f0f0f0;

  --color-success: #16a34a;
  --color-success-light: rgba(22, 163, 74, 0.08);

  --color-error: #dc2626;

  --font-display: 'Cabinet Grotesk', 'General Sans', -apple-system, sans-serif;
  --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 48px rgba(0,0,0,0.12);

  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 680px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container-narrow {
  max-width: var(--content-narrow);
}

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

/* ---- SECTION HEADERS ---- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 56ch;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}

.section-header .section-subtitle {
  margin-inline: auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm), 0 0 0 0 rgba(42,181,160,0);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(42,181,160,0.15);
}
.btn-primary:active {
  background: var(--color-primary-darker);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary-light);
}

.btn-sm {
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-5);
}

.btn-lg {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
}

/* ---- BADGES ---- */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.badge-accent {
  background: var(--color-primary-light);
  color: var(--color-primary-darker);
}

.badge-muted {
  background: var(--color-surface);
  color: var(--color-text-muted);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  padding: var(--space-3) 0;
}

.nav-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.nav-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
}

.nav-cta {
  font-size: var(--text-xs);
}

/* ---- HERO ---- */
.hero {
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-24));
  background: linear-gradient(180deg, rgba(42,181,160,0.04) 0%, transparent 60%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  margin-bottom: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero-subhead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
  max-width: 60ch;
  margin-inline: auto;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

.hero-cta {
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-8);
}

/* ---- WHO THIS IS FOR ---- */
.section-who {
  background: var(--color-surface);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.who-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
}

.who-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.who-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.who-card-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- VALUE STACK ---- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.value-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
}

.value-card-featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-lg);
  position: relative;
}

.value-card-header {
  margin-bottom: var(--space-6);
}

.value-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.value-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
}

.value-card-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.value-price-tag {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  background: var(--color-surface);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}

.value-price-label {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-weight: 500;
}

.value-price-amount {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex-grow: 1;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.5;
}

.check-icon {
  flex-shrink: 0;
  color: var(--color-success);
  margin-top: 1px;
}

.total-value {
  text-align: center;
  margin-top: clamp(var(--space-10), 4vw, var(--space-16));
}

.total-value-text {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

.total-value-amount {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
}

/* ---- WHY WE'RE DOING THIS ---- */
.section-why {
  background: var(--color-surface);
}

.why-content {
  text-align: center;
}

.why-letter {
  text-align: left;
  max-width: 580px;
  margin: var(--space-8) auto 0;
}

.why-letter p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.75;
}

.why-letter p:first-child {
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 500;
}

.why-signature-block {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.why-signature-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  color: #0a66c2;
  text-decoration: none;
  margin-left: 4px;
  vertical-align: middle;
  transition: opacity 180ms ease;
}

.linkedin-link:hover {
  opacity: 0.7;
}

.linkedin-link svg {
  display: inline;
}

.why-signature {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
}

.why-signature-title {
  font-weight: 400;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---- TESTIMONIALS ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: var(--space-4);
}

.testimonial-quote p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--color-border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ---- PRICING ---- */
.section-pricing {
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
}

.pricing-card {
  max-width: 560px;
  margin-inline: auto;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.pricing-header {
  margin-bottom: var(--space-8);
}

.pricing-header .badge {
  margin-bottom: var(--space-4);
}

.pricing-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.pricing-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--space-8);
}

.pricing-feature-group {
  margin-bottom: var(--space-5);
}

.pricing-feature-group:last-child {
  margin-bottom: 0;
}

.pricing-feature-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  margin-bottom: var(--space-3);
}

.pricing-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pricing-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.5;
}

.pricing-value-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-8);
}

.pricing-total-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pricing-total-amount {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: line-through;
  text-decoration-color: var(--color-text-faint);
}

.pricing-amount-wrap {
  margin-bottom: var(--space-6);
}

.pricing-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
}

.price-current {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  transition: color 400ms ease;
}

.price-current.discounted {
  color: var(--color-success);
}

.price-original {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-faint);
  text-decoration: line-through;
  animation: fadeSlideIn 400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.price-save-badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-success);
  background: var(--color-success-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  animation: fadeSlideIn 400ms cubic-bezier(0.16, 1, 0.3, 1) 100ms both;
}

.pricing-once {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pricing-cta {
  width: 100%;
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-6);
}

.pricing-discount-wrap {
  margin-bottom: var(--space-5);
}

.discount-toggle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-border);
  padding: var(--space-2);
}

.discount-toggle:hover {
  color: var(--color-primary);
  text-decoration-color: var(--color-primary);
}

.discount-form {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 360px;
  margin-inline: auto;
}

.discount-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  outline: none;
}

.discount-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(42, 181, 160, 0.1);
}

.discount-submit {
  align-self: center;
  min-width: 120px;
}

.discount-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  text-align: center;
}

.pricing-countdown {
  margin-bottom: var(--space-5);
  padding: var(--space-5);
  background: linear-gradient(135deg, rgba(42,181,160,0.06), rgba(42,181,160,0.02));
  border: 1px solid rgba(42,181,160,0.15);
  border-radius: var(--radius-xl);
}

.countdown-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  text-align: center;
  font-weight: 500;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
  min-width: 2.5ch;
  text-align: center;
}

.countdown-txt {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text-faint);
  align-self: flex-start;
  margin-top: 2px;
}

.pricing-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}

.pricing-secure svg {
  display: inline;
  flex-shrink: 0;
}

.pricing-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: 40ch;
  margin-inline: auto;
  line-height: 1.6;
}

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
}

.faq-item[open] {
  border-color: var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }

.faq-question::after {
  content: '+';
  font-size: 1.25em;
  font-weight: 400;
  color: var(--color-text-faint);
  transition: transform 200ms ease;
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-5);
}

.faq-answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- FINAL CTA ---- */
.section-final-cta {
  background: linear-gradient(180deg, transparent 0%, rgba(42,181,160,0.04) 100%);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.final-cta-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.final-cta-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.final-cta-headline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
}

.final-cta-subhead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 48ch;
}

/* ---- FOOTER ---- */
.footer {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border-light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.footer-links a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-primary);
}

/* ---- SCROLL REVEAL ---- */
/* Elements are visible by default. JS adds .reveal-ready to hide them before animating. */
.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.who-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.who-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.value-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.value-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.testimonial-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.testimonial-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.testimonial-grid .reveal:nth-child(4) { transition-delay: 240ms; }
.faq-list .reveal:nth-child(2) { transition-delay: 40ms; }
.faq-list .reveal:nth-child(3) { transition-delay: 80ms; }
.faq-list .reveal:nth-child(4) { transition-delay: 120ms; }
.faq-list .reveal:nth-child(5) { transition-delay: 160ms; }
.faq-list .reveal:nth-child(6) { transition-delay: 200ms; }

/* ---- ANIMATIONS ---- */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes priceSlash {
  0% {
    text-decoration-color: transparent;
  }
  100% {
    text-decoration-color: var(--color-text-faint);
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .who-grid,
  .value-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-5);
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-headline {
    font-size: clamp(1.75rem, 1rem + 4vw, 3rem);
  }

  .section-title {
    font-size: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: var(--space-4);
  }

  .nav-inner {
    padding-inline: var(--space-4);
  }

  .nav-name {
    font-size: var(--text-sm);
  }

  .hero-logo {
    width: 72px;
    height: 72px;
  }

  .hero-badges {
    flex-direction: column;
    gap: var(--space-2);
  }

  .who-card,
  .value-card,
  .testimonial-card {
    padding: var(--space-6);
  }

  .pricing-card {
    padding: var(--space-6);
  }

  .faq-question {
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-sm);
  }

  .faq-answer {
    padding: 0 var(--space-5) var(--space-4);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .pricing-cta {
    font-size: var(--text-sm);
    padding: var(--space-4) var(--space-4);
  }
}
