:root {
  --navy: #0B1C2C;
  --paper: #FBFAF7;
  --amber: #F2A93B;
  --steel: #2E5A78;
  --muted: #5A6B78;
  --success: #3F8F6B;
  --border: rgba(11, 28, 44, 0.12);
  --surface: #ffffff;
  --surface-alt: #f4f1ea;
  --shadow: 0 18px 40px rgba(11, 28, 44, 0.08);
  --shadow-strong: 0 28px 70px rgba(11, 28, 44, 0.18);
  --radius: 24px;
  --mono: "JetBrains Mono", "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --display: "Space Grotesk", "Archivo", "Aptos", "Segoe UI", Arial, sans-serif;
  --body: "Figtree", "Public Sans", "Aptos", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--body);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.page {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.narrow { width: min(820px, 100%); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 28, 44, 0.06);
}
.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  gap: 1rem;
}
.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}
.brand-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.92rem;
}
.brand-text { font-family: var(--display); letter-spacing: -0.02em; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--navy); }
.nav-links .nav-cta {
  padding: 0.62rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--paper);
  font-weight: 700;
}
.nav-links .nav-cta:hover { color: var(--paper); background: #122a43; }

.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 169, 59, 0.24), transparent 24%),
    radial-gradient(circle at 18% 80%, rgba(46, 90, 120, 0.34), transparent 28%),
    linear-gradient(145deg, #071522 0%, #0B1C2C 48%, #152e48 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(251,250,247,0), var(--paper));
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 5.8rem 0 7rem;
  position: relative;
  z-index: 1;
}
.eyebrow,
.section-kicker,
.mono {
  font-family: var(--mono);
  letter-spacing: 0.08em;
}
.eyebrow {
  color: var(--amber);
  font-size: 0.8rem;
  margin: 0 0 1rem;
}
.hero h1,
section h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
  max-width: 12ch;
}
.hero-subline,
.section-intro {
  font-size: 1.1rem;
  color: rgba(251, 250, 247, 0.92);
  max-width: 62ch;
  margin: 1.25rem 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.2rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(242, 169, 59, 0.25);
}
.button-primary:hover { box-shadow: 0 16px 36px rgba(242, 169, 59, 0.35); }
.button-secondary {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11, 28, 44, 0.15);
}
.text-link {
  color: var(--paper);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.hero .text-link { color: rgba(251,250,247,0.92); }
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
  color: rgba(251,250,247,0.82);
  font-size: 0.92rem;
}
.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}
.micro-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(251,250,247,0.7);
}
.flight-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.flight-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  font-size: 0.76rem;
  background: rgba(255,255,255,0.06);
  color: rgba(251,250,247,0.86);
}
.flight-display {
  padding: 1.8rem 1.4rem;
  display: grid;
  gap: 1rem;
}
.flight-display > div {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.flight-display .label {
  display: block;
  font-size: 0.72rem;
  color: rgba(251,250,247,0.7);
  margin-bottom: 0.35rem;
}
.flight-display strong {
  font-size: 1.05rem;
  color: var(--amber);
}
.hero-asset-note {
  margin: 0 1.4rem 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(251,250,247,0.1);
  color: rgba(251,250,247,0.88);
  font-size: 0.96rem;
}
.hero-asset-note p { margin: 0 0 0.4rem; }
.hero-asset-note ul { margin: 0; padding-left: 1.2rem; }

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid rgba(11, 28, 44, 0.06);
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  color: var(--steel);
  font-size: 0.85rem;
  text-align: center;
}

