:root {
  --bg: #000;
  --sidebar: #0d0d0d;
  --surface: #121212;
  --surface-up: #1a1a1a;
  --surface-high: #242424;
  --text-1: #fff;
  --text-2: rgba(255, 255, 255, 0.72);
  --text-3: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);
  --record: #ef4444;
  --accent: #0a84ff;
  --accent-pressed: #0a6fd6;
  --accent-rgb: 10 132 255;
  --accent-bright: #3d9bff;
  --accent-text: #6cb4ff;
  --accent-pill: #cfe4ff;
  --hero-blue: var(--accent-pill);
  --hero-blue-text: var(--accent);
  --beta-accent-soft: rgb(var(--accent-rgb) / 0.15);
  --beta-accent-line: rgb(var(--accent-rgb) / 0.36);
  --beta-accent-text: var(--accent-text);
  --accent-warm: var(--accent);
  --green-track: rgba(255, 255, 255, 0.72);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-heavy: cubic-bezier(0.32, 0.72, 0, 1);
  --page-pad: 24px;
  --max: 1280px;
  --radius-s: 12px;
  --radius-m: 16px;
  --radius-l: 26px;
  color-scheme: dark;
}

/* Home page uses the centered beta-style hero; give it the same accent wash. */
body.home {
  background:
    radial-gradient(120% 78% at 50% -6%, rgb(var(--accent-rgb) / 0.08), transparent 58%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.92) 0, rgba(0, 0, 0, 0) 720px),
    var(--bg);
}

.beta-hero-facts {
  justify-content: center;
  margin-top: 28px;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.92) 0, rgba(0, 0, 0, 0) 520px),
    var(--bg);
  color: var(--text-1);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 68%);
  mask-image: linear-gradient(180deg, black 0%, transparent 68%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0.024;
  background-image: repeating-linear-gradient(0deg,
      rgba(255, 255, 255, 0.82) 0,
      rgba(255, 255, 255, 0.82) 1px,
      transparent 1px,
      transparent 3px);
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

picture {
  display: block;
  width: 100%;
}

picture img {
  width: 100%;
}

svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

code,
.mono,
table td,
table th {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-variant-numeric: tabular-nums;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-1);
  transform: translateY(-150%);
  transition: transform 220ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 24px 76px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  min-width: 0;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--text-1);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  transition:
    background-color 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.brand img,
.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-m);
}

.site-header .brand {
  justify-self: start;
  min-height: 38px;
  padding: 0 10px;
}

.site-header .brand-logo {
  width: 144px;
  height: auto;
  max-height: 36px;
  border-radius: 0;
}

.brand:hover,
.footer-brand:hover {
  background: rgba(255, 255, 255, 0.045);
}

.brand:active,
.footer-brand:active {
  transform: translateY(1px) scale(0.99);
}

.nav-links {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 64px;
  padding: 0 8px;
  transform: translateX(-50%);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 540;
  transition:
    color 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-1);
}

.nav-links a:active {
  transform: translateY(1px);
}

.nav-toggle {
  display: none;
}

.nav-backdrop,
.mobile-menu-head,
.nav-links .mobile-menu-download {
  display: none;
}

.nav-download,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  transition:
    background-color 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    color 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.nav-download {
  justify-self: end;
}

.nav-download,
.button-primary {
  background: var(--accent);
  color: var(--text-1);
}

.nav-download:hover,
.button-primary:hover {
  background: #3d9bff;
}

.nav-download:active,
.button-primary:active {
  background: var(--accent-pressed);
  transform: translateY(1px) scale(0.99);
}

.button {
  min-height: 46px;
  padding: 0 18px;
  font-size: 15px;
}

