/* ==========================================================================
   The Entertainment Marketplace — Prelaunch Website
   Same design system as the main site (Website/css/style.css v2): navy +
   gold, Bricolage Grotesque display / Plus Jakarta Sans body, photography-
   forward. Trimmed to what this smaller site actually uses.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --body: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;

  --navy: #185FA5;
  --navy-700: #124879;
  --navy-900: #0B2E4D;
  --gold: #EF9F27;
  --gold-600: #C97F14;
  --gold-100: #FDECD1;
  --charcoal: #444441;
  --charcoal-70: #6C6A65;
  --charcoal-45: #9A9791;

  --paper: #FFFFFF;
  --mist: #F3F6FA;
  --mist-deep: #E7EDF4;
  --line: #DFE5EC;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;

  --shadow-card: 0 1px 2px rgba(11,46,77,0.06), 0 8px 24px rgba(11,46,77,0.07);
  --shadow-lift: 0 4px 10px rgba(11,46,77,0.08), 0 20px 40px rgba(11,46,77,0.14);
  --shadow-pop: 0 12px 32px rgba(239,159,39,0.28);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 700px) { .container, .container-narrow { padding: 0 20px; } }

h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -0.01em; color: var(--navy-900); text-wrap: balance; }
p { margin: 0; line-height: 1.65; color: var(--charcoal-70); }

section { padding: 84px 0; }
@media (max-width: 760px) { section { padding: 52px 0; } }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-600); }
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--gold); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: var(--radius-s); font-size: 15.5px; font-weight: 700; border: 2px solid transparent; cursor: pointer; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease); white-space: nowrap; }
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
.btn-gold { background: var(--gold); color: var(--navy-900); }
.btn-gold:hover { box-shadow: var(--shadow-pop); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--navy-900); color: var(--navy-900); }
.btn-outline:hover { background: var(--navy-900); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--navy-900); }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; flex: none; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; font-size: 14.5px; font-weight: 600; color: var(--charcoal); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }
@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--line); background: transparent; cursor: pointer; }
}
@media (max-width: 440px) { .nav-cta .btn-sm { display: none; } }

/* ---------- Badge pill ---------- */
.badge-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-100); color: var(--gold-600); border-radius: 999px; padding: 9px 18px; font-size: 13.5px; font-weight: 700; margin-bottom: 22px; }
.badge-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-600); flex: none; }

/* ---------- Hero ---------- */
.hero { padding: 60px 0 76px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
.hero h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.05; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--gold-600); }
.hero p.lead { font-size: 18px; max-width: 480px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stats div b { display: block; font-family: var(--display); font-size: 22px; color: var(--navy-900); }
.hero-stats div span { font-size: 12px; color: var(--charcoal-45); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

.hero-collage { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-m); box-shadow: var(--shadow-card); }
.hero-collage .tall { grid-row: span 2; aspect-ratio: 3/4; }
.hero-collage .wide { aspect-ratio: 4/3; }
.hero-collage .rot-a { transform: rotate(-1.4deg); }
.hero-collage .rot-b { transform: rotate(1.6deg); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy-900); padding: 20px 0; }
.trust-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; color: #fff; }
.trust-row .item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.88); }
.trust-row .item b { color: var(--gold); font-family: var(--display); font-size: 16px; }
.trust-row .item svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* ---------- Section headers ---------- */
.sec-head-center { text-align: center; max-width: 620px; margin: 0 auto; }
.sec-head-center h2 { font-size: clamp(27px, 3.4vw, 38px); margin-top: 10px; }
.sec-head-center p { max-width: 560px; margin: 10px auto 0; font-size: 16.5px; }
.mt-lg { margin-top: 56px; }

