/* Table Read — landing. Dark, elevated, minimal (à la Vercel / agentcard):
   true-black canvas, fine grain, a warm stage-light glow, refined serif display,
   Inter UI, hairline borders, pill CTAs, restrained motion. Color is used only
   as a warm spotlight — everything else is monochrome. */
:root {
  --bg: #000000;
  --bg-1: #0b0b0c;
  --bg-2: #101011;
  --bg-3: #161618;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --tx: #ededed;
  --tx-2: #a0a0a0;
  --tx-3: #6d6d6d;
  --warm: #f3c07a;          /* stage light */
  --warm-2: #e9a54c;
  --warm-glow: rgba(243, 192, 122, 0.5);
  --ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --pill: 999px;
  --r: 14px;
  --r-lg: 20px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 30px 60px -30px rgba(0, 0, 0, 0.9);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); }
body {
  color: var(--tx);
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
/* filmic grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, .nav, .foot { position: relative; z-index: 2; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--warm); color: #000; }
:focus-visible { outline: 1px solid var(--warm); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3 { letter-spacing: -0.02em; font-weight: 600; text-wrap: balance; }
[hidden] { display: none !important; }

.kicker {
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tx-3);
  margin-bottom: 16px;
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 11px 20px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s var(--ease), background 0.18s, border-color 0.18s, box-shadow 0.18s, color 0.18s, opacity 0.18s;
}
.btn:active { transform: translateY(1px); }
/* primary = bright pill */
.btn-dark, .btn-light {
  background: #fafafa;
  color: #000;
  border-color: #fafafa;
  font-weight: 600;
}
.btn-dark:hover, .btn-light:hover { background: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06), 0 14px 40px -14px rgba(255, 255, 255, 0.35); }
/* secondary = glass pill */
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--tx);
  border-color: var(--line-2);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.32); background: rgba(255, 255, 255, 0.05); }
.btn-lg { padding: 14px 26px; font-size: 15px; }