.button-secondary {
  border-color: var(--border);
  background: rgba(18, 18, 18, 0.84);
  color: var(--text-1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
  border-color: var(--border-strong);
  background: var(--surface-up);
}

.button svg,
.nav-download svg,
.mobile-menu-download svg {
  transition: transform 240ms var(--ease-out);
}

.button:hover svg,
.nav-download:hover svg,
.mobile-menu-download:hover svg {
  transform: translate3d(1px, 1px, 0);
}

.nav-download svg,
.button-primary[download] svg,
.mobile-menu-download svg {
  overflow: visible;
}

.nav-download svg path,
.button-primary[download] svg path,
.mobile-menu-download svg path {
  transform-box: fill-box;
  transform-origin: center;
  transition:
    opacity 260ms var(--ease-out),
    transform 360ms var(--ease-heavy);
}

.nav-download:hover svg,
.button-primary[download]:hover svg,
.mobile-menu-download:hover svg {
  animation: downloadIconSettle 720ms var(--ease-heavy);
}

.nav-download:hover svg path:first-child,
.button-primary[download]:hover svg path:first-child,
.mobile-menu-download:hover svg path:first-child {
  animation: downloadArrowDrop 720ms var(--ease-heavy);
}

.nav-download:hover svg path:last-child,
.button-primary[download]:hover svg path:last-child,
.mobile-menu-download:hover svg path:last-child {
  transform: translate3d(0, 1px, 0) scaleX(1.12);
}

.nav-download:active svg,
.button-primary[download]:active svg,
.mobile-menu-download:active svg {
  transform: translate3d(0, 2px, 0) scale(0.9);
}

.nav-download:active svg path:first-child,
.button-primary[download]:active svg path:first-child,
.mobile-menu-download:active svg path:first-child {
  animation: none;
  transform: translate3d(0, 3px, 0);
}

.nav-download:active svg path:last-child,
.button-primary[download]:active svg path:last-child,
.mobile-menu-download:active svg path:last-child {
  transform: translate3d(0, 1px, 0) scaleX(0.88);
}

/* ---------- Coming soon / Mac App Store CTA ---------- */

.appstore-glyph {
  fill: currentColor;
  stroke: none;
}

.is-soon {
  cursor: default;
}

.is-soon:hover {
  background: var(--accent);
}

.is-soon .appstore-glyph,
.is-soon:hover .appstore-glyph,
.is-soon:hover .appstore-glyph path,
.is-soon:active .appstore-glyph,
.is-soon:active .appstore-glyph path {
  animation: none !important;
  transform: none !important;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 34px;
  align-items: center;
  width: min(var(--max), 100%);
  min-height: 94dvh;
  margin: 0 auto;
  padding: 124px var(--page-pad) 78px;
}

.hero-bg {
  position: absolute;
  inset: 0 calc((100vw - min(var(--max), 100vw)) / -2);
  z-index: -1;
  overflow: hidden;
}

.hero-bg::before {
  position: absolute;
  inset: 78px 0 0;
  content: "";
  background:
    radial-gradient(circle at 78% 18%, rgba(10, 132, 255, 0.22), transparent 24%),
    radial-gradient(circle at 70% 68%, rgba(255, 255, 255, 0.09), transparent 26%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.42), rgba(0, 0, 0, 0.95));
  opacity: 0.88;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--text-2);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--record);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.section-kicker {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 86px;
  font-weight: 730;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-subhead {
  max-width: 600px;
  margin-bottom: 24px;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.58;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  background: rgba(18, 18, 18, 0.72);
  color: var(--text-2);
  font-size: 11px;
}

.hero-facts strong {
  color: var(--text-1);
  font-size: 11px;
}

.hero-demo {
  min-width: 0;
  transform: translate3d(0, 0, 0) rotate(-1deg);
}

.demo-shell,
.wow-card,
.intel-card,
.showcase-slide,
.editor-card,
.privacy-hero,
.privacy-grid article,
.spec-card,
.app-store-note,
.table-wrap,
.final-cta-inner {
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  background: var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 28px 90px rgba(0, 0, 0, 0.22);
}

.demo-shell {
  overflow: hidden;
  border-color: var(--border-strong);
  background: var(--sidebar);
}

.window-bar {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-bottom: 1px solid var(--border);
}

.traffic {
  display: flex;
  gap: 6px;
}

.traffic span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface-up);
}

.traffic span:nth-child(1) {
  background: var(--record);
}

.traffic span:nth-child(2) {
  background: var(--accent-warm);
}

.traffic span:nth-child(3) {
  background: var(--accent);
}

.window-title {
  justify-self: center;
  color: var(--text-2);
  font-size: 11px;
}

.recording-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-1);
  font-size: 11px;
  font-weight: 700;
}

.recording-indicator i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--record);
  animation: recordPulse 1.7s var(--ease-heavy) infinite;
}

.demo-screen {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: var(--bg);
}

.demo-screen img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: top left;
  opacity: 0.88;
}

.click-zoom-moment {
  position: absolute;
  right: 17%;
  top: 30%;
  display: grid;
  gap: 8px;
  justify-items: center;
  animation: zoomMoment 5.8s var(--ease-heavy) infinite;
}

.crosshair {
  position: relative;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.08);
}

.crosshair::before,
.crosshair::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.9);
}

.crosshair::before {
  top: 50%;
  left: 14px;
  right: 14px;
  height: 1px;
}

.crosshair::after {
  top: 14px;
  bottom: 14px;
  left: 50%;
  width: 1px;
}

.zoom-label,
.privacy-mask strong {
  min-height: 24px;
  padding: 4px 7px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  background: rgba(0, 0, 0, 0.82);
  color: var(--text-1);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.privacy-mask {
  position: absolute;
  left: 16%;
  bottom: 20%;
  display: grid;
  gap: 7px;
  width: 190px;
}

.privacy-mask span {
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-m);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.28) 0 4px, rgba(255, 255, 255, 0.08) 4px 8px),
    rgba(0, 0, 0, 0.62);
  filter: blur(0.2px);
}

.demo-timeline {
  position: relative;
  padding: 12px 14px 16px;
  border-top: 1px solid var(--border);
  background: var(--sidebar);
}

.timeline-head,
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-2);
  font-size: 11px;
}

.track {
  position: relative;
  height: 22px;
  margin-top: 7px;
  padding-left: 54px;
}

.track::before {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--text-3);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.zoom-track::before {
  content: "Zoom";
}

.video-track::before {
  content: "V1";
}

.audio-track::before {
  content: "A1";
}

.track span {
  position: absolute;
  top: 2px;
  height: 18px;
  border-radius: var(--radius-s);
}

.zoom-track span {
  width: 64px;
  background: rgba(255, 255, 255, 0.32);
}

.zoom-track span:nth-child(1) {
  left: 76px;
}

.zoom-track span:nth-child(2) {
  left: 230px;
}

.zoom-track span:nth-child(3) {
  left: 390px;
}

.video-track span:nth-child(1) {
  left: 54px;
  right: 36%;
  background: rgba(10, 132, 255, 0.25);
}

.video-track span:nth-child(2) {
  left: 68%;
  right: 0;
  background: rgba(10, 132, 255, 0.15);
}