.section { padding: 5rem 0; }
.section-alt { background: var(--surface-alt); }
.section-kicker {
  color: var(--steel);
  font-size: 0.78rem;
  margin: 0 0 0.7rem;
}
section h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 14ch;
}
.section-intro {
  color: var(--muted);
  margin-top: 1rem;
}
.route-section {
  position: relative;
}
.route-section::before { display: none; }
.icon-list,
.feature-grid,
.two-column-card,
.about-grid,
.guarantee-grid,
.footer-inner {
  display: grid;
  gap: 1.5rem;
}
.icon-list {
  margin-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
.icon-card,
.feature-card,
.list-card,
.about-photo-card,
.social-proof-box,
.freebie-banner,
.legal-box,
.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.icon-card {
  padding: 1.2rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.icon-bullet {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(242, 169, 59, 0.14);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 0.82rem;
}
.icon-card p { margin: 0; color: var(--muted); }
.closing-line {
  font-weight: 700;
  margin-top: 1.8rem;
  font-size: 1.15rem;
}
.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}
.feature-card {
  padding: 1.45rem;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 0 1.2rem;
  height: 3px;
  background: linear-gradient(90deg, rgba(242,169,59,0), rgba(242,169,59,0.85), rgba(242,169,59,0));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.feature-card:hover::after { opacity: 1; }
.featured-card {
  border-color: rgba(242,169,59,0.45);
  background: linear-gradient(180deg, rgba(242,169,59,0.08), #fff 48%);
}
.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11,28,44,0.06);
  color: var(--steel);
  font-size: 0.72rem;
  margin-bottom: 0.8rem;
}
.feature-card h3,
.list-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.feature-card p,
.list-card li,
.freebie-banner p,
.social-proof-box p,
.offer-anchor,
.footer-note,
.legal-box,
.content p,
.content li {
  color: var(--muted);
}
.fact-note {
  margin-top: 1.2rem;
  font-size: 0.98rem;
  color: var(--steel);
}
.two-column-card { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
.list-card { padding: 1.6rem; }
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.check-list li {
  position: relative;
  padding-left: 1.7rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
}
.cross-list li::before { content: "–"; color: var(--steel); }
.about-grid { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
.about-photo-card {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(46,90,120,0.08), rgba(242,169,59,0.12));
}
.about-photo-card p { margin: 0.4rem 0; }
.system-snapshot {
  padding-top: 0;
  background: linear-gradient(180deg, var(--surface-alt), var(--paper));
}
.snapshot-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--navy);
  color: var(--paper);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
}
.snapshot-card::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(242,169,59,0.18);
}
.snapshot-card h2 { color: var(--paper); }
.snapshot-card .section-intro { color: rgba(251,250,247,0.78); }
.snapshot-card .section-kicker { color: var(--amber); }
.mini-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}
.mini-steps li {
  counter-increment: step;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 700;
}
.mini-steps { counter-reset: step; }
.mini-steps li::before {
  content: counter(step, decimal-leading-zero) " · ";
  color: var(--amber);
  font-family: var(--mono);
}
.freebie-banner {
  padding: 1.7rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.3rem;
  border-color: rgba(242, 169, 59, 0.45);
  background: linear-gradient(135deg, rgba(242,169,59,0.16), rgba(255,255,255,0.95));
}
.guarantee-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.guarantee-badge {
  justify-self: center;
  width: min(280px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(63,143,107,0.14), rgba(63,143,107,0.02));
  border: 2px solid rgba(63,143,107,0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--success);
}
.badge-ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(63,143,107,0.12);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--mono);
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}
.boarding-pass {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid rgba(11, 28, 44, 0.14);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  overflow: hidden;
  position: relative;
}
.boarding-pass::after {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  right: 37.5%;
  width: 0;
  border-right: 2px dashed rgba(11, 28, 44, 0.14);
  pointer-events: none;
}
.boarding-pass::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 37.5%;
  width: 24px;
  height: 24px;
  transform: translate(50%, -50%);
  border-radius: 50%;
  background: var(--bg-soft);
  box-shadow: 0 -310px 0 0 var(--bg-soft), 0 310px 0 0 var(--bg-soft);
  pointer-events: none;
}
.boarding-main,
.boarding-stub { padding: 2rem; }
.boarding-topline,
.stub-label,
.offer-price {
  color: var(--steel);
}
.boarding-topline { margin: 0 0 0.7rem; font-size: 0.84rem; }
.offer-list {
  margin: 1.6rem 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.offer-list li {
  padding-left: 1.7rem;
  position: relative;
}
.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.offer-anchor { margin: 1.2rem 0 0; }
.boarding-stub {
  background: linear-gradient(180deg, rgba(242,169,59,0.15), rgba(242,169,59,0.02));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.offer-price {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0.25rem 0 0;
  color: var(--navy);
}
.one-time { margin: 0.35rem 0 1.4rem; color: var(--muted); }
.full-width { width: 100%; }
.boarding-stub .button { position: relative; z-index: 1; }
.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
}
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  padding: 0 1.1rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding: 1rem 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p { margin: 0 0 1rem; color: var(--muted); }
.social-proof-box { padding: 1.6rem; }
.final-cta { padding-bottom: 8rem; }
.centered-actions { justify-content: center; }
.final-cta .text-link { color: var(--steel); }
.site-footer {
  padding: 2rem 0 7rem;
  border-top: 1px solid rgba(11, 28, 44, 0.06);
  background: var(--paper);
}
.footer-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
}
.footer-note { margin: 0.4rem 0 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  justify-content: flex-end;
}
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--navy); }
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(251,250,247,0.98), rgba(251,250,247,0.86));
  border-top: 1px solid rgba(11, 28, 44, 0.08);
}

