/* Seatcue website */
@font-face { font-family: "Onest"; src: url("../fonts/onest-var.woff2") format("woff2"); font-weight: 400 700; font-display: swap; }
@font-face { font-family: "Big Shoulders"; src: url("../fonts/bigshoulders-800.woff2") format("woff2"); font-weight: 800; font-display: optional; }
:root {
  --ink: #15131B; --muted: #625F74; --line: #E7E4EE; --paper: #F6F5F9; --white: #fff;
  --red: #D7263D; --red-dark: #B51E32; --red-soft: #FDECEF; --red-on-dark: #FF4660;
  --amber: #FFB21E; --amber-soft: #FFF6E0; --amber-ink: #7A4F00;
  --blue: #2F55F0; --blue-soft: #EAF0FF; --mint: #1FB57F; --mint-soft: #E3F6EE; --mint-ink: #0B6B47;
  --radius: 22px; --shadow: 0 24px 60px -24px rgba(21, 19, 27, .28);
  --display: "Big Shoulders", "Arial Narrow", Impact, sans-serif; --body: "Onest", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body { margin: 0; font-family: var(--body); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--white); text-rendering: optimizeLegibility; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 6px; }
.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; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 700; text-decoration: none; }
.skip:focus { top: 12px; }
.wrap { width: min(1160px, 100% - 40px); margin-inline: auto; }
.narrow { width: min(780px, 100% - 40px); margin-inline: auto; }
.display { font-family: var(--display); font-weight: 800; line-height: .92; letter-spacing: -.01em; }
.h1 { font-size: clamp(52px, 8.4vw, 104px); }
.h2 { font-size: clamp(40px, 5.6vw, 68px); }
.h3 { font-size: clamp(26px, 3vw, 32px); line-height: 1; }
.lede { font-size: clamp(18px, 2vw, 21px); color: var(--muted); max-width: 640px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; }
.seat { display: inline-block; width: 11px; height: 13px; border-radius: 6px 6px 2px 2px; background: var(--red); flex: none; }
.seat.amber { background: var(--amber); } .seat.blue { background: var(--blue); } .seat.mint { background: var(--mint); } .seat.ink { background: var(--ink); }
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section.paper { background: var(--paper); }
.section-head { display: grid; gap: 18px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { text-align: center; justify-items: center; }
.red { color: var(--red); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 16px; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px -10px rgba(215, 38, 61, .7); }
.btn-primary:hover { background: var(--red-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-sm { min-height: 40px; padding: 8px 18px; font-size: 15px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.micro { font-size: 14px; color: var(--muted); }

/* header */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, .9); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s; }
.site-header.scrolled { border-bottom-color: var(--line); }
.header-row { display: flex; align-items: center; gap: 24px; height: 72px; }
.logo { display: inline-flex; flex: none; }
.logo img { width: 132px; height: 29px; }
.nav { display: flex; gap: 6px; margin-left: 8px; }
.nav a { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--muted); padding: 8px 12px; border-radius: 999px; }
.nav a:hover { color: var(--ink); background: var(--paper); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.link-quiet { font-weight: 600; font-size: 15px; text-decoration: none; padding: 8px 10px; }
.menu-btn { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.menu-btn span, .menu-btn span::before, .menu-btn span::after { display: block; width: 18px; height: 2px; background: var(--ink); margin: 0 auto; position: relative; content: ""; border-radius: 2px; }
.menu-btn span::before { position: absolute; top: -6px; } .menu-btn span::after { position: absolute; top: 6px; }
.mobile-nav { display: none; }
@media (max-width: 900px) {
  .nav, .header-actions { display: none; }
  .menu-btn { display: block; }
  .mobile-nav.open { display: grid; gap: 4px; padding: 8px 20px 20px; border-bottom: 1px solid var(--line); background: #fff; }
  .mobile-nav a:not(.btn) { text-decoration: none; font-weight: 600; font-size: 18px; padding: 12px 4px; border-bottom: 1px solid var(--paper); }
  .mobile-nav .btn { margin-top: 12px; }
}

/* hero */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 7vw, 88px) 0 0; background: linear-gradient(180deg, #fff 0%, #fff 55%, var(--paper) 100%); }
.hero-copy { display: grid; justify-items: center; text-align: center; gap: 22px; }
.hero-copy .lede { margin-inline: auto; }
.hero-visual { position: relative; margin-top: clamp(40px, 6vw, 64px); }
.browser { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: #FBFAFD; }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #DDD9E4; }
.browser-bar span { margin-left: 10px; font-size: 12px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 2px 12px; }
.hero-frame { width: min(940px, 100%); margin-inline: auto; position: relative; z-index: 1; }
.hero-frame .browser { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom: 0; }
.float-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow); font-size: 14px; font-weight: 600; max-width: 250px; line-height: 1.3; }
.float-chip small { display: block; font-weight: 400; color: var(--muted); font-size: 13px; }
.chip-a { left: max(0px, calc(50% - 600px)); top: 18%; }
.chip-b { right: max(0px, calc(50% - 600px)); top: 42%; }
@media (max-width: 1100px) { .float-chip { display: none; } }
.watch { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; background: none; border: none; cursor: pointer; padding: 8px 4px; font-size: 16px; }
.watch i { width: 36px; height: 36px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; }
.watch i::after { content: ""; border-left: 11px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }

/* formats strip */
.formats { border-block: 1px solid var(--line); background: #fff; padding: 18px 0; }
.formats ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; font-weight: 600; color: var(--muted); font-size: 15px; }
.formats li { display: inline-flex; align-items: center; gap: 8px; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; }
.stat b { display: block; font-family: var(--display); font-size: 64px; line-height: .9; }
.stat strong { display: block; margin-top: 10px; font-size: 17px; }
.stat p { color: var(--muted); font-size: 15px; margin-top: 6px; line-height: 1.45; }
@media (max-width: 980px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } .stat:last-child { grid-column: 1 / -1; } }
@media (max-width: 420px) { .stats { grid-template-columns: minmax(0, 1fr); } }

/* product tour */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.tab { display: inline-flex; align-items: center; gap: 9px; min-height: 46px; padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-weight: 700; font-size: 16px; cursor: pointer; }
.tab[aria-selected="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.panel { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 64px); align-items: center; border-radius: 32px; padding: clamp(24px, 4vw, 48px); }
.panel[hidden] { display: none; }
.panel.plan { background: var(--amber-soft); } .panel.promote { background: var(--red-soft); } .panel.page { background: var(--red-soft); } .panel.sales { background: var(--blue-soft); } .panel.report { background: var(--mint-soft); }
.panel h3 { margin-bottom: 14px; }
.ticks { list-style: none; padding: 0; display: grid; gap: 14px; margin-top: 18px; }
.ticks li { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 12px; align-items: start; }
.ticks li .seat { margin-top: 6px; }
.ticks strong { display: block; }
.ticks span { color: var(--muted); font-size: 16px; }
.shot { border-radius: 18px; overflow: hidden; border: 1px solid rgba(21, 19, 27, .08); box-shadow: var(--shadow); background: #fff; }
@media (max-width: 860px) { .panel { grid-template-columns: minmax(0, 1fr); } }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; counter-reset: step; }
.step { border-radius: var(--radius); padding: 28px; background: var(--paper); }
.step:nth-child(1) { background: var(--amber-soft); } .step:nth-child(2) { background: var(--red-soft); } .step:nth-child(3) { background: var(--mint-soft); }
.step b { font-family: var(--display); font-size: 56px; line-height: 1; display: block; }
.step:nth-child(1) b { color: var(--amber-ink); } .step:nth-child(2) b { color: var(--red); } .step:nth-child(3) b { color: var(--mint-ink); }
.step h3 { margin: 12px 0 8px; }
.step p { color: var(--ink); font-size: 16px; }
@media (max-width: 860px) { .steps { grid-template-columns: minmax(0, 1fr); } }

/* two columns */
.duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.duo-card { border-radius: 28px; padding: clamp(24px, 4vw, 40px); }
.duo-card.host { background: var(--red-soft); } .duo-card.sponsor { background: var(--blue-soft); }
.duo-card h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.duo-card ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.duo-card li { background: #fff; border-radius: 14px; padding: 12px 16px; font-weight: 600; font-size: 16px; }
@media (max-width: 860px) { .duo { grid-template-columns: minmax(0, 1fr); } }

/* program */
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: minmax(0, 1fr); } }

/* compare */
.compare { display: grid; gap: 12px; }
.compare-row { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 4fr) minmax(0, 5fr); gap: 18px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px 22px; }
.compare-row h3 { font-family: var(--display); font-size: 24px; line-height: 1; }
.compare-row p { color: var(--muted); font-size: 16px; }
.compare-row .adds { background: var(--red-soft); border-radius: 12px; padding: 10px 14px; font-size: 16px; color: var(--ink); }
.compare-note { margin-top: 18px; color: var(--muted); font-size: 16px; }
@media (max-width: 860px) { .compare-row { grid-template-columns: minmax(0, 1fr); gap: 8px; } }

/* trust */
.trust { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.trust div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.trust h3 { font-family: var(--display); font-size: 26px; line-height: 1; margin: 14px 0 8px; }
.trust p { color: var(--muted); font-size: 15px; }
@media (max-width: 980px) { .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .trust { grid-template-columns: minmax(0, 1fr); } }

/* pricing */
.billing { display: inline-flex; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px; }
.billing label { position: relative; cursor: pointer; }
.billing input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.billing span { display: inline-block; padding: 8px 18px; border-radius: 999px; font-weight: 700; font-size: 15px; }
.billing input:checked + span { background: var(--ink); color: #fff; }
.billing input:focus-visible + span { outline: 3px solid var(--ink); outline-offset: 2px; }
.save { color: var(--mint-ink); font-weight: 700; font-size: 14px; }
.plans { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 28px; }
.plan-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 26px 22px; }
.plan-card.featured { border: 2px solid var(--ink); }
.plan-card h3 { font-family: var(--display); font-size: 30px; line-height: 1; }
.plan-card .for { color: var(--muted); font-size: 15px; margin: 8px 0 16px; min-height: 66px; line-height: 1.45; }
.price { display: flex; align-items: baseline; gap: 6px; }
.price b { font-family: var(--display); font-size: 56px; line-height: 1; }
.price span { color: var(--muted); font-size: 15px; }
.price-note { color: var(--muted); font-size: 13px; min-height: 20px; }
.plan-card ul { list-style: none; padding: 0; margin: 18px 0 22px; display: grid; gap: 9px; font-size: 15px; }
.plan-card li { display: grid; grid-template-columns: 16px minmax(0, 1fr); gap: 10px; line-height: 1.4; }
.plan-card li::before { content: ""; width: 9px; height: 11px; margin-top: 5px; border-radius: 5px 5px 2px 2px; background: var(--ink); }
.plan-card .btn { margin-top: auto; }
.extras { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.extras div { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px 22px; display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; justify-content: space-between; }
.extras p { color: var(--muted); font-size: 15px; flex: 1 1 260px; }
.extras strong { color: var(--ink); }
.vat { margin-top: 14px; color: var(--muted); font-size: 14px; text-align: center; }
@media (max-width: 1040px) { .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .plans, .extras { grid-template-columns: minmax(0, 1fr); } }

/* roi */
.roi { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.roi-inputs, .roi-out { border-radius: 28px; padding: clamp(22px, 4vw, 36px); }
.roi-inputs { background: #fff; border: 1px solid var(--line); display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; }
.roi-inputs select { width: 100%; max-width: 100%; }
.roi-out { min-width: 0; }
.roi-out { background: var(--ink); color: #fff; display: grid; align-content: center; gap: 14px; }
.field-row { display: grid; gap: 6px; }
.field-row label { font-weight: 600; font-size: 15px; display: flex; justify-content: space-between; gap: 8px; }
.field-row output { font-variant-numeric: tabular-nums; color: var(--muted); }
input[type="range"] { width: 100%; accent-color: var(--red); height: 28px; }
.roi-line { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid #2E2A38; padding-bottom: 10px; font-size: 16px; color: #CFCBD8; }
.roi-line b { color: #fff; font-variant-numeric: tabular-nums; }
.roi-net { font-family: var(--display); font-size: clamp(56px, 8vw, 84px); line-height: .9; color: var(--red-on-dark); }
.roi-out small { color: #A9A6B6; font-size: 14px; }
@media (max-width: 860px) { .roi { grid-template-columns: minmax(0, 1fr); } }

/* faq */
.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 22px; font-weight: 700; font-size: 18px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 24px; top: 50%; width: 12px; height: 12px; border-right: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details > div { padding: 0 22px 22px; color: var(--muted); }
.faq details > div p + p { margin-top: 10px; }

/* final cta */
.final { background: var(--ink); color: #fff; border-radius: 36px; padding: clamp(40px, 7vw, 88px) clamp(24px, 5vw, 64px); display: grid; gap: 22px; justify-items: center; text-align: center; position: relative; overflow: hidden; }
.final .lede { color: #CFCBD8; }
.final .display span { color: var(--red-on-dark); }
.final .micro { color: #A9A6B6; }

/* footer */
.site-footer { padding: 56px 0 36px; border-top: 1px solid var(--line); margin-top: clamp(72px, 10vw, 128px); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)); gap: 28px; }
.footer-grid h2 { font-size: 14px; text-transform: none; color: var(--muted); margin-bottom: 12px; font-weight: 700; }
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.footer-grid a, .footer-grid button.linklike { text-decoration: none; font-weight: 600; font-size: 15px; }
.footer-grid a:hover, .footer-grid button.linklike:hover { text-decoration: underline; text-underline-offset: 3px; }
.linklike { background: none; border: none; padding: 0; cursor: pointer; text-align: left; }
.footer-grid p { color: var(--muted); font-size: 15px; margin-top: 12px; max-width: 320px; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 14px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 440px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }
.footer-grid a { overflow-wrap: anywhere; }

/* dialogs */
dialog { border: none; border-radius: 28px; padding: 0; width: min(560px, calc(100% - 24px)); max-height: calc(100% - 24px); box-shadow: 0 40px 120px -20px rgba(21, 19, 27, .5); color: var(--ink); }
dialog::backdrop { background: rgba(21, 19, 27, .6); backdrop-filter: blur(3px); }
.dialog-inner { padding: clamp(22px, 4vw, 34px); }
.dialog-head { display: flex; justify-content: space-between; align-items: start; gap: 16px; margin-bottom: 8px; }
.close { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 22px; line-height: 1; flex: none; }
dialog.video { width: min(1000px, calc(100% - 24px)); background: #000; }
dialog.video .dialog-inner { padding: 0; position: relative; }
dialog.video .close { position: absolute; right: 10px; top: 10px; z-index: 2; }
dialog.video video { width: 100%; aspect-ratio: 4 / 3; background: #000; }

/* form */
.form { display: grid; gap: 14px; margin-top: 16px; }
.form .two { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
@media (max-width: 520px) { .form .two { grid-template-columns: minmax(0, 1fr); } }
.form label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 5px; }
.form input:not([type="checkbox"]), .form select, .form textarea { width: 100%; border: 1.5px solid #D9D5E2; border-radius: 12px; padding: 11px 13px; font-size: 16px; background: #fff; }
.form textarea { resize: vertical; min-height: 84px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 3px solid var(--ink); outline-offset: 1px; border-color: var(--ink); }
.form [aria-invalid="true"] { border-color: var(--red-dark) !important; }
.err { color: var(--red-dark); font-size: 14px; font-weight: 600; margin-top: 4px; }
.err:empty { display: none; }
.check { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 10px; font-size: 14px; color: var(--muted); align-items: start; }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--red); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { border-radius: 14px; padding: 14px 16px; font-weight: 600; }
.form-status.ok { background: var(--mint-soft); color: var(--mint-ink); }
.form-status.bad { background: var(--red-soft); color: var(--red-dark); }
.form-status:empty { display: none; }
.req { color: var(--red-dark); }

/* consent */
.consent { position: fixed; z-index: 60; left: 16px; right: 16px; bottom: 16px; max-width: 560px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 30px 80px -20px rgba(21, 19, 27, .45); padding: 20px 22px; }
.consent[hidden] { display: none; }
.consent h2 { font-size: 17px; margin-bottom: 6px; }
.consent p { font-size: 15px; color: var(--muted); }
.consent .cta-row { margin-top: 14px; }
.consent .btn { min-height: 44px; padding: 9px 18px; font-size: 15px; }
.consent-opts { display: grid; gap: 10px; margin-top: 14px; }
.consent-opts[hidden] { display: none; }
.consent-opt { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: center; background: var(--paper); border-radius: 14px; padding: 12px 14px; font-size: 14px; }
.consent-opt strong { display: block; font-size: 15px; }
.consent-opt input { width: 22px; height: 22px; accent-color: var(--red); }

/* mobile sticky cta */
.sticky-cta { position: fixed; z-index: 30; left: 0; right: 0; bottom: 0; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .95); border-top: 1px solid var(--line); display: none; gap: 10px; transform: translateY(110%); transition: transform .25s ease; }
.sticky-cta.show { transform: none; }
.sticky-cta .btn { flex: 1; }
@media (max-width: 760px) { .sticky-cta { display: flex; } body.has-sticky { padding-bottom: 76px; } }

/* legal and 404 */
.legal { padding: clamp(48px, 7vw, 88px) 0 0; }
.legal h1 { margin-bottom: 12px; }
.legal .meta { color: var(--muted); font-size: 15px; margin-bottom: 36px; }
.legal h2 { font-size: 24px; margin: 40px 0 12px; line-height: 1.25; }
.legal p, .legal li { color: #3C3947; }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 22px; display: grid; gap: 8px; margin-top: 12px; }
.table-wrap { overflow-x: auto; margin-top: 14px; border-radius: 12px; }
.table-wrap:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.legal table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 15px; }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.legal th { background: var(--paper); font-weight: 700; }
.toc { background: var(--paper); border-radius: 18px; padding: 18px 22px; }
.toc ol { padding-left: 20px; columns: 2; column-gap: 28px; font-size: 15px; }
@media (max-width: 600px) { .toc ol { columns: 1; } }
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 64px 0; }
.empty-house { display: grid; grid-template-columns: repeat(5, 28px); gap: 10px; justify-content: center; margin: 0 auto 28px; }
.empty-house i { width: 28px; height: 34px; border-radius: 14px 14px 5px 5px; background: #E4E1EA; }
.empty-house i.lit { background: var(--red); }

/* ================= motion ================= */
@keyframes rise { from { opacity: .01; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes drift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(6%, 8%) scale(1.12); } }
@keyframes drift2 { 0%, 100% { transform: translate(0, 0) scale(1.05); } 50% { transform: translate(-8%, -6%) scale(.95); } }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(.85); } 20%, 60% { opacity: 1; transform: none; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes sheetUp { from { opacity: 0; transform: translateY(28px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes spin { to { --angle: 360deg; } }
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }

/* hero entrance, runs without JavaScript */
.hero-copy > * { animation: rise .8s cubic-bezier(.2, .7, .2, 1) both; }
.hero-copy > :nth-child(2) { animation-delay: .06s; } .hero-copy > :nth-child(3) { animation-delay: .14s; }
.hero-copy > :nth-child(4) { animation-delay: .22s; } .hero-copy > :nth-child(5) { animation-delay: .3s; }
.hero-visual { animation: rise 1s .25s cubic-bezier(.2, .7, .2, 1) both; }
.hero > .wrap, .hero-visual { position: relative; z-index: 1; }
.hero-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora { position: absolute; width: 58vw; height: 58vw; max-width: 760px; max-height: 760px; border-radius: 50%; opacity: .75; }
.aurora.a1 { left: -12vw; top: -18vw; background: radial-gradient(closest-side, rgba(255, 178, 30, .28), transparent 70%); animation: drift1 18s ease-in-out infinite; }
.aurora.a2 { right: -14vw; top: -6vw; background: radial-gradient(closest-side, rgba(215, 38, 61, .2), transparent 70%); animation: drift2 22s ease-in-out infinite; }
.seatfield { position: absolute; left: 0; right: 0; top: 0; height: 62%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='52'%3E%3Cpath d='M17 8a9 9 0 0 1 9 9v10.5a3.5 3.5 0 0 1-3.5 3.5h-11A3.5 3.5 0 0 1 8 27.5V17a9 9 0 0 1 9-9z' fill='%23ECEAF1'/%3E%3C/svg%3E"); background-size: 44px 52px; -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.85) 10%, transparent 24%, transparent 76%, rgba(0,0,0,.85) 90%, #000 100%); mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.85) 10%, transparent 24%, transparent 76%, rgba(0,0,0,.85) 90%, #000 100%); }
.lit { position: absolute; width: 18px; height: 23px; border-radius: 9px 9px 4px 4px; background: var(--red); opacity: 0; animation: twinkle 7s ease-in-out infinite; }
.lit.amber { background: var(--amber); }
@media (max-width: 760px) { .seatfield, .lit { display: none; } }
.float-chip { animation: float 6s ease-in-out infinite; }
.chip-b { animation-delay: -3s; }

/* screenshot flattens as it scrolls into view (supporting browsers) */
@supports (animation-timeline: view()) {
  @keyframes flatten { from { transform: perspective(1400px) rotateX(16deg) scale(.93); } to { transform: perspective(1400px) rotateX(0) scale(1); } }
  .hero-frame .browser { transform-origin: 50% 100%; animation: flatten linear both; animation-timeline: view(); animation-range: entry 10% cover 45%; }
}

/* reading progress */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 70; background: linear-gradient(90deg, var(--amber), var(--red)); transform-origin: 0 50%; transform: scaleX(0); display: none; pointer-events: none; }
@supports (animation-timeline: scroll()) {
  @keyframes grow { to { transform: scaleX(1); } }
  .progress { display: block; animation: grow linear both; animation-timeline: scroll(root); }
}

/* scroll reveal, only when JavaScript runs */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1); transition-delay: var(--d, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }

/* formats ticker */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.formats .marquee ul { flex-wrap: nowrap; padding-right: 28px; }

/* tabs cross-fade */
.panel:not([hidden]) { animation: panelIn .45s cubic-bezier(.2, .7, .2, 1) both; }

/* hover lift */
@media (hover: hover) {
  .stat, .trust > div, .plan-card, .compare-row, .step, .duo-card, .shot { transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s ease; }
  .stat:hover, .trust > div:hover, .plan-card:hover, .compare-row:hover, .step:hover { transform: translateY(-5px); box-shadow: 0 22px 48px -26px rgba(21, 19, 27, .35); }
  .shot:hover { transform: translateY(-4px) rotate(-.3deg); }
  .btn-primary { position: relative; overflow: hidden; }
  .btn-primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%); transform: translateX(-120%); transition: transform .7s ease; }
  .btn-primary:hover::after { transform: translateX(120%); }
}

/* featured plan: rotating gradient border */
.plan-card.featured { border: 2px solid transparent; background: linear-gradient(#fff, #fff) padding-box, conic-gradient(from var(--angle), var(--red), var(--amber), var(--blue), var(--mint), var(--red)) border-box; }
@media (hover: hover) and (min-width: 1000px) {
  .plan-card.featured { animation: spin 8s linear infinite paused; }
  .plans.on-screen .plan-card.featured { animation-play-state: running; }
}
/* decorative loops pause when scrolled away */
.paused .aurora, .paused .lit, .paused .float-chip, .paused .marquee-track { animation-play-state: paused; }
.plan-card { position: relative; }
.plan-card .badge { position: absolute; top: -13px; left: 20px; font-size: 12px; font-weight: 700; background: var(--red); color: #fff; border-radius: 999px; padding: 4px 12px; box-shadow: 0 6px 16px -8px rgba(215, 38, 61, .8); }

/* final call to action seats */
.final > * { position: relative; z-index: 1; }
.final-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.final-deco::before { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='52'%3E%3Cpath d='M17 8a9 9 0 0 1 9 9v10.5a3.5 3.5 0 0 1-3.5 3.5h-11A3.5 3.5 0 0 1 8 27.5V17a9 9 0 0 1 9-9z' fill='%23231F2C'/%3E%3C/svg%3E"); background-size: 44px 52px; -webkit-mask-image: radial-gradient(ellipse at 50% 120%, #000 20%, transparent 70%); mask-image: radial-gradient(ellipse at 50% 120%, #000 20%, transparent 70%); }
.final-deco::after { content: ""; position: absolute; left: 50%; bottom: -40%; width: 80%; height: 80%; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(255, 70, 96, .35), transparent); }
.final-deco .lit { background: var(--red-on-dark); }

/* ================= cookie pop-up ================= */
.consent { max-width: 460px; padding: 22px; border-radius: 26px; animation: sheetUp .5s cubic-bezier(.2, .7, .2, 1) both; }
.consent-top { display: flex; gap: 14px; align-items: flex-start; }
.consent-icon { flex: none; width: 46px; height: 46px; border-radius: 14px; background: var(--amber-soft); display: grid; place-items: center; }
.consent-icon svg { width: 26px; height: 26px; }
.consent .cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.consent .cta-row .btn { width: 100%; }
.consent #consent-more, .consent #consent-save { grid-column: 1 / -1; }
.consent-links { margin-top: 12px; font-size: 13px; color: var(--muted); }
.consent-opt .switch { position: relative; width: 44px; height: 26px; flex: none; }
.consent-opt .switch input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; z-index: 1; }
.consent-opt .switch span { position: absolute; inset: 0; border-radius: 999px; background: #D9D5E2; transition: background .2s; }
.consent-opt .switch span::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .2s; }
.consent-opt .switch input:checked + span { background: var(--mint-ink); }
.consent-opt .switch input:checked + span::after { transform: translateX(18px); }
.consent-opt .switch input:disabled + span { background: #9A96A8; }
.consent-opt .switch input:focus-visible + span { outline: 3px solid var(--ink); outline-offset: 2px; }
@media (max-width: 560px) { .consent { left: 10px; right: 10px; bottom: 10px; max-width: none; } }

/* ================= reduced motion ================= */
@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .hero-visual, .float-chip, .aurora, .lit, .marquee-track, .panel:not([hidden]), .consent, .plan-card.featured, .progress { animation: none !important; }
  .lit { opacity: 1; } .progress { display: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee-track { width: auto; } .marquee-track ul[aria-hidden] { display: none; }
  .formats .marquee ul { flex-wrap: wrap; justify-content: center; padding-right: 0; }
  .plan-card.featured { background: #fff; border-color: var(--ink); }
}