.audio-track span {
  left: 54px;
  right: 0;
  background:
    linear-gradient(90deg, transparent 0 4%, rgba(255, 255, 255, 0.5) 4% 6%, transparent 6% 9%),
    linear-gradient(90deg, transparent 0 13%, rgba(255, 255, 255, 0.28) 13% 16%, transparent 16% 22%);
  background-size: 40px 18px, 58px 18px;
}

.playhead {
  position: absolute;
  top: 39px;
  bottom: 13px;
  left: 72px;
  width: 1px;
  background: var(--record);
  animation: playheadSlide 7.2s var(--ease-heavy) infinite;
}

.playhead::before {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--record);
  transform: translateX(-50%);
}

.demo-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 10px;
  color: var(--text-2);
}

.demo-caption span {
  min-height: 24px;
  padding: 4px 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  color: var(--text-1);
  font-size: 11px;
}

.demo-caption p {
  margin: 1px 0 0;
  font-size: 12px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metric {
  display: grid;
  gap: 8px;
  min-height: 116px;
  align-content: center;
  padding: 16px;
  border-left: 1px solid var(--border);
}

.metric:first-child {
  border-left: 0;
}

.metric strong {
  color: var(--text-1);
  font-size: 24px;
  font-weight: 680;
  line-height: 1;
}

.metric span {
  color: var(--text-2);
  font-size: 12px;
}

.intelligence-section {
  padding-top: 96px;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(0, 1fr);
  gap: 12px;
}

.intel-card {
  display: grid;
  min-height: 390px;
  padding: 18px;
  overflow: hidden;
}

.transcription-card {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 792px;
}

.cleanup-card {
  grid-column: 2;
  grid-row: 1;
}

.noise-card {
  grid-column: 3;
  grid-row: 1;
}

.autozoom-card {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.transcript-visual,
.cut-visual,
.noise-visual,
.autozoom-visual {
  position: relative;
  min-height: 170px;
  margin: 24px 0 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background:
    linear-gradient(180deg, rgba(36, 36, 36, 0.74), rgba(18, 18, 18, 0.92)),
    var(--sidebar);
}

.transcription-card .transcript-visual {
  min-height: 520px;
}

.word {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  background: rgba(250, 250, 250, 0.055);
  color: var(--text-2);
  font-weight: 650;
}

.word.active {
  border-color: rgba(10, 132, 255, 0.36);
  background: rgba(10, 132, 255, 0.16);
  color: var(--text-1);
}

.w1 {
  left: 12%;
  top: 20%;
}

.w2 {
  left: 35%;
  top: 34%;
}

.w3 {
  right: 26%;
  top: 50%;
}

.w4 {
  right: 12%;
  bottom: 20%;
}

.rms-line {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.rms-line i {
  height: 48px;
  border-radius: var(--radius-m);
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(10, 132, 255, 0.45) 8% 10%, transparent 10% 17%),
    linear-gradient(90deg, transparent 0 28%, rgba(255, 255, 255, 0.35) 28% 30%, transparent 30% 44%);
  background-size: 48px 48px, 86px 48px;
}

.rms-line strong {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.cut-source,
.cut-merged,
.cut-gap,
.crossfade,
.noise-wave,
.noise-slider,
.click-dot,
.zoom-keyframes {
  position: absolute;
}

.cut-source,
.cut-merged {
  left: 18px;
  right: 18px;
  height: 28px;
  border-radius: var(--radius-s);
  background: rgba(10, 132, 255, 0.22);
}

.cut-source {
  top: 40px;
}

.cut-merged {
  bottom: 42px;
  background: rgba(255, 255, 255, 0.22);
}

.cut-gap {
  left: 45%;
  top: 34px;
  padding: 6px 9px;
  border-radius: var(--radius-s);
  background: rgba(239, 68, 68, 0.16);
  color: var(--text-1);
  font-size: 11px;
}

.crossfade {
  bottom: 35px;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-s);
  display: grid;
  place-items: center;
  color: var(--text-1);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.crossfade.a {
  left: 42%;
  background: rgba(10, 132, 255, 0.36);
}

.crossfade.b {
  left: calc(42% + 22px);
  background: rgba(255, 255, 255, 0.36);
}

.noise-wave {
  left: 18px;
  right: 18px;
  height: 42px;
  border-radius: var(--radius-m);
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(255, 255, 255, 0.48) 5% 8%, transparent 8% 12%),
    linear-gradient(90deg, transparent 0 20%, rgba(10, 132, 255, 0.35) 20% 22%, transparent 22% 30%);
  background-size: 34px 42px, 58px 42px;
}

.noise-wave.raw {
  top: 28px;
}

.noise-wave.clean {
  bottom: 28px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(10, 132, 255, 0.46) 12% 15%, transparent 15% 22%);
  background-size: 58px 42px;
}

.noise-slider {
  left: 18px;
  right: 18px;
  top: calc(50% - 3px);
  height: 6px;
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, 0.08);
}

.noise-slider i {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.click-dot {
  left: 28%;
  top: 34%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--record);
  box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.12);
}

.click-dot.second {
  left: 48%;
  top: 42%;
  background: var(--accent-warm);
}

.zoom-keyframes {
  left: 18px;
  right: 18px;
  bottom: 32px;
  height: 32px;
  border-radius: var(--radius-s);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 22%, rgba(255, 255, 255, 0.34) 22% 66%, rgba(255, 255, 255, 0.18) 66% 100%);
}

.section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 112px var(--page-pad);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.privacy-hero h2,
.final-cta h2 {
  margin-bottom: 12px;
  color: var(--text-1);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading p,
.privacy-hero p,
.final-cta p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.66;
}

.wow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.wow-card {
  display: grid;
  min-height: 334px;
  padding: 18px;
  overflow: hidden;
}