.content {
  padding: 4rem 0 5rem;
}
.content h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}
.content h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}
.legal-box,
.content-card {
  padding: 1.5rem;
}
.small { color: var(--muted); font-size: 0.92rem; }

@media (min-width: 961px) {
  .mobile-sticky-cta { display: none; }
}

@media (max-width: 960px) {
  .hero-layout,
  .snapshot-card,
  .feature-grid,
  .two-column-card,
  .about-grid,
  .guarantee-grid,
  .boarding-pass,
  .footer-inner,
  .freebie-banner,
  .trust-items,
  .icon-list {
    grid-template-columns: 1fr;
  }
  .boarding-pass::after { display: none; }
  .trust-items { text-align: left; }
  .footer-links { justify-content: flex-start; }
  .site-footer { padding-bottom: 7.5rem; }
  .hero-layout { padding: 4.6rem 0 6rem; }
  .nav-shell { min-height: auto; padding: 0.9rem 0; align-items: flex-start; }
  .nav-links { gap: 0.8rem 1rem; }
  .route-section::before { left: 1rem; }
}

@media (max-width: 720px) {
  .page { width: min(100% - 1.2rem, 1120px); }
  .hero h1 { font-size: 2.6rem; }
  section h2 { font-size: 2rem; max-width: none; }
  .hero-subline,
  .section-intro { font-size: 1rem; }
  .button { width: 100%; }
  .hero-actions { align-items: stretch; }
  .nav-links { display: none; }
  .system-snapshot {
  padding-top: 0;
  background: linear-gradient(180deg, var(--surface-alt), var(--paper));
}
.snapshot-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--navy);
  color: var(--paper);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
}
.snapshot-card::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(242,169,59,0.18);
}
.snapshot-card h2 { color: var(--paper); }
.snapshot-card .section-intro { color: rgba(251,250,247,0.78); }
.snapshot-card .section-kicker { color: var(--amber); }
.mini-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}
.mini-steps li {
  counter-increment: step;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 700;
}
.mini-steps { counter-reset: step; }
.mini-steps li::before {
  content: counter(step, decimal-leading-zero) " · ";
  color: var(--amber);
  font-family: var(--mono);
}
.freebie-banner { padding: 1.3rem; }
  .boarding-main,
  .boarding-stub,
  .feature-card,
  .list-card,
  .about-photo-card,
  .social-proof-box,
  .icon-card,
  .legal-box,
  .content-card,
  .faq-list details { padding-left: 1rem; padding-right: 1rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: fadeUp 0.7s ease both; }
  .hero-copy { animation-delay: 0.05s; }
  .hero-visual { animation-delay: 0.18s; }
}

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

.product-showcase {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.2rem;
}
.product-showcase::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,169,59,0.22), transparent 62%);
  filter: blur(8px);
  z-index: -1;
}
.mockup-device {
  width: min(360px, 78vw);
  padding: 0.65rem;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.34);
  transform: rotate(2.5deg);
}
.mockup-device img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}
.compact-panel {
  width: min(420px, 90%);
  transform: translateY(-12px) rotate(-1deg);
}
.compact-panel .flight-display {
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem;
}
@media (max-width: 720px) {
  .mockup-device { width: min(310px, 82vw); transform: rotate(0deg); }
  .compact-panel { transform: none; width: 100%; }
  .compact-panel .flight-display { grid-template-columns: 1fr; }
}

