:root {
  --bg: #070b14;
  --bg-2: #0b1220;
  --panel: rgba(14, 22, 39, 0.72);
  --panel-2: rgba(19, 29, 50, 0.82);
  --stroke: rgba(136, 173, 255, 0.18);
  --text: #eef3ff;
  --muted: #97a7cb;
  --accent: #6ae3ff;
  --accent-2: #7c5cff;
  --accent-3: #ff7a59;
  --success: #5ef0a3;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max: 1200px;
}

/* ── Reset ── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(106, 227, 255, 0.14), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(124, 92, 255, 0.18), transparent 24%),
    radial-gradient(circle at 60% 70%, rgba(255, 122, 89, 0.10), transparent 26%),
    linear-gradient(180deg, #060913 0%, #09101d 40%, #070b14 100%);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Background Effects ── */
.noise,
.aurora,
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.noise {
  opacity: 0.05;
  background-image: radial-gradient(#fff 0.7px, transparent 0.7px);
  background-size: 16px 16px;
  mix-blend-mode: soft-light;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 75%);
}

.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  animation: float 12s ease-in-out infinite;
}

.aurora::before {
  background: var(--accent);
  left: -8vw;
  top: 8vh;
}

.aurora::after {
  background: var(--accent-2);
  right: -5vw;
  top: 2vh;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(30px) translateX(16px) scale(1.08); }
}

/* ── Layout ── */
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ── Topbar ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 20, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

/* ── Brand ── */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(106, 227, 255, 0.95), rgba(124, 92, 255, 0.95));
  box-shadow: 0 0 28px rgba(106, 227, 255, 0.34);
  position: relative;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
}

.brand-mark::after {
  inset: 14px;
  border-color: rgba(255, 255, 255, 0.72);
}

.brand-subtitle {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* ── Navigation ── */
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .25s ease;
}

.nav a:hover { color: var(--text); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  font-weight: 600;
  font-size: inherit;
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn:active { transform: translateY(0) scale(0.985); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04111c;
  border: none;
  box-shadow: 0 18px 48px rgba(93, 193, 255, 0.30);
}

.btn-primary:hover { box-shadow: 0 22px 58px rgba(93, 193, 255, 0.38); }

.btn-warm {
  background: linear-gradient(135deg, var(--accent-3), #ffb15f);
  color: #1b0f07;
  border: none;
}

/* ── Hero ── */
.hero { padding: 72px 0 34px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

h1 {
  margin: 18px 0 18px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 760px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 10%, #8ee9ff 45%, #a992ff 75%, #ffb07d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 0 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 28px;
}

/* ── Audio Demo ── */
.audio-demo { padding: 18px 20px; }
.audio-demo audio { display: block; width: 100%; }

/* ── Metrics ── */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  min-height: 108px;
}

.metric-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.metric-label {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: auto auto;
  gap: 18px;
  align-items: start;
  padding: 28px;
}

.orb {
  position: absolute;
  inset: 10% 4% 8% 10%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 22%, rgba(106, 227, 255, 0.26), transparent 26%),
    radial-gradient(circle at 78% 20%, rgba(124, 92, 255, 0.24), transparent 24%),
    radial-gradient(circle at 48% 74%, rgba(255, 122, 89, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(20, 31, 54, 0.92), rgba(9, 16, 29, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  z-index: 0;
}

.orb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 60%);
  animation: sweep 7s linear infinite;
}

@keyframes sweep {
  from { transform: translateX(-20%); }
  to { transform: translateX(20%); }
}

/* ── Panels ── */
.panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  box-shadow: var(--shadow);
  z-index: 1;
}

.panel-title {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.panel-big {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.panel-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* Voice Panel */
.voice-panel {
  grid-column: 1;
  grid-row: 1;
  padding: 20px;
  min-height: 300px;
}

.voice-wave {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 90px;
  margin: 18px 0 12px;
}

.voice-wave span {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  animation: wave 1.2s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(106, 227, 255, 0.35);
}

.voice-wave span:nth-child(1) { height: 28px; animation-delay: 0s; }
.voice-wave span:nth-child(2) { height: 62px; animation-delay: .12s; }
.voice-wave span:nth-child(3) { height: 42px; animation-delay: .22s; }
.voice-wave span:nth-child(4) { height: 84px; animation-delay: .31s; }
.voice-wave span:nth-child(5) { height: 54px; animation-delay: .40s; }
.voice-wave span:nth-child(6) { height: 74px; animation-delay: .20s; }
.voice-wave span:nth-child(7) { height: 34px; animation-delay: .1s; }
.voice-wave span:nth-child(8) { height: 48px; animation-delay: .26s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.65); opacity: .78; }
  50% { transform: scaleY(1.12); opacity: 1; }
}

/* Stats Panel */
.stats-panel {
  grid-column: 2;
  grid-row: 1;
  padding: 18px;
  align-self: start;
}

.stat-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
}