.zoom-card {
  grid-row: span 2;
  min-height: 680px;
}

.status {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 24px;
  padding: 0 7px;
  border: 1px solid rgba(10, 132, 255, 0.28);
  border-radius: var(--radius-s);
  background: rgba(10, 132, 255, 0.08);
  color: var(--text-1);
  font-size: 11px;
  font-weight: 650;
}

.zoom-visual,
.privacy-visual,
.timeline-visual {
  position: relative;
  min-height: 310px;
  margin: 26px 0 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background:
    linear-gradient(180deg, rgba(36, 36, 36, 0.74), rgba(18, 18, 18, 0.92)),
    var(--sidebar);
}

.zoom-card .zoom-visual {
  min-height: 430px;
}

.zoom-preview {
  position: absolute;
  inset: 18px 18px 86px;
  border-radius: var(--radius-m);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 22%, transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.zoom-focus {
  position: absolute;
  right: 18%;
  top: 28%;
  width: 130px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.08);
  animation: focusFloat 6s var(--ease-heavy) infinite;
}

.zoom-cursor {
  position: absolute;
  right: 25%;
  top: 42%;
  width: 26px;
  height: 26px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(10, 132, 255, 0.13);
  animation: cursorBounce 3.8s var(--ease-heavy) infinite;
}

.moment-row {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 24px;
  height: 38px;
  border-radius: var(--radius-m);
  background: rgba(0, 0, 0, 0.56);
}

.moment-row span {
  position: absolute;
  top: 8px;
  width: 86px;
  height: 22px;
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, 0.36);
}

.moment-row span:nth-child(1) {
  left: 11%;
}

.moment-row span:nth-child(2) {
  left: 45%;
}

.moment-row span:nth-child(3) {
  right: 8%;
}

.privacy-visual {
  min-height: 150px;
  margin-top: 22px;
}

.fake-token {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 24px;
  padding: 12px;
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-3);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.blur-region {
  position: absolute;
  left: 46px;
  right: 38px;
  top: 49px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-m);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.3) 0 5px, rgba(255, 255, 255, 0.08) 5px 10px),
    rgba(0, 0, 0, 0.82);
  color: var(--text-1);
  font-size: 11px;
  text-align: center;
}

.space-chip {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 5px 7px;
  border-radius: var(--radius-s);
  background: rgba(239, 68, 68, 0.12);
  color: var(--text-1);
  font-size: 11px;
}

.timeline-visual {
  min-height: 150px;
  margin-top: 22px;
}

.piece,
.ghost-piece {
  position: absolute;
  height: 30px;
  border-radius: var(--radius-s);
}

.p1 {
  left: 18px;
  top: 34px;
  width: 42%;
  background: rgba(10, 132, 255, 0.26);
}

.p2 {
  left: 50%;
  top: 34px;
  width: 24%;
  background: rgba(10, 132, 255, 0.18);
}

.p3 {
  left: 24%;
  top: 82px;
  width: 48%;
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(255, 255, 255, 0.48) 5% 7%, transparent 7% 12%);
  background-size: 36px 30px;
}

.ghost-piece {
  right: 18px;
  top: 34px;
  width: 19%;
  border: 1px dashed rgba(250, 250, 250, 0.28);
  background: rgba(255, 255, 255, 0.035);
}

.trim-handle {
  position: absolute;
  left: calc(50% - 4px);
  top: 30px;
  width: 8px;
  height: 38px;
  border-radius: var(--radius-s);
  background: var(--accent);
}

.wow-card h3,
.intel-card h3,
.showcase-slide h3,
.editor-card h3,
.privacy-grid h3 {
  margin-bottom: 8px;
  color: var(--text-1);
  font-size: 20px;
  font-weight: 680;
  line-height: 1.16;
  text-wrap: balance;
}

.wow-card p,
.intel-card p,
.showcase-slide p,
.editor-card p,
.privacy-grid p {
  margin-bottom: 0;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.62;
}

.showcase-section {
  --slide-w: clamp(560px, 62vw, 1040px);
  --slide-h: min(78vh, 720px);
  --slide-gap: 28px;
  --pad-x: clamp(24px, 6vw, 96px);
  --jack-step: 88vh;
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: calc(100vh + (10 - 1) * var(--jack-step));
  background:
    radial-gradient(1100px 540px at 50% 0%, rgba(10, 132, 255, 0.07), transparent 70%),
    var(--bg);
}

.showcase-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.showcase-pin::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.72), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent 28%);
}

.showcase-viewport {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  padding: clamp(64px, 7vh, 96px) 0 clamp(20px, 3.5vh, 32px);
}

.showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 0 var(--pad-x);
  margin-bottom: clamp(20px, 3.2vh, 36px);
}

.showcase-head .section-kicker {
  margin-bottom: 8px;
}

.showcase-head h2 {
  margin: 0;
  color: var(--text-1);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.04;
  text-wrap: balance;
}

.showcase-sub {
  max-width: 580px;
  margin: 12px 0 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.62;
}

.showcase-rail {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.showcase-rail li {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  background: rgba(18, 18, 18, 0.7);
}

.showcase-rail strong {
  color: var(--text-1);
  font-size: 13px;
}

.showcase-rail span {
  color: var(--text-2);
  font-size: 11px;
}

.showcase-stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.showcase-track {
  display: flex;
  align-items: center;
  gap: var(--slide-gap);
  height: 100%;
  padding: 0 calc(50% - var(--slide-w) / 2);
  will-change: transform;
}

.showcase-slide {
  position: relative;
  flex: 0 0 var(--slide-w);
  display: grid;
  grid-template-rows: 1fr auto;
  height: var(--slide-h);
  padding: 0;
  overflow: hidden;
  opacity: 0.42;
  transform: scale(0.93);
  transition:
    opacity 420ms var(--ease-out),
    transform 420ms var(--ease-out),
    border-color 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out);
}

