/* ===========================================================
   StreamICan - shared design system
   =========================================================== */

:root {
  --black: #14100c;
  --black-2: #1c1712;
  --black-3: #241d16;
  --paper: #f6f0e4;
  --paper-dim: #cfc6b4;
  --paper-dimmer: #948a78;
  --amber: #f4b400;
  --amber-deep: #d69400;
  --rust: #c1502e;
  --rust-tint: #3a2318;
  --moss: #6e9171;
  --plum: #a9748f;
  --line: rgba(246,240,228,0.14);
  --wrap: 1180px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 24px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Karla', system-ui, sans-serif;
  background: var(--black);
  color: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-weight: 700; color: var(--paper); line-height: 1.1; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 30px; }
::selection { background: var(--amber); color: #241a00; }

/* ============ BUTTONS ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 700; font-size: 0.94rem; padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; transition: transform 0.15s ease, background 0.15s ease, border-color .15s ease; white-space: nowrap; font-family: 'Karla', sans-serif; }
.btn-amber { background: var(--amber); color: #241a00; }
.btn-amber:hover { background: #ffcc33; transform: translateY(-1px); }
.btn-line { background: transparent; color: var(--paper); border-color: var(--line); }
.btn-line:hover { border-color: var(--paper); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.82rem; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--amber); }
.eyebrow.mo::before, .eyebrow.moss { color: var(--moss); }
.eyebrow.moss::before { background: var(--moss); }
.eyebrow.plum { color: var(--plum); }
.eyebrow.plum::before { background: var(--plum); }
.eyebrow.rust { color: var(--rust); }
.eyebrow.rust::before { background: var(--rust); }

/* ============ TOP BAR ============ */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 300; padding: 22px 0; }
.topbar-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 30px; display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--paper); display: flex; align-items: baseline; gap: 2px; }
.brand .ican { color: var(--amber); }
.topbar-actions { display: flex; align-items: center; gap: 14px; }
.menu-btn { display: flex; align-items: center; gap: 10px; background: none; border: none; color: var(--paper); font-family: 'Karla', sans-serif; font-weight: 700; font-size: 0.92rem; cursor: pointer; padding: 8px; }
.menu-btn .bars { display: flex; flex-direction: column; gap: 4px; width: 22px; }
.menu-btn .bars span { display: block; height: 2px; background: var(--paper); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.menu-btn .bars span:nth-child(2) { width: 70%; }
body.nav-open .menu-btn .bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .menu-btn .bars span:nth-child(2) { opacity: 0; }
body.nav-open .menu-btn .bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 100%; }