/* ---------- Category grid (real photos) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-tile { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-m); overflow: hidden; isolation: isolate; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,46,77,0.78) 0%, rgba(11,46,77,0) 55%); }
.cat-tile span { position: absolute; left: 12px; bottom: 10px; z-index: 1; color: #fff; font-weight: 700; font-size: 13px; }

/* ---------- Check list ---------- */
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--charcoal); font-weight: 500; }
.check-list svg { flex: none; margin-top: 2px; width: 18px; height: 18px; color: var(--navy); }

/* ---------- Founding pricing (compact tiers) ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.tier-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-l); padding: 8px; display: flex; flex-direction: column; position: relative; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.tier-top-bar { height: 6px; border-radius: 999px; background: var(--navy); margin-bottom: 24px; }
.tier-card.featured .tier-top-bar { background: var(--gold); }
.tier-inner { padding: 10px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.tier-badge-top { position: absolute; top: -13px; left: 26px; background: var(--navy-900); color: #fff; font-size: 11px; font-weight: 800; padding: 6px 14px; border-radius: 999px; }
.tier-name { font-family: var(--display); font-size: 14.5px; font-weight: 800; color: var(--navy-900); margin-bottom: 12px; }
.price-sale-wrap { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-strike { font-size: 17px; font-weight: 600; color: var(--charcoal-45); text-decoration: line-through; text-decoration-color: var(--gold); }
.tier-price { font-family: var(--display); font-size: 38px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy-900); }
.tier-price span { font-family: var(--body); font-size: 14px; font-weight: 600; color: var(--charcoal-45); }
.price-sale-note { font-size: 12px; color: var(--charcoal-45); font-weight: 600; margin: 2px 0 16px; }
.tier-radius { font-size: 13.5px; color: var(--charcoal-70); font-weight: 600; margin-bottom: 20px; }
.tier-card .check-list { margin-bottom: 24px; flex: 1; }
.tier-card .check-list li { font-size: 13.5px; }
.tier-card.featured .check-list svg { color: var(--gold-600); }

/* ---------- Mission block ---------- */
.mission-block { max-width: 800px; margin: 0 auto; text-align: center; padding: 56px 44px; background: linear-gradient(135deg, var(--navy-900), var(--navy-700) 70%); border-radius: var(--radius-xl); position: relative; overflow: hidden; }
.mission-block::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 50% 0%, rgba(239,159,39,0.22), transparent 70%); }
.mission-block * { position: relative; }
.mission-block .eyebrow { color: var(--gold); }
.mission-block .eyebrow::before { background: var(--gold); }
.mission-block p { font-size: clamp(19px, 2.4vw, 25px); line-height: 1.5; color: #fff; font-weight: 600; letter-spacing: -0.01em; }
@media (max-width: 600px) { .mission-block { padding: 40px 24px; } }

/* ---------- Status card ---------- */
.status-card { max-width: 720px; margin: 0 auto; border: 1.5px solid var(--line); border-radius: var(--radius-l); padding: 32px 36px; display: flex; gap: 22px; align-items: flex-start; background: #fff; }
@media (max-width: 560px) { .status-card { flex-direction: column; padding: 26px; } }
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); flex: none; margin-top: 6px; box-shadow: 0 0 0 4px var(--gold-100); }
.status-card h3 { font-size: 18px; margin-bottom: 8px; }
.status-card p { font-size: 15px; }

/* ---------- Founding roster progress (floating bar) ---------- */
.progress-track { width: 100%; height: 12px; border-radius: 999px; background: var(--mist-deep); overflow: hidden; }
.progress-track.small { width: 100px; height: 8px; flex: none; }
.progress-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold-600), var(--gold)); transition: width 0.6s var(--ease); }

.founding-progress-float {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 300;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-lift);
  padding: 10px 14px 10px 20px;
  max-width: calc(100vw - 32px);
}
.founding-progress-float.is-hidden { display: none; }
.founding-progress-float-inner { display: flex; align-items: center; gap: 12px; }
.founding-progress-float-label { font-family: var(--display); font-weight: 800; font-size: 12.5px; color: var(--navy-900); white-space: nowrap; }
.founding-progress-count { font-family: var(--body); font-weight: 700; font-size: 12.5px; color: var(--charcoal-70); white-space: nowrap; }
.founding-progress-close { flex: none; width: 22px; height: 22px; border-radius: 50%; border: none; background: var(--mist); color: var(--charcoal-45); font-size: 16px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; padding: 0; }
.founding-progress-close:hover { background: var(--mist-deep); color: var(--charcoal); }