.showcase-slide.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--border-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.085),
    0 50px 140px rgba(0, 0, 0, 0.55),
    0 18px 40px rgba(0, 0, 0, 0.42);
}

.slide-frame {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--sidebar);
  border-bottom: 1px solid var(--border);
}

.slide-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.45));
}

.slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.slide-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  align-items: end;
  gap: 28px;
  padding: 22px 26px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 80%),
    var(--surface);
}

.slide-copy h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.slide-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.62;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 0 9px;
  height: 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-s);
  background: rgba(0, 0, 0, 0.62);
  color: var(--text-1);
  font-size: 11px;
}

.slide-tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.showcase-slide[data-chapter="record"] .slide-tag i {
  background: var(--record);
}

.showcase-slide[data-chapter="ship"] .slide-tag i {
  background: var(--green-track);
}

.slide-meta {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-2);
  font-size: 11.5px;
  white-space: nowrap;
}

.slide-meta li {
  position: relative;
  padding-left: 14px;
}

.slide-meta li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.showcase-slide[data-chapter="record"] .slide-meta li::before {
  background: var(--record);
}

.showcase-slide[data-chapter="ship"] .slide-meta li::before {
  background: var(--green-track);
}

.showcase-foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 var(--pad-x);
  margin-top: clamp(16px, 2.4vh, 26px);
}

.showcase-counter {
  color: var(--text-1);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.showcase-bar {
  position: relative;
  height: 2px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.showcase-bar i {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  transition: transform 220ms var(--ease-out);
  will-change: transform;
}

.showcase-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-3);
  font-size: 11px;
}

.showcase-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-s);
  color: var(--text-2);
  animation: showcaseArrow 1800ms var(--ease-out) infinite;
}

.showcase-arrow svg {
  width: 14px;
  height: 14px;
}

@keyframes showcaseArrow {

  0%,
  60%,
  100% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(4px);
  }
}

.showcase-section.no-jack {
  height: auto;
  padding: 96px 0;
}

.showcase-section.no-jack .showcase-pin {
  position: static;
  height: auto;
  overflow: visible;
}

.showcase-section.no-jack .showcase-viewport {
  display: block;
  height: auto;
  padding: 0;
}

.showcase-section.no-jack .showcase-head {
  padding-bottom: 24px;
}

.showcase-section.no-jack .showcase-stage {
  overflow: auto hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.showcase-section.no-jack .showcase-stage::-webkit-scrollbar {
  display: none;
}

.showcase-section.no-jack .showcase-track {
  height: auto;
  padding: 8px var(--pad-x);
  transform: none !important;
}

.showcase-section.no-jack .showcase-slide {
  scroll-snap-align: center;
  opacity: 1;
  transform: none;
  height: auto;
}

.showcase-section.no-jack .showcase-slide .slide-frame {
  height: clamp(240px, 56vw, 540px);
}

.showcase-section.no-jack .showcase-foot {
  margin-top: 28px;
}

.editor-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 92px;
  margin-bottom: 0;
  padding: 24px 0;
}

.editor-stack {
  display: grid;
  gap: 12px;
}

.editor-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 18px;
  align-items: center;
  min-height: 340px;
  padding: 12px;
  overflow: hidden;
}

.editor-card img {
  width: 100%;
  height: 316px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--bg);
}

.effects-card img {
  object-position: top center;
}

.split-card {
  grid-template-columns: minmax(260px, 0.54fr) 1fr;
}

.cursor-card {
  grid-template-columns: minmax(260px, 0.54fr) 1fr;
}

.cursor-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 23%, transparent 23%),
    linear-gradient(180deg, rgba(36, 36, 36, 0.72), rgba(18, 18, 18, 0.92));
}

.cursor-path {
  position: absolute;
  height: 1px;
  border-top: 1px dashed rgba(168, 171, 179, 0.34);
  transform-origin: left center;
}

.path-one {
  left: 70px;
  right: 44px;
  top: 104px;
  transform: rotate(-11deg);
}

.path-two {
  left: 112px;
  right: 86px;
  top: 158px;
  transform: rotate(14deg);
}

.cursor-ring-demo {
  position: absolute;
  left: 55%;
  top: 42%;
  width: 42px;
  height: 42px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(10, 132, 255, 0.13);
  animation: cursorTrace 4.8s var(--ease-heavy) infinite;
}

.click-bounce-demo {
  position: absolute;
  left: calc(55% + 21px);
  top: calc(42% + 21px);
  width: 16px;
  height: 16px;
  border: 1px solid var(--record);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: clickBounce 4.8s var(--ease-heavy) infinite;
}

.cursor-swatches {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
}

.cursor-swatches i {
  height: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  background: var(--accent);
}

.cursor-swatches i:nth-child(2) {
  background: var(--record);
}

.cursor-swatches i:nth-child(3) {
  background: var(--accent-warm);
}

.cursor-swatches i:nth-child(4) {
  background: var(--green-track);
}

.cursor-swatches i:nth-child(5) {
  background: var(--accent-text);
}

.cursor-swatches i:nth-child(6) {
  background: #fafafa;
}

.cursor-swatches i:nth-child(7) {
  background: #737373;
}