/* ---------------- nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(0, 0, 0, 0.72); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 66px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(150deg, #fff, #c9c9c9);
  border-radius: 9px;
  flex: none;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.6);
}
.brand-mark svg { width: 17px; height: 17px; fill: #000; }
.brand-word { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: var(--tx); }
.nav-links { display: flex; gap: 28px; margin-left: 22px; margin-right: auto; }
.nav-links a { font-size: 14px; color: var(--tx-2); font-weight: 400; transition: color 0.15s; }
.nav-links a:hover { color: var(--tx); }
.nav-cta { display: flex; gap: 9px; margin-left: auto; }
.nav-links + .nav-cta { margin-left: 0; }

/* ---------------- reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- section rhythm ---------------- */
section { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section-head { max-width: 640px; margin: 0 auto; text-align: center; padding-top: 130px; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
}
.section-head .lede { color: var(--tx-2); font-size: 16.5px; margin-top: 16px; line-height: 1.6; text-wrap: pretty; }

/* ---------------- hero ---------------- */
.hero { position: relative; padding-top: 72px; padding-bottom: 30px; }
/* warm stage-light glow behind the hero */
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  width: 1100px;
  height: 760px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(46% 60% at 62% 34%, var(--warm-glow), transparent 68%),
    radial-gradient(60% 70% at 50% 30%, rgba(255, 255, 255, 0.06), transparent 70%);
  filter: blur(10px);
  opacity: 0.9;
  z-index: 0;
  animation: glowdrift 14s ease-in-out infinite alternate;
}
@keyframes glowdrift {
  from { transform: translateX(-52%) translateY(-6px) scale(1); opacity: 0.82; }
  to   { transform: translateX(-48%) translateY(6px) scale(1.05); opacity: 1; }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  min-height: min(74vh, 620px);
}
.hero-copy { max-width: 540px; }
.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--tx-2);
  padding: 7px 15px 7px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  margin-bottom: 28px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 10px 1px var(--warm-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(50px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-sub {
  color: var(--tx-2);
  font-size: 18px;
  line-height: 1.6;
  margin-top: 24px;
  max-width: 42ch;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }
.hero-formats { font-size: 12px; font-weight: 400; letter-spacing: 0.02em; color: var(--tx-3); margin-top: 26px; }

/* ---------------- hero player ---------------- */
.hero-visual { display: flex; justify-content: center; }
.player {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 20px;
}
.player-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; }
.player-scene { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--tx-3); }
.player-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--warm); background: rgba(243, 192, 122, 0.09);
  padding: 5px 11px; border-radius: var(--pill); border: 1px solid rgba(243, 192, 122, 0.18);
}
.player-lines { display: flex; flex-direction: column; gap: 3px; }
.pline {
  display: flex; align-items: flex-start; gap: 12px; width: 100%;
  text-align: left; font-family: var(--ui);
  background: transparent; border: 0; border-radius: 12px;
  padding: 11px 12px; cursor: pointer; transition: background 0.18s;
}
.pline:hover { background: rgba(255, 255, 255, 0.03); }
.pline.active { background: rgba(243, 192, 122, 0.07); }
.pl-who {
  flex: none; width: 38px; height: 38px; border-radius: 50%; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 15%, rgba(243, 192, 122, 0.28), rgba(255, 255, 255, 0.05) 55%, transparent);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow 0.2s;
}
.pl-who img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.pline.active .pl-who { box-shadow: inset 0 0 0 1px rgba(243, 192, 122, 0.5), 0 0 0 3px rgba(243, 192, 122, 0.14); }
.pl-body { min-width: 0; padding-top: 2px; }
.pl-name { display: block; font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--tx-3); margin-bottom: 2px; }
.pline.active .pl-name { color: var(--warm); }
.pl-text { display: block; font-size: 13.5px; line-height: 1.45; color: var(--tx-2); }
.pline.active .pl-text { color: var(--tx); }
.player-bar { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); margin-top: 14px; padding: 16px 4px 2px; }
.pplay {
  flex: none; width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: #fafafa; display: grid; place-items: center; cursor: pointer; position: relative;
  transition: background 0.15s, transform 0.12s var(--ease), box-shadow 0.18s;
}
.pplay:hover { transform: scale(1.05); box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.06); }
.pplay svg { width: 16px; height: 16px; fill: #000; }
.pplay .i-play { margin-left: 2px; }
.pplay .i-pause { display: none; }
.player.playing .pplay { background: var(--warm); }
.player.playing .pplay .i-play { display: none; }
.player.playing .pplay .i-pause { display: block; }
.pplay.loading svg { opacity: 0; }
.pplay.loading::after {
  content: ""; position: absolute; width: 17px; height: 17px; border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.25); border-top-color: #000; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pwave { display: flex; align-items: center; gap: 3px; height: 26px; flex: 1; }
.pwave i { flex: 1; height: 20%; background: rgba(255, 255, 255, 0.14); border-radius: 3px; transition: height 0.18s, background 0.18s; }
.player.playing .pwave i { background: var(--warm); animation: wave 0.9s ease-in-out infinite; }
.pwave i:nth-child(2n) { animation-delay: 0.12s; }
.pwave i:nth-child(3n) { animation-delay: 0.24s; }
.pwave i:nth-child(4n) { animation-delay: 0.34s; }
@keyframes wave { 0%, 100% { height: 20%; } 50% { height: 92%; } }
.pstatus { flex: none; max-width: 40%; font-size: 11px; font-weight: 400; color: var(--tx-3); text-align: right; line-height: 1.35; }

/* ---------------- how it works ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.step {
  padding: 28px; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-1), var(--bg)); text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.step:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.9); }
.step-visual { display: grid; place-items: center; height: 100px; border-radius: 16px; background: radial-gradient(120% 120% at 50% 0%, rgba(243, 192, 122, 0.08), transparent 60%), var(--bg-2); margin-bottom: 22px; color: var(--tx-2); border: 1px solid var(--line); }
.step-visual svg { width: 44px; height: 44px; }
.mini-avatars { display: flex; }
.mini-avatars i {
  width: 50px; height: 50px; border-radius: 50%; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 12%, rgba(243, 192, 122, 0.32), rgba(255, 255, 255, 0.06) 55%, transparent);
  border: 2px solid #0c0c0d; box-shadow: inset 0 0 0 1px var(--line);
}
.mini-avatars i + i { margin-left: -18px; }
.mini-avatars i img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.mini-player { display: flex; align-items: center; gap: 4px; background: #fafafa; border-radius: var(--pill); padding: 12px 18px; }
.mini-player svg { width: 13px; height: 13px; fill: #000; margin-right: 6px; }
.mini-player i { width: 4px; border-radius: 2px; background: var(--warm-2); }
.mini-player i:nth-child(2) { height: 10px; }
.mini-player i:nth-child(3) { height: 18px; }
.mini-player i:nth-child(4) { height: 13px; }
.mini-player i:nth-child(5) { height: 20px; }
.mini-player i:nth-child(6) { height: 9px; }
.mini-player i:nth-child(7) { height: 15px; }
.mini-player i:nth-child(8) { height: 11px; }
.step h3 { font-size: 18px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--tx); }
.step-no { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(243, 192, 122, 0.12); color: var(--warm); font-size: 11.5px; font-weight: 700; border: 1px solid rgba(243, 192, 122, 0.22); }
.step p { color: var(--tx-2); font-size: 14px; margin-top: 8px; }

/* ---------------- voices: cutout portraits on a lit stage ---------------- */
.cast-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.cast-card {
  position: relative; display: block; padding: 0; width: 100%; text-align: left;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  cursor: pointer; font-family: var(--ui);
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s;
}
.cast-card:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: 0 40px 70px -40px rgba(0, 0, 0, 0.95); }
.cast-card.playing { border-color: rgba(243, 192, 122, 0.55); box-shadow: 0 0 0 1px rgba(243, 192, 122, 0.35), 0 30px 60px -34px rgba(243, 192, 122, 0.3); }
.cc-stage {
  display: block; position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background:
    radial-gradient(80% 75% at 50% 12%, rgba(243, 192, 122, 0.22), transparent 62%),
    radial-gradient(120% 120% at 50% 120%, rgba(255, 255, 255, 0.05), transparent 55%),
    #08080a;
}
.cc-stage::after { /* soft floor shadow the cutout stands on */
  content: ""; position: absolute; left: 50%; bottom: 6%; width: 62%; height: 12%;
  transform: translateX(-50%); background: radial-gradient(closest-side, rgba(0, 0, 0, 0.65), transparent); filter: blur(3px);
}
.cc-cut {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
  filter: saturate(0.92) contrast(1.02) drop-shadow(0 12px 20px rgba(0, 0, 0, 0.55));
  transition: transform 0.5s var(--ease);
}
.cast-card:hover .cc-cut { transform: translateX(-50%) scale(1.035); }
.cc-badge {
  position: absolute; top: 12px; left: 12px; display: none; align-items: center; gap: 3px;
  height: 20px; padding: 0 9px; background: rgba(243, 192, 122, 0.16);
  border: 1px solid rgba(243, 192, 122, 0.3); backdrop-filter: blur(6px); border-radius: var(--pill);
}
.cast-card.playing .cc-badge { display: flex; }
.cc-badge i { width: 2.5px; height: 40%; background: var(--warm); border-radius: 2px; animation: wave 0.9s ease-in-out infinite; }
.cc-badge i:nth-child(2) { animation-delay: 0.15s; }
.cc-badge i:nth-child(3) { animation-delay: 0.3s; }
.cc-foot { display: flex; align-items: center; gap: 12px; padding: 15px 16px 16px; border-top: 1px solid var(--line); background: var(--bg-1); position: relative; }
.cc-body { min-width: 0; flex: 1; }
.cc-name { display: block; font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: var(--tx); }
.cc-desc { display: block; color: var(--tx-3); font-size: 12.5px; margin-top: 1px; }
.cc-play {
  flex: none; width: 42px; height: 42px; border-radius: 50%; background: #fafafa;
  display: grid; place-items: center; position: relative; transition: background 0.15s, transform 0.12s var(--ease);
}
.cc-play svg { width: 14px; height: 14px; fill: #000; }
.cc-play .i-play { margin-left: 2px; }
.cast-card:hover .cc-play { transform: scale(1.07); }
.cast-card.playing .cc-play { background: var(--warm); }
.cc-play.loading svg { opacity: 0; }
.cc-play.loading::after { content: ""; position: absolute; width: 15px; height: 15px; border-radius: 50%; border: 2px solid rgba(0, 0, 0, 0.25); border-top-color: #000; animation: spin 0.7s linear infinite; }

/* ---------------- features ---------------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.feat { padding: 24px; border: 1px solid var(--line); border-radius: var(--r-lg); background: linear-gradient(180deg, var(--bg-1), var(--bg)); transition: border-color 0.2s, transform 0.2s; }
.feat:hover { border-color: var(--line-2); transform: translateY(-3px); }
.feat-ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(243, 192, 122, 0.1); border: 1px solid rgba(243, 192, 122, 0.18); margin-bottom: 16px; }
.feat-ic svg { width: 21px; height: 21px; fill: none; stroke: var(--warm); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feat-ic svg .hl { fill: var(--warm); stroke: none; opacity: 0.3; }
.feat h3 { font-size: 16px; font-weight: 600; margin-bottom: 5px; color: var(--tx); }
.feat p { color: var(--tx-2); font-size: 13.5px; }
.feat-tag { display: inline-block; font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--warm); background: rgba(243, 192, 122, 0.12); border: 1px solid rgba(243, 192, 122, 0.22); border-radius: var(--pill); padding: 2px 8px; vertical-align: middle; margin-left: 6px; }

/* ---------------- pricing ---------------- */
.bill-toggle { display: inline-flex; gap: 4px; margin: 26px auto 0; padding: 4px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); border-radius: var(--pill); }
.bill-opt { font-family: var(--ui); font-size: 13.5px; font-weight: 500; color: var(--tx-2); padding: 9px 18px; border: 0; background: transparent; border-radius: var(--pill); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: color 0.15s, background 0.15s; }
.bill-opt.is-on { background: #fafafa; color: #000; }
.save { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--warm-2); }
.bill-opt.is-on .save { color: #7a5a1e; }
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; align-items: stretch; }
.tier { position: relative; padding: 26px 24px; border: 1px solid var(--line); border-radius: var(--r-lg); background: linear-gradient(180deg, var(--bg-1), var(--bg)); display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s; }
.tier:hover { border-color: var(--line-2); transform: translateY(-3px); }
.tier.pop { border-color: rgba(243, 192, 122, 0.4); background: linear-gradient(180deg, rgba(243, 192, 122, 0.06), var(--bg-1)); box-shadow: 0 0 0 1px rgba(243, 192, 122, 0.16), 0 40px 80px -50px rgba(243, 192, 122, 0.4); }
.tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: #000; background: var(--warm); padding: 5px 12px; border-radius: var(--pill); white-space: nowrap; box-shadow: 0 6px 20px -6px var(--warm-glow); }
.tier-name { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--tx-2); margin-bottom: 12px; }
.tier-price { display: flex; align-items: baseline; gap: 5px; }
.tier-price .amt { font-size: 38px; font-weight: 700; letter-spacing: -0.03em; color: #fff; }
.tier-price .per { font-size: 13px; color: var(--tx-3); }
.tier-annual { font-size: 11.5px; color: var(--tx-3); margin-top: 4px; }
.tier-cta { margin: 20px 0 22px; width: 100%; }
.tier-feat { list-style: none; display: grid; gap: 12px; }
.tier-feat li { position: relative; padding-left: 25px; font-size: 13.5px; color: var(--tx-2); }
.tier-feat li strong { color: var(--tx); font-weight: 600; }
.tier-feat li::before { content: ""; position: absolute; left: 3px; top: 6px; width: 11px; height: 6px; border-left: 2px solid var(--warm); border-bottom: 2px solid var(--warm); transform: rotate(-45deg); }
.pricing-fine { text-align: center; color: var(--tx-3); font-size: 13px; margin-top: 28px; }

/* ---------------- faq ---------------- */
.faq-list { max-width: 720px; margin: 44px auto 0; }
.faq-item { background: linear-gradient(180deg, var(--bg-1), var(--bg)); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; transition: border-color 0.15s; }
.faq-item[open] { border-color: var(--line-2); }
.faq-item summary { list-style: none; cursor: pointer; padding: 19px 22px; font-size: 15.5px; font-weight: 500; color: var(--tx); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; flex: none; width: 14px; height: 14px; }
.faq-x::before, .faq-x::after { content: ""; position: absolute; background: var(--tx-3); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-x::before { width: 14px; height: 2px; }
.faq-x::after { width: 2px; height: 14px; transition: transform 0.2s var(--ease), opacity 0.2s; }
.faq-item[open] .faq-x::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { padding: 0 22px 20px; color: var(--tx-2); font-size: 14.5px; line-height: 1.6; max-width: 62ch; }

/* ---------------- final cta ---------------- */
.final-cta { margin-top: 130px; }
.final-inner {
  max-width: var(--maxw); margin: 0 auto; text-align: center;
  background: linear-gradient(180deg, var(--bg-2), #050505);
  border: 1px solid var(--line); border-radius: 28px; padding: 84px 24px; position: relative; overflow: hidden;
}
.final-inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% -20%, rgba(243, 192, 122, 0.22), transparent 60%); }
.final-inner h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 4.8vw, 54px); line-height: 1.02; position: relative; letter-spacing: -0.01em; color: #fff; }
.final-inner p { color: var(--tx-2); font-size: 16.5px; margin-top: 16px; position: relative; }
.final-inner .hero-actions { position: relative; margin-top: 32px; }

/* ---------------- footer ---------------- */
.foot { max-width: var(--maxw); margin: 64px auto 0; padding: 0 24px 44px; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 32px; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { color: var(--tx-2); font-size: 13.5px; font-weight: 400; transition: color 0.15s; }
.foot-links a:hover { color: var(--tx); }
.foot-base { color: var(--tx-3); font-size: 12.5px; }

/* ---------------- responsive ---------------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; min-height: 0; padding-top: 16px; }
  .hero-copy { max-width: 100%; }
  .player { max-width: 100%; }
  .steps, .cast-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .section-head { padding-top: 96px; }
  .steps, .feat-grid, .tiers { grid-template-columns: 1fr; }
  .cast-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cc-foot { padding: 12px; gap: 8px; }
  .cc-play { width: 38px; height: 38px; }
  .hero { padding-top: 40px; }
  .hero-h1 { font-size: clamp(44px, 14vw, 60px); }
  .pstatus { display: none; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
  .final-inner { padding: 56px 20px; border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .dot, .hero::before { animation: none; }
  .player.playing .pwave i, .cc-badge i { animation: none; height: 60%; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.06s !important; }
}
