:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --bg-deep: #eef1f6;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --surface-solid: #ffffff;
  --text: #171925;
  --muted: #5f6675;
  --muted-2: #7d8492;
  --line: rgba(22, 27, 42, 0.1);
  --line-strong: rgba(22, 27, 42, 0.18);
  --mint: #0b8f74;
  --mint-bright: #61dec5;
  --mint-soft: rgba(11, 143, 116, 0.1);
  --coral: #d9573f;
  --coral-soft: rgba(217, 87, 63, 0.1);
  --violet: #6759d9;
  --violet-soft: rgba(103, 89, 217, 0.1);
  --gold: #a66c08;
  --gold-soft: rgba(166, 108, 8, 0.1);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 28px 80px rgba(38, 45, 66, 0.14);
  --shadow-card: 0 16px 45px rgba(38, 45, 66, 0.1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    linear-gradient(rgba(22, 27, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 27, 42, 0.025) 1px, transparent 1px),
    radial-gradient(900px 620px at 82% 3%, rgba(11, 143, 116, 0.09), transparent 61%),
    radial-gradient(750px 540px at 4% 27%, rgba(217, 87, 63, 0.06), transparent 64%),
    var(--bg);
  background-size: 96px 96px, 96px 96px, auto, auto, auto;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: #ffffff;
  background: var(--mint);
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  line-height: 1.07;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2.25rem, 3.8vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.wrap {
  width: min(1240px, calc(100vw - 80px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-top: clamp(7rem, 10vw, 10rem);
  scroll-margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  color: #061310;
  background: var(--mint);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(101, 234, 208, 0.52);
  outline-offset: 4px;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.94' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(44px);
}

.ambient-mint {
  top: 20vh;
  right: -260px;
  background: radial-gradient(circle, rgba(101, 234, 208, 0.16), transparent 68%);
}

.ambient-coral {
  top: 115vh;
  left: -300px;
  background: radial-gradient(circle, rgba(255, 115, 88, 0.14), transparent 68%);
}

.ambient-violet {
  top: 260vh;
  right: -260px;
  background: radial-gradient(circle, rgba(139, 129, 255, 0.13), transparent 68%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 3px;
  pointer-events: none;
  background: rgba(22, 27, 42, 0.035);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--coral) 55%, var(--violet));
  box-shadow: 0 0 18px rgba(101, 234, 208, 0.4);
  transform: scaleX(0);
  transform-origin: left center;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: rgba(246, 247, 251, 0.78);
  backdrop-filter: blur(20px) saturate(1.08);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(38, 45, 66, 0.08);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(38, 45, 66, 0.16);
}

.brand-word {
  white-space: nowrap;
}

.beta-pill {
  padding: 0.27rem 0.48rem;
  border: 1px solid rgba(101, 234, 208, 0.2);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(101, 234, 208, 0.075);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#primary-navigation {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

#primary-navigation a {
  position: relative;
  padding: 0.5rem 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.2s ease;
}

#primary-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), var(--coral));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease-out);
}

#primary-navigation a.active {
  color: var(--text);
}

#primary-navigation a.active::after {
  transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
  #primary-navigation a:hover {
    color: var(--text);
  }

  #primary-navigation a:hover::after {
    transform: scaleX(1);
  }
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--surface);
  font-weight: 700;
  cursor: pointer;
}

.menu-icon {
  display: grid;
  gap: 4px;
}

.menu-icon i {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Shared controls */

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(120deg, var(--mint), #2ebda0);
  box-shadow: 0 14px 36px rgba(101, 234, 208, 0.22);
  isolation: isolate;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  z-index: -1;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-20deg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(101, 234, 208, 0.27);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.btn-ghost:hover {
  border-color: var(--line-strong);
  background: #ffffff;
  transform: translateY(-2px);
}

.btn-plain {
  color: var(--text);
  background: transparent;
}

.btn-plain:hover {
  color: var(--mint);
  transform: translateX(3px);
}

.btn.block {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--mint);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 18px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.section-heading {
  margin-bottom: 4rem;
}

.section-heading h2 {
  margin-top: 0.85rem;
}

.section-heading h2 span,
.download-callout h2 span {
  color: transparent;
  background: linear-gradient(95deg, var(--mint), var(--coral) 58%, var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 4rem;
  align-items: end;
}

.split-heading > p {
  max-width: 48ch;
  justify-self: end;
  padding-bottom: 0.35rem;
  font-size: 1.03rem;
}

.centered-heading {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p:last-child {
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* Hero */

.hero {
  position: relative;
  padding-top: clamp(5rem, 7vw, 7rem);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: clamp(4rem, 6vw, 6rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin-top: 1rem;
}

.hero-copy h1 > span {
  color: transparent;
  background: linear-gradient(95deg, var(--mint) 8%, #287a69 44%, var(--coral) 92%);
  background-size: 180% 180%;
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 53ch;
  margin-top: 1.65rem;
  font-size: clamp(1.02rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-top: 1.5rem;
  color: var(--muted-2);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.65rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.hero-trust i {
  color: var(--mint);
  font-style: normal;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 14% 5%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101, 234, 208, 0.14), rgba(255, 115, 88, 0.05) 47%, transparent 70%);
  filter: blur(12px);
}

.hero-concept-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  opacity: 0.17;
  mix-blend-mode: multiply;
  filter: saturate(0.98) contrast(1.05);
  mask-image: radial-gradient(ellipse at center, #000 32%, rgba(0, 0, 0, 0.72) 58%, transparent 79%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 32%, rgba(0, 0, 0, 0.72) 58%, transparent 79%);
}

.hero-console {
  --text: #f5f7fb;
  --muted: #a6acbb;
  --muted-2: #858d9d;
  --line: rgba(255, 255, 255, 0.1);
  --surface: rgba(255, 255, 255, 0.055);
  --mint: #65ead0;
  --mint-bright: #b2fff0;
  --coral: #ff7358;
  --violet: #8b81ff;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  width: min(525px, 94%);
  padding: 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background:
    radial-gradient(320px circle at var(--glow-x) var(--glow-y), rgba(101, 234, 208, 0.12), transparent 65%),
    linear-gradient(155deg, rgba(21, 24, 34, 0.94), rgba(8, 9, 14, 0.94));
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.22s ease-out, background 0.22s ease-out;
  backdrop-filter: blur(24px);
}

.hero-console::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.05), transparent 35%, transparent 65%, rgba(255, 115, 88, 0.04));
}

.console-topbar,
.console-context,
.console-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.console-topbar {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.console-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
}

.console-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.listening-pill,
.latency-chip,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.36rem 0.62rem;
  border: 1px solid rgba(101, 234, 208, 0.22);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(101, 234, 208, 0.08);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 700;
}

.listening-pill i,
.status-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(101, 234, 208, 0.09);
}

.console-context {
  margin-top: 1rem;
  color: var(--muted-2);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.61rem;
  letter-spacing: 0.09em;
}

.latency-chip {
  color: var(--coral);
  border-color: rgba(255, 115, 88, 0.18);
  background: rgba(255, 115, 88, 0.07);
  letter-spacing: 0;
}

.console-wave {
  position: relative;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 1.15rem 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 17px;
  background:
    linear-gradient(90deg, rgba(101, 234, 208, 0.04), rgba(101, 234, 208, 0.105), rgba(255, 115, 88, 0.06)),
    rgba(255, 255, 255, 0.018);
}

.console-wave::before {
  content: "";
  position: absolute;
  left: -15%;
  top: 50%;
  width: 130%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101, 234, 208, 0.5), rgba(255, 115, 88, 0.45), transparent);
}

.console-wave i,
.large-wave i,
.waveform-mini i {
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(var(--mint-bright), var(--mint));
  box-shadow: 0 0 12px rgba(101, 234, 208, 0.28);
  transform-origin: center;
}