.cursor-swatches i:nth-child(8) {
  background: #23262b;
}

.cleanup-visual {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--bg);
}

.wave-labels {
  display: flex;
  justify-content: space-between;
  color: var(--text-3);
  font-size: 11px;
}

.waveform {
  height: 54px;
  border-radius: var(--radius-m);
  background:
    linear-gradient(90deg, transparent 0 4%, rgba(10, 132, 255, 0.58) 4% 6%, transparent 6% 10%),
    linear-gradient(90deg, transparent 0 16%, rgba(255, 255, 255, 0.44) 16% 19%, transparent 19% 28%);
  background-size: 36px 54px, 64px 54px;
}

.waveform.after {
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(10, 132, 255, 0.48) 8% 11%, transparent 11% 17%),
    linear-gradient(90deg, transparent 0 22%, rgba(255, 255, 255, 0.28) 22% 24%, transparent 24% 36%);
  background-size: 50px 54px, 88px 54px;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-2);
  font-size: 12px;
}

.toggle {
  position: relative;
  width: 34px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--surface-up);
}

.toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--text-1);
}

.toggle.is-on {
  background: rgba(10, 132, 255, 0.3);
}

.toggle.is-on::after {
  transform: translateX(15px);
}

.caption-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.caption-track {
  display: flex;
  width: max-content;
  gap: 8px;
  padding: 18px 0;
  animation: captionSlide 24s linear infinite;
}

.caption-pill {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--surface);
  color: var(--text-1);
  font-weight: 700;
  white-space: nowrap;
}

.reels,
.karaoke {
  background: rgba(239, 68, 68, 0.12);
}

.documentary,
.editorial {
  background: rgba(255, 255, 255, 0.12);
}

.tech,
.education,
.creator {
  background: rgba(10, 132, 255, 0.12);
}

.privacy-section {
  padding-top: 92px;
}

.privacy-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.08), transparent 56%),
    var(--surface);
}

code {
  color: var(--text-1);
  font-size: 0.92em;
}

.privacy-proof {
  display: grid;
  gap: 8px;
  min-width: 210px;
}

.privacy-proof span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 9px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  background: rgba(0, 0, 0, 0.44);
  color: var(--text-1);
  font-size: 12px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.privacy-grid article {
  min-height: 242px;
  padding: 18px;
}

.privacy-grid .mono {
  display: block;
  margin-bottom: 58px;
  color: var(--accent);
  font-size: 12px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 28px 90px rgba(0, 0, 0, 0.22);
}

.specs-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.specs-intro .section-heading {
  margin-bottom: 0;
}

.specs-rail {
  display: grid;
  gap: 6px;
}

.specs-rail span {
  display: grid;
  min-height: 36px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  background: rgba(18, 18, 18, 0.66);
  color: var(--text-2);
  font-size: 12px;
}

.specs-rail strong {
  color: var(--text-1);
  font-size: 12px;
}

.spec-card {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  grid-column: span 1;
  gap: 18px;
  align-items: baseline;
  min-height: auto;
  padding: 16px 20px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  box-shadow: none;
  transition: background-color 220ms var(--ease-out);
}

.spec-card::before {
  display: none;
}

.spec-card:hover {
  background-color: rgba(255, 255, 255, 0.022);
  border-color: var(--border);
  transform: none;
}

.spec-card:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.spec-card span {
  display: block;
  color: var(--text-3);
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, monospace;
}

.spec-card strong {
  display: block;
  color: var(--text-1);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.spec-card-feature {
  grid-column: span 1;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 168px;
  padding: 20px 22px;
  background: transparent;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid var(--accent);
}

.spec-card-feature.warm {
  border-left-color: var(--accent-warm);
}

.spec-card-feature span {
  color: var(--accent);
}

.spec-card-feature.warm span {
  color: var(--accent-warm);
}

.spec-card-feature strong {
  max-width: 520px;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.42;
  text-wrap: balance;
}

.spec-card-wide {
  grid-column: span 2;
  border-right: 0;
}

.app-store-note {
  margin-top: 12px;
  padding: 18px;
}

.app-store-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-warm);
  font-size: 12px;
}

.app-store-note p {
  max-width: 870px;
  margin: 0;
  color: var(--text-2);
  line-height: 1.62;
}

.app-store-note+.app-store-note {
  margin-top: 12px;
}

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  font-size: 12px;
  text-align: left;
  vertical-align: top;
}

thead th {
  position: sticky;
  top: 0;
  background: var(--sidebar);
  color: var(--text-1);
  font-weight: 700;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tbody th {
  color: var(--text-1);
  font-weight: 650;
}

td.yes {
  color: var(--accent);
}

.faq-section {
  padding-top: 92px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0 0 10px;
  color: var(--text-1);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.faq-item p {
  margin: 0;
  max-width: 680px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.72;
}

.faq-item code {
  padding: 1px 6px;
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-1);
  font-size: 12px;
}

.final-cta {
  padding: 20px var(--page-pad) 92px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 26px;
}

.final-cta img {
  width: 180px;
  height: auto;
}

.final-cta h2 {
  margin-bottom: 8px;
  font-size: 32px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 26px var(--page-pad) 38px;
  border-top: 1px solid var(--border);
  color: var(--text-3);
}

.site-footer p {
  margin: 0;
  color: var(--text-3);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 12px;
  color: var(--text-2);
  font-size: 12px;
}

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

:focus-visible {
  outline: 2px solid rgba(10, 132, 255, 0.74);
  outline-offset: 3px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 780ms var(--ease-out),
    transform 780ms var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes recordPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.24);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(239, 68, 68, 0);
    transform: scale(0.9);
  }
}