@media (max-width: 640px) {
  .founding-progress-float { left: 12px; right: 12px; bottom: 12px; transform: none; max-width: none; border-radius: var(--radius-l); }
  .founding-progress-float-inner { flex-wrap: wrap; }
  .founding-progress-float-label { flex: 1 1 auto; }
  .progress-track.small { flex: 1 1 100%; width: auto; order: 3; }
}

.founding-code-toggle { display: inline-block; margin-top: 16px; background: none; border: none; padding: 0; font-family: var(--body); font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.founding-code-toggle:hover { color: var(--navy-700); }

/* ---------- CTA banner ---------- */
.cta-band { background: var(--gold); border-radius: var(--radius-xl); padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(27px, 3.6vw, 40px); margin-bottom: 14px; color: var(--navy-900); }
.cta-band p { color: rgba(11,46,77,0.75); font-size: 16.5px; max-width: 460px; margin: 0 auto 28px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band.dark { background: var(--navy-900); }
.cta-band.dark h2, .cta-band.dark p { color: #fff; }
.cta-band.dark p { color: rgba(255,255,255,0.7); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.75); padding: 56px 0 26px; margin-top: 20px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.footer-brand .brand { color: #fff; }
.footer-brand p { font-size: 13.5px; margin-top: 12px; max-width: 320px; color: rgba(255,255,255,0.55); }
.footer-links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; font-size: 14px; }
.footer-links a { color: rgba(255,255,255,0.72); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Page header (non-home pages) ---------- */
.page-head { padding: 50px 0 42px; background: var(--mist); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(29px, 4.4vw, 44px); margin-bottom: 10px; }
.page-head p { max-width: 560px; font-size: 16px; }

/* ---------- Connection notice ---------- */
.api-notice { display: none; align-items: flex-start; gap: 12px; background: var(--gold-100); color: var(--gold-600); border-radius: var(--radius-m); padding: 16px 20px; font-size: 13.5px; font-weight: 600; margin-bottom: 28px; line-height: 1.5; }
.api-notice.show { display: flex; }
.api-notice svg { flex: none; margin-top: 1px; }

/* ---------- Onboarding / signup ---------- */
.onboard-wrap { display: grid; grid-template-columns: 230px 1fr; gap: 40px; padding: 44px 0 100px; align-items: start; }
@media (max-width: 860px) { .onboard-wrap { grid-template-columns: 1fr; } }
.onboard-nav { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 90px; }
.onboard-step { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--radius-s); font-size: 14px; font-weight: 600; color: var(--charcoal-45); cursor: pointer; }
.onboard-step.active { background: var(--mist); color: var(--navy-900); }
.onboard-step .dot { width: 25px; height: 25px; border-radius: 50%; background: var(--mist-deep); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex: none; }
.onboard-step.active .dot { background: var(--navy); color: #fff; }
.form-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-l); padding: 34px; }
@media (max-width: 560px) { .form-card { padding: 22px; } }
.form-card h2 { font-size: 22px; margin-bottom: 6px; }
.form-card > p.lead { margin-bottom: 26px; font-size: 14.5px; color: var(--charcoal-70); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 14.5px; padding: 12px 14px;
  border-radius: var(--radius-s); border: 1.5px solid var(--line); background: var(--mist);
  color: var(--charcoal); outline: none; transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); background: #fff; }
.field textarea { resize: vertical; min-height: 90px; }
.media-link-stack { display: flex; flex-direction: column; gap: 8px; }
.media-link-stack input { margin: 0; }
.field-hint { font-size: 12px; color: var(--charcoal-45); margin-top: 6px; }

.chip-select { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--line); font-size: 13.5px; font-weight: 700; color: var(--charcoal); cursor: pointer; transition: all 0.2s var(--ease); }
.chip.selected { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

.upload-box { border-radius: var(--radius-m); width: 100%; min-height: 140px; border: 1.5px dashed rgba(11,46,77,0.28); background: repeating-linear-gradient(135deg, var(--mist-deep) 0 12px, var(--mist) 12px 24px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; padding: 18px; cursor: pointer; transition: border-color 0.2s; }
.upload-box:hover { border-color: var(--navy); }
.upload-box .ph-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(11,46,77,0.14); }
.upload-box .ph-icon svg { width: 18px; height: 18px; color: var(--navy); }
.upload-box .ph-dims { font-size: 12.5px; font-weight: 800; color: var(--navy-900); }
.upload-box .ph-desc { font-size: 11.5px; font-weight: 500; color: var(--charcoal-70); max-width: 280px; line-height: 1.4; }
.upload-box input[type="file"] { display: none; }

.upload-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.upload-thumb { position: relative; width: 74px; height: 74px; border-radius: var(--radius-s); overflow: hidden; border: 1.5px solid var(--line); background: var(--mist); }
.upload-thumb img, .upload-thumb video { width: 100%; height: 100%; object-fit: cover; }
.upload-thumb .remove { position: absolute; top: 3px; right: 3px; width: 18px; height: 18px; border-radius: 50%; background: rgba(11,46,77,0.85); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 12px; line-height: 1; border: none; }
.upload-thumb .uploading { position: absolute; inset: 0; background: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: var(--navy-900); }

.mini-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 10px; }
@media (max-width: 700px) { .mini-tiers { grid-template-columns: 1fr; } }
.mini-tier { border: 2px solid var(--line); border-radius: var(--radius-m); padding: 18px; cursor: pointer; transition: all 0.2s var(--ease); }
.mini-tier:hover { border-color: var(--charcoal-45); }
.mini-tier.selected { border-color: var(--navy); background: var(--mist); }
.mini-tier .tier-name { margin-bottom: 6px; font-size: 13px; }
.mini-tier .tier-price { font-size: 24px; margin-bottom: 0; }
.mini-tier .tier-price span { font-size: 12.5px; }
.mini-tier .tier-radius { margin: 4px 0 0; font-size: 12px; }
.mini-tier .price-strike { font-size: 12px; }
.mini-tier .price-sale-note { font-size: 10.5px; margin: 0 0 2px; }

.addon-card { display: flex; gap: 16px; align-items: flex-start; border: 2px solid var(--line); border-radius: var(--radius-m); padding: 22px 24px; background: #fff; cursor: pointer; transition: all 0.2s var(--ease); margin-top: 16px; }
.addon-card:hover { border-color: var(--charcoal-45); }
.addon-card.selected { border-color: var(--navy); background: var(--mist); }
.addon-checkbox { flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 6px; border: 2px solid var(--line); background: #fff; display: flex; align-items: center; justify-content: center; transition: all 0.2s var(--ease); }
.addon-card.selected .addon-checkbox { background: var(--navy); border-color: var(--navy); }
.addon-checkbox svg { opacity: 0; color: #fff; width: 14px; height: 14px; transition: opacity 0.15s; }
.addon-card.selected .addon-checkbox svg { opacity: 1; }
.addon-body { flex: 1; }
.addon-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.addon-head b { font-size: 16px; color: var(--navy-900); }
.addon-price { font-size: 15px; font-weight: 800; color: var(--navy); white-space: nowrap; }
.addon-price .price-strike { font-size: 13px; margin-right: 2px; }
.addon-body p { font-size: 14px; }
.addon-foot { margin-top: 12px; font-size: 12.5px; color: var(--charcoal-45); }
.addon-foot a { color: var(--navy); font-weight: 700; }

.addon-setup-options { display: none; flex-direction: column; gap: 10px; margin: 16px 0 4px; }
.addon-setup-options.show { display: flex; }
.setup-option { display: flex; align-items: flex-start; gap: 12px; border: 2px solid var(--line); border-radius: var(--radius-s); padding: 12px 14px; cursor: pointer; transition: all 0.2s var(--ease); background: #fff; }
.setup-option:hover { border-color: var(--charcoal-45); }
.setup-option.selected { border-color: var(--navy); background: var(--mist); }
.setup-option-radio { flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; border: 2px solid var(--line); position: relative; background: #fff; }
.setup-option.selected .setup-option-radio { border-color: var(--navy); }
.setup-option.selected .setup-option-radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--navy); }
.setup-option b { display: block; font-size: 14px; color: var(--navy-900); margin-bottom: 2px; }
.setup-option span { font-size: 12.5px; color: var(--charcoal-70); line-height: 1.45; }

.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(11,46,77,0.55); z-index: 500; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.show { display: flex; }
.modal-card { background: #fff; border-radius: var(--radius-l); max-width: 480px; width: 100%; padding: 32px; box-shadow: var(--shadow-lift); max-height: 90vh; overflow-y: auto; }
.modal-card h3 { font-size: 20px; margin-bottom: 16px; }
.modal-body p { font-size: 14.5px; line-height: 1.7; color: var(--charcoal-70); margin-bottom: 12px; }
.modal-body ul { margin: 0 0 12px; padding-left: 20px; }
.modal-body li { font-size: 14.5px; line-height: 1.6; color: var(--charcoal-70); margin-bottom: 8px; }
.modal-body strong { color: var(--navy-900); }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 22px; flex-wrap: wrap; }

.order-summary { background: var(--mist); border-radius: var(--radius-m); padding: 20px 22px; margin-top: 20px; }
.order-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; font-size: 14.5px; padding: 7px 0; color: var(--charcoal-70); }
.order-row .muted { display: block; font-size: 12px; color: var(--charcoal-45); margin-top: 2px; }
.order-row.total { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 14px; font-weight: 800; color: var(--navy-900); font-size: 17px; }
.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; gap: 12px; flex-wrap: wrap; }

.form-success { display: none; align-items: center; gap: 10px; background: #EEF6E9; color: #2F6B1F; padding: 12px 14px; border-radius: var(--radius-s); font-size: 13.5px; margin-bottom: 14px; }
.form-success.show { display: flex; }
.form-error { display: none; align-items: center; gap: 10px; background: #FBEAEA; color: #A33131; padding: 12px 14px; border-radius: var(--radius-s); font-size: 13.5px; margin-bottom: 14px; }
.form-error.show { display: flex; }
.form-error svg, .form-success svg { flex: none; }

/* ---------- Utility ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Legal document pages ---------- */
.legal-doc { max-width: 760px; margin: 0 auto; padding: 56px 24px 100px; }
.legal-doc .legal-note { background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 16px 20px; font-size: 13.5px; color: var(--charcoal-70); margin-bottom: 40px; }
.legal-doc .legal-updated { font-size: 13px; color: var(--charcoal-45); margin-bottom: 36px; }
.legal-doc h2 { font-size: 21px; margin: 40px 0 12px; color: var(--navy-900); }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p { font-size: 15px; line-height: 1.75; color: var(--charcoal-70); margin-bottom: 14px; }
.legal-doc ul, .legal-doc ol { margin: 0 0 14px; padding-left: 22px; }
.legal-doc li { font-size: 15px; line-height: 1.75; color: var(--charcoal-70); margin-bottom: 6px; }
.legal-doc a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-doc-table-wrap { overflow-x: auto; margin: 8px 0 20px; }
.legal-doc table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14px; }
.legal-doc th, .legal-doc td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.legal-doc th { color: var(--navy-900); font-weight: 700; }
.legal-doc strong { color: var(--navy-900); }
