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

:root {
  --teal:        #0d9488;
  --teal-dark:   #0f766e;
  --teal-darker: #115e59;
  --teal-light:  #99f6e4;
  --teal-xlight: #f0fdfa;
  --amber:       #f59e0b;
  --amber-light: #fef9c3;
  --amber-dark:  #d97706;
  --success:     #10b981;
  --success-light: #ecfdf5;
  --text:        #0f172a;
  --muted:       #475569;
  --border:      #e2e8f0;
  --bg:          #f8fafc;
  --white:       #ffffff;
  --red:         #ef4444;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute; left: -9999px; top: 1rem;
  background: var(--teal); color: #fff; padding: 0.5rem 1rem;
  border-radius: 6px; font-weight: 600; z-index: 9999;
}
.skip-link:focus { left: 1rem; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
button:focus:not(:focus-visible), a:focus:not(:focus-visible) { outline: none; }

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

/* ── NAV ──────────────────────────────────────────────────────────────── */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem; background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 800; font-size: 1.1rem; color: var(--text); text-decoration: none;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--teal), var(--teal-darker));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
}
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  background: var(--teal); color: #fff !important; padding: 0.5rem 1.25rem;
  border-radius: 8px; font-weight: 600; font-size: 0.9rem; text-decoration: none !important;
}
.nav-cta:hover { background: var(--teal-dark); }
@media (max-width: 640px) {
  .nav-links { display: none; }
  nav { padding: 0.75rem 1rem; }
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  padding: 5rem 2rem 4rem; max-width: 1100px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--teal-xlight); color: var(--teal-dark);
  font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.9rem;
  border-radius: 100px; margin-bottom: 1.25rem; letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 1.25rem; color: var(--text);
}
.hero h1 span { color: var(--teal); }
.hero-sub { font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem; max-width: 480px; }
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; align-items: center; }
.hero-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.25rem; }
.micro-proof { display: flex; gap: 1.25rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid var(--border); }
.micro-proof-item { font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 0.3rem; }

/* Hero price panel mockup */
.hero-visual { display: flex; justify-content: center; }
.price-panel-mock {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  width: 300px; padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(13,148,136,0.12), 0 4px 16px rgba(0,0,0,0.06);
}
.mock-panel-header {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.75rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.mock-panel-logo {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--teal), var(--teal-darker));
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.6rem; font-weight: 800;
}
.mock-panel-title { font-size: 0.78rem; font-weight: 700; color: var(--text); }
.mock-hotel-name { font-size: 0.8rem; font-weight: 700; color: var(--text); margin-bottom: 0.15rem; }
.mock-hotel-dates { font-size: 0.68rem; color: var(--muted); margin-bottom: 0.75rem; }
.mock-price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.38rem 0.5rem; border-radius: 6px; margin-bottom: 0.22rem;
}
.mock-price-row.cheapest {
  background: var(--teal-xlight); border: 1px solid #99f6e4;
}
.mock-site { font-size: 0.71rem; color: var(--muted); font-weight: 500; flex: 1; }
.mock-price-row.cheapest .mock-site { color: var(--teal-dark); font-weight: 700; }
.mock-amt { font-size: 0.8rem; font-weight: 700; color: var(--text); }
.mock-price-row.cheapest .mock-amt { color: var(--teal); }
.mock-save { font-size: 0.62rem; font-weight: 700; background: var(--amber); color: #fff; padding: 0.1rem 0.35rem; border-radius: 100px; margin-left: 0.35rem; }
.mock-arrow { font-size: 0.65rem; color: var(--teal); margin-left: 0.25rem; }
.mock-more { font-size: 0.68rem; color: var(--muted); text-align: center; padding-top: 0.35rem; }
.mock-cta-btn {
  display: block; margin-top: 0.75rem; text-align: center;
  padding: 0.5rem; background: var(--teal); color: #fff;
  border-radius: 8px; font-size: 0.75rem; font-weight: 700;
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ── BUTTONS ──────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--teal); color: #fff; padding: 0.9rem 1.75rem;
  border-radius: 10px; font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.15s; min-height: 56px; cursor: pointer;
  border: none; text-decoration: none;
}
.btn-primary:hover { background: var(--teal-dark); text-decoration: none; color: #fff; }
.btn-secondary {
  background: #fff; color: var(--text); padding: 0.9rem 1.75rem;
  border-radius: 10px; font-weight: 600; font-size: 1rem;
  border: 1.5px solid var(--border); transition: border-color 0.15s;
  min-height: 56px; display: inline-flex; align-items: center; text-decoration: none;
}
.btn-secondary:hover { border-color: var(--teal); text-decoration: none; }
.btn-white {
  background: #fff; color: var(--teal); padding: 0.9rem 2rem;
  border-radius: 10px; font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: filter 0.15s; min-height: 56px; text-decoration: none;
}
.btn-white:hover { filter: brightness(0.96); text-decoration: none; color: var(--teal); }

/* ── TRUST STRIP ──────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--teal-xlight); border-top: 1px solid #99f6e4;
  border-bottom: 1px solid #99f6e4; padding: 1.25rem 1.5rem;
}
.trust-strip-inner {
  max-width: 1040px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-badge { display: flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; color: var(--muted); }
.trust-badge strong { color: var(--text); }

/* ── SECTIONS ─────────────────────────────────────────────────────────── */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1040px; margin: 0 auto; }
.section-label {
  text-align: center; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--teal); text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  text-align: center; font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; margin-bottom: 0.75rem;
}
.section-sub {
  text-align: center; color: var(--muted); max-width: 540px;
  margin: 0 auto 3rem;
}