@keyframes downloadIconSettle {
  0% {
    transform: translate3d(0, 0, 0);
  }

  42% {
    transform: translate3d(0, 2px, 0);
  }

  100% {
    transform: translate3d(1px, 1px, 0);
  }
}

@keyframes downloadArrowDrop {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  42% {
    opacity: 1;
    transform: translate3d(0, 4px, 0);
  }

  58% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  59% {
    opacity: 0;
    transform: translate3d(0, -7px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mobileSheetItemIn {
  from {
    opacity: 0;
    transform: translate3d(0, 6px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes zoomMoment {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  42% {
    transform: translate3d(-22px, 18px, 0) scale(1.08);
  }

  64% {
    transform: translate3d(-22px, 18px, 0) scale(1.08);
  }
}

@keyframes playheadSlide {
  0% {
    transform: translate3d(0, 0, 0);
  }

  76%,
  100% {
    transform: translate3d(76%, 0, 0);
  }
}

@keyframes focusFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-22px, 16px, 0);
  }
}

@keyframes cursorBounce {

  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.82);
  }

  57% {
    transform: scale(1.12);
  }
}

@keyframes cursorTrace {

  0%,
  100% {
    transform: translate3d(-44px, -26px, 0);
  }

  48% {
    transform: translate3d(34px, 20px, 0);
  }
}

@keyframes clickBounce {

  0%,
  36%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }

  42% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.82);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }

  62% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes captionSlide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}


@media (max-width: 1020px) {

  .hero,
  .specs-intro,
  .editor-layout,
  .faq-layout,
  .privacy-hero,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 24px;
  }

  .faq-layout .sticky-heading {
    position: static;
    padding: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-demo {
    transform: none;
  }

  .intelligence-grid,
  .wow-grid,
  .privacy-grid,
  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .transcription-card {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: auto;
  }

  .cleanup-card,
  .noise-card,
  .autozoom-card {
    grid-column: auto;
    grid-row: auto;
  }

  .transcription-card .transcript-visual {
    min-height: 360px;
  }

  .zoom-card {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 560px;
  }

  .spec-card,
  .spec-card-feature,
  .spec-card-wide {
    grid-column: auto;
  }

  .spec-card-feature {
    min-height: 220px;
  }

  .sticky-heading {
    position: static;
    padding: 0;
  }

  .final-cta-inner {
    align-items: start;
  }
}

