/* ============================================================
   DHISTER, Studio Deck Design System
   Audio-editor inspired. Waveforms, not panels.
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* surfaces */
  --bg: #FAFAFC;
  --white: #FFFFFF;
  --panel: #F3F1F8;

  /* ink / dark ultraviolet (from logo) */
  --ink: #17082B;
  --ink-2: #120521;
  --ink-3: #1F0F38;

  /* accents (from logo gradient) */
  --violet: #7C4DEB;
  --violet-bright: #8B5CF6;
  --violet-soft: #A98BF5;
  --magenta: #B23CD6;
  --coral: #FF7A45;
  --coral-deep: #F0605F;

  /* text */
  --text: #17082B;
  --muted: #6B6478;
  --muted-2: #918AA0;

  /* lines */
  --border: #E7E3F0;
  --border-strong: #D8D2E6;

  /* signature gradient */
  --grad: linear-gradient(90deg, #7C4DEB 0%, #B23CD6 52%, #FF7A45 100%);
  --grad-soft: linear-gradient(120deg, rgba(124,77,235,.14), rgba(255,122,69,.10));

  /* type */
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* geometry */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --maxw: 1200px;
  --shadow: 0 24px 60px -30px rgba(23,8,43,.35);
  --shadow-soft: 0 18px 44px -28px rgba(23,8,43,.25);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 72px 0; }
.center { text-align: center; }