/* ── HOW IT WORKS ─────────────────────────────────────────────────────── */
.how-it-works { background: var(--bg); }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem; max-width: 900px; margin: 0 auto;
}
.step-card { text-align: center; padding: 1.5rem; position: relative; }
.step-num {
  width: 48px; height: 48px; background: var(--teal); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin: 0 auto 1rem;
}
.step-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ── LIVE DEMO ────────────────────────────────────────────────────────── */
.live-demo { background: #fff; }
.demo-placeholder {
  max-width: 720px; margin: 0 auto; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--teal-xlight), #ccfbf1);
  border-radius: 16px; border: 2px dashed #99f6e4;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; color: var(--muted); gap: 0.75rem;
}
.demo-play {
  width: 64px; height: 64px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.demo-play svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }

/* ── COMPARE TABLE ────────────────────────────────────────────────────── */
.compare { background: var(--bg); }
.compare-wrap { max-width: 860px; margin: 0 auto; }
.compare-table-wrap {
  overflow-x: auto; border-radius: 14px; border: 1px solid var(--border);
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.compare-table th {
  padding: 0.9rem 1rem; text-align: left; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); background: var(--bg); border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.compare-table th.col-hd { color: var(--teal); background: var(--teal-xlight); }
.compare-table td {
  padding: 0.85rem 1rem; border-top: 1px solid var(--border); vertical-align: middle;
}
.compare-table td.col-hd { background: var(--teal-xlight); font-weight: 600; }
.compare-table td:first-child { font-weight: 500; color: var(--text); }
.compare-table tr.highlight-row td { background: #fef9c3; }
.compare-table tr.highlight-row td.col-hd { background: #fef08a; border-left: 3px solid var(--amber); }
.yes { color: var(--success); font-weight: 700; }
.no { color: #94a3b8; }
.partial { color: var(--amber-dark); font-size: 0.8rem; font-weight: 600; }
.compare-caption { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; }

/* ── FEATURE HIGHLIGHTS ───────────────────────────────────────────────── */
.feature-highlight { padding: 5rem 1.5rem; }
.feature-highlight.alt { background: var(--bg); }
.feature-highlight-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.feature-highlight-inner.reverse { direction: rtl; }
.feature-highlight-inner.reverse > * { direction: ltr; }
.feature-text .tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.6rem;
}
.feature-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin-bottom: 1rem;
}
.feature-text h2 span { color: var(--teal); }
.feature-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.feature-bullets { list-style: none; margin-bottom: 1.25rem; }
.feature-bullets li {
  font-size: 0.9rem; color: var(--muted); padding: 0.25rem 0;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.feature-bullets li::before { content: "✓"; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.feature-visual {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 220px;
}
.savings-callout {
  text-align: center;
}
.savings-callout .big-num {
  font-size: 3.5rem; font-weight: 800; color: var(--teal); line-height: 1;
}
.savings-callout .big-label { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }
.calendar-mini { width: 100%; }
.cal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem; font-size: 0.8rem; font-weight: 700; color: var(--text);
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-cell {
  aspect-ratio: 1; border-radius: 5px; display: flex; align-items: center;
  justify-content: center; font-size: 0.7rem; font-weight: 600; color: var(--muted);
}
.cal-cell.selected { background: var(--teal); color: #fff; }
.cal-cell.cheaper { background: var(--teal-xlight); color: var(--teal-dark); font-weight: 700; border: 1px solid #99f6e4; }
.cal-cell.header { font-size: 0.62rem; color: #94a3b8; font-weight: 600; }
.cal-badge {
  margin-top: 0.75rem; text-align: center; font-size: 0.75rem;
  font-weight: 700; color: var(--amber-dark);
  background: var(--amber-light); padding: 0.35rem 0.75rem;
  border-radius: 8px; display: inline-block;
}

@media (max-width: 768px) {
  .feature-highlight-inner { grid-template-columns: 1fr; }
  .feature-highlight-inner.reverse { direction: ltr; }
}

/* ── PAIN MATH ────────────────────────────────────────────────────────── */
.pain-math { background: var(--bg); }
.pain-headline {
  text-align: center; font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; margin-bottom: 0.5rem;
}
.pain-headline span { color: var(--red); }
.pain-sub { text-align: center; color: var(--muted); margin-bottom: 2rem; }
.pain-table-wrap { max-width: 680px; margin: 0 auto; }
.pain-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; font-size: 0.9rem;
}
.pain-table tr:first-child td { padding-top: 1.25rem; }
.pain-table tr:last-child td { padding-bottom: 1.25rem; border-bottom: 2px solid var(--border); }
.pain-table td { padding: 0.65rem 1.25rem; vertical-align: top; }
.pain-table td:last-child { color: var(--red); font-weight: 600; white-space: nowrap; text-align: right; }
.pain-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; background: #fff;
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 14px 14px;
}
.pain-total-label { font-weight: 700; color: var(--text); }
.pain-total-val { font-size: 1.1rem; font-weight: 800; color: var(--red); }
.pain-closer { text-align: center; margin-top: 1.5rem; font-size: 1.05rem; font-weight: 600; color: var(--teal); }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────── */
.testimonials { background: #fff; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1040px; margin: 0 auto;
}
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
}
.testimonial-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial-body {
  font-size: 0.9rem; color: var(--text); line-height: 1.6;
  margin-bottom: 1rem; font-style: italic;
}
.testimonial-author { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.testimonial-outcome { font-size: 0.78rem; color: var(--success); font-weight: 700; margin-top: 0.3rem; }
.testimonial-disclaimer {
  text-align: center; font-size: 0.75rem; color: #94a3b8;
  margin-top: 1.25rem; font-style: italic;
}

/* ── TRANSPARENCY ─────────────────────────────────────────────────────── */
.transparency {
  background: var(--teal-xlight);
  border-top: 1px solid #99f6e4;
  border-bottom: 1px solid #99f6e4;
}
.transparency-inner { max-width: 720px; margin: 0 auto; }
.transparency-header {
  text-align: center; font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800; margin-bottom: 0.5rem;
}
.transparency-sub { text-align: center; color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }
.transparency-body {
  background: #fff; border: 1px solid #99f6e4;
  border-radius: 16px; padding: 2rem;
}
.transparency-body p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.transparency-body p:last-child { margin-bottom: 0; }
.transparency-body ul { list-style: none; margin: 0.5rem 0 1rem; }
.transparency-body ul li {
  font-size: 0.92rem; color: var(--muted); padding: 0.25rem 0;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.tcheck { color: var(--success); font-weight: 700; }
.tcross { color: var(--red); font-weight: 700; }

/* ── FOUNDER ──────────────────────────────────────────────────────────── */
.founder { background: #fff; }
.founder-inner { max-width: 680px; margin: 0 auto; }
.founder-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.25rem;
}
.founder-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--teal-darker));
  border-radius: 50%; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
}
.founder-quote { font-size: 0.95rem; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; }
.founder-quote p { margin-bottom: 0.9rem; }
.founder-quote p:last-child { margin-bottom: 0; }
.founder-sig { font-weight: 700; color: var(--text); font-size: 0.9rem; }
.founder-role { font-size: 0.82rem; color: var(--muted); }
.founder-email { margin-top: 1rem; font-size: 0.82rem; color: var(--teal); font-weight: 500; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq { background: var(--bg); }
.faq-list { max-width: 680px; margin: 0 auto; }
details { border-bottom: 1px solid var(--border); }
details:first-of-type { border-top: 1px solid var(--border); }
summary {
  padding: 1.1rem 0; font-weight: 600; color: var(--text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; font-size: 0.95rem;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.2rem; color: var(--teal); font-weight: 400; flex-shrink: 0; margin-left: 1rem; }
details[open] summary::after { content: '−'; }
details[open] summary { color: var(--teal); }
.faq-answer { padding-bottom: 1.1rem; font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.faq-answer a { color: var(--teal); }

/* ── FINAL CTA ────────────────────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-darker) 100%);
  padding: 5rem 1.5rem; text-align: center;
}
.final-cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800;
  color: #fff; margin-bottom: 0.75rem;
}
.final-cta p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2rem; }
.final-cta-sub { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 1rem; }
.final-cta-trust { margin-top: 1.25rem; display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.final-cta-trust span { font-size: 0.82rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 0.3rem; }

/* ── WAITLIST SECTION ─────────────────────────────────────────────────── */
.waitlist-section {
  background: var(--bg); padding: 4rem 1.5rem;
  text-align: center; border-top: 1px solid var(--border);
}
.waitlist-inner { max-width: 540px; margin: 0 auto; }
.waitlist-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem;
}
.waitlist-section h2 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 800; margin-bottom: 0.5rem; }
.waitlist-section p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.9rem; }
.waitlist-form {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  justify-content: center; max-width: 440px; margin: 0 auto 0.75rem;
}
.waitlist-input {
  flex: 1; min-width: 200px; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.95rem; outline: none;
}
.waitlist-input:focus { border-color: var(--teal); }
.waitlist-btn {
  background: var(--teal); color: #fff; padding: 0.75rem 1.25rem;
  border: none; border-radius: 8px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: background 0.15s; white-space: nowrap;
}
.waitlist-btn:hover { background: var(--teal-dark); }
.waitlist-note { font-size: 0.78rem; color: var(--muted); }
.waitlist-success { color: var(--success); font-size: 0.88rem; font-weight: 600; margin-top: 0.5rem; display: none; }
.waitlist-error { color: var(--red); font-size: 0.82rem; margin-top: 0.4rem; display: none; }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 2.5rem 1.5rem; }
.footer-inner {
  max-width: 1040px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.4rem; font-weight: 700; color: #fff; font-size: 0.95rem; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-copy { font-size: 0.8rem; }

/* ── STICKY MOBILE CTA ────────────────────────────────────────────────── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--teal); padding: 0.85rem 1.25rem;
  align-items: center; justify-content: space-between; gap: 0.75rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
  transform: translateY(100%); transition: transform 0.25s ease;
}
.sticky-cta.visible { transform: translateY(0); }
@media (max-width: 768px) { .sticky-cta { display: flex; } }
.sticky-cta a { color: #fff; font-weight: 700; font-size: 0.95rem; text-decoration: none; }
.sticky-cta a:hover { opacity: 0.9; }
.sticky-dismiss {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1.2rem; cursor: pointer; padding: 0.2rem; line-height: 1;
}

/* ── SCROLL REVEAL ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s, transform 0.5s;
  will-change: opacity, transform;
}
.reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── LAUNCH TOGGLE ────────────────────────────────────────────────────── */
[data-launched="false"] .cta-launched { display: none !important; }
[data-launched="true"]  .cta-waitlist { display: none !important; }