.stat-line:last-child { border-bottom: none; }

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(94, 240, 163, 0.12);
  color: var(--success);
  border: 1px solid rgba(94, 240, 163, 0.22);
}

/* Order Panel */
.order-panel {
  grid-column: 1;
  grid-row: 2;
  padding: 18px;
  align-self: start;
}

.order-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.order-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.order-item strong { display: block; font-size: 14px; }
.order-item small { color: var(--muted); }

/* Result Panel */
.result-panel {
  grid-column: 2;
  grid-row: 2;
  padding: 18px;
  align-self: start;
}

.ring {
  width: 130px;
  height: 130px;
  margin: 16px auto 10px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0 100%, rgba(255, 255, 255, 0.07) 100% 100%);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2), 0 0 34px rgba(106, 227, 255, 0.14);
}

.ring-value {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0f1727;
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}

/* ── Sections ── */
section { padding: 56px 0; }

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

/* ── Logo Strip ── */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.logo-card {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #dbe5ff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ── Grids ── */
.pain-grid,
.feature-grid,
.dashboard-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.steps { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.cases { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.pain-grid,
.feature-grid,
.steps,
.cases,
.dashboard-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

/* ── Cards ── */
.card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 227, 255, 0.22);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.40), 0 0 30px rgba(106, 227, 255, 0.08);
}

.pain-card:hover {
  border-color: rgba(255, 122, 89, 0.28);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.40), 0 0 30px rgba(255, 122, 89, 0.10);
}

.dashboard-card:hover {
  border-color: rgba(124, 92, 255, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.40), 0 0 30px rgba(124, 92, 255, 0.10);
}

.case-card:hover {
  border-color: rgba(94, 240, 163, 0.22);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.40), 0 0 30px rgba(94, 240, 163, 0.08);
}

.logo-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 227, 255, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30), 0 0 20px rgba(106, 227, 255, 0.06);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(106, 227, 255, 0.18), rgba(124, 92, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Pain Cards */
.pain-card { position: relative; overflow: hidden; }

.pain-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 89, 0.14), transparent 70%);
}

/* Step Cards */
.step-card { position: relative; }

.step-no {
  font-size: 13px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

/* Case Cards */
.case-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  min-height: 220px;
}

.case-value {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.case-value.cyan   { color: var(--accent); }
.case-value.orange { color: #ffb27d; }
.case-value.green  { color: var(--success); }
.case-value.violet { color: #b7a6ff; }

/* ── Dashboard Cards ── */
.dashboard-card {
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(20, 31, 54, 0.78), rgba(8, 13, 24, 0.84));
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: auto -15% -20% auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(106, 227, 255, 0.16), transparent 68%);
  border-radius: 50%;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 110px;
  margin-top: 18px;
}

.mini-chart span {
  flex: 1;
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(180deg, rgba(106, 227, 255, 0.95), rgba(124, 92, 255, 0.95));
  box-shadow: 0 0 20px rgba(106, 227, 255, 0.18);
}

.mini-chart span:nth-child(1) { height: 30%; }
.mini-chart span:nth-child(2) { height: 65%; }
.mini-chart span:nth-child(3) { height: 42%; }
.mini-chart span:nth-child(4) { height: 88%; }
.mini-chart span:nth-child(5) { height: 72%; }
.mini-chart span:nth-child(6) { height: 94%; }

.dashboard-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.dashboard-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 14px;
}

.dashboard-row strong { color: var(--text); }