.console-wave i:nth-child(2n) { height: 47px; }
.console-wave i:nth-child(3n) { height: 67px; }
.console-wave i:nth-child(5n) { height: 34px; background: linear-gradient(#ffb09e, var(--coral)); }
.console-wave i:nth-child(7n) { height: 54px; background: linear-gradient(#b8b2ff, var(--violet)); }

.console-transcript {
  position: relative;
  z-index: 1;
}

.transcript-label,
.card-label,
.panel-crumb,
.feature-kicker {
  color: var(--mint);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-transcript p {
  margin-top: 0.45rem;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.62;
}

.console-footer {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

kbd {
  display: inline-flex;
  min-width: 25px;
  min-height: 25px;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.43rem;
  border: 1px solid var(--line);
  border-bottom-color: var(--line-strong);
  border-radius: 6px;
  color: var(--text);
  background: var(--surface);
  box-shadow: 0 2px 0 rgba(38, 45, 66, 0.12);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.62rem;
}

.key-combo {
  display: flex;
  gap: 0.28rem;
}

.clean-status {
  color: var(--muted);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.61rem;
}

.clean-status i {
  color: var(--mint);
  font-style: normal;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(10, 11, 17, 0.78);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.59rem;
  text-transform: uppercase;
}

.floating-note i {
  font-style: normal;
  color: var(--mint);
}

.note-one { left: 2%; top: 24%; }
.note-two { right: 1%; top: 31%; }
.note-two i { color: var(--coral); }
.note-three { right: 10%; bottom: 15%; }
.note-three i { color: var(--violet); }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.proof-strip > div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(38, 45, 66, 0.05);
}

.proof-strip > div + div {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  color: var(--text);
  font-size: 1rem;
}

.proof-strip span {
  margin-top: 0.18rem;
  color: var(--muted-2);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.62rem;
}

/* App ribbon */

.app-ribbon {
  margin-top: clamp(4.5rem, 6vw, 6rem);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.ribbon-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ribbon-inner > p {
  flex: 0 0 auto;
  color: var(--muted-2);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem 1.4rem;
  flex-wrap: wrap;
}

.app-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.app-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(101, 234, 208, 0.35);
}

.app-dot.chat { background: var(--violet); box-shadow: 0 0 12px rgba(139, 129, 255, 0.35); }
.app-dot.docs { background: var(--coral); box-shadow: 0 0 12px rgba(255, 115, 88, 0.35); }
.app-dot.code { background: var(--gold); box-shadow: 0 0 12px rgba(246, 201, 107, 0.3); }
.app-dot.browser { background: #78a8ff; box-shadow: 0 0 12px rgba(120, 168, 255, 0.3); }
.app-dot.terminal { background: #a4acbb; box-shadow: 0 0 12px rgba(164, 172, 187, 0.25); }

/* Product tour */

.product-tour {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-card);
}

.tour-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0;
}

.tour-tab {
  position: relative;
  min-height: 84px;
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 0.55rem;
  padding: 0.9rem 1rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-out);
}

.tour-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(101, 234, 208, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tour-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.tour-tab.active {
  color: var(--text);
  border-color: rgba(101, 234, 208, 0.17);
  background: rgba(101, 234, 208, 0.075);
}

.tour-tab.active::before {
  opacity: 1;
}

.tour-tab > span:not(.tab-number) {
  font-size: 0.94rem;
  font-weight: 800;
}

.tour-tab small {
  grid-column: 2;
  color: var(--muted-2);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.55rem;
}

.tab-number {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--mint);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.62rem;
}

.app-window {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #f8f8fb;
  color: #171721;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.34);
}

.window-titlebar {
  height: 47px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(20, 20, 35, 0.08);
  background: rgba(250, 249, 252, 0.95);
}

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

.traffic-lights i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6258;
}

.traffic-lights i:nth-child(2) { background: #ffbd2f; }
.traffic-lights i:nth-child(3) { background: #28c840; }

.window-title {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: #24232d;
  font-size: 0.72rem;
  font-weight: 800;
}

.window-title img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.window-meta {
  justify-self: end;
  color: #9c9aaa;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.52rem;
}

.window-body {
  min-height: 515px;
  display: grid;
  grid-template-columns: 174px minmax(0, 1fr);
}

.demo-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.2rem 0.75rem 0.8rem;
  border-right: 1px solid rgba(20, 20, 35, 0.07);
  background: #f1f0f5;
}

.demo-sidebar > p {
  padding: 0 0.65rem 0.55rem;
  color: #a19ead;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.53rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.demo-sidebar > span,
.sidebar-bottom > span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  color: #777484;
  font-size: 0.69rem;
  font-weight: 650;
}

.demo-sidebar > span.active {
  color: #5148d8;
  background: rgba(91, 82, 240, 0.1);
}

.demo-sidebar i {
  width: 17px;
  color: currentColor;
  font-style: normal;
  text-align: center;
}

.sidebar-bottom {
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(20, 20, 35, 0.07);
}

.sidebar-bottom small {
  display: block;
  padding: 0.7rem 0.65rem 0;
  color: #aaa7b5;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.48rem;
}

.tour-panels {
  min-width: 0;
  overflow: hidden;
  background: #fff;
}

.tour-panel {
  min-height: 515px;
  padding: 1.25rem;
  color: #171721;
}

.tour-panel[hidden] {
  display: none;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(20, 20, 35, 0.07);
}

.panel-crumb {
  color: #a19ead;
  font-size: 0.5rem;
}

.panel-heading h3 {
  margin-top: 0.35rem;
  color: #171721;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.status-chip {
  flex: 0 0 auto;
  color: #167252;
  border-color: rgba(26, 143, 90, 0.17);
  background: rgba(26, 143, 90, 0.08);
}

.status-chip.violet { color: #5b52f0; border-color: rgba(91, 82, 240, 0.16); background: rgba(91, 82, 240, 0.08); }
.status-chip.coral { color: #d64f35; border-color: rgba(214, 79, 53, 0.16); background: rgba(214, 79, 53, 0.08); }
.status-chip.gold { color: #9d6b0f; border-color: rgba(157, 107, 15, 0.16); background: rgba(157, 107, 15, 0.08); }

.dictate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(180px, 0.75fr);
  grid-template-rows: auto 1fr;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.dictate-card {
  padding: 1rem;
  border: 1px solid rgba(20, 20, 35, 0.08);
  border-radius: 13px;
  background: #faf9fc;
  box-shadow: 0 2px 7px rgba(23, 20, 50, 0.04);
}

.dictate-card.main {
  grid-row: 1 / 3;
  min-height: 360px;
  background: linear-gradient(145deg, #28254a, #171629 65%, #23203e);
  color: #f7f6fa;
}

.card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9a90ff;
  font-size: 0.52rem;
}

.large-wave {
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 1.55rem 0 1.25rem;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
}

.large-wave i { background: linear-gradient(#b8b2ff, #7065f3); box-shadow: 0 0 12px rgba(139, 129, 255, 0.28); }
.large-wave i:nth-child(2n) { height: 54px; }
.large-wave i:nth-child(3n) { height: 82px; }
.large-wave i:nth-child(5n) { height: 36px; }

.dictate-card.main > p {
  color: #d4d1df;
  font-size: 0.82rem;
}

.capture-mode {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.4rem;
  color: #a8a4b7;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.52rem;
}

.dictate-card.stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dictate-card.stat .card-label,
.dictate-card.activity .card-label {
  color: #9b98a7;
}

.dictate-card.stat strong {
  margin-top: 0.5rem;
  color: #171721;
  font-size: 2.15rem;
  letter-spacing: -0.06em;
}

.dictate-card.stat small {
  color: #8e8a9c;
  font-size: 0.62rem;
}

.mini-trend {
  width: fit-content;
  margin-top: 0.75rem;
  padding: 0.25rem 0.4rem;
  border-radius: 999px;
  color: #167252;
  background: rgba(26, 143, 90, 0.08);
  font-size: 0.52rem;
}

.dictate-card.activity > p {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  color: #3f3c4a;
  font-size: 0.63rem;
}

.dictate-card.activity small {
  display: block;
  color: #9995a6;
  font-size: 0.51rem;
}

.dictate-card.activity b {
  color: #9894a5;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.5rem;
}

.activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.activity-dot.mint { background: #28b485; }
.activity-dot.coral { background: #ef755c; }

/* Transform demo */

.transform-demo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: 1.25rem;
}

.transform-source,
.transform-result {
  min-height: 245px;
  padding: 1.1rem;
  border: 1px solid rgba(20, 20, 35, 0.08);
  border-radius: 13px;
  background: #faf9fc;
}

.transform-source .card-label,
.transform-result .card-label {
  color: #9b98a7;
}

.transform-source p,
.transform-result p {
  margin-top: 1.05rem;
  color: #504d5a;
  font-size: 0.8rem;
  line-height: 1.7;
}

.transform-result {
  border-color: rgba(91, 82, 240, 0.15);
  background: #f5f3ff;
}

.transform-result .card-label {
  color: #5b52f0;
}

.transform-result p {
  color: #2e2a48;
}

.transform-output.changing {
  opacity: 0;
  transform: translateY(5px);
}

.transform-output {
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.transform-arrow {
  align-self: center;
  color: #5b52f0;
  font-size: 1rem;
}

.transform-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.transform-options button {
  padding: 0.48rem 0.65rem;
  border: 1px solid rgba(20, 20, 35, 0.09);
  border-radius: 8px;
  color: #666272;
  background: #faf9fc;
  font-size: 0.58rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.transform-options button:hover,
.transform-options button.selected {
  color: #5148d8;
  border-color: rgba(91, 82, 240, 0.2);
  background: rgba(91, 82, 240, 0.08);
  transform: translateY(-1px);
}

.demo-hint {
  margin-top: 0.75rem;
  color: #9b98a7;
  font-size: 0.56rem;
}

/* History demo */

.history-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(280px, 1.18fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.history-list,
.history-detail {
  min-height: 390px;
  padding: 0.8rem;
  border: 1px solid rgba(20, 20, 35, 0.08);
  border-radius: 13px;
  background: #faf9fc;
}

.history-search {
  display: block;
  padding: 0.58rem 0.65rem;
  border: 1px solid rgba(20, 20, 35, 0.07);
  border-radius: 8px;
  color: #9b98a7;
  background: #fff;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.51rem;
}

.history-item {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.55rem;
  padding: 0.7rem;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #3d3946;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.history-item:hover,
.history-item.selected {
  border-color: rgba(91, 82, 240, 0.14);
  background: rgba(91, 82, 240, 0.07);
}

.app-square {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 800;
}

.app-square.mint { background: #26a97f; }
.app-square.coral { background: #ef755c; }
.app-square.violet { background: #6d63ff; }

.history-item span {
  min-width: 0;
}

.history-item b,
.history-item small {
  display: block;
}

.history-item b {
  overflow: hidden;
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-item small,
.history-item em {
  color: #9a96a7;
  font-size: 0.5rem;
  font-style: normal;
}

.history-detail {
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  background: #fff;
}

.detail-meta,
.detail-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #8f8b9b;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.5rem;
}

.detail-meta span:first-child {
  color: #5148d8;
}

.history-detail > p {
  margin-top: 1.4rem;
  color: #302d38;
  font-size: 0.88rem;
  line-height: 1.75;
}

.detail-actions {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(20, 20, 35, 0.07);
}

.detail-actions > span {
  display: flex;
  align-items: center;
  gap: 0.22rem;
}

.detail-actions kbd {
  min-width: 21px;
  min-height: 21px;
  color: #373340;
  border-color: rgba(20, 20, 35, 0.12);
  background: #f4f2f7;
  box-shadow: none;
}

.detail-actions button {
  padding: 0.48rem 0.65rem;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #5b52f0;
  font-size: 0.55rem;
  font-weight: 750;
}

/* Insights demo */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.stats-grid article {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 35, 0.08);
  border-radius: 13px;
  background: #faf9fc;
}

.stats-grid article > span {
  color: #8f8b9b;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.51rem;
  text-transform: uppercase;
}

.stats-grid strong {
  margin-top: 0.5rem;
  color: #211f2a;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.stats-grid small {
  color: #9995a6;
  font-size: 0.56rem;
}

.stats-grid .hero-stat {
  grid-column: span 2;
  min-height: 190px;
  position: relative;
  color: #fff;
  background: linear-gradient(140deg, #29264d, #161527 65%, #25213f);
}

.stats-grid .hero-stat > span,
.stats-grid .hero-stat small {
  color: #b4b0c4;
}

.stats-grid .hero-stat strong {
  color: #fff;
  font-size: 2.65rem;
}

.sparkline {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 48%;
  height: 88px;
  display: flex;
  align-items: end;
  gap: 5px;
}

.sparkline i {
  flex: 1;
  height: 18%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#9a90ff, rgba(139, 129, 255, 0.16));
}

.sparkline i:nth-child(2) { height: 35%; }
.sparkline i:nth-child(3) { height: 26%; }
.sparkline i:nth-child(4) { height: 52%; }
.sparkline i:nth-child(5) { height: 44%; }
.sparkline i:nth-child(6) { height: 69%; }
.sparkline i:nth-child(7) { height: 63%; }
.sparkline i:nth-child(8) { height: 82%; }
.sparkline i:nth-child(9) { height: 75%; }
.sparkline i:nth-child(10) { height: 92%; }
.sparkline i:nth-child(11) { height: 76%; }
.sparkline i:nth-child(12) { height: 100%; }

.heatmap-card {
  position: relative;
}

.heatmap {
  width: 120px;
  height: 45px;
  margin: 0.65rem 0 0.45rem;
  background:
    linear-gradient(90deg, transparent 6px, #faf9fc 6px) 0 0 / 11px 11px,
    linear-gradient(#dad5ff 6px, #faf9fc 6px) 0 0 / 11px 11px;
  filter: saturate(1.25);
}

/* 3 Click story */

.click-story {
  width: 100%;
}

.concept-shell {
  --text: #f5f7fb;
  --muted: #b3bac7;
  --muted-2: #8e97a8;
  --line: rgba(255, 255, 255, 0.11);
  --mint: #65ead0;
  --coral: #ff7358;
  --violet: #8b81ff;
  position: relative;
  min-height: 545px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3.5vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #030507;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.concept-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
}

.concept-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(3, 4, 7, 0.35), rgba(3, 4, 7, 0.08) 42%, rgba(3, 4, 7, 0.8) 79%, #030407),
    linear-gradient(90deg, rgba(3, 4, 7, 0.65), transparent 55%);
}

.concept-copy {
  max-width: 760px;
}

.concept-copy h2 {
  margin-top: 0.85rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.concept-copy > p:last-child {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.click-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.click-steps article {
  min-height: 142px;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 9, 14, 0.62);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, background 0.25s ease;
}

.click-steps article:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(14, 16, 23, 0.78);
}

.step-orb {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 234, 208, 0.32);
  border-radius: 50%;
  color: var(--mint);
  background: rgba(101, 234, 208, 0.1);
  box-shadow: inset 0 0 18px rgba(101, 234, 208, 0.1), 0 0 20px rgba(101, 234, 208, 0.1);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 700;
}

.step-orb.coral { color: var(--coral); border-color: rgba(255, 115, 88, 0.32); background: rgba(255, 115, 88, 0.1); box-shadow: inset 0 0 18px rgba(255, 115, 88, 0.1), 0 0 20px rgba(255, 115, 88, 0.1); }
.step-orb.violet { color: var(--violet); border-color: rgba(139, 129, 255, 0.32); background: rgba(139, 129, 255, 0.1); box-shadow: inset 0 0 18px rgba(139, 129, 255, 0.1), 0 0 20px rgba(139, 129, 255, 0.1); }

.click-steps article p {
  color: var(--mint);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.click-steps article:nth-child(2) p { color: var(--coral); }
.click-steps article:nth-child(3) p { color: var(--violet); }

.click-steps h3 {
  margin-top: 0.35rem;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.click-steps small {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

/* Feature bento */

/* Speak versus type comparison */

.speed-compare-section .section-heading {
  margin-bottom: 3rem;
}

.flow-comparison {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.48fr);
  gap: 1.2rem;
}

.compare-panel {
  position: relative;
  min-height: 475px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(25, 26, 24, 0.1);
  border-radius: 34px;
  isolation: isolate;
}

.compare-panel::before,
.compare-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.compare-typing {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22), transparent 38%),
    repeating-linear-gradient(166deg, rgba(42, 47, 44, 0.035) 0 2px, transparent 2px 22px),
    linear-gradient(145deg, #e5e8e5, #cfd5d2);
}

.compare-typing::before {
  inset: -15%;
  background: radial-gradient(ellipse at 28% 42%, rgba(255, 255, 255, 0.7), transparent 47%);
  filter: blur(20px);
}

.compare-speaking {
  background:
    radial-gradient(circle at 50% 2%, rgba(185, 86, 66, 0.3), transparent 28%),
    radial-gradient(circle at 80% 72%, rgba(105, 86, 189, 0.18), transparent 34%),
    radial-gradient(circle at 14% 85%, rgba(82, 196, 166, 0.2), transparent 38%),
    linear-gradient(145deg, #daf0f2, #e7eef1 52%, #e5e1ee);
}

.compare-speaking::before {
  left: 15%;
  top: -42%;
  width: 70%;
  height: 135%;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), rgba(185, 86, 66, 0.16), transparent);
  filter: blur(25px);
  transform: rotate(9deg);
}

.compare-speaking::after {
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.2));
}

.compare-panel-label {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(25, 26, 24, 0.09);
  border-radius: 999px;
  color: #545a54;
  background: rgba(252, 252, 247, 0.66);
  backdrop-filter: blur(12px);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.48rem;
}

.compare-panel-label span {
  color: #1f6f60;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-panel-label b {
  color: #71766f;
  font-weight: 500;
}

.compare-text-box {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 170px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(54, 62, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.compare-text-box p {
  display: inline;
  color: #20231f;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.compare-caret {
  display: inline-block;
  width: 2px;
  height: 1.55em;
  margin-left: 3px;
  vertical-align: -0.26em;
  background: #777c75;
  opacity: 0;
}

.flow-comparison[data-phase="typing"] .compare-caret {
  animation: compare-caret-blink 0.8s steps(1) infinite;
}

.compare-keyboard {
  position: relative;
  z-index: 1;
  width: min(330px, 100%);
  display: grid;
  gap: 5px;
  margin-top: 2rem;
  padding: 0.68rem 0.7rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(62, 68, 64, 0.16);
  border-radius: 14px 14px 18px 18px;
  background: linear-gradient(155deg, rgba(253, 253, 250, 0.92), rgba(235, 238, 234, 0.84));
  box-shadow:
    0 18px 32px rgba(54, 62, 58, 0.12),
    0 3px 0 rgba(132, 138, 133, 0.2),
    inset 0 1px 0 #fff;
  backdrop-filter: blur(14px);
  transform: perspective(500px) rotateX(2deg);
}

.compare-keyboard::before {
  content: "";
  position: absolute;
  inset: 4px 9px auto;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.compare-key-row {
  display: flex;
  width: 100%;
  gap: 4px;
}

.compare-key-row.middle,
.compare-key-row.bottom {
  padding-inline: 0;
}

.compare-key-row kbd {
  min-width: 0;
  height: 25px;
  flex: 1 1 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(75, 81, 76, 0.11);
  border-bottom-color: rgba(75, 81, 76, 0.2);
  border-radius: 5px;
  color: rgba(49, 54, 50, 0.68);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(224, 227, 223, 0.9));
  box-shadow:
    0 2px 0 rgba(75, 81, 76, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.39rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  transition: background 0.08s ease, color 0.08s ease, transform 0.08s ease, box-shadow 0.08s ease;
}

.compare-key-row kbd.active {
  color: #155e50;
  border-color: rgba(31, 111, 96, 0.18);
  background: linear-gradient(180deg, #c7e9df, #9fd3c4);
  box-shadow: 0 1px 0 rgba(31, 111, 96, 0.24), 0 3px 8px rgba(31, 111, 96, 0.16);
  transform: translateY(2px);
}

.compare-key-row .key-wide {
  flex-grow: 1.52;
  align-items: end;
  justify-items: end;
  padding: 0 4px 4px;
  font-size: 0.3rem;
  font-weight: 500;
}

.compare-key-row .key-caps,
.compare-key-row .key-shift {
  justify-items: start;
}

.compare-key-row .key-shift {
  flex-grow: 1.85;
}

.compare-key-row .key-shift-right {
  justify-items: end;
}

.compare-key-row.modifiers kbd {
  height: 23px;
}

.compare-key-row .key-mod {
  flex-grow: 1.15;
  align-items: end;
  padding-bottom: 4px;
  font-size: 0.28rem;
  font-weight: 500;
}

.compare-key-row .space-key {
  flex-grow: 5.7;
}

.voice-output-box {
  min-height: 210px;
}

.voice-output-box p {
  font-size: clamp(1.45rem, 2.7vw, 2.45rem);
  line-height: 1.45;
}

.voice-output-word {
  display: inline-block;
  margin-right: 0.24em;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(7px) scale(0.98);
  transition: opacity 0.28s ease, filter 0.34s ease, transform 0.34s var(--ease-out);
}

.voice-output-word.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.compare-listening-pill {
  position: relative;
  z-index: 2;
  min-width: 220px;
  display: grid;
  place-items: center;
  gap: 0.42rem;
  margin-top: 1.8rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #c2c5c2;
  background: #1d201e;
  box-shadow: 0 14px 35px rgba(29, 32, 30, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.49rem;
}

.compare-listening-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.compare-listening-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7b807c;
  transform-origin: center;
}

.flow-comparison[data-phase="voice"] .compare-listening-dots i {
  animation: compare-dot-wave 0.72s ease-in-out infinite alternate;
  background: #6bd4b4;
}

.flow-comparison[data-phase="voice"] .compare-listening-dots i:nth-child(2n) { animation-delay: -0.2s; }
.flow-comparison[data-phase="voice"] .compare-listening-dots i:nth-child(3n) { animation-delay: -0.4s; }
.flow-comparison[data-phase="voice"] .compare-listening-dots i:nth-child(5n) { animation-delay: -0.58s; }

@keyframes compare-caret-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes compare-dot-wave {
  from { transform: translateY(2px) scale(0.72); opacity: 0.48; }
  to { transform: translateY(-2px) scale(1.1); opacity: 1; }
}

@media (prefers-reduced-motion: no-preference) {
  .flow-comparison.is-running .compare-speaking::before {
    animation: compare-aurora 11s ease-in-out infinite alternate;
  }
}

@keyframes compare-aurora {
  from { transform: translate3d(-4%, 0, 0) rotate(7deg) scale(0.96); }
  to { transform: translate3d(5%, 2%, 0) rotate(12deg) scale(1.05); }
}

@media (max-width: 900px) {
  .flow-comparison {
    grid-template-columns: 1fr;
  }

  .compare-panel {
    min-height: 430px;
  }

  .compare-typing {
    min-height: 390px;
  }
}

@media (max-width: 520px) {
  .compare-panel {
    min-height: 380px;
    padding: 1.1rem;
    border-radius: 25px;
  }

  .compare-panel-label b {
    display: none;
  }

  .compare-text-box,
  .voice-output-box {
    min-height: 145px;
    padding: 1.2rem;
    border-radius: 19px;
  }

  .compare-text-box p,
  .voice-output-box p {
    font-size: 1.2rem;
  }

  .compare-keyboard {
    margin-top: 1.2rem;
    scale: 0.86;
  }

  .compare-listening-pill {
    min-width: 190px;
    margin-top: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .compare-caret {
    display: none;
  }

  .voice-output-word {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

.feature-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.35rem;
}

.feature-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  min-height: 300px;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 42px rgba(38, 45, 66, 0.07);
  transition: transform 0.28s var(--ease-out), border-color 0.28s ease, background 0.28s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(300px circle at var(--pointer-x) var(--pointer-y), rgba(101, 234, 208, 0.12), transparent 67%);
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  z-index: 2;
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: #ffffff;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-speed,
.feature-history {
  grid-column: span 8;
}

.feature-transform,
.feature-language {
  grid-column: span 6;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 234, 208, 0.2);
  border-radius: 12px;
  color: var(--mint);
  background: var(--mint-soft);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: inset 0 0 20px rgba(101, 234, 208, 0.06);
}

.feature-icon.coral { color: var(--coral); border-color: rgba(255, 115, 88, 0.2); background: var(--coral-soft); }
.feature-icon.violet { color: var(--violet); border-color: rgba(139, 129, 255, 0.2); background: var(--violet-soft); }
.feature-icon.gold { color: var(--gold); border-color: rgba(246, 201, 107, 0.2); background: var(--gold-soft); }

.feature-kicker {
  margin-top: 0.9rem;
  color: var(--muted-2);
}

.feature-card h3 {
  max-width: 25ch;
  margin-top: 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.16;
}

.feature-card > p:not(.feature-kicker) {
  max-width: 66ch;
  margin-top: 0.75rem;
  font-size: 0.86rem;
  line-height: 1.62;
}

.feature-speed {
  background:
    radial-gradient(500px 280px at 95% 110%, rgba(101, 234, 208, 0.09), transparent 60%),
    rgba(255, 255, 255, 0.78);
}

.feature-control {
  background:
    radial-gradient(300px 240px at 90% 100%, rgba(255, 115, 88, 0.09), transparent 62%),
    rgba(255, 255, 255, 0.78);
}

.feature-transform,
.feature-feedback {
  background:
    radial-gradient(340px 260px at 90% 110%, rgba(139, 129, 255, 0.1), transparent 62%),
    rgba(255, 255, 255, 0.78);
}

.feature-language,
.feature-resilience {
  background:
    radial-gradient(340px 260px at 90% 110%, rgba(246, 201, 107, 0.08), transparent 62%),
    rgba(255, 255, 255, 0.78);
}

.latency-visual,
.key-visual,
.chip-visual,
.dictionary-visual,
.stack-visual,
.bars-visual,
.waveform-mini,
.retry-visual,
.settings-visual {
  margin-top: auto;
  padding-top: 0.9rem;
}

.latency-visual {
  max-width: 570px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
}

.latency-visual span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.58rem;
}

.latency-visual i,
.retry-visual i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(101, 234, 208, 0.6);
}

.latency-visual span:nth-of-type(2) i { background: var(--coral); box-shadow: 0 0 12px rgba(255, 115, 88, 0.55); }
.latency-visual span:nth-of-type(3) i { background: var(--violet); box-shadow: 0 0 12px rgba(139, 129, 255, 0.55); }

.latency-visual b {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.latency-visual b::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
}

.key-visual {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.key-visual kbd {
  min-width: 37px;
  min-height: 36px;
}

.key-visual span {
  margin-inline: 0.35rem;
  color: var(--muted-2);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.55rem;
}

.chip-visual,
.dictionary-visual,
.settings-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.chip-visual span,
.dictionary-visual span,
.settings-visual span {
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.9);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.54rem;
}

.chip-visual span:last-child { color: var(--violet); border-color: rgba(139, 129, 255, 0.2); background: rgba(139, 129, 255, 0.07); }
.dictionary-visual span:last-child { color: var(--gold); border-color: rgba(246, 201, 107, 0.2); background: rgba(246, 201, 107, 0.06); }
.settings-visual span:last-child { color: var(--mint); border-color: rgba(101, 234, 208, 0.2); }

.inline-key {
  padding: 0.14rem 0.3rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.68rem;
}

.stack-visual {
  position: relative;
  width: 150px;
  height: 70px;
}

.stack-visual i {
  position: absolute;
  left: 0;
  width: 115px;
  height: 42px;
  border: 1px solid rgba(255, 115, 88, 0.18);
  border-radius: 9px;
  background: rgba(255, 115, 88, 0.06);
}

.stack-visual i:nth-child(1) { top: 0; left: 20px; opacity: 0.35; }
.stack-visual i:nth-child(2) { top: 10px; left: 10px; opacity: 0.62; }
.stack-visual i:nth-child(3) { top: 20px; }
.stack-visual span { position: absolute; left: 14px; top: 33px; color: var(--coral); font-family: "Space Mono", ui-monospace, monospace; font-size: 0.55rem; }

.bars-visual,
.waveform-mini {
  height: 72px;
  display: flex;
  align-items: end;
  gap: 5px;
}

.bars-visual i {
  width: 14px;
  height: 24%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(var(--mint), rgba(101, 234, 208, 0.08));
}

.bars-visual i:nth-child(2) { height: 52%; }
.bars-visual i:nth-child(3) { height: 37%; }
.bars-visual i:nth-child(4) { height: 76%; }
.bars-visual i:nth-child(5) { height: 63%; }
.bars-visual i:nth-child(6) { height: 95%; }
.bars-visual i:nth-child(7) { height: 78%; }
.bars-visual i:nth-child(8) { height: 100%; }

.waveform-mini {
  height: 58px;
  align-items: center;
  gap: 4px;
}

.waveform-mini i { width: 4px; background: linear-gradient(#b8b2ff, var(--violet)); box-shadow: 0 0 10px rgba(139, 129, 255, 0.26); }
.waveform-mini i:nth-child(2n) { height: 40px; }
.waveform-mini i:nth-child(3n) { height: 54px; }

.retry-visual {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.retry-visual span,
.retry-visual b {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.9);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.54rem;
  font-weight: 500;
}

.retry-visual b {
  color: var(--gold);
  border-color: rgba(246, 201, 107, 0.2);
  background: rgba(246, 201, 107, 0.06);
}

.feature-detail-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.58);
}

.feature-detail-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--muted-2);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.55rem;
}

.feature-detail-strip span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(101, 234, 208, 0.45);
}

.feature-detail-strip span:nth-child(2n)::before { background: var(--coral); box-shadow: 0 0 8px rgba(255, 115, 88, 0.4); }
.feature-detail-strip span:nth-child(3n)::before { background: var(--violet); box-shadow: 0 0 8px rgba(139, 129, 255, 0.4); }

/* Privacy */

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(4rem, 7vw, 7rem);
  align-items: center;
}

.privacy-copy h2 {
  margin-top: 0.65rem;
  font-size: clamp(2rem, 3.8vw, 3.75rem);
}

.privacy-copy > p:not(.eyebrow) {
  margin-top: 0.85rem;
  font-size: 0.98rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--mint);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.text-link span {
  transition: transform 0.2s ease;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.privacy-grid article {
  min-height: 168px;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, background 0.25s ease;
}

.privacy-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(101, 234, 208, 0.2);
  background: #ffffff;
}

.privacy-grid article > span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 234, 208, 0.18);
  border-radius: 11px;
  color: var(--mint);
  background: var(--mint-soft);
  font-family: "Space Mono", ui-monospace, monospace;
}

.privacy-grid article:nth-child(2) > span { color: var(--coral); border-color: rgba(255, 115, 88, 0.18); background: var(--coral-soft); }
.privacy-grid article:nth-child(3) > span { color: var(--violet); border-color: rgba(139, 129, 255, 0.18); background: var(--violet-soft); }
.privacy-grid article:nth-child(4) > span { color: var(--gold); border-color: rgba(246, 201, 107, 0.18); background: var(--gold-soft); }

.privacy-grid h3 {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.privacy-grid p {
  margin-top: 0.55rem;
  font-size: 0.75rem;
  line-height: 1.58;
}

/* Pricing */

.pricing-shell {
  max-width: 1020px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-inline: auto;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.plan-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.28s var(--ease-out), border-color 0.28s ease, box-shadow 0.28s ease;
}

.plan-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}

.plan-card.featured {
  position: relative;
  overflow: hidden;
  border-color: rgba(101, 234, 208, 0.27);
  background:
    radial-gradient(430px 230px at 110% 115%, rgba(101, 234, 208, 0.14), transparent 65%),
    linear-gradient(155deg, rgba(228, 249, 244, 0.96), rgba(255, 255, 255, 0.92));
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.plan-label {
  color: var(--mint);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-badge {
  padding: 0.33rem 0.52rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.52rem;
}

.plan-card h3 {
  margin-top: 0.9rem;
  font-size: 1.35rem;
}

.price {
  margin-top: 0.8rem;
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.07em;
}

.price span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
}

.price-note {
  margin-top: 0.15rem;
  color: var(--muted-2);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.55rem;
}

.plan-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  list-style: none;
  font-size: 0.78rem;
}

.plan-card li::before {
  content: "✓";
  margin-right: 0.5rem;
  color: var(--mint);
}

.plan-card .btn {
  margin-top: auto;
}

.pricing-footnote {
  max-width: 780px;
  margin: 0.75rem auto 0;
  color: var(--muted-2);
  font-size: 0.72rem;
  text-align: center;
}

/* Download */

.download-callout {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: clamp(3rem, 5.5vw, 5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(600px 300px at 50% 115%, rgba(101, 234, 208, 0.18), transparent 67%),
    radial-gradient(340px 260px at 10% -15%, rgba(255, 115, 88, 0.12), transparent 68%),
    radial-gradient(340px 260px at 95% 5%, rgba(139, 129, 255, 0.13), transparent 68%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(249, 250, 253, 0.74));
  text-align: center;
  isolation: isolate;
}

.download-callout::before,
.download-callout::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(22, 27, 42, 0.06);
  border-radius: 50%;
}

.download-callout::before { left: -80px; bottom: -140px; }
.download-callout::after { right: -100px; top: -130px; width: 320px; height: 320px; }

.callout-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  border-radius: 17px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.download-callout .eyebrow {
  justify-content: center;
}

.download-callout h2 {
  margin-top: 0.9rem;
}

.download-callout > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 1rem;
  font-size: 1rem;
}

.download-actions {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.install-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: min(960px, calc(100% - 48px));
  margin: 3rem auto 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.64);
  text-align: left;
  scroll-margin-top: 110px;
}

.install-card > div {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
}

.install-number {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--mint);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 700;
}

.install-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.install-card p {
  font-size: 0.86rem;
}

.install-card .download-integrity {
  grid-column: 1 / -1;
  padding: 0.15rem 0.35rem 0;
  color: var(--muted-2);
  font-size: 0.68rem;
  overflow-wrap: anywhere;
}

.download-integrity code {
  color: var(--muted);
  font-family: "Space Mono", ui-monospace, monospace;
}

.system-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: var(--muted-2);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.55rem;
}

.system-note i,
.online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(101, 234, 208, 0.55);
}

/* Footer and legal */

footer {
  margin-top: clamp(2.5rem, 4vw, 4rem);
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  max-width: 32ch;
  margin-top: 0.9rem;
  font-size: 0.78rem;
}

.footer-grid h4 {
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  width: fit-content;
  margin-top: 0.48rem;
  color: var(--muted);
  font-size: 0.74rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--mint);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted-2);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.55rem;
}

.legal-nav {
  min-height: 74px;
}

.legal-main {
  width: min(790px, calc(100vw - 40px));
  margin-inline: auto;
  padding: clamp(3rem, 5vw, 4.75rem) 0;
}

.legal-main::before {
  content: "";
  position: fixed;
  top: 120px;
  right: -180px;
  z-index: -1;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101, 234, 208, 0.11), transparent 68%);
}

.legal-main h1 {
  max-width: none;
  margin-top: 0.8rem;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-lead {
  margin-top: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.legal-section {
  padding-top: 1.8rem;
}

.legal-section h2 {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
}

.legal-section p,
.legal-section ul {
  margin-top: 0.9rem;
}

.legal-section ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-section li {
  margin-bottom: 0.55rem;
}

.legal-section a,
.legal-footer a {
  color: var(--mint);
}

.legal-footer {
  margin-top: 0;
  padding: 1.5rem;
  text-align: center;
}

.legal-footer .copyright {
  color: var(--muted-2);
  font-size: 0.7rem;
}

/* Motion */

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes wave-pulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.68; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(101, 234, 208, 0.36); }
  70% { box-shadow: 0 0 0 8px rgba(101, 234, 208, 0); }
  100% { box-shadow: 0 0 0 0 rgba(101, 234, 208, 0); }
}

@keyframes float-note {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translate3d(0, 25px, 0) scale(0.98); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translate3d(12px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes sheen {
  0%, 67% { transform: translateX(0) skewX(-20deg); }
  84%, 100% { transform: translateX(520%) skewX(-20deg); }
}

@keyframes line-flow {
  from { transform: translateX(-100%); }
  to { transform: translateX(230%); }
}

@keyframes concept-breathe {
  0%, 100% { transform: scale(1.01); }
  50% { transform: scale(1.045); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy h1 > span,
  .section-heading h2 span,
  .download-callout h2 span {
    background-size: 230% 230%;
    animation: gradient-shift 7s ease-in-out infinite;
  }

  .btn-primary::before {
    animation: sheen 5.5s ease-in-out infinite;
  }

  .console-wave i,
  .large-wave i,
  .waveform-mini i {
    animation: wave-pulse 1.1s ease-in-out infinite;
  }

  .console-wave i:nth-child(2n),
  .large-wave i:nth-child(2n),
  .waveform-mini i:nth-child(2n) { animation-delay: -0.2s; }

  .console-wave i:nth-child(3n),
  .large-wave i:nth-child(3n),
  .waveform-mini i:nth-child(3n) { animation-delay: -0.44s; }

  .console-wave i:nth-child(5n),
  .large-wave i:nth-child(5n),
  .waveform-mini i:nth-child(5n) { animation-delay: -0.62s; }

  .listening-pill i,
  .online-dot,
  .system-note i {
    animation: live-pulse 1.9s ease-out infinite;
  }

  .floating-note {
    animation: float-note 5s ease-in-out infinite;
  }

  .floating-note.note-two { animation-delay: -1.8s; }
  .floating-note.note-three { animation-delay: -3.1s; }

  .hero-console {
    animation: hero-enter 0.9s 0.12s var(--ease-out) both;
  }

  .tour-panel.active {
    animation: panel-in 0.4s var(--ease-out) both;
  }

  .latency-visual b::after {
    animation: line-flow 2.2s linear infinite;
  }

  .concept-background {
    animation: concept-breathe 12s ease-in-out infinite;
  }

  .motion-ready [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition: opacity 0.7s var(--ease-out), transform 0.8s var(--ease-out);
  }

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

  .motion-ready [data-reveal-group] > * {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 0.55s var(--ease-out), transform 0.65s var(--ease-out);
    transition-delay: calc(var(--stagger, 0) * 70ms);
  }

  .motion-ready .is-visible [data-reveal-group] > *,
  .motion-ready [data-reveal-group].is-visible > *,
  .motion-ready .hero.is-visible .proof-strip > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Responsive */

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 840px;
  }

  .hero-stage {
    width: min(850px, 100%);
    min-height: 500px;
  }

  .product-tour {
    grid-template-columns: 1fr;
  }

  .tour-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .tour-tab {
    min-height: 78px;
  }

  .tour-tab:hover {
    transform: translateY(-2px);
  }

  .privacy-section {
    grid-template-columns: 1fr;
  }

  .privacy-copy {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .wrap {
    width: min(100% - 40px, 1240px);
  }

  .nav-cta,
  .beta-pill {
    display: none;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-strip > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .ribbon-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1.25rem;
  }

  .app-list {
    justify-content: flex-start;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .split-heading > p {
    justify-self: start;
  }

  .feature-card,
  .feature-speed,
  .feature-history,
  .feature-transform,
  .feature-language,
  .feature-desktop {
    grid-column: span 6;
  }

  .feature-desktop {
    grid-column: span 12;
  }

  .click-steps {
    grid-template-columns: 1fr;
  }

  .click-steps article {
    min-height: 0;
  }

  .concept-shell {
    min-height: 720px;
  }

  .concept-background {
    object-position: 54% center;
  }

  .pricing-shell {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .plan-card {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 82px;
    scroll-behavior: auto;
  }

  .wrap {
    width: min(100% - 30px, 1240px);
  }

  .section {
    padding-top: 3.75rem;
  }

  .nav-shell {
    min-height: 68px;
    position: relative;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  #primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.2rem;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  #primary-navigation.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  #primary-navigation a {
    padding: 0.72rem 0.8rem;
    border-radius: 9px;
  }

  #primary-navigation a::after {
    left: 0.8rem;
    right: auto;
    bottom: 0.42rem;
    width: 28px;
    transition: none;
  }

  #primary-navigation a.active {
    background: rgba(11, 143, 116, 0.08);
  }

  .hero {
    padding-top: 2.5rem;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .hero-stage {
    min-height: 440px;
  }

  .hero-console {
    width: 100%;
    padding: 0.9rem;
    border-radius: 20px;
  }

  .console-wave {
    height: 84px;
    gap: 4px;
  }

  .console-wave i {
    width: 4px;
  }

  .console-context,
  .console-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .floating-note {
    display: none;
  }

  .tour-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-tab {
    min-height: 74px;
    padding: 0.7rem;
  }

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

  .demo-sidebar {
    display: none;
  }

  .tour-panel {
    min-height: 520px;
    padding: 1rem;
  }

  .window-meta {
    display: none;
  }

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

  .window-title {
    justify-self: end;
  }

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

  .dictate-card.main {
    grid-row: auto;
    min-height: 340px;
  }

  .transform-demo {
    grid-template-columns: 1fr;
  }

  .transform-source,
  .transform-result {
    min-height: 145px;
  }

  .transform-arrow {
    transform: rotate(90deg);
  }

  .history-layout {
    grid-template-columns: 1fr;
  }

  .history-list,
  .history-detail {
    min-height: 250px;
  }

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

  .stats-grid .hero-stat {
    grid-column: auto;
  }

  .sparkline {
    opacity: 0.62;
  }

  .feature-card,
  .feature-speed,
  .feature-history,
  .feature-transform,
  .feature-language,
  .feature-desktop {
    grid-column: span 12;
    min-height: 270px;
  }

  .concept-shell {
    min-height: 740px;
    padding: 1.3rem;
    border-radius: 24px;
  }

  .concept-copy {
    padding-top: 0.65rem;
  }

  .concept-background {
    object-position: center;
  }

  .concept-overlay {
    background: linear-gradient(180deg, rgba(3, 4, 7, 0.5), rgba(3, 4, 7, 0.16) 34%, rgba(3, 4, 7, 0.84) 68%, #030407);
  }

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

  .privacy-grid article {
    min-height: 0;
  }

  .download-actions {
    width: 100%;
    flex-direction: column;
  }

  .download-actions .btn {
    width: 100%;
  }

  .install-card {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 560px);
    padding: 0.75rem;
  }

  .install-card .download-integrity {
    grid-column: auto;
  }

  .download-callout {
    min-height: 440px;
    border-radius: 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }

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

@media (max-width: 760px) and (hover: hover) and (pointer: fine) {
  #primary-navigation a:hover {
    background: rgba(11, 143, 116, 0.08);
  }
}

@media (max-width: 520px) {
  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-chip {
    align-self: flex-start;
  }

  .tour-panel {
    min-height: 560px;
  }

  .detail-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .latency-visual {
    grid-template-columns: auto 1fr auto;
  }

  .latency-visual span:last-child,
  .latency-visual b:last-of-type {
    display: none;
  }

  .key-visual {
    flex-wrap: wrap;
  }

  .pricing-shell {
    padding: 0.4rem;
  }

  .plan-card {
    padding: 1.25rem;
  }
}

/* Restrained motion layer */

@keyframes editorial-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes editorial-nav-in {
  from {
    opacity: 0;
    transform: translate3d(0, -16px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes editorial-stage-in {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes proof-sheen {
  0%, 68% {
    transform: translateX(-135%) skewX(-18deg);
  }
  100% {
    transform: translateX(480%) skewX(-18deg);
  }
}

@keyframes quiet-breathe {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.proof-strip {
  position: relative;
  overflow: hidden;
}

.proof-strip::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -18%;
  width: 14%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
}

.btn span,
.text-link span {
  transition: transform 0.25s var(--ease-out);
}

.btn:hover span {
  transform: translate3d(2px, -2px, 0);
}

.feature-card,
.privacy-grid article,
.plan-card,
.tour-tab {
  will-change: transform;
}

.feature-icon,
.step-orb {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.feature-card:hover .feature-icon {
  transform: translateY(-4px) rotate(-4deg);
}

.click-steps article:hover .step-orb {
  transform: scale(1.08) rotate(4deg);
}

.privacy-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(9, 31, 27, 0.16);
}

.plan-card:hover {
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: no-preference) {
  .nav-shell {
    animation: editorial-nav-in 0.7s 0.05s var(--ease-out) both;
  }

  .hero-copy .eyebrow {
    animation: editorial-rise 0.62s 0.14s var(--ease-out) both;
  }

  .hero-copy h1 {
    animation: editorial-rise 0.82s 0.2s var(--ease-out) both;
  }

  .hero-lead {
    animation: editorial-rise 0.72s 0.32s var(--ease-out) both;
  }

  .hero-actions {
    animation: editorial-rise 0.72s 0.42s var(--ease-out) both;
  }

  .hero-trust {
    animation: editorial-rise 0.68s 0.5s var(--ease-out) both;
  }

  .hero-stage {
    animation: editorial-stage-in 0.92s 0.48s var(--ease-out) both;
  }

  .proof-strip::after {
    animation: proof-sheen 7.5s 1.6s ease-in-out infinite;
  }

  .listening-pill {
    animation: quiet-breathe 3.8s 1.4s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

/* Calm editorial direction — spacious, product-led, and intentionally restrained */

:root {
  --bg: #f5f5e9;
  --bg-deep: #ececdf;
  --bg-soft: #fbfbf3;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #191a18;
  --muted: #5d615b;
  --muted-2: #80847d;
  --line: rgba(25, 26, 24, 0.12);
  --line-strong: rgba(25, 26, 24, 0.22);
  --mint: #1f6f60;
  --mint-bright: #7cd7bd;
  --mint-soft: rgba(31, 111, 96, 0.1);
  --coral: #b95642;
  --violet: #6956bd;
  --gold: #93610d;
  --shadow-lg: 0 32px 90px rgba(35, 38, 32, 0.12);
  --shadow-card: 0 20px 55px rgba(35, 38, 32, 0.08);
}

body {
  background: var(--bg);
}

.scroll-progress,
.site-noise,
.ambient {
  display: none;
}

.wrap {
  width: min(1180px, calc(100vw - 64px));
}

.section {
  padding-top: clamp(8rem, 11vw, 11rem);
}

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.94;
}

.site-header,
.site-header.scrolled {
  top: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-shell {
  width: min(1120px, calc(100vw - 48px));
  min-height: 66px;
  padding: 0.5rem 0.55rem 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(250, 250, 240, 0.92);
  box-shadow: 0 10px 35px rgba(40, 42, 36, 0.05);
  backdrop-filter: blur(18px);
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: none;
}

.brand-word {
  font-size: 0.95rem;
}

#primary-navigation {
  gap: 1.7rem;
}

#primary-navigation a {
  color: #4f534d;
  font-size: 0.82rem;
}

.btn,
.menu-toggle {
  min-height: 48px;
  padding-inline: 1.2rem;
  border-radius: 12px;
}

.btn-primary {
  color: #f9fff9;
  background: #1f5148;
  box-shadow: none;
}

.btn-primary:hover {
  background: #153d36;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
}

.nav-cta {
  color: #181918;
  border-color: #181918;
  background: #eadcff;
}

.nav-cta:hover {
  border-color: #181918;
  background: #e2d1ff;
}

.eyebrow {
  justify-content: center;
  color: #5f635d;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

.eyebrow > span {
  display: none;
}

.hero {
  padding-top: clamp(8rem, 11vw, 10.5rem);
}

.hero-layout {
  grid-template-columns: 1fr;
  gap: 0;
}

.hero-copy {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy h1 {
  margin-top: 1.25rem;
  font-size: clamp(5.3rem, 10.5vw, 9.8rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.hero-copy h1 > span,
.section-heading h2 span,
.download-callout h2 span {
  color: #1f5148;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-style: italic;
}

.hero-lead {
  max-width: 610px;
  margin: 2.25rem auto 0;
  color: #343733;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

.hero-actions .btn-plain {
  display: none;
}

.hero-trust {
  justify-content: center;
  margin-top: 1.25rem;
  color: #686c65;
}

.hero-stage {
  width: min(900px, 100%);
  min-height: 470px;
  margin: 4.5rem auto 0;
}

.hero-stage::before {
  opacity: 0.45;
}

.hero-concept-art {
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.hero-console {
  width: min(740px, 94%);
  padding: 1.4rem;
  border-radius: 28px;
  box-shadow: 0 32px 85px rgba(19, 26, 24, 0.2);
}

.proof-strip {
  gap: 0;
  margin-top: 4rem;
  padding: 1.15rem;
  border-radius: 34px;
  background: #1a1b19;
}

.proof-strip > div {
  min-height: 104px;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.proof-strip > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-strip strong {
  color: #f8f8ee;
  font-size: 1.05rem;
}

.proof-strip span {
  color: #aeb1aa;
}

.app-ribbon {
  margin-top: 4rem;
  border: 0;
  background: transparent;
}

.ribbon-inner {
  min-height: 54px;
}

.app-list {
  gap: 0.55rem;
}

.app-list span {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
}

.app-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  box-shadow: none !important;
}

.section-heading {
  max-width: 940px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.split-heading {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.split-heading > p {
  max-width: 58ch;
  justify-self: center;
  padding: 0;
  font-size: 1rem;
}

.centered-heading {
  max-width: 900px;
}

.product-tour {
  gap: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tour-tabs {
  width: min(820px, 100%);
  gap: 0.5rem;
  margin-inline: auto;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.52);
}

.tour-tab {
  min-height: 76px;
  border-radius: 13px;
}

.tour-tab:hover,
.tour-tab.active {
  border-color: var(--line);
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(34, 37, 31, 0.06);
}

.app-window {
  border-color: rgba(25, 26, 24, 0.13);
  border-radius: 28px;
  box-shadow: 0 35px 90px rgba(35, 38, 32, 0.13);
}

.click-story {
  padding-top: clamp(8rem, 11vw, 11rem);
}

.concept-shell {
  min-height: 620px;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 0;
  border-radius: 46px;
}

.concept-copy h2 {
  font-size: clamp(3.5rem, 6vw, 6.4rem);
}

.click-steps {
  gap: 1rem;
}

.click-steps article {
  min-height: 165px;
  padding: 1.35rem;
  border-radius: 20px;
}

.feature-bento {
  gap: 1.25rem;
}

.feature-card,
.feature-speed,
.feature-control,
.feature-transform,
.feature-language,
.feature-history,
.feature-desktop {
  min-height: 350px;
  grid-column: span 4;
  padding: 2rem;
  border-color: var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: #ffffff;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.feature-card h3 {
  max-width: 19ch;
  margin-top: 0.65rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.feature-card > p:not(.feature-kicker) {
  margin-top: 1rem;
  line-height: 1.68;
}

.feature-detail-strip {
  gap: 0.7rem 1.2rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 0;
  background: transparent;
}

.privacy-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 6vw, 6rem);
  margin-top: clamp(8rem, 11vw, 11rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  border-radius: 46px;
  background: #1f5148;
}

.privacy-copy .eyebrow {
  justify-content: flex-start;
  color: #b9d5cc;
}

.privacy-copy h2 {
  color: #fbfbef;
  font-size: clamp(3.4rem, 5.2vw, 5.6rem);
}

.privacy-copy > p:not(.eyebrow) {
  color: #cbd9d3;
}

.privacy-copy .text-link {
  color: #ffffff;
}

.privacy-grid {
  gap: 1rem;
}

.privacy-grid article,
.privacy-grid article:hover {
  min-height: 175px;
  padding: 1.4rem;
  border: 0;
  border-radius: 22px;
  background: #f7f6ea;
}

.pricing-shell {
  max-width: 980px;
  gap: 1.4rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.plan-card {
  min-height: 430px;
  padding: 2.2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
}

.plan-card.featured {
  border-color: rgba(105, 86, 189, 0.18);
  background: #eee7ff;
}

.plan-card h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.download-callout {
  min-height: 560px;
  margin-top: clamp(8rem, 11vw, 11rem);
  padding: clamp(3rem, 6vw, 5.5rem);
  border: 0;
  border-radius: 46px;
  background: #eadcff;
}

.download-callout h2 {
  font-size: clamp(4rem, 7vw, 7.2rem);
}

.download-callout h2 span {
  color: #5c45aa;
}

.download-callout::before,
.download-callout::after {
  display: none;
}

.install-card {
  width: min(980px, 100%);
  gap: 1rem;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
}

.install-card > div {
  border: 1px solid rgba(53, 38, 92, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

footer {
  margin-top: 6rem;
  padding-top: 4rem;
  color: #f5f5ec;
  background: #1a1b19;
}

.footer-grid .brand,
.footer-grid h4 {
  color: #f5f5ec;
}

.footer-brand p,
.footer-grid > div:not(.footer-brand) a,
.footer-bottom p {
  color: #aaaDA6;
}

@media (max-width: 1050px) {
  .feature-card,
  .feature-speed,
  .feature-control,
  .feature-transform,
  .feature-language,
  .feature-history,
  .feature-desktop {
    grid-column: span 6;
  }

  .privacy-section {
    grid-template-columns: 1fr;
  }

  .privacy-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 30px, 1180px);
  }

  .section {
    padding-top: 6.5rem;
  }

  .site-header,
  .site-header.scrolled {
    top: 10px;
  }

  .nav-shell {
    width: min(100% - 20px, 1120px);
    min-height: 60px;
    padding-left: 0.7rem;
    border-radius: 16px;
  }

  #primary-navigation {
    top: calc(100% + 8px);
    border-radius: 16px;
    background: rgba(250, 250, 240, 0.98);
  }

  .hero {
    padding-top: 6.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(4.4rem, 19vw, 6.8rem);
    line-height: 0.84;
  }

  .hero-lead {
    margin-top: 1.75rem;
  }

  .hero-trust {
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }

  .hero-stage {
    min-height: 410px;
    margin-top: 3rem;
  }

  .hero-console {
    padding: 1rem;
    border-radius: 22px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 0.75rem;
    border-radius: 26px;
  }

  .proof-strip > div,
  .proof-strip > div + div,
  .proof-strip > div:nth-child(3),
  .proof-strip > div:nth-child(4) {
    min-height: 94px;
    border: 0;
  }

  .proof-strip > div:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-strip > div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .ribbon-inner {
    gap: 1rem;
  }

  .tour-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .concept-shell {
    min-height: 760px;
    padding: 1.5rem;
    border-radius: 30px;
  }

  .concept-copy h2,
  h2 {
    font-size: clamp(3.3rem, 14vw, 5rem);
  }

  .feature-card,
  .feature-speed,
  .feature-control,
  .feature-transform,
  .feature-language,
  .feature-history,
  .feature-desktop {
    min-height: 320px;
    grid-column: span 12;
    padding: 1.6rem;
    border-radius: 24px;
  }

  .privacy-section {
    margin-top: 6.5rem;
    padding: 2rem 1.25rem;
    border-radius: 30px;
  }

  .privacy-copy h2 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

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

  .pricing-shell {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 400px;
    padding: 1.6rem;
    border-radius: 24px;
  }

  .download-callout {
    min-height: 520px;
    margin-top: 6.5rem;
    padding: 3rem 1.25rem;
    border-radius: 30px;
  }

  .download-callout h2 {
    font-size: clamp(3.7rem, 16vw, 5.4rem);
  }

  .install-card {
    margin-top: 2rem;
  }
}

@media (max-width: 520px) {
  .hero-copy h1 {
    font-size: clamp(4rem, 20vw, 5.2rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 0.45rem 0.7rem;
    font-size: 0.58rem;
  }

  .app-list span {
    font-size: 0.68rem;
  }
}

/* Modern display typography */

h1,
h2,
.concept-copy h2,
.privacy-copy h2,
.download-callout h2,
.feature-card h3,
.plan-card h3 {
  font-family: "Sora", "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  font-weight: 600;
}

h1,
h2 {
  letter-spacing: -0.065em;
}

h2,
.concept-copy h2,
.privacy-copy h2,
.download-callout h2 {
  line-height: 0.98;
}

.hero-copy h1 {
  line-height: 0.9;
}

.hero-copy h1 > span,
.section-heading h2 span,
.download-callout h2 span {
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.075em;
}

.feature-card h3,
.plan-card h3 {
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

/* Voice-to-text hero — canvas waveform + product UI */

.hero-stage {
  width: min(1160px, 100%);
  min-height: clamp(500px, 52vw, 610px);
  margin-top: 4.25rem;
  transform: scale(var(--voice-scroll-scale, 1));
  transform-origin: top center;
  transition: transform 0.18s linear;
}

.hero-stage::before {
  inset: 7% 0 12%;
  opacity: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(234, 220, 255, 0.86), transparent 31%),
    radial-gradient(ellipse at 50% 48%, rgba(31, 111, 96, 0.11), transparent 61%);
  filter: blur(7px);
}

.voice-hero {
  --voice-app-x: 0px;
  --voice-app-y: 0px;
  --voice-wave-x: 0px;
  --voice-wave-y: 0px;
  --voice-particle-x: 0px;
  --voice-particle-y: 0px;
  position: relative;
  width: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(25, 26, 24, 0.1);
  border-radius: 40px;
  background:
    linear-gradient(rgba(25, 26, 24, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 26, 24, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.92), rgba(250, 250, 240, 0.56) 40%, rgba(236, 236, 223, 0.64));
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 30px 90px rgba(35, 38, 32, 0.08);
  isolation: isolate;
}

.voice-hero::before,
.voice-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}

.voice-hero::before {
  left: -15%;
  top: 10%;
  background: rgba(124, 215, 189, 0.22);
}

.voice-hero::after {
  right: -14%;
  bottom: 5%;
  background: rgba(234, 220, 255, 0.68);
}

.voice-wave-canvas,
.voice-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.voice-wave-canvas {
  z-index: 0;
  transform: translate3d(var(--voice-wave-x), var(--voice-wave-y), 0);
  transition: transform 0.35s var(--ease-out);
}

.voice-particle-canvas {
  z-index: 2;
  transform: translate3d(var(--voice-particle-x), var(--voice-particle-y), 0);
  transition: transform 0.28s var(--ease-out);
}

.voice-word-fragment {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.48rem 0.68rem;
  border: 1px solid rgba(25, 26, 24, 0.1);
  border-radius: 999px;
  color: #565b55;
  background: rgba(251, 251, 243, 0.8);
  box-shadow: 0 12px 30px rgba(35, 38, 32, 0.07);
  backdrop-filter: blur(13px);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0;
  filter: blur(4px);
  pointer-events: none;
  transition: opacity 0.45s ease, filter 0.5s ease, transform 0.6s var(--ease-out);
}

.voice-word-fragment > span {
  padding: 0.18rem 0.34rem;
  border-radius: 999px;
  color: #1f6f60;
  background: rgba(124, 215, 189, 0.17);
  font-size: 0.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fragment-raw-one {
  left: 7%;
  top: 27%;
  transform: translate3d(-10px, 8px, 0) scale(0.96);
}

.fragment-raw-two {
  left: 11%;
  bottom: 27%;
  transform: translate3d(-6px, 10px, 0) scale(0.96);
}

.fragment-clean-one {
  right: 8%;
  top: 25%;
  transform: translate3d(10px, 8px, 0) scale(0.96);
}

.fragment-clean-two {
  right: 11%;
  bottom: 28%;
  transform: translate3d(7px, 10px, 0) scale(0.96);
}

.voice-word-fragment[data-voice-fragment="clean"] {
  border-color: rgba(105, 86, 189, 0.13);
  color: #51436f;
  background: rgba(247, 243, 255, 0.84);
}

.voice-word-fragment[data-voice-fragment="clean"] > span {
  color: #5d49a8;
  background: rgba(105, 86, 189, 0.11);
}

.voice-hero[data-state="speaking"] [data-voice-fragment="raw"] {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.voice-hero[data-state="transforming"] [data-voice-fragment="raw"] {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(18px, -3px, 0) scale(0.94);
}

.voice-hero[data-state="transforming"] [data-voice-fragment="clean"],
.voice-hero[data-state="complete"] [data-voice-fragment="clean"] {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.voice-hero[data-state="transforming"] .fragment-clean-two {
  transition-delay: 0.13s;
}

.voice-app-shell {
  position: relative;
  z-index: 1;
  width: clamp(340px, 35%, 420px);
  transform: translate3d(var(--voice-app-x), var(--voice-app-y), 0);
  transition: transform 0.32s var(--ease-out);
}

.voice-app-shell::before {
  content: "";
  position: absolute;
  inset: 14% -18% -14%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(31, 81, 72, 0.16);
  filter: blur(36px);
}

.voice-app {
  --app-text: #f7f8f3;
  --app-muted: #a7aea8;
  --app-line: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 25px;
  color: var(--app-text);
  background:
    radial-gradient(310px circle at 50% 9%, rgba(124, 215, 189, 0.12), transparent 68%),
    linear-gradient(155deg, #202622, #111512 68%);
  box-shadow: 0 35px 80px rgba(19, 26, 24, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.voice-app::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.04), transparent 32%, transparent 70%, rgba(234, 220, 255, 0.045));
}

.voice-app-topbar,
.voice-app-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
}

.voice-app-topbar {
  border-bottom: 1px solid var(--app-line);
}

.voice-app-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.voice-app-brand img {
  width: 25px;
  height: 25px;
  border-radius: 7px;
}

.voice-app-context,
.voice-state-row,
.voice-transcript-kicker,
.voice-polish-status,
.voice-app-footer {
  font-family: "Space Mono", ui-monospace, monospace;
}

.voice-app-context {
  color: #8b938d;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.voice-app-body {
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1rem;
}

.voice-mic-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
}

.voice-mic-ripple {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(124, 215, 189, 0.32);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.72);
}

.voice-mic-ripple.second {
  inset: 7px;
}

.voice-mic {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 215, 189, 0.24);
  border-radius: 50%;
  background: rgba(124, 215, 189, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.voice-mic::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 17px;
  border: 1.6px solid #9fe3cf;
  border-radius: 8px;
}

.voice-mic::after {
  content: "";
  position: absolute;
  top: 25px;
  width: 16px;
  height: 10px;
  border-right: 1.6px solid #9fe3cf;
  border-bottom: 1.6px solid #9fe3cf;
  border-left: 1.6px solid #9fe3cf;
  border-radius: 0 0 9px 9px;
}

.voice-mic i {
  position: absolute;
  top: 35px;
  width: 1.6px;
  height: 5px;
  border-radius: 2px;
  background: #9fe3cf;
}

.voice-state-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  color: var(--app-muted);
  font-size: 0.58rem;
  font-weight: 700;
}

.voice-state-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7cd7bd;
  box-shadow: 0 0 0 5px rgba(124, 215, 189, 0.08);
}

.voice-transcript {
  width: 100%;
  min-height: 128px;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--app-line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.voice-transcript-kicker {
  display: block;
  color: #78807a;
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.voice-transcript p {
  min-height: 58px;
  margin-top: 0.62rem;
  color: #f2f4ef;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}

.voice-word {
  display: inline-block;
  margin-right: 0.28em;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(6px) scale(0.97);
  transition: opacity 0.34s ease, filter 0.42s ease, transform 0.42s var(--ease-out), color 0.3s ease;
}

.voice-word.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.voice-transcript.is-raw .voice-word {
  color: #c4c9c5;
  font-weight: 500;
}

.voice-polish-status {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin-top: 0.68rem;
  padding: 0.34rem 0.56rem;
  border: 1px solid rgba(234, 220, 255, 0.14);
  border-radius: 999px;
  color: #cfc1ef;
  background: rgba(234, 220, 255, 0.065);
  font-size: 0.52rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out);
}

.voice-polish-status.visible {
  opacity: 1;
  transform: translateY(0);
}

.voice-polish-status > span:first-child {
  color: #b9a3ed;
}

.voice-app-footer {
  border-top: 1px solid var(--app-line);
  color: #7f8781;
  font-size: 0.51rem;
}

.voice-app-footer > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.voice-app-footer > span:first-child i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7cd7bd;
}

.voice-shortcut {
  display: inline-flex;
  gap: 0.2rem;
}

.voice-shortcut kbd {
  min-width: 20px;
  min-height: 20px;
  padding: 0.08rem 0.28rem;
  border-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.17);
  color: #d6dbd6;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.16);
  font-size: 0.47rem;
}

.voice-flow-labels {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(25, 26, 24, 0.09);
  border-radius: 999px;
  color: #696d67;
  background: rgba(250, 250, 240, 0.76);
  backdrop-filter: blur(12px);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.voice-flow-labels i {
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, #7cd7bd, #6956bd);
}

/* Small transcription and word micro-animations */

.hero-copy > :not(.home-motion-scene) {
  position: relative;
  z-index: 2;
}

.home-motion-scene {
  position: absolute;
  left: 50%;
  top: -10rem;
  z-index: 0;
  width: min(1240px, calc(100vw - 30px));
  height: calc(100% + 20rem);
  pointer-events: none;
  transform: translateX(-50%);
}

.home-motion-scene::before,
.home-motion-scene::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(30px);
}

.home-motion-scene::before {
  left: -8%;
  bottom: 2%;
  width: 38%;
  height: 33%;
  background: rgba(124, 215, 189, 0.18);
}

.home-motion-scene::after {
  right: -5%;
  top: 17%;
  width: 35%;
  height: 30%;
  background: rgba(226, 209, 255, 0.38);
}

.home-wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-callout {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 174px;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(25, 26, 24, 0.1);
  border-radius: 18px;
  color: #343833;
  background: rgba(252, 252, 246, 0.88);
  box-shadow: 0 18px 42px rgba(35, 38, 32, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
}

.home-callout-copy {
  display: grid;
  gap: 0.15rem;
  text-align: left;
}

.home-callout-copy b {
  font-size: 0.68rem;
  line-height: 1.2;
}

.home-callout-copy em {
  color: #1f6f60;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.51rem;
  font-style: normal;
  font-weight: 700;
}

.home-callout-icon {
  position: relative;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 111, 96, 0.16);
  border-radius: 50%;
  color: #1f6f60;
  background: rgba(124, 215, 189, 0.12);
}

.home-mic-icon::before {
  content: "";
  width: 8px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.home-mic-icon::after {
  content: "";
  position: absolute;
  top: 21px;
  width: 15px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 0 0 8px 8px;
}

.home-mic-icon i {
  position: absolute;
  top: 29px;
  width: 2px;
  height: 5px;
  border-radius: 2px;
  background: currentColor;
}

.home-listening-card {
  left: -1%;
  top: 21%;
  padding-left: 0.55rem;
  transform: rotate(-3.5deg);
}

.home-format-card {
  right: -1%;
  top: 22%;
  transform: rotate(4deg);
}

.home-speed-card {
  left: 1%;
  bottom: 18%;
  min-width: 160px;
  transform: rotate(-4deg);
}

.home-ready-card {
  right: 0;
  bottom: 18%;
  min-width: 170px;
  transform: rotate(4deg);
}

.home-spark-icon,
.home-bolt-icon,
.home-check-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 800;
}

.home-spark-icon {
  color: #6956bd;
  background: rgba(105, 86, 189, 0.1);
}

.home-format-card .home-callout-copy em {
  color: #6956bd;
}

.home-bolt-icon {
  color: #1f6f60;
  background: rgba(124, 215, 189, 0.13);
}

.home-check-icon {
  color: #ffffff;
  background: #2b9c69;
}

.home-mini-wave,
.home-mini-app-wave {
  height: 18px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.home-mini-wave i,
.home-mini-app-wave i {
  width: 2px;
  height: 5px;
  border-radius: 999px;
  background: #1f8e6d;
  transform-origin: center;
}

.home-mini-wave i:nth-child(2n),
.home-mini-app-wave i:nth-child(2n) { height: 11px; }
.home-mini-wave i:nth-child(3n),
.home-mini-app-wave i:nth-child(3n) { height: 16px; }
.home-mini-wave i:nth-child(5n),
.home-mini-app-wave i:nth-child(5n) { height: 8px; }

.home-motion-scene.is-running .home-mini-wave i,
.home-motion-scene.is-running .home-mini-app-wave i {
  animation: home-mini-bars 0.72s ease-in-out infinite alternate;
}

.home-motion-scene.is-running .home-mini-wave i:nth-child(2n),
.home-motion-scene.is-running .home-mini-app-wave i:nth-child(2n) { animation-delay: -0.28s; }
.home-motion-scene.is-running .home-mini-wave i:nth-child(3n),
.home-motion-scene.is-running .home-mini-app-wave i:nth-child(3n) { animation-delay: -0.46s; }

.home-app-tiles {
  position: absolute;
  left: 1.5%;
  bottom: 1.5%;
  z-index: 1;
  width: 180px;
  height: 95px;
}

.home-app-tile {
  position: absolute;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(25, 26, 24, 0.09);
  border-radius: 13px;
  color: #ffffff;
  background: #1f5148;
  box-shadow: 0 13px 26px rgba(35, 38, 32, 0.12);
}

.tile-mail { left: 4px; top: 20px; transform: rotate(8deg); background: linear-gradient(145deg, #67c5ff, #3279de); }
.tile-chat { left: 60px; top: 36px; transform: rotate(-7deg); background: linear-gradient(145deg, #58d979, #23a64c); }
.tile-notes { left: 115px; top: 6px; transform: rotate(11deg); background: linear-gradient(145deg, #f5d65a, #dcae24); }

.home-app-glyph {
  position: relative;
  display: block;
}

.glyph-mail {
  width: 25px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 5px;
}

.glyph-mail::before {
  content: "";
  position: absolute;
  inset: 2px 3px auto;
  height: 10px;
  background: rgba(255, 255, 255, 0.96);
  clip-path: polygon(0 0, 50% 58%, 100% 0, 100% 20%, 50% 80%, 0 20%);
}

.glyph-chat {
  width: 25px;
  height: 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
}

.glyph-chat::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -4px;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.96);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.glyph-notes {
  width: 23px;
  height: 27px;
  overflow: hidden;
  border-radius: 4px;
  background: #fffef7;
  box-shadow: 0 1px 2px rgba(102, 73, 8, 0.15);
}

.glyph-notes::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: #f3c63b;
}

.glyph-notes::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 10px;
  height: 12px;
  background: repeating-linear-gradient(to bottom, rgba(111, 100, 69, 0.38) 0 1px, transparent 1px 4px);
}

.home-mini-app {
  position: absolute;
  right: -2.5%;
  bottom: -4.5%;
  z-index: 1;
  width: 245px;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid rgba(25, 26, 24, 0.11);
  border-radius: 20px 20px 0 0;
  background: rgba(252, 252, 248, 0.9);
  box-shadow: 0 24px 55px rgba(35, 38, 32, 0.12);
  transform: rotate(5deg);
}

.home-mini-app-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 32px;
  padding: 0 0.7rem;
  border-bottom: 1px solid rgba(25, 26, 24, 0.07);
  background: rgba(246, 246, 240, 0.9);
}

.home-mini-app-bar > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef6259;
}

.home-mini-app-bar > i:nth-child(2) { background: #eebc33; }
.home-mini-app-bar > i:nth-child(3) { background: #58b85e; }

.home-mini-app-bar > span {
  margin-left: auto;
  color: #858a84;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.45rem;
  font-weight: 700;
}

.home-mini-app-body {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  text-align: left;
}

.home-mini-app-body b {
  color: #676c66;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.49rem;
}

.home-mini-app-body p {
  color: #40443f;
  font-size: 0.66rem;
  font-weight: 700;
}

.home-mini-line {
  width: 100%;
  height: 6px;
  margin-top: 0.25rem;
  border-radius: 99px;
  background: rgba(25, 26, 24, 0.08);
}

.home-mini-line.short {
  width: 68%;
  margin-top: 0;
}

.home-scene-spark,
.home-scene-dot {
  position: absolute;
  z-index: 1;
  font-style: normal;
}

.home-scene-spark {
  color: #8e78e4;
  font-size: 1rem;
}

.spark-one { right: 5%; top: 13%; }
.spark-two { left: 34%; bottom: 10%; color: #52c4a6; font-size: 0.72rem; }

.home-scene-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5fca91;
}

.dot-one { left: 17%; top: 15%; }
.dot-two { right: 25%; top: 24%; background: #2bb985; }
.dot-three { left: 7%; bottom: 33%; background: #7a6ed1; }

.home-motion-scene.is-running .home-listening-card {
  animation: home-card-float-left 6.5s ease-in-out infinite;
}

.home-motion-scene.is-running .home-format-card {
  animation: home-card-float-right 7.2s -1.4s ease-in-out infinite;
}

.home-motion-scene.is-running .home-speed-card {
  animation: home-card-float-left 7.5s -2.3s ease-in-out infinite;
}

.home-motion-scene.is-running .home-ready-card {
  animation: home-card-float-right 6.8s -3.1s ease-in-out infinite;
}

.home-motion-scene.is-running .home-mic-icon {
  animation: home-mic-pulse 2s ease-out infinite;
}

.home-motion-scene.is-running .home-spark-icon {
  animation: home-spark-twinkle 2.4s ease-in-out infinite;
}

.home-motion-scene.is-running .home-check-icon {
  animation: home-ready-pulse 3s ease-in-out infinite;
}

.home-motion-scene.is-running .home-app-tile {
  animation: home-tile-drift 6s ease-in-out infinite;
}

.home-motion-scene.is-running .tile-chat { animation-delay: -2s; }
.home-motion-scene.is-running .tile-notes { animation-delay: -4s; }

.home-motion-scene.is-running .home-mini-app {
  animation: home-window-drift 8s ease-in-out infinite;
}

.home-motion-scene.is-running .home-scene-spark {
  animation: home-spark-twinkle 2.8s ease-in-out infinite;
}

@keyframes home-mini-bars {
  from { transform: scaleY(0.42); opacity: 0.45; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes home-card-float-left {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-3.5deg); }
  50% { transform: translate3d(5px, -8px, 0) rotate(-1.8deg); }
}

@keyframes home-card-float-right {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(4deg); }
  50% { transform: translate3d(-5px, -7px, 0) rotate(2.3deg); }
}

@keyframes home-mic-pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 111, 96, 0.16); }
  76%, 100% { box-shadow: 0 0 0 15px rgba(31, 111, 96, 0); }
}

@keyframes home-spark-twinkle {
  0%, 100% { opacity: 0.45; transform: scale(0.86) rotate(-6deg); }
  50% { opacity: 1; transform: scale(1.08) rotate(7deg); }
}

@keyframes home-ready-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(43, 156, 105, 0.1); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 8px rgba(43, 156, 105, 0); }
}

@keyframes home-tile-drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes home-window-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(5deg); }
  50% { transform: translate3d(-4px, -7px, 0) rotate(3.5deg); }
}

.hero-transcription-pulse {
  position: absolute;
  left: 50%;
  top: -4.8rem;
  z-index: 3;
  width: min(330px, calc(100vw - 44px));
  min-height: 42px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.58rem 0.45rem 0.7rem;
  border: 1px solid rgba(25, 26, 24, 0.1);
  border-radius: 999px;
  color: #515650;
  background: rgba(251, 251, 243, 0.78);
  box-shadow: 0 12px 35px rgba(35, 38, 32, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.hero-live-wave {
  height: 21px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero-live-wave i {
  width: 2px;
  height: 6px;
  border-radius: 999px;
  background: #1f6f60;
  transform-origin: center;
}

.hero-live-wave i:nth-child(2) { height: 13px; }
.hero-live-wave i:nth-child(3) { height: 19px; }
.hero-live-wave i:nth-child(4) { height: 11px; }
.hero-live-wave i:nth-child(5) { height: 7px; }

.hero-transcription-pulse.is-running .hero-live-wave i {
  animation: hero-mini-wave 0.85s ease-in-out infinite alternate;
}

.hero-transcription-pulse.is-running .hero-live-wave i:nth-child(2) { animation-delay: -0.28s; }
.hero-transcription-pulse.is-running .hero-live-wave i:nth-child(3) { animation-delay: -0.52s; }
.hero-transcription-pulse.is-running .hero-live-wave i:nth-child(4) { animation-delay: -0.18s; }
.hero-transcription-pulse.is-running .hero-live-wave i:nth-child(5) { animation-delay: -0.42s; }

.hero-live-copy {
  position: relative;
  min-width: 0;
  height: 24px;
  display: grid;
  align-items: center;
  overflow: hidden;
  text-align: left;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 700;
}

.hero-live-copy > span {
  grid-area: 1 / 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-live-raw {
  color: #797e78;
}

.hero-live-clean {
  color: #215c51;
  opacity: 0;
  filter: blur(3px);
  transform: translateY(5px);
}

.hero-transcription-pulse.is-running .hero-live-raw {
  animation: hero-live-raw 6.6s var(--ease-out) infinite;
}

.hero-transcription-pulse.is-running .hero-live-clean {
  animation: hero-live-clean 6.6s var(--ease-out) infinite;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.29rem 0.45rem;
  border: 1px solid rgba(31, 111, 96, 0.12);
  border-radius: 999px;
  color: #1f6f60;
  background: rgba(124, 215, 189, 0.11);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-live-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(31, 111, 96, 0.075);
}

.hero-transcription-pulse.is-running .hero-live-badge i {
  animation: hero-live-dot 1.8s ease-out infinite;
}

@keyframes hero-mini-wave {
  from { transform: scaleY(0.48); opacity: 0.55; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes hero-live-raw {
  0%, 42% { opacity: 1; filter: blur(0); transform: translateY(0); }
  52%, 88% { opacity: 0; filter: blur(4px); transform: translateY(-5px); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes hero-live-clean {
  0%, 45% { opacity: 0; filter: blur(3px); transform: translateY(5px) scale(0.98); }
  56%, 88% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
  100% { opacity: 0; filter: blur(3px); transform: translateY(-4px) scale(0.98); }
}

@keyframes hero-live-dot {
  0% { box-shadow: 0 0 0 0 rgba(31, 111, 96, 0.2); }
  72%, 100% { box-shadow: 0 0 0 7px rgba(31, 111, 96, 0); }
}

.micro-live-words {
  min-height: 42px;
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.26rem;
  margin-top: 0.65rem;
  padding: 0.62rem 0.72rem;
  border: 1px solid rgba(91, 82, 240, 0.1);
  border-radius: 10px;
  background: rgba(91, 82, 240, 0.04);
}

.micro-live-words span {
  display: inline-block;
  color: #3f3b4b;
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.14;
  filter: blur(3px);
  transform: translateY(5px) scale(0.97);
}

.micro-live-words.is-running span {
  animation: micro-word-arrive 6.4s ease-in-out infinite;
}

.micro-live-words span:nth-child(2) { animation-delay: 0.18s; }
.micro-live-words span:nth-child(3) { animation-delay: 0.36s; }
.micro-live-words span:nth-child(4) { animation-delay: 0.54s; }
.micro-live-words span:nth-child(5) { animation-delay: 0.72s; }
.micro-live-words span:nth-child(6) { animation-delay: 0.9s; }
.micro-live-words span:nth-child(7) { animation-delay: 1.08s; }

.micro-word-swap {
  position: relative;
  min-height: 34px;
  display: grid;
  align-items: center;
  margin-top: 0.7rem;
  padding: 0.45rem 0.65rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.56rem;
}

.micro-word-swap > span {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.micro-raw {
  color: #858a83;
}

.micro-clean {
  color: #4f3f7c;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(6px);
}

.micro-clean i {
  color: #6956bd;
  font-style: normal;
}

.micro-word-swap.is-running .micro-raw {
  animation: micro-raw-leave 7s var(--ease-out) infinite;
}

.micro-word-swap.is-running .micro-clean {
  animation: micro-clean-arrive 7s var(--ease-out) infinite;
}

.chip-visual.is-running span {
  animation: micro-chip-focus 6.4s var(--ease-out) infinite;
}

.chip-visual.is-running span:nth-child(2) { animation-delay: 0.35s; }
.chip-visual.is-running span:nth-child(3) { animation-delay: 0.7s; }
.chip-visual.is-running span:nth-child(4) { animation-delay: 1.05s; }

@keyframes micro-word-arrive {
  0%, 7% { opacity: 0.12; filter: blur(3px); transform: translateY(5px) scale(0.97); }
  14%, 78% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
  91%, 100% { opacity: 0.12; filter: blur(3px); transform: translateY(-3px) scale(0.98); }
}

@keyframes micro-raw-leave {
  0%, 35% { opacity: 1; filter: blur(0); transform: translateY(0); }
  48%, 82% { opacity: 0; filter: blur(4px); transform: translateY(-6px); }
  92%, 100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes micro-clean-arrive {
  0%, 40% { opacity: 0; filter: blur(4px); transform: translateY(6px) scale(0.98); }
  53%, 82% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
  92%, 100% { opacity: 0; filter: blur(3px); transform: translateY(-4px) scale(0.98); }
}

@keyframes micro-chip-focus {
  0%, 12%, 100% { color: var(--muted); border-color: var(--line); background: rgba(255, 255, 255, 0.9); transform: translateY(0); }
  20%, 31% { color: #5d49a8; border-color: rgba(105, 86, 189, 0.24); background: rgba(105, 86, 189, 0.09); transform: translateY(-2px); }
  40% { color: var(--muted); border-color: var(--line); background: rgba(255, 255, 255, 0.9); transform: translateY(0); }
}

.voice-hero[data-state="listening"] .voice-mic-ripple,
.voice-hero[data-state="speaking"] .voice-mic-ripple {
  animation: voice-ring 1.8s ease-out infinite;
}

.voice-hero[data-state="listening"] .voice-mic-ripple.second,
.voice-hero[data-state="speaking"] .voice-mic-ripple.second {
  animation-delay: -0.8s;
}

.voice-hero[data-state="speaking"] .voice-mic {
  border-color: rgba(124, 215, 189, 0.46);
  background: rgba(124, 215, 189, 0.17);
  box-shadow: 0 0 28px rgba(124, 215, 189, 0.16);
}

.voice-hero[data-state="transforming"] .voice-mic,
.voice-hero[data-state="complete"] .voice-mic {
  border-color: rgba(185, 163, 237, 0.4);
  background: rgba(185, 163, 237, 0.11);
}

@keyframes voice-ring {
  0% { opacity: 0; transform: scale(0.7); }
  24% { opacity: 0.72; }
  100% { opacity: 0; transform: scale(1.28); }
}

@media (max-width: 900px) {
  .hero-stage {
    min-height: 530px;
  }

  .voice-app-shell {
    width: min(400px, 48%);
  }

  .voice-word-fragment {
    font-size: 0.48rem;
  }

  .fragment-raw-one,
  .fragment-raw-two {
    left: 3%;
  }

  .fragment-clean-one,
  .fragment-clean-two {
    right: 3%;
  }

  .home-motion-scene {
    width: calc(100vw - 18px);
  }

  .home-callout {
    scale: 0.86;
  }

  .home-listening-card,
  .home-speed-card {
    left: -3%;
    transform-origin: left center;
  }

  .home-format-card,
  .home-ready-card {
    right: -3%;
    transform-origin: right center;
  }

  .home-mini-app {
    right: -7%;
    scale: 0.85;
    transform-origin: bottom right;
  }
}

@media (max-width: 760px) {
  .hero-stage {
    min-height: 500px;
    margin-top: 3rem;
  }

  .voice-hero {
    border-radius: 28px;
    background-size: 34px 34px, 34px 34px, auto;
  }

  .voice-app-shell {
    width: min(390px, 76%);
  }

  .voice-word-fragment {
    display: none;
  }

  .hero-transcription-pulse {
    top: -3.6rem;
    width: min(300px, calc(100vw - 42px));
  }

  .home-motion-scene {
    top: -7rem;
    width: calc(100vw - 8px);
    height: calc(100% + 14rem);
  }

  .home-speed-card,
  .home-ready-card,
  .home-app-tiles,
  .home-mini-app {
    display: none;
  }

  .home-listening-card,
  .home-format-card {
    top: 19%;
    scale: 0.68;
  }

  .home-listening-card { left: -5%; }
  .home-format-card { right: -5%; }

  .voice-app-body {
    min-height: 305px;
  }

  .voice-flow-labels {
    bottom: 0.72rem;
  }
}

@media (max-width: 520px) {
  .hero-stage {
    width: calc(100% + 8px);
    min-height: 470px;
    margin-left: -4px;
  }

  .voice-app-shell {
    width: min(350px, 82%);
  }

  .voice-app {
    border-radius: 21px;
  }

  .voice-app-topbar,
  .voice-app-footer {
    padding-inline: 0.8rem;
  }

  .voice-app-body {
    min-height: 290px;
    padding: 1rem 0.85rem 0.8rem;
  }

  .voice-transcript {
    min-height: 120px;
    padding: 0.8rem;
  }

  .voice-transcript p {
    font-size: 0.82rem;
  }

  .voice-app-context,
  .voice-flow-labels {
    display: none;
  }

  .hero-transcription-pulse {
    top: -3.25rem;
    min-height: 38px;
    gap: 0.5rem;
    padding-block: 0.35rem;
  }

  .hero-live-copy {
    font-size: 0.52rem;
  }

  .home-callout {
    display: none;
  }

  .home-motion-scene {
    top: -5.5rem;
    height: calc(100% + 11rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage,
  .voice-wave-canvas,
  .voice-particle-canvas,
  .voice-app-shell,
  .voice-word,
  .voice-polish-status {
    transform: none !important;
    transition: none !important;
  }

  .voice-mic-ripple {
    display: none;
  }

  .voice-word-fragment[data-voice-fragment="raw"] {
    display: none;
  }

  .voice-word-fragment[data-voice-fragment="clean"] {
    opacity: 1;
    filter: none;
  }

  .micro-live-words span {
    opacity: 1;
    filter: none;
  }

  .hero-live-raw {
    display: none;
  }

  .hero-live-clean {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .home-motion-scene .home-callout,
  .home-motion-scene .home-app-tile,
  .home-motion-scene .home-mini-app,
  .home-motion-scene .home-scene-spark {
    animation: none !important;
  }

  .micro-raw {
    display: none !important;
  }

  .micro-clean {
    opacity: 1;
    filter: none;
  }
}

/* Sign in leaves the page, so it reads a shade stronger than the in-page
   section anchors beside it. It lives inside #primary-navigation rather than
   next to .nav-cta so it stays reachable in the mobile menu. */
#primary-navigation a.nav-signin {
  color: var(--text);
  font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
  #primary-navigation a.nav-signin:hover {
    color: var(--text);
  }
}
