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

:root {
  /* Trust & Tech palette */
  --accent:      #4F46E5;   /* electric indigo */
  --accent-dark: #3730A3;   /* deep indigo — hover */
  --accent-bg:   #EEF2FF;   /* indigo tint — card bg */
  --success:     #10B981;   /* emerald — checkmarks, confirm */

  --dark:   #09090B;   /* zinc near-black */
  --mid:    #52525B;   /* zinc 600 */
  --muted:  #A1A1AA;   /* zinc 400 */
  --light:  #F4F4F5;   /* zinc 100 — alt section bg */
  --white:  #FAFAFA;   /* zinc 50 — page bg */
  --border: #E4E4E7;   /* zinc 200 */

  /* Card tints */
  --card-1-bg:     #EEF2FF;  --card-1-accent: #4F46E5;  /* indigo */
  --card-2-bg:     #F0FDF4;  --card-2-accent: #16A34A;  /* green */
  --card-3-bg:     #EFF6FF;  --card-3-accent: #2563EB;  /* blue */
  --card-4-bg:     #F5F3FF;  --card-4-accent: #7C3AED;  /* violet */

  --radius: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow    { max-width: 680px; }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.15s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; background: var(--dark); color: #fff; }
.btn-primary { background: var(--accent); color: #fff; font-size: 1rem; }
.btn-primary:hover { background: var(--accent-dark); opacity: 1; }

/* ── Hero ── */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(160deg, var(--white) 55%, var(--accent-bg) 100%);
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero-copy {
  flex: 1 1 0;
  min-width: 0;
}
.hero-photo {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-portrait {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.hero-photo-caption {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
.hero-photo-caption span {
  font-weight: 400;
  color: var(--mid);
}
.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.subhead {
  font-size: 1.15rem;
  color: var(--mid);
  max-width: 480px;
  margin: 0 0 32px;
}
.availability {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--mid);
}
.spots-inline {
  font-weight: 600;
  color: var(--dark);
}
.hero-trust {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── Sections ── */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-title { text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; font-size: 0.9rem; color: var(--mid); margin-bottom: 48px; font-weight: 500; }

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section p { color: var(--mid); margin-bottom: 16px; font-size: 1.05rem; }

/* ── Offer Cards ── */
/* ── Funnel grid ── */
.funnel-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}
.funnel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.funnel-stage {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  position: relative;
}
.funnel-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.funnel-before {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.funnel-before::before {
  content: 'Now';
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.funnel-after {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.65;
  position: relative;
  border-radius: 6px;
  padding: 8px 10px;
  margin: -8px -10px;
}
@keyframes throb-green {
  0%   { background: transparent; }
  35%  { background: #bbf7d0; }
  100% { background: transparent; }
}
.funnel-after.throb {
  animation: throb-green 1.2s ease-in-out 1 forwards;
}
.funnel-after::before {
  content: 'After';
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10B981;
  margin-bottom: 6px;
}
.funnel-footnote {
  font-size: 0.9rem;
  color: var(--mid);
  font-style: italic;
  text-align: center;
  margin-bottom: 32px;
}
.funnel-cta-wrap {
  text-align: center;
}
.funnel-price {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--mid);
}
@media (max-width: 600px) {
  .funnel-row { grid-template-columns: 1fr; }
}

/* ── AOA Framework ── */
.aoa {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.aoa-step { flex: 1; min-width: 160px; }
.aoa-label {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  background: var(--dark);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
}
.aoa-step p { font-size: 0.9rem; color: var(--mid); margin: 0; }
.aoa-arrow { font-size: 1.5rem; color: var(--accent); padding-top: 8px; }

/* ── Pricing ── */
.pricing-value-frame {
  background: var(--accent-bg);
  border: 1.5px solid #c7d2fe;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
}
.pricing-box {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.price {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.price span { font-size: 1.2rem; color: var(--mid); font-weight: 400; }
.pricing-list {
  list-style: none;
  margin: 0 auto 28px;
  max-width: 360px;
  text-align: left;
}
.pricing-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.pricing-list li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; color: var(--success); }
.pricing-note { margin-top: 14px; font-size: 0.85rem; color: var(--mid); }
.apply-success { margin-top: 24px; }
.apply-success-msg {
  background: #ecfdf5;
  border: 1.5px solid #6ee7b7;
  border-radius: 8px;
  padding: 16px 20px;
  color: #065f46;
  font-weight: 600;
  font-size: 1rem;
}

/* ── Apply Form ── */
.apply-form { margin-top: 32px; }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field-row .field { margin-bottom: 0; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2352525B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.field select option[value=""][disabled] { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* ── Footer ── */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--mid);
}
footer a { color: var(--mid); }

/* ── Mobile ── */
@media (max-width: 600px) {
  .hero { padding: 64px 0 56px; }
  .hero-inner { flex-direction: column-reverse; gap: 40px; }
  .hero-photo { flex: none; }
  .hero-portrait { width: 180px; height: 180px; }
  .subhead { max-width: 100%; }
  .aoa { flex-direction: column; }
  .aoa-arrow { transform: rotate(90deg); }
  .pricing-box { padding: 28px 20px; }
}
