*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #09090b;
  --bg-soft: #0f1016;
  --bg-elevated: #18181b;
  --panel: rgba(24, 24, 27, 0.72);
  --panel-strong: rgba(39, 39, 42, 0.78);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #fafafa;
  --muted: #a1a1aa;
  --muted-strong: #d4d4d8;
  --accent: #6366f1;
  --accent-2: #8b5cf6;
  --accent-3: #38bdf8;
  --accent-soft: #a5b4fc;
  --accent-glow: rgba(99, 102, 241, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(99, 102, 241, 0.22), transparent 35rem),
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.16), transparent 26rem),
    linear-gradient(180deg, #09090b 0%, #0b0b10 42%, #09090b 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 9999px;
  filter: blur(84px);
  opacity: 0.32;
  pointer-events: none;
}

.page-glow-left {
  left: -11rem;
  top: 14rem;
  background: var(--accent);
}

.page-glow-right {
  right: -12rem;
  top: 30rem;
  background: var(--accent-2);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, #6366f1, #7c3aed);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.logo-mark svg {
  width: 1rem;
  height: 1rem;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a:not(.btn) {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: #ffffff;
  color: #09090b;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #e4e4e7;
  box-shadow: 0 18px 42px rgba(99, 102, 241, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.btn .arrow {
  width: 0.85rem;
  height: 0.85rem;
  margin-left: 0.35rem;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-lg {
  padding: 0.82rem 1.35rem;
  font-size: 0.9375rem;
  border-radius: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 6.5rem 0 5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-soft);
  margin-bottom: 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-badge svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--accent-soft);
}

.hero h1 {
  max-width: 20em;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-wrap: balance;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(180deg, #ffffff 12%, #d4d4d8 68%, #8b95a5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 .grad {
  background: linear-gradient(90deg, #818cf8, #a78bfa 50%, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--muted);
  text-wrap: balance;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-visual {
  max-width: 620px;
  margin: 0 auto;
  perspective: 1000px;
}

.recorder-demo {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(16, 16, 22, 0.82);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: rotateX(2deg);
}

.demo-topbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid var(--border);
  padding: 0.25rem 0.25rem 0.9rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.demo-topbar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
}

.demo-topbar span:first-child {
  background: #fb7185;
}

.demo-topbar span:nth-child(2) {
  background: #fbbf24;
}

.demo-topbar span:nth-child(3) {
  background: #34d399;
}

.demo-topbar p {
  margin-left: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.demo-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  height: 96px;
  margin: 1.6rem 0 1.35rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.24), transparent 62%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-wave span {
  display: block;
  width: 6px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #e0e7ff, #818cf8 54%, #8b5cf6);
  opacity: 0.7;
  animation: wave 1.2s ease-in-out infinite;
}

.demo-wave span:nth-child(1) { height: 12px; animation-delay: 0s; }
.demo-wave span:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.demo-wave span:nth-child(3) { height: 36px; animation-delay: 0.2s; }
.demo-wave span:nth-child(4) { height: 28px; animation-delay: 0.3s; }
.demo-wave span:nth-child(5) { height: 40px; animation-delay: 0.4s; }
.demo-wave span:nth-child(6) { height: 32px; animation-delay: 0.5s; }
.demo-wave span:nth-child(7) { height: 44px; animation-delay: 0.6s; }
.demo-wave span:nth-child(8) { height: 20px; animation-delay: 0.7s; }
.demo-wave span:nth-child(9) { height: 36px; animation-delay: 0.8s; }
.demo-wave span:nth-child(10) { height: 16px; animation-delay: 0.9s; }
.demo-wave span:nth-child(11) { height: 28px; animation-delay: 1s; }
.demo-wave span:nth-child(12) { height: 12px; animation-delay: 1.1s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 0.9; }
}

.demo-text {
  padding: 0 1rem;
  font-size: 1rem;
  color: var(--muted-strong);
}

.demo-footer {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.demo-footer span {
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.2rem 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.035);
}

/* Values */
.values {
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
}

.values-head {
  max-width: 40rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.values-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.045em;
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.values-head p {
  color: var(--muted);
  font-size: 1.0625rem;
  text-wrap: balance;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.value-card:nth-child(1),
.value-card:nth-child(4) {
  grid-column: span 4;
}

.value-card:nth-child(2),
.value-card:nth-child(3) {
  grid-column: span 2;
}

.value-card {
  --ca: 99, 102, 241;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 16, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.v-retention { --ca: 52, 211, 153; }
.v-market { --ca: 99, 102, 241; }
.v-features { --ca: 167, 139, 250; }
.v-privacy { --ca: 56, 189, 248; }

.value-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--ca), 0.6), transparent);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.value-glow {
  position: absolute;
  z-index: -1;
  top: -6rem;
  right: -6rem;
  width: 16rem;
  height: 16rem;
  border-radius: 9999px;
  background: rgba(var(--ca), 0.18);
  filter: blur(70px);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--ca), 0.45);
}

.value-card:hover .value-glow {
  opacity: 0.95;
}

.value-card:hover::after {
  opacity: 1;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 1.15rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(var(--ca), 0.35);
  color: rgb(var(--ca));
  background: rgba(var(--ca), 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 24px rgba(var(--ca), 0.12);
}

.value-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.value-chip {
  align-self: flex-start;
  margin-bottom: 0.9rem;
  padding: 0.22rem 0.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(var(--ca), 0.3);
  background: rgba(var(--ca), 0.1);
  color: rgb(var(--ca));
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

/* DX */
.dx {
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
}

.dx h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 3rem;
  letter-spacing: -0.045em;
}

.dx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.dx-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(9, 9, 11, 0.5);
}

.dx-card h3 {
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.dx-card p,
.dx-card li {
  font-size: 0.875rem;
  color: var(--muted);
}

.dx-card ul {
  list-style: none;
  margin-top: 0.5rem;
}

.dx-card li {
  margin-bottom: 0.25rem;
}

.dx-card a {
  color: var(--accent-soft);
  text-decoration: none;
}

.dx-card a:hover {
  text-decoration: underline;
}

/* Agent prompt */
.agent {
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
}

.agent-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.agent-copy .eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.agent-copy h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.agent-copy p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.agent-copy a {
  color: var(--accent-soft);
  text-decoration: none;
}

.agent-copy a:hover {
  text-decoration: underline;
}

.agent-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted-strong);
  font-size: 0.875rem;
}