/* ============ FULLSCREEN NAV OVERLAY ============ */
.nav-overlay {
  position: fixed; inset: 0; z-index: 280; background: var(--black-2);
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }
.nav-overlay-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 30px; width: 100%; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.nav-overlay-links { display: flex; flex-direction: column; }
.nav-overlay-links a {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--paper-dim); padding: 10px 0; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(18px); transition: opacity .4s ease, transform .4s ease, color .2s ease;
}
.nav-overlay-links a:hover, .nav-overlay-links a.active { color: var(--amber); }
.nav-overlay-links a span { color: var(--amber-deep); font-family: 'Karla', sans-serif; font-weight: 700; font-size: 0.9rem; margin-right: 14px; vertical-align: middle; }
body.nav-open .nav-overlay-links a { opacity: 1; transform: translateY(0); }
body.nav-open .nav-overlay-links a:nth-child(1) { transition-delay: 0.05s; }
body.nav-open .nav-overlay-links a:nth-child(2) { transition-delay: 0.1s; }
body.nav-open .nav-overlay-links a:nth-child(3) { transition-delay: 0.15s; }
body.nav-open .nav-overlay-links a:nth-child(4) { transition-delay: 0.2s; }
body.nav-open .nav-overlay-links a:nth-child(5) { transition-delay: 0.25s; }
.nav-overlay-side { display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.nav-overlay-side h5 { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; color: var(--paper-dimmer); margin-bottom: 10px; font-family: 'Karla', sans-serif; font-weight: 700; }
.nav-overlay-side a { display: block; color: var(--paper-dim); font-size: 0.98rem; padding: 4px 0; }
.nav-overlay-side a:hover { color: var(--amber); }
.nav-close { position: absolute; top: 28px; right: 30px; }

.mobile-topbar-links { display: none; }

/* ============ HERO WITH SLIDESHOW (home only) ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide .scene { position: absolute; inset: -4%; transition: transform 7s ease-out; transform: scale(1.06); }
.hero-slide.active .scene { transform: scale(1); }
.hero-slide.scene-a .scene { background:
    radial-gradient(700px 500px at 78% 20%, rgba(244,180,0,0.28), transparent 60%),
    radial-gradient(600px 420px at 10% 85%, rgba(193,80,46,0.32), transparent 60%),
    linear-gradient(160deg, #1c1712 0%, #14100c 60%); }
.hero-slide.scene-b .scene { background:
    radial-gradient(650px 480px at 20% 15%, rgba(110,145,113,0.3), transparent 60%),
    radial-gradient(700px 500px at 85% 80%, rgba(244,180,0,0.22), transparent 60%),
    linear-gradient(200deg, #1c1712 0%, #14100c 65%); }
.hero-slide.scene-c .scene { background:
    radial-gradient(700px 500px at 50% 0%, rgba(169,116,143,0.3), transparent 60%),
    radial-gradient(600px 440px at 90% 90%, rgba(193,80,46,0.28), transparent 60%),
    linear-gradient(180deg, #1c1712 0%, #14100c 60%); }
.hero-scanlines { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.12) 0px, rgba(0,0,0,0.12) 1px, transparent 1px, transparent 3px); opacity: 0.25; mix-blend-mode: overlay; pointer-events: none; }
.hero-fade-bottom { position: absolute; left: 0; right: 0; bottom: 0; height: 55%; background: linear-gradient(0deg, var(--black) 10%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 0 96px; width: 100%; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); max-width: 900px; margin-bottom: 24px; }
.hero h1 .hl { color: var(--amber); }
.hero .lead { font-size: 1.16rem; color: var(--paper-dim); max-width: 540px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-slide-dots { display: flex; gap: 8px; }
.hero-slide-dots button { width: 26px; height: 3px; background: rgba(246,240,228,0.25); border: none; cursor: pointer; padding: 0; transition: background .2s ease; }
.hero-slide-dots button.active { background: var(--amber); }

/* ============ PAGE BANNER (sub-pages) ============ */
.page-banner { position: relative; padding: 168px 0 96px; overflow: hidden; background: var(--black); }
.page-banner .scene { position: absolute; inset: 0; }
.page-banner .breadcrumb { font-size: 0.82rem; color: var(--paper-dimmer); margin-bottom: 18px; position: relative; z-index: 2; }
.page-banner .breadcrumb a { color: var(--paper-dim); }
.page-banner .breadcrumb a:hover { color: var(--amber); }
.page-banner h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); max-width: 760px; margin-bottom: 18px; position: relative; z-index: 2; }
.page-banner .lead { color: var(--paper-dim); max-width: 580px; font-size: 1.06rem; position: relative; z-index: 2; }

/* ============ MARQUEE ============ */
.marquee-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; overflow: hidden; background: var(--black-2); }
.marquee-strip .track { display: flex; gap: 40px; width: max-content; animation: mq 24s linear infinite; }
.marquee-strip .track span { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1rem; color: var(--paper-dimmer); white-space: nowrap; display: flex; align-items: center; gap: 40px; }
.marquee-strip .track span em { color: var(--amber); font-style: normal; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ SECTIONS ============ */
.section { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin-bottom: 16px; }
.section-head p { color: var(--paper-dim); font-size: 1.04rem; }

/* ============ STAT COUNTERS ============ */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 50px 0; }
.stat-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.stat-cell { text-align: left; }
.stat-cell .count-num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(2rem, 4.2vw, 3rem); color: var(--amber); display: block; }
.stat-cell .count-label { color: var(--paper-dim); font-size: 0.9rem; margin-top: 6px; }
@media (max-width: 860px) { .stat-row, .stat-row.cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .stat-row, .stat-row.cols-3 { grid-template-columns: 1fr; } }