/* ── CTA Band ── */
.cta-band {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(106, 227, 255, 0.20), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(124, 92, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(15, 24, 42, 0.92), rgba(10, 16, 28, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ── Form ── */
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.field,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.field:focus,
textarea:focus {
  border-color: rgba(106, 227, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(106, 227, 255, 0.10);
}

.field.invalid {
  border-color: rgba(255, 122, 89, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 122, 89, 0.08);
}

.field-error {
  display: block;
  min-height: 18px;
  font-size: 12px;
  color: var(--accent-3);
  padding: 4px 18px 0;
  line-height: 1.3;
}

textarea {
  min-height: 112px;
  resize: vertical;
  grid-column: 1 / -1;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

/* ── Footer ── */
footer {
  padding: 34px 0 50px;
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
}

/* ── Burger Button ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 7px 6px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 40px 24px;
}

.mobile-menu-close {
  position: absolute;
  top: -10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: color .2s ease;
}

.mobile-menu-close:hover { color: var(--text); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: color .2s ease;
}

.mobile-nav a:hover { color: var(--accent); }

.mobile-nav .btn { margin-top: 12px; }

/* ── Floating CTA ── */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 18px;
  left: 16px;
  right: 16px;
  z-index: 30;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04111c;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  line-height: 52px;
  box-shadow: 0 12px 40px rgba(93, 193, 255, 0.35);
  transition: opacity .3s ease, transform .3s ease;
}

.floating-cta.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* ── Custom Audio Player ── */
.player-header {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.player-subheader {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

.player-tracks {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.player-track-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}

.player-track-btn.active,
.player-track-btn:hover {
  background: rgba(106, 227, 255, 0.12);
  border-color: rgba(106, 227, 255, 0.30);
  color: var(--accent);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player-play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04111c;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 4px 18px rgba(106, 227, 255, 0.25);
}

.player-play:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(106, 227, 255, 0.35);
}

.player-play .pause-icon { display: none; }
.player-play.playing .play-icon { display: none; }
.player-play.playing .pause-icon { display: block; }

.player-time-current,
.player-time-duration {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 32px;
  flex-shrink: 0;
}

.player-progress {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.player-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transition: width .1s linear;
}

.player-speed {
  min-width: 38px;
  height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s ease;
  font-family: inherit;
}

.player-speed:hover {
  border-color: rgba(106, 227, 255, 0.30);
  color: var(--accent);
  background: rgba(106, 227, 255, 0.08);
}

/* ── Compare Table ── */
.compare-table {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.compare-header,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.compare-header {
  background: rgba(255, 255, 255, 0.06);
}

.compare-header .compare-label,
.compare-header .compare-col {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 15px;
}

.compare-header .compare-ai {
  color: var(--accent);
}

.compare-header .compare-human {
  color: var(--accent-3);
}

.compare-row {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  transition: background .2s ease;
}

.compare-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.compare-label {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.compare-col {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--muted);
}

.compare-col.highlight {
  color: var(--success);
  font-weight: 600;
}

.compare-human {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── FAQ Accordion ── */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item { overflow: hidden; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  transition: color .2s ease;
}

.faq-item:hover .faq-question h3 { color: var(--accent); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transition: transform .3s ease;
}

.faq-item.open .faq-icon {
  border-color: var(--accent);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding-top: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 14px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

/* ── Footer Links ── */
.footer-link {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-link:hover { color: var(--accent); }

/* ── Scroll Animations ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-grid,
  .cta-band,
  .pain-grid,
  .feature-grid,
  .dashboard-grid { grid-template-columns: 1fr 1fr; }

  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cases { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-visual { min-height: 560px; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .topbar-cta { display: none; }
  .burger { display: flex; }
  .floating-cta { display: block; }

  .hero-grid,
  .cta-band,
  .pain-grid,
  .feature-grid,
  .dashboard-grid,
  .faq-list,
  form { grid-template-columns: 1fr; }

  .steps,
  .cases,
  .logo-strip,
  .hero-metrics { grid-template-columns: 1fr 1fr; }

  .compare-header,
  .compare-row { grid-template-columns: 0.8fr 1fr 1fr; }

  .compare-label { font-size: 13px; padding: 12px 14px; }
  .compare-col { font-size: 13px; padding: 12px 14px; }

  .hero-grid { gap: 24px; }

  .hero-visual {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
    padding: 18px;
  }

  .voice-panel,
  .stats-panel,
  .order-panel,
  .result-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .topbar-inner { min-height: 70px; }

  main { padding-bottom: 72px; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .hero { padding-top: 30px; }
  section { padding: 40px 0; }

  .steps,
  .cases,
  .logo-strip,
  .hero-metrics,
  .pain-grid,
  .feature-grid,
  .dashboard-grid,
  .faq-list { grid-template-columns: 1fr; }

  .compare-header,
  .compare-row { grid-template-columns: 1fr; gap: 0; }

  .compare-header .compare-label { display: none; }
  .compare-row .compare-label {
    background: rgba(255, 255, 255, 0.04);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    padding: 10px 16px 6px;
  }
  .compare-col { padding: 8px 16px 14px; }

  .hero-visual { min-height: auto; padding: 14px; gap: 12px; }
  .orb { inset: 0; }
  .panel { border-radius: 18px; }

  .voice-panel,
  .stats-panel,
  .order-panel,
  .result-panel { padding: 16px; }

  h1 { font-size: 40px; line-height: 1.02; }
  .lead { font-size: 16px; line-height: 1.55; }
  .btn:not(.floating-cta):not(.player-play) { width: 100%; }
  .hero-actions { flex-direction: column; margin-bottom: 18px; }
  .cta-band { padding: 22px; border-radius: 24px; }
  .card { padding: 20px; }
  .footer-row { flex-direction: column; }

  .faq-question h3 { font-size: 16px; }
}