.agent-steps li {
  margin-bottom: 0.35rem;
}

.agent-prompt-wrap {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(9, 9, 11, 0.72);
  box-shadow: var(--shadow);
}

.agent-prompt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.agent-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.agent-copy-btn:hover {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.35);
  color: var(--text);
}

.agent-copy-btn svg {
  width: 0.9rem;
  height: 0.9rem;
}

.agent-prompt {
  margin: 0;
  padding: 1.15rem 1.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--muted-strong);
  white-space: pre-wrap;
  word-break: break-word;
}

/* Pricing */
.pricing {
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.pricing h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.045em;
}

.pricing-sub {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.credit-rate {
  display: inline-flex;
  border: 1px solid rgba(99, 102, 241, 0.26);
  border-radius: 9999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.875rem;
  color: var(--accent-soft);
  background: rgba(99, 102, 241, 0.1);
  margin-bottom: 2.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.price-card {
  padding: 1.55rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(24, 24, 27, 0.68);
  position: relative;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 22px 64px rgba(99, 102, 241, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.price-card .badge {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 0.6875rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-weight: 500;
}

.price-card h3 {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.price-detail {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.stripe-note {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Legal */
.legal {
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
}

.legal-inner {
  display: grid;
  gap: 2rem;
}

.legal-head {
  max-width: 44rem;
}

.legal-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.legal-head p {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.legal-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(9, 9, 11, 0.56);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.legal-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.legal-card h3 {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.015em;
}

.legal-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

/* Legal document pages */
.legal-page {
  padding: 3.5rem 0 5rem;
}

.legal-page-inner {
  max-width: 46rem;
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.legal-back:hover {
  color: var(--text);
}

.legal-page-head {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-page-head h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.875rem;
}

.legal-prose {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(9, 9, 11, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.legal-prose h2 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.75rem;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose h3 {
  font-size: 1rem;
  color: var(--muted-strong);
  margin: 1.5rem 0 0.65rem;
}

.legal-prose p,
.legal-prose li {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal-prose p {
  margin-bottom: 1rem;
}

.legal-prose ul {
  margin: 0 0 1rem 1.25rem;
}

.legal-prose li {
  margin-bottom: 0.5rem;
}

.legal-prose strong {
  color: var(--text);
  font-weight: 600;
}

.legal-prose a {
  color: var(--accent-soft);
  text-decoration: none;
}

.legal-prose a:hover {
  text-decoration: underline;
}

.legal-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85em;
  padding: 0.1rem 0.35rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
}

.legal-contact {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal-contact a {
  color: var(--accent-soft);
  text-decoration: none;
}

.legal-contact a:hover {
  text-decoration: underline;
}

/* Support */
.support {
  padding: 2.5rem 0 3.5rem;
}

.support-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.support-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.035em;
  margin-bottom: 0.65rem;
}

.support-inner p {
  color: var(--muted);
  font-size: 0.95rem;
}

.support-inner a {
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 500;
}

.support-inner a:hover {
  text-decoration: underline;
}

/* CTA */
.cta {
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
}

.cta-inner {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.2), transparent 22rem),
    linear-gradient(135deg, rgba(24, 24, 27, 0.95), rgba(9, 9, 11, 0.88));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.cta p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer p {
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: none;
}

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

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card:nth-child(1),
  .value-card:nth-child(2),
  .value-card:nth-child(3),
  .value-card:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .nav-inner {
    height: auto;
    min-height: 4rem;
    gap: 1rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-links a:not(.btn) {
    display: none;
  }

  .nav-links .btn-ghost {
    display: none;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-cta {
    align-items: stretch;
    flex-direction: column;
    max-width: 21rem;
    margin-left: auto;
    margin-right: auto;
  }

  .recorder-demo {
    padding: 0.75rem;
    transform: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card:nth-child(1),
  .value-card:nth-child(2),
  .value-card:nth-child(3),
  .value-card:nth-child(4) {
    grid-column: span 1;
  }

  .demo-wave {
    gap: 5px;
  }

  .values,
  .dx,
  .agent,
  .pricing,
  .legal,
  .support,
  .cta {
    padding: 4rem 0;
  }

  .agent-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