@media (max-width: 820px) {
  :root {
    --page-pad: 16px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    column-gap: 8px;
    left: 12px;
    right: 12px;
    width: auto;
    transform: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 8;
    display: block;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)),
      rgba(0, 0, 0, 0.48);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 320ms var(--ease-out),
      backdrop-filter 320ms var(--ease-out);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
  }

  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .nav-toggle {
    position: relative;
    display: grid;
    width: 36px;
    height: 36px;
    grid-column: 3;
    margin-left: 0;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    place-items: center;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
      rgba(18, 18, 18, 0.9);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 8px 24px rgba(0, 0, 0, 0.22);
    color: var(--text-1);
    cursor: pointer;
    transition:
      background-color 240ms var(--ease-out),
      border-color 240ms var(--ease-out),
      box-shadow 240ms var(--ease-out),
      transform 240ms var(--ease-out);
  }

  .nav-toggle::before {
    position: absolute;
    inset: 4px;
    border-radius: var(--radius-s);
    content: "";
    background: rgba(10, 132, 255, 0.14);
    opacity: 0;
    transform: scale(0.78);
    transition:
      opacity 240ms var(--ease-out),
      transform 240ms var(--ease-out);
  }

  .nav-toggle span {
    position: absolute;
    z-index: 1;
    width: 15px;
    height: 1.5px;
    border-radius: 1px;
    background: currentColor;
    transition:
      background-color 240ms var(--ease-out),
      transform 320ms var(--ease-heavy),
      width 240ms var(--ease-out);
  }

  .nav-toggle span:first-child {
    transform: translateY(-4px);
  }

  .nav-toggle span:last-child {
    width: 11px;
    transform: translate3d(2px, 4px, 0);
  }

  .nav-toggle:hover {
    border-color: var(--border-strong);
    transform: translateY(-1px);
  }

  .nav-toggle:hover::before,
  .nav-toggle.is-open::before {
    opacity: 1;
    transform: scale(1);
  }

  .nav-toggle:hover span:last-child {
    width: 15px;
    transform: translate3d(0, 4px, 0);
  }

  .nav-toggle:active {
    transform: translateY(0) scale(0.97);
  }

  .nav-toggle.is-open {
    border-color: rgba(10, 132, 255, 0.36);
    background:
      linear-gradient(180deg, rgba(10, 132, 255, 0.2), rgba(10, 132, 255, 0.08)),
      rgba(18, 18, 18, 0.96);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.09),
      0 10px 34px rgba(10, 132, 255, 0.12);
  }

  .nav-toggle.is-open span:first-child {
    width: 15px;
    transform: rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    width: 15px;
    transform: rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: auto;
    justify-self: stretch;
    z-index: 12;
    display: grid;
    gap: 0;
    max-height: 88dvh;
    padding: 12px 22px max(26px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 26px 26px 0 0;
    background:
      linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(18, 18, 18, 0.98)),
      var(--sidebar);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.075),
      0 -2px 0 rgba(255, 255, 255, 0.02),
      0 -36px 100px rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 100%, 0);
    transform-origin: bottom center;
    transition:
      opacity 280ms var(--ease-heavy),
      transform 520ms var(--ease-heavy);
    -webkit-overflow-scrolling: touch;
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    backdrop-filter: blur(28px) saturate(1.2);
  }

  .nav-links::before {
    display: block;
    justify-self: center;
    width: 38px;
    height: 5px;
    margin: 0 0 14px;
    border-radius: 999px;
    content: "";
    background: rgba(255, 255, 255, 0.16);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu-head {
    display: grid;
    gap: 6px;
    padding: 4px 4px 18px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-menu-head span {
    color: var(--text-3);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-menu-head strong {
    color: var(--text-1);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.012em;
    line-height: 1.22;
  }

  .nav-links a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 56px;
    padding: 0 8px 0 4px;
    border: 0;
    border-radius: 0;
    color: var(--text-1);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    background: transparent;
    opacity: 1;
    transform: none;
    transition: color 220ms var(--ease-out);
  }

  .nav-links a:nth-last-of-type(2) {
    box-shadow: none;
  }

  .nav-links a:active {
    transform: translateY(1px);
  }

  .nav-links a[href^="#"]::after {
    position: absolute;
    right: 6px;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    content: "";
    opacity: 0.32;
    transform: rotate(45deg);
    transition:
      opacity 220ms var(--ease-out),
      transform 220ms var(--ease-out);
  }

  .nav-links a[href^="#"]:hover::after,
  .nav-links a[href^="#"].is-active::after {
    opacity: 0.7;
    transform: translate3d(2px, 0, 0) rotate(45deg);
  }

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

  .nav-links a.is-active {
    color: var(--accent);
  }

  .nav-links .mobile-menu-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    margin-top: 18px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 18px 44px rgba(10, 132, 255, 0.26);
    color: var(--text-1);
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -0.005em;
  }

  .nav-links .mobile-menu-download::after {
    display: none;
  }

  .nav-links .mobile-menu-download:hover {
    background: #3d9bff;
  }

  .nav-links .mobile-menu-download:active {
    background: var(--accent-pressed);
    transform: translateY(1px) scale(0.99);
  }

  .nav-links.is-open .mobile-menu-download:active {
    transform: translateY(1px) scale(0.99);
  }

  .nav-download {
    display: none;
  }

  h1 {
    font-size: 62px;
  }


  .section-heading h2,
  .privacy-hero h2 {
    font-size: 32px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .metric-strip,
  .intelligence-grid,
  .wow-grid,
  .privacy-grid,
  .specs-grid,
  .faq-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .spec-card,
  .spec-card-feature,
  .spec-card-wide {
    grid-column: auto;
  }

  .spec-card:nth-child(odd) {
    border-right: 0;
  }

  .metric {
    min-height: 92px;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .metric:first-child {
    border-top: 0;
  }

  .zoom-card {
    min-height: auto;
  }

  .zoom-card .zoom-visual {
    min-height: 360px;
  }

  .editor-card,
  .split-card,
  .cursor-card {
    grid-template-columns: 1fr;
  }

  .editor-card img {
    height: auto;
    max-height: 420px;
  }

  .privacy-proof {
    min-width: 0;
  }

  .final-cta .button {
    width: 100%;
  }

  .showcase-section {
    --slide-w: min(86vw, 420px);
    --pad-x: 16px;
    padding: 64px 0;
  }

  .showcase-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 22px;
  }

  .showcase-head h2 {
    font-size: 30px;
  }

  .showcase-sub {
    max-width: none;
  }

  .showcase-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .showcase-rail li {
    padding: 8px 10px;
  }

  .showcase-rail span {
    font-size: 10.5px;
  }

  .showcase-section.no-jack .showcase-track {
    padding: 8px 16px;
    gap: 14px;
  }

  .showcase-section.no-jack .showcase-slide .slide-frame {
    height: clamp(200px, 50vw, 320px);
  }

  .slide-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 18px 20px;
  }

  .slide-copy h3 {
    font-size: 19px;
  }

  .slide-meta {
    white-space: normal;
  }

  .showcase-foot {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .showcase-controls {
    display: none;
  }

  .spec-card {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 18px;
  }

  .spec-card-feature strong {
    font-size: 15px;
  }
}

@media (max-width: 540px) {
  .site-header {
    top: 8px;
    left: 8px;
    right: 8px;
    min-height: 58px;
    padding: 8px 10px;
  }

  .brand span {
    display: none;
  }

  .site-header .brand-logo {
    width: 104px;
    max-height: 28px;
  }


  .hero {
    padding-top: 98px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-subhead {
    font-size: 15px;
  }

  .hero-actions,
  .button,
  .hero-facts span {
    width: 100%;
  }

  .button,
  .hero-facts span {
    justify-content: space-between;
  }

  .window-title {
    display: none;
  }

  .window-bar {
    grid-template-columns: auto 1fr;
  }

  .recording-indicator {
    justify-self: end;
  }

  .demo-screen,
  .demo-screen img {
    min-height: 250px;
  }

  .privacy-mask {
    left: 8%;
    right: 8%;
    bottom: 16%;
    width: auto;
  }

  .click-zoom-moment {
    right: 9%;
    top: 20%;
  }

  .crosshair {
    width: 66px;
    height: 66px;
  }

  .zoom-track span:nth-child(2),
  .zoom-track span:nth-child(3) {
    display: none;
  }

  .caption-pill {
    min-height: 48px;
    padding: 0 14px;
  }

  .final-cta {
    padding-bottom: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