/* Brevo confirmation pages */
.confirmation-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
}
.confirmation-main {
  flex: 1;
}
.confirmation-hero {
  min-height: calc(100vh - 170px);
  display: grid;
  align-items: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.confirmation-hero::before,
.confirmation-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.confirmation-hero::before {
  width: 440px;
  height: 440px;
  right: -150px;
  top: -160px;
  background: radial-gradient(circle, rgba(242,169,59,0.24), transparent 66%);
}
.confirmation-hero::after {
  width: 520px;
  height: 520px;
  left: -240px;
  bottom: -260px;
  border: 1px solid rgba(242,169,59,0.22);
}
.confirmation-shell {
  display: grid;
  justify-items: center;
  position: relative;
  z-index: 1;
}
.confirmation-card {
  width: min(100%, 720px);
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--paper);
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(0,0,0,0.32);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.5);
}
.confirmation-card h1 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  letter-spacing: -0.055em;
  color: var(--navy);
}
.confirmation-card > p:not(.section-kicker) {
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}
.confirmation-card .confirmation-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1rem;
}
.confirmation-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(242,169,59,0.17);
  color: var(--amber-dark, #b87812);
  font-size: 2rem;
  font-weight: 800;
  border: 1px solid rgba(242,169,59,0.38);
}
.confirmation-icon.success {
  background: rgba(63,143,107,0.14);
  color: var(--success);
  border-color: rgba(63,143,107,0.34);
}
.confirmation-note {
  margin: 1.7rem auto 2rem;
  padding: 1.15rem 1.25rem;
  max-width: 590px;
  text-align: left;
  border-radius: 18px;
  background: rgba(242,169,59,0.10);
  border: 1px solid rgba(242,169,59,0.28);
  display: grid;
  gap: 0.35rem;
}
.confirmation-note span { color: var(--muted); }
.confirmation-note.success-note {
  background: rgba(63,143,107,0.09);
  border-color: rgba(63,143,107,0.25);
}
.confirmation-card .button {
  min-width: min(100%, 320px);
  justify-content: center;
}
.confirmation-footer {
  padding-bottom: 2rem;
}
.confirmation-page .site-header,
.confirmation-page .site-footer {
  background: var(--paper);
}
@media (max-width: 720px) {
  .confirmation-hero { padding: 2.2rem 0 3rem; }
  .confirmation-card { border-radius: 24px; padding: 2rem 1.2rem; }
  .confirmation-icon { width: 66px; height: 66px; }
}

.confirmation-icon.neutral {
  background: rgba(46,90,120,0.12);
  color: var(--steel);
  border-color: rgba(46,90,120,0.28);
}
.confirmation-note.neutral-note {
  background: rgba(46,90,120,0.08);
  border-color: rgba(46,90,120,0.20);
}

/* Embedded Brevo forms */
.form-page {
  min-height: 100vh;
  background: var(--navy);
}
.form-page .site-header,
.form-page .site-footer {
  background: var(--paper);
}
.form-main {
  background:
    radial-gradient(circle at 15% 10%, rgba(46,90,120,0.26), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(242,169,59,0.14), transparent 28%),
    var(--navy);
}
.form-hero {
  padding: 4.5rem 0 5rem;
}
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.compact-form-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}
.form-intro h1 {
  margin: 0.6rem 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  color: white;
}
.form-intro > p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
}
.form-page .section-kicker { color: var(--amber); }
.embedded-form-card {
  background: white;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,0.3);
}
.embedded-form-card iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: white;
}
.unsubscribe-card iframe { min-height: 560px; }
.form-fallback {
  margin: 0;
  padding: 0.9rem 1.2rem 1.1rem;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid rgba(11,28,44,0.08);
}
.form-fallback a { color: var(--steel); font-weight: 700; }
@media (max-width: 900px) {
  .form-hero { padding: 2.5rem 0 3rem; }
  .form-shell,
  .compact-form-shell { grid-template-columns: 1fr; gap: 2rem; }
  .form-intro { text-align: center; }
  .form-intro > p:not(.section-kicker) { margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  .form-hero { padding-top: 1.5rem; }
  .embedded-form-card { border-radius: 18px; margin-inline: -0.25rem; }
  .embedded-form-card iframe { min-height: 820px; }
  .unsubscribe-card iframe { min-height: 620px; }
}

/* Freebie download page */
.download-fallback {
  margin-top: 0.85rem !important;
  font-size: 0.9rem;
}
.download-fallback a {
  color: var(--steel);
  font-weight: 700;
}
.download-divider {
  width: min(100%, 520px);
  margin: 2rem auto 1.6rem;
  border: 0;
  border-top: 1px solid rgba(11,28,44,0.12);
}
.confirmation-card .button-secondary {
  margin-top: 0.65rem;
}