/* ============ GENRE PULSE (hover reveal) ============ */
.pulse-panel { background: var(--black-2); border: 1px solid var(--line); border-radius: 22px; padding: 44px; }
.pulse-chart { display: flex; align-items: flex-end; gap: 18px; height: 220px; margin-top: 10px; }
.pulse-bar { flex: 1; position: relative; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; }
.pulse-bar .fill { width: 100%; border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg, var(--amber), var(--rust)); opacity: 0.85; transition: opacity .2s ease, transform .2s ease; transform-origin: bottom; }
.pulse-bar:hover .fill { opacity: 1; transform: scaleY(1.03); }
.pulse-bar .glabel { margin-top: 14px; font-size: 0.82rem; color: var(--paper-dim); font-weight: 700; }
.pulse-tooltip {
  position: absolute; bottom: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--paper); color: var(--black); padding: 10px 14px; border-radius: 10px; font-size: 0.78rem;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease; font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.pulse-bar:hover .pulse-tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ FEATURE ROWS ============ */
.feat-row { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 28px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.feat-row:last-child { border-bottom: 1px solid var(--line); }
.feat-row .fnum { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; color: var(--amber-deep); font-size: 1.1rem; }
.feat-row h4 { font-size: 1.14rem; margin-bottom: 8px; }
.feat-row p { color: var(--paper-dim); font-size: 0.95rem; max-width: 620px; }

/* ============ HORIZONTAL STEPS ============ */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 10px; }
.steps-row::before { content: ""; position: absolute; top: 25px; left: 6%; right: 6%; height: 1px; background: var(--line); z-index: 0; }
.step-item { position: relative; z-index: 1; padding: 0 16px; text-align: left; }
.step-num { width: 50px; height: 50px; border-radius: 50%; background: var(--black-2); border: 1.5px solid var(--amber); color: var(--amber); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step-item h4 { font-size: 1.02rem; margin-bottom: 8px; }
.step-item p { font-size: 0.88rem; color: var(--paper-dim); }
@media (max-width: 800px) { .steps-row { grid-template-columns: 1fr; gap: 30px; } .steps-row::before { display: none; } }

/* ============ CARDS ============ */
.card { background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.card p { color: var(--paper-dim); font-size: 0.92rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

/* ============ DASHBOARD MOCKUP (Pulse) ============ */
.dash-card { background: var(--black-2); border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; }
.dash-topbar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.dash-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.dash-title { margin-left: 8px; font-size: 0.82rem; font-weight: 700; color: var(--paper-dim); }
.dash-body { padding: 24px; }
.dash-row-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.dash-row-head .big { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--amber); }
.dash-row-head .up { color: var(--moss); font-weight: 700; font-size: 0.82rem; background: rgba(110,145,113,0.14); padding: 3px 9px; border-radius: 999px; }
.dash-bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; margin-bottom: 22px; }
.dash-bars .bar { flex: 1; border-radius: 6px 6px 2px 2px; background: rgba(244,180,0,0.18); }
.dash-bars .bar.hi { background: linear-gradient(180deg, var(--amber), var(--rust)); }
.dash-list { display: flex; flex-direction: column; gap: 10px; }
.dash-list-row { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; }
.dash-list-row .dname { width: 120px; color: var(--paper-dim); }
.dash-list-row .dtrack { flex: 1; height: 6px; background: var(--black-3); border-radius: 999px; overflow: hidden; }
.dash-list-row .dfill { height: 100%; border-radius: 999px; background: var(--amber); }
.dash-list-row .dpct { width: 40px; text-align: right; font-weight: 700; color: var(--paper); }

/* ============ ARTIST SPOTLIGHT (horizontal scroll-snap + hover reveal) ============ */
.spotlight-scroller { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; margin: 0 -30px; padding-left: 30px; padding-right: 30px; }
.spotlight-scroller::-webkit-scrollbar { height: 6px; }
.spotlight-scroller::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.spot-card { scroll-snap-align: start; flex: 0 0 280px; height: 360px; border-radius: 18px; position: relative; overflow: hidden; background: var(--black-2); border: 1px solid var(--line); }
.spot-card .spot-art { position: absolute; inset: 0; }
.spot-card .spot-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
  background: linear-gradient(0deg, rgba(20,16,12,0.95) 10%, rgba(20,16,12,0.35) 55%, transparent 100%);
}
.spot-card .spot-tag { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.spot-card h4 { font-size: 1.2rem; margin-bottom: 6px; }
.spot-card .spot-stats { display: flex; gap: 14px; margin-top: 12px; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.spot-card:hover .spot-stats { opacity: 1; transform: translateY(0); }
.spot-card .spot-stats div { font-size: 0.76rem; color: var(--paper-dim); }
.spot-card .spot-stats strong { display: block; color: var(--paper); font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; }
.spot-nav { display: flex; gap: 10px; margin-top: 20px; }
.spot-nav button { width: 42px; height: 42px; border-radius: 50%; background: var(--black-2); border: 1px solid var(--line); color: var(--paper); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.spot-nav button:hover { border-color: var(--amber); color: var(--amber); }
.spot-nav button svg { width: 16px; height: 16px; }

/* ============ TESTIMONIAL SLIDESHOW ============ */
.testi-slideshow { position: relative; max-width: 760px; }
.testi-slide2 { display: none; }
.testi-slide2.active { display: block; animation: fadeIn .45s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.testi-slideshow blockquote { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 600; line-height: 1.35; color: var(--paper); margin-bottom: 22px; }
.testi-slideshow .who { color: var(--paper-dim); font-size: 0.9rem; }
.testi-slideshow .who strong { color: var(--amber); }
.testi-controls { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.testi-controls button { width: 40px; height: 40px; border-radius: 50%; background: transparent; border: 1px solid var(--line); color: var(--paper); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.testi-controls button:hover { border-color: var(--amber); color: var(--amber); }
.testi-controls button svg { width: 15px; height: 15px; }
.testi-progress { flex: 1; height: 2px; background: var(--line); position: relative; overflow: hidden; border-radius: 2px; max-width: 220px; }
.testi-progress-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: var(--amber); }
.testi-progress-fill.animating { animation: testiProgress 6s linear; }
@keyframes testiProgress { from { width: 0%; } to { width: 100%; } }

/* ============ PRICING ============ */
.pricing-table { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { background: var(--black-2); border: 1.5px solid var(--line); border-top: 3px solid var(--line); border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--amber); border-top-color: var(--amber); box-shadow: 0 20px 44px rgba(244,180,0,0.14); position: relative; }
.price-card .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--amber); color: #241a00; font-size: 0.72rem; font-weight: 800; padding: 4px 14px; border-radius: 999px; letter-spacing: 0.03em; }
.price-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.price-card .price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 2.1rem; margin: 10px 0 2px; color: var(--paper); }
.price-card .price .per { font-family: 'Karla', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--paper-dimmer); }
.price-card .price-desc { font-size: 0.84rem; color: var(--paper-dim); margin-bottom: 22px; }
.price-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.price-feats li { display: flex; align-items: center; gap: 9px; font-size: 0.87rem; }
.price-feats li.no { color: var(--paper-dimmer); }
.price-feats svg.yes { width: 16px; height: 16px; color: var(--moss); flex-shrink: 0; }
.price-feats svg.no { width: 16px; height: 16px; color: var(--line); flex-shrink: 0; }
@media (max-width: 860px) { .pricing-table { grid-template-columns: 1fr; } }

.pricing-note { display: flex; gap: 12px; align-items: flex-start; background: rgba(244,180,0,0.08); border: 1px solid rgba(244,180,0,0.25); border-radius: 12px; padding: 16px 18px; margin-bottom: 40px; font-size: 0.9rem; color: var(--paper-dim); }
.pricing-note svg { width: 19px; height: 19px; color: var(--amber); flex-shrink: 0; margin-top: 1px; }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-list.wide { max-width: 860px; }
.faq-group-head { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.05rem; margin: 34px 0 14px; color: var(--amber); }
.faq-group-head:first-child { margin-top: 0; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--black-2); }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 700; font-size: 0.98rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { width: 22px; height: 22px; border-radius: 50%; background: var(--black-3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-item summary .plus svg { width: 12px; height: 12px; transition: transform 0.2s ease; }
.faq-item[open] summary .plus svg { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--paper-dim); font-size: 0.92rem; }

/* ============ CONTACT / WAITLIST TOGGLE ============ */
.contact-panel { background: var(--black-2); border: 1px solid var(--line); border-radius: 24px; padding: 48px; max-width: 720px; margin: 0 auto; }
.contact-toggle { display: flex; gap: 10px; margin-bottom: 30px; background: var(--black-3); padding: 6px; border-radius: 999px; }
.contact-toggle button { flex: 1; padding: 12px 18px; border-radius: 999px; border: none; background: transparent; color: var(--paper-dim); font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: all .2s ease; font-family: 'Karla', sans-serif; }
.contact-toggle button.active { background: var(--amber); color: #241a00; }
.contact-mode { display: none; }
.contact-mode.active { display: block; animation: fadeIn .3s ease; }
.cfield { margin-bottom: 16px; }
.cfield label { display: block; font-weight: 700; font-size: 0.84rem; margin-bottom: 7px; color: var(--paper-dim); }
.cfield input, .cfield select, .cfield textarea {
  width: 100%; padding: 12px 15px; border-radius: 10px; border: 1.5px solid var(--line);
  font-family: 'Karla', sans-serif; font-size: 0.92rem; color: var(--paper); background: var(--black-3);
}
.cfield textarea { min-height: 90px; resize: vertical; }
.cfield input:focus, .cfield select:focus, .cfield textarea:focus { outline: none; border-color: var(--amber); }
.cfield input::placeholder, .cfield textarea::placeholder { color: var(--paper-dimmer); }
.cgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .cgrid { grid-template-columns: 1fr; } }
.referral-note { display: flex; gap: 12px; align-items: flex-start; background: rgba(244,180,0,0.08); border: 1px solid rgba(244,180,0,0.25); border-radius: 12px; padding: 14px 16px; margin-bottom: 22px; font-size: 0.86rem; color: var(--paper-dim); }
.referral-note svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 1px; }
.form-outro { text-align: center; margin-top: 22px; font-size: 0.86rem; color: var(--paper-dimmer); }

/* ============ LEGAL CONTENT ============ */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content .legal-meta { color: var(--paper-dimmer); font-size: 0.86rem; margin-bottom: 34px; }
.legal-content h2 { font-size: 1.2rem; margin: 34px 0 12px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--paper-dim); margin-bottom: 12px; font-size: 0.95rem; }
.legal-content ul { margin: 0 0 12px 0; display: flex; flex-direction: column; gap: 8px; }
.legal-content li { color: var(--paper-dim); font-size: 0.95rem; padding-left: 18px; position: relative; }
.legal-content li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }

/* ============ FINAL CTA ============ */
.final-cta { text-align: center; padding: 30px 0 10px; }
.final-cta h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 14px; }
.final-cta p { color: var(--paper-dim); max-width: 480px; margin: 0 auto 30px; }

/* ============ FOOTER ============ */
.site-footer { margin-top: 80px; }
.footer-top { padding: 60px 0 50px; display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 30px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; color: var(--paper-dimmer); margin-bottom: 20px; max-width: 260px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 34px; height: 34px; border-radius: 50%; background: var(--black-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.foot-social svg { width: 15px; height: 15px; color: var(--paper-dim); }
.foot-social a:hover { border-color: var(--amber); }
.foot-social a:hover svg { color: var(--amber); }
.footer-top h5 { color: var(--paper); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-top ul { display: flex; flex-direction: column; gap: 10px; }
.footer-top a { font-size: 0.88rem; color: var(--paper-dim); }
.footer-top a:hover { color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 0.8rem; color: var(--paper-dimmer); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--paper-dimmer); margin-left: 16px; }
.footer-bottom a:hover { color: var(--amber); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