/* ---------- Type ---------- */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; line-height: 1.06; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
p { color: var(--muted); }

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--violet-soft); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lead { font-size: 1.18rem; color: var(--muted); max-width: 62ch; }
.on-dark { color: #fff; }
.on-dark p, .on-dark .lead { color: #C9BFDD; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 500; font-size: .98rem;
  padding: 14px 26px; border-radius: 100px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--violet); color: #fff;
  box-shadow: 0 14px 30px -12px rgba(124,77,235,.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(124,77,235,.8); background: #6E3EE0; }
.btn-ghost { border: 1.5px solid var(--border-strong); color: var(--ink); background: var(--white); }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 14px 30px -12px rgba(255,122,69,.6); }
.btn-coral:hover { transform: translateY(-2px); background: #F86A32; }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-glyph { display: flex; align-items: flex-end; gap: 3px; height: 26px; }
.brand-glyph span {
  width: 4px; border-radius: 3px; background: var(--grad);
  display: block;
}
.brand-glyph span:nth-child(1){ height: 40%; }
.brand-glyph span:nth-child(2){ height: 70%; }
.brand-glyph span:nth-child(3){ height: 100%; }
.brand-word { font-family: var(--display); font-weight: 700; font-size: 1.42rem; letter-spacing: -.03em; color: var(--ink); }
.brand img.logo-img { height: 30px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links li { list-style: none; }
.nav-links > li > a, .nav-item-trigger {
  font-family: var(--display); font-weight: 500; font-size: .96rem;
  color: var(--ink); padding: 9px 15px; border-radius: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .2s, color .2s;
}
.nav-links > li > a:hover, .nav-item-trigger:hover { background: var(--panel); color: var(--violet); }
.nav-item-trigger svg { width: 13px; height: 13px; transition: transform .25s; }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow); padding: 12px; min-width: 320px;
  opacity: 0; visibility: hidden; transition: all .24s ease; z-index: 120;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-drop:hover .nav-item-trigger svg { transform: rotate(180deg); }
.drop-item { display: flex; gap: 12px; padding: 12px; border-radius: 12px; transition: background .2s; }
.drop-item:hover { background: var(--panel); }
.drop-ico {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; background: var(--grad-soft); color: var(--violet);
}
.drop-ico svg { width: 20px; height: 20px; }
.drop-item strong { font-family: var(--display); font-size: .95rem; color: var(--ink); display: block; }
.drop-item span { font-size: .82rem; color: var(--muted); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

/* mobile nav */
.mobile-panel { display: none; }

/* ============================================================
   HERO, Studio Deck (dark)
   ============================================================ */
.hero {
  background:
    radial-gradient(1100px 500px at 78% -10%, rgba(255,122,69,.18), transparent 60%),
    radial-gradient(900px 600px at 10% 20%, rgba(124,77,235,.28), transparent 60%),
    var(--ink-2);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 78px 0 96px;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-top { text-align: center; max-width: 940px; margin: 0 auto 54px; }
.hero h1 { color: #fff; margin: 20px 0 22px; }
.hero h1 .grad-text { background: linear-gradient(90deg,#A98BF5, #E29AF0 45%, #FFB08A); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { color: #C9BFDD; margin: 0 auto; font-size: 1.2rem; }
.hero-cta { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* Live Voice Deck */
.voice-deck {
  background: linear-gradient(180deg, #20103a, #180a2e);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.06);
  max-width: 960px; margin: 0 auto;
  position: relative;
}
.deck-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 8px 16px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 14px;
}
.deck-title { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #9E93B8; }
.deck-dots { display: flex; gap: 6px; }
.deck-dots i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.deck-dots i:nth-child(1){ background: var(--coral); }
.deck-dots i:nth-child(2){ background: #F0B429; }
.deck-dots i:nth-child(3){ background: #4ADE80; }
.deck-live { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .7rem; letter-spacing: .18em; color: var(--coral); text-transform: uppercase; }
.deck-live .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; box-shadow:0 0 0 0 rgba(255,122,69,.5);} 50%{ opacity:.5; box-shadow:0 0 0 6px rgba(255,122,69,0);} }

.lane {
  display: grid; grid-template-columns: 148px 1fr auto; align-items: center; gap: 18px;
  padding: 15px 10px; border-radius: 12px; transition: background .3s;
}
.lane + .lane { border-top: 1px solid rgba(255,255,255,.05); }
.lane:hover { background: rgba(255,255,255,.03); }
.lane-label { display: flex; flex-direction: column; gap: 4px; }
.lane-name { font-family: var(--display); font-weight: 600; font-size: .9rem; color: #fff; }
.lane-meta { font-family: var(--mono); font-size: .66rem; color: #8B80A6; letter-spacing: .05em; }
.lane-cap {
  font-size: .82rem; color: #C9BFDD; font-family: var(--mono);
  min-width: 150px; text-align: right;
  opacity: 0; transition: opacity .5s;
}
.lane-cap.show { opacity: 1; }

/* waveform */
.wave { display: flex; align-items: center; gap: 3px; height: 46px; }
.wave span {
  flex: 1; background: linear-gradient(180deg, var(--violet-soft), var(--violet));
  border-radius: 4px; min-height: 4px; height: 20%;
  transform-origin: center;
}
.lane.lane-coral .wave span { background: linear-gradient(180deg, #FFB08A, var(--coral)); }
.lane.lane-mag .wave span { background: linear-gradient(180deg, #E29AF0, var(--magenta)); }

/* ============================================================
   Reusable sections
   ============================================================ */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { margin: 16px 0 16px; }

/* problem cards */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 30px; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--border-strong); }
.card .ico {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--violet); margin-bottom: 20px;
}
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { font-size: .96rem; }

/* mini static wave in cards */
.mini-wave { display: flex; align-items: flex-end; gap: 2px; height: 26px; margin-top: 18px; }
.mini-wave span { width: 3px; border-radius: 2px; background: var(--grad); opacity: .8; }

/* Studios: connected lanes */
.studio-lane {
  display: grid; grid-template-columns: 200px 1fr; gap: 34px; align-items: center;
  padding: 36px; border: 1px solid var(--border); border-radius: var(--r-lg);
  background: #fff; transition: box-shadow .3s, transform .3s;
}
.studio-lane + .studio-lane { margin-top: 22px; }
.studio-lane:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.studio-lane .tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--violet); }
.studio-lane h3 { margin: 12px 0; }
.studio-lane .lane-wave { display: flex; align-items: center; gap: 3px; height: 60px; }
.studio-lane .lane-wave span { flex: 1; border-radius: 3px; background: var(--grad); opacity: .55; min-height: 4px; }
.studio-lane .lane-right { display: flex; flex-direction: column; gap: 14px; }
.arrow-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600; color: var(--violet); font-size: .95rem; }
.arrow-link svg { width: 16px; height: 16px; transition: transform .25s; }
.arrow-link:hover svg { transform: translateX(4px); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.stat { padding: 44px 34px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat .big { font-family: var(--display); font-weight: 700; font-size: 2.7rem; letter-spacing: -.03em; color: var(--ink); line-height: 1; }
.stat .big .grad-text { display: inline; }
.stat p { margin-top: 12px; font-size: .96rem; }

/* ============================================================
   Pre-footer CTA, Listen First
   ============================================================ */
.listen {
  background: radial-gradient(800px 400px at 80% 120%, rgba(255,122,69,.16), transparent), var(--ink);
  color: #fff; border-radius: 0; position: relative; overflow: hidden;
}
.listen .wrap { position: relative; z-index: 2; }
.listen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.listen h2 { color: #fff; }
.listen .lead { color: #C9BFDD; }

/* echoed single lane */
.echo-lane {
  background: #fff; border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow);
}
.echo-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.echo-head .lbl { font-family: var(--mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.echo-time { font-family: var(--mono); font-size: .78rem; color: var(--violet); }
.echo-wave { display: flex; align-items: center; gap: 3px; height: 62px; margin-bottom: 20px; }
.echo-wave span { flex: 1; background: var(--grad); border-radius: 4px; min-height: 5px; opacity: .85; }

.type-hear { margin-top: 4px; }
.type-hear label { font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--ink); display: block; margin-bottom: 10px; }
.type-row { display: flex; gap: 10px; }
.type-row input {
  flex: 1; padding: 13px 16px; border: 1.5px solid var(--border-strong); border-radius: 100px;
  font-family: var(--body); font-size: .95rem; color: var(--ink); outline: none; transition: border-color .2s;
}
.type-row input:focus { border-color: var(--violet); }
.type-play {
  flex: none; width: 50px; height: 50px; border-radius: 50%; background: var(--violet); color: #fff;
  display: grid; place-items: center; transition: transform .2s, background .2s;
}
.type-play:hover { transform: scale(1.06); background: #6E3EE0; }
.type-play svg { width: 20px; height: 20px; }
.type-hint { font-size: .78rem; color: var(--muted); margin-top: 10px; }

.clip-player { display: flex; gap: 10px; margin: 26px 0 8px; flex-wrap: wrap; }
.clip-btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 100px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff;
  font-family: var(--display); font-weight: 500; font-size: .86rem; transition: background .2s, border-color .2s;
}
.clip-btn:hover { background: rgba(255,255,255,.15); }
.clip-btn.playing { background: var(--violet); border-color: var(--violet); }
.clip-btn svg { width: 15px; height: 15px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--white); color: var(--muted); padding: 72px 0 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-word { color: var(--ink); }
.footer-brand p { color: var(--muted); font-size: .92rem; margin-top: 16px; max-width: 30ch; }
.footer-col h4 { font-family: var(--display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--violet); margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; color: var(--muted); font-size: .92rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--violet); }
.footer-bottom {
  margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-bottom .legal-links { display: flex; gap: 22px; }
.footer-bottom .legal-links a { color: var(--muted); font-size: .85rem; }
.footer-bottom .legal-links a:hover { color: var(--violet); }
.footer-bottom .copy { color: var(--muted); font-size: .85rem; }
.footer-bottom .copy strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   Page hero (inner pages, light)
   ============================================================ */
.page-hero { padding: 76px 0 20px; position: relative; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { margin: 18px 0 20px; max-width: 16ch; }
.page-hero.center h1 { margin-left: auto; margin-right: auto; }
.page-hero .lead { margin-bottom: 8px; }

/* pill badges */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { font-family: var(--mono); font-size: .74rem; letter-spacing: .05em; color: var(--violet); background: var(--grad-soft); border: 1px solid var(--border); padding: 7px 14px; border-radius: 100px; }

/* worked example */
.flow { display: grid; gap: 0; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.flow-step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 30px; }
.flow-step + .flow-step { border-top: 1px solid var(--border); }
.flow-num { width: 42px; height: 42px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--mono); font-weight: 500; }
.flow-step.is-ai .flow-num { background: var(--violet); }
.flow-step.is-out .flow-num { background: var(--coral); }
.flow-step .k { font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.flow-step h4 { font-size: 1.08rem; margin: 6px 0 8px; }
.flow-step p { font-size: .95rem; }

/* feature list check */
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; color: var(--muted); font-size: 1rem; }
.check-list li svg { flex: none; width: 22px; height: 22px; color: var(--violet); margin-top: 2px; }
.check-list li strong { color: var(--ink); }

/* consent callout */
.callout {
  border-radius: var(--r-lg); padding: 34px; border: 1.5px solid var(--violet);
  background: var(--grad-soft); position: relative;
}
.callout .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--violet); color: #fff; display: grid; place-items: center; margin-bottom: 16px; }
.callout .ic svg { width: 24px; height: 24px; }
.callout h3 { margin-bottom: 10px; }

/* ============================================================
   Pricing
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 34px;
  display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.price-card.feature { background: var(--ink); color: #fff; border-color: var(--ink); position: relative; }
.price-card.feature h3, .price-card.feature .price { color: #fff; }
.price-card.feature p { color: #C9BFDD; }
.price-card .plan { font-family: var(--mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--violet); }
.price-card.feature .plan { color: var(--violet-soft); }
.price-card h3 { font-size: 1.4rem; margin: 14px 0 6px; }
.price-card .desc { font-size: .92rem; min-height: 44px; }
.price-card .price { font-family: var(--display); font-weight: 700; font-size: 2.4rem; color: var(--ink); margin: 18px 0 4px; letter-spacing: -.02em; }
.price-card .price small { font-size: .9rem; color: var(--muted); font-weight: 400; }
.price-card ul { margin: 22px 0; flex: 1; }
.price-card ul li { display: flex; gap: 10px; padding: 8px 0; font-size: .93rem; align-items: flex-start; }
.price-card ul li svg { flex: none; width: 18px; height: 18px; color: var(--violet); margin-top: 3px; }
.price-card.feature ul li svg { color: var(--coral); }
.badge-top { position: absolute; top: 20px; right: 20px; font-family: var(--mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; background: var(--coral); padding: 5px 11px; border-radius: 100px; }

/* comparison table */
.cmp { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.cmp th, .cmp td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: .94rem; }
.cmp thead th { font-family: var(--display); background: var(--panel); color: var(--ink); font-size: .82rem; letter-spacing: .04em; }
.cmp td:not(:first-child), .cmp th:not(:first-child) { text-align: center; }
.cmp td:first-child { color: var(--ink); font-weight: 500; }
.cmp tr:last-child td { border-bottom: none; }
.cmp .yes { color: var(--violet); }
.cmp .no { color: var(--muted-2); }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); background: #fff; margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--display); font-weight: 600; font-size: 1.04rem; color: var(--ink); }
.faq-q .ic { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--panel); display: grid; place-items: center; transition: transform .3s, background .3s; }
.faq-q .ic svg { width: 14px; height: 14px; color: var(--violet); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--violet); }
.faq-item.open .faq-q .ic svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; font-size: .96rem; }

/* ============================================================
   Forms (contact / signup)
   ============================================================ */
.form-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-soft); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--display); font-weight: 500; font-size: .9rem; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: var(--coral); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border-strong); border-radius: var(--r-sm);
  font-family: var(--body); font-size: .96rem; color: var(--ink); background: #fff; outline: none; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(124,77,235,.1); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.captcha-box { display: flex; align-items: center; gap: 16px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px 16px; margin-bottom: 20px; flex-wrap: wrap; }
.captcha-q { font-family: var(--mono); font-size: 1rem; color: var(--ink); font-weight: 500; }
.captcha-box input { max-width: 110px; }
.captcha-refresh { background: none; color: var(--violet); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; }
.captcha-refresh:hover { background: rgba(124,77,235,.1); }
.captcha-refresh svg { width: 18px; height: 18px; }

.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; }
.form-error { color: var(--coral-deep); font-size: .86rem; margin-top: 8px; display: none; }

/* status banners */
.status-banner { padding: 16px 20px; border-radius: var(--r-md); margin-bottom: 26px; display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.status-banner svg { flex: none; width: 22px; height: 22px; margin-top: 1px; }
.status-success { background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.4); color: #15803D; }
.status-error { background: rgba(255,122,69,.1); border: 1px solid rgba(255,122,69,.4); color: #C2410C; }

/* success screen */
.success-screen { text-align: center; max-width: 560px; margin: 0 auto; padding: 40px 0; }
.success-screen .big-ic { width: 84px; height: 84px; border-radius: 50%; background: var(--grad-soft); display: grid; place-items: center; margin: 0 auto 26px; }
.success-screen .big-ic svg { width: 40px; height: 40px; color: var(--violet); }

/* contact info blocks */
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 26px; }
.info-card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft); color: var(--violet); display: grid; place-items: center; margin-bottom: 16px; }
.info-card .ico svg { width: 22px; height: 22px; }
.info-card h4 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 8px; color: var(--ink); }
.info-card p, .info-card address { font-size: .93rem; color: var(--muted); font-style: normal; line-height: 1.7; }

/* legal / prose */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.prose p { margin-bottom: 14px; color: var(--muted); }
.prose ul { margin: 0 0 16px 0; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--muted); }
.prose ul li::before { content: ""; position: absolute; left: 6px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.prose strong { color: var(--ink); }
.toc { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px 28px; margin-bottom: 40px; }
.toc h4 { font-family: var(--display); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.toc a { display: block; padding: 5px 0; color: var(--violet); font-size: .94rem; }
.toc a:hover { text-decoration: underline; }

/* section band alt bg */
.band { background: var(--white); }
.band-panel { background: var(--panel); }

/* principle rows */
.principle { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid var(--border); align-items: start; }
.principle:first-child { border-top: none; }
.principle .n { font-family: var(--mono); font-size: 1.1rem; color: var(--violet); }
.principle h3 { font-size: 1.3rem; margin-bottom: 8px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .listen-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; background: var(--panel); }
  .nav-toggle svg { width: 22px; height: 22px; color: var(--ink); }
  .grid-3, .grid-4, .grid-2, .price-grid, .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .studio-lane { grid-template-columns: 1fr; gap: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .lane { grid-template-columns: 110px 1fr; }
  .lane-cap { display: none; }
  .section { padding: 72px 0; }
  .cmp-scroll { overflow-x: auto; }
  .cmp { min-width: 620px; }

  /* mobile panel */
  .mobile-panel {
    display: block; position: fixed; inset: 72px 0 auto 0; background: #fff;
    border-bottom: 1px solid var(--border); padding: 20px 28px 28px; z-index: 99;
    transform: translateY(-120%); transition: transform .35s ease; box-shadow: var(--shadow);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .mobile-panel.open { transform: translateY(0); }
  .mobile-panel a { display: block; padding: 13px 0; font-family: var(--display); font-weight: 500; font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid var(--border); }
  .mobile-panel .m-sub { padding-left: 16px; font-size: .95rem; font-weight: 400; color: var(--muted); }
  .mobile-panel .btn { display: flex; justify-content: center; margin-top: 18px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 54px 0 68px; }
  .voice-deck { padding: 14px; }
  .lane { grid-template-columns: 92px 1fr; gap: 12px; padding: 12px 4px; }
  .lane-name { font-size: .8rem; }
  .form-wrap { padding: 26px; }
  .deck-live span.txt { display: none; }
}

/* reduced motion, static bar fallback */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
