:root {
  --bg: #f3f7ff;
  --surface: #ffffff;
  --surface-soft: #ebf2ff;
  --ink: #11264a;
  --muted: #536b92;
  --line: #d4dff5;
  --primary: #3382f9;
  --primary-strong: #1f64d7;
  --accent: #e43c24;
  --shadow: 0 18px 40px rgba(20, 43, 84, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #f4f8ff 0%, #f2f7ff 50%, #f8fbff 100%);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.1;
  margin: 0;
}

p {
  margin: 0;
}

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

.container {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.38;
  z-index: -1;
  pointer-events: none;
}

.orb-a {
  background: #8fc4ff;
  top: -10rem;
  left: -12rem;
}

.orb-b {
  background: #ffb3a5;
  bottom: -14rem;
  right: -10rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(244, 248, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(51, 130, 249, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.4rem;
}

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

.brand-logo {
  width: 2.9rem;
  height: 2.9rem;
  object-fit: contain;
}

.brand-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.2s ease;
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(140deg, var(--primary), #4eb6ff);
  color: #fff;
  font-weight: 700;
  padding: 0.78rem 1.2rem;
  border-radius: 0.8rem;
  box-shadow: 0 12px 20px rgba(51, 130, 249, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 24px rgba(51, 130, 249, 0.3);
}

.btn-small {
  padding: 0.58rem 0.95rem;
  border-radius: 0.65rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: transparent;
  color: var(--primary-strong);
  box-shadow: none;
  border: 1px solid rgba(51, 130, 249, 0.35);
}

.btn-ghost:hover {
  box-shadow: none;
  border-color: rgba(51, 130, 249, 0.5);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "copy card"
    "meta card";
  gap: 2rem;
  align-items: start;
  padding: 4.2rem 0 2.3rem;
}

.hero-copy {
  grid-area: copy;
}

.hero-card {
  grid-area: card;
  align-self: center;
}

.hero-meta {
  grid-area: meta;
}

.hero-meta .hero-actions {
  margin-top: 0;
}

.hero-meta .stat-row {
  margin-top: 1.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-strong);
  background: rgba(51, 130, 249, 0.12);
  border: 1px solid rgba(51, 130, 249, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  margin-top: 1rem;
}

.hero-copy h1 span {
  color: var(--primary-strong);
}

.subhead {
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 34ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.coming-note {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.8rem;
}

.stat-row article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.9rem;
}

.stat-row h3 {
  font-size: 1.4rem;
}

.stat-row p {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.speed-shift {
  padding-top: 1.1rem;
}

.speed-card {
  border: 1px solid rgba(51, 130, 249, 0.24);
  border-radius: 1.05rem;
  padding: 1.15rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.93), rgba(236, 245, 255, 0.9));
  box-shadow: 0 14px 28px rgba(34, 72, 139, 0.09);
}

.speed-head h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.speed-head p {
  margin-top: 0.6rem;
  color: var(--muted);
  max-width: 66ch;
}

.speed-track {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.speed-step {
  border: 1px solid rgba(51, 130, 249, 0.2);
  border-radius: 0.85rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.9);
}

.speed-step h3 {
  font-size: 0.95rem;
  color: var(--primary-strong);
}

.speed-step p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.speed-step-core {
  border-color: rgba(51, 130, 249, 0.45);
  background: linear-gradient(165deg, rgba(223, 237, 255, 0.72), rgba(255, 236, 232, 0.7));
}

.speed-proof {
  margin-top: 0.85rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(51, 130, 249, 0.22);
  border-radius: 0.85rem;
  background: linear-gradient(130deg, rgba(245, 250, 255, 0.94), rgba(232, 243, 255, 0.9));
  display: flex;
  align-items: center;
  gap: 0.6rem 0.85rem;
  flex-wrap: wrap;
}

.speed-proof-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-strong);
}

.speed-proof-copy {
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1 1 21rem;
}

.speed-proof-cta {
  margin-left: auto;
}

.hero-window {
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(51, 130, 249, 0.28);
  background: #eff4ff;
  box-shadow: var(--shadow);
}

.window-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(90deg, rgba(51, 130, 249, 0.18), rgba(228, 60, 36, 0.16));
  border-bottom: 1px solid rgba(51, 130, 249, 0.18);
}

.window-top span {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.25);
}

.window-top p {
  margin-left: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
}

.window-body {
  padding: 1.05rem;
}

.flow-intro {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.65rem;
}

.flow-surface {
  position: relative;
  min-height: 15.6rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: linear-gradient(160deg, #f7faff, #eef4ff 54%, #f8f1f5);
  overflow: hidden;
}

.flow-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid rgba(51, 130, 249, 0.35);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(3px);
  box-shadow: 0 12px 26px rgba(29, 66, 131, 0.18);
  animation: corePulse 3.9s ease-in-out infinite;
}

.flow-core::before {
  content: "";
  position: absolute;
  inset: -0.55rem;
  border: 2px solid rgba(51, 130, 249, 0.2);
  border-radius: 999px;
  animation: coreRing 3.9s ease-in-out infinite;
}

.flow-core img {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}

.flow-core span {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-strong);
  letter-spacing: 0.03em;
}

.flow-corrections {
  position: absolute;
  left: 50%;
  top: 0.5rem;
  transform: translateX(-50%);
  width: 23rem;
  height: 2.8rem;
  z-index: 5;
  pointer-events: none;
}

.correction-burst {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(6px) scale(0.96);
  animation: correctionFlash 32s ease-in-out infinite;
}

.correction-burst span {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(51, 130, 249, 0.26);
  background: rgba(255, 255, 255, 0.92);
  color: #3f5781;
  padding: 0.17rem 0.42rem;
  box-shadow: 0 4px 12px rgba(34, 69, 132, 0.12);
}

.correction-burst small {
  font-size: 0.53rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-strong);
  background: rgba(51, 130, 249, 0.12);
  border-radius: 999px;
  padding: 0.1rem 0.28rem;
  font-weight: 800;
}

.correction-burst em {
  font-style: normal;
  color: #8b4545;
  text-decoration: line-through;
  text-decoration-thickness: 1.2px;
}

.correction-burst strong {
  color: #1f64d7;
}

.burst-1 {
  animation-delay: 0s;
}

.burst-2 {
  animation-delay: 10.66s;
}

.burst-3 {
  animation-delay: 21.33s;
}

.flow-lane {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: 52%;
  transform: translateY(-50%);
  height: 2.8rem;
  z-index: 2;
}

.lane-mask {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lane-left {
  left: 0;
  width: calc(50% - 3.9rem);
  justify-content: flex-end;
}

.lane-right {
  right: 0;
  width: calc(50% - 3.9rem);
  justify-content: flex-start;
}

.flow-stream {
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  width: 54rem;
  max-width: none;
  border-radius: 999px;
  padding: 0.52rem 0.72rem;
  font-size: 0.76rem;
  line-height: 1.3;
  white-space: nowrap;
  will-change: transform, opacity;
}

.raw-stream {
  color: #7f3c3c;
  border: 1px solid rgba(228, 60, 36, 0.32);
  background: rgba(255, 238, 234, 0.86);
  animation: rawLaneMove 32s linear infinite;
  animation-fill-mode: both;
  opacity: 0;
}

.raw-stream-2 {
  animation-delay: 16s;
}

.clean-stream {
  color: #264072;
  border: 1px solid rgba(51, 130, 249, 0.35);
  background: rgba(237, 245, 255, 0.9);
  animation: cleanLaneMove 32s linear infinite;
  animation-delay: 2.4s;
  animation-fill-mode: both;
  opacity: 0;
}

.clean-stream-2 {
  animation-delay: 18.4s;
}

.key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.3rem;
  padding: 0.25rem 0.45rem;
  border-radius: 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(51, 130, 249, 0.35);
  color: var(--primary-strong);
  background: rgba(51, 130, 249, 0.09);
}

.live-output {
  margin-top: 0.9rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.85rem;
}

.live-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary-strong);
  margin-bottom: 0.4rem;
}

.style-tags {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.style-tags span {
  font-size: 0.73rem;
  font-weight: 700;
  background: rgba(51, 130, 249, 0.12);
  color: var(--primary-strong);
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
}

.apps-everywhere {
  padding-top: 3.4rem;
}

.apps-scene {
  position: relative;
  min-height: 33rem;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(138, 168, 224, 0.33);
  background:
    radial-gradient(circle at 78% 23%, rgba(78, 159, 255, 0.24), transparent 38%),
    radial-gradient(circle at 18% 84%, rgba(248, 118, 97, 0.2), transparent 40%),
    linear-gradient(150deg, #101626, #131b2d 44%, #191f33 100%);
  box-shadow: 0 28px 48px rgba(12, 20, 41, 0.38);
}

.apps-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 126%, rgba(104, 160, 255, 0.25), transparent 42%),
    radial-gradient(circle at -4% 52%, rgba(255, 193, 177, 0.2), transparent 30%);
  pointer-events: none;
}

.apps-copy {
  position: absolute;
  left: clamp(1.2rem, 4.5vw, 3.4rem);
  top: 50%;
  transform: translateY(-50%);
  max-width: min(31rem, 48%);
  z-index: 6;
}

.apps-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(202, 220, 255, 0.45);
  background: rgba(20, 32, 56, 0.62);
  color: #f3f7ff;
  border-radius: 999px;
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
}

.apps-copy h2 {
  margin-top: 1rem;
  color: #f9fbff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.apps-copy p {
  margin-top: 1rem;
  color: rgba(231, 240, 255, 0.88);
  max-width: 34ch;
  font-size: 1.08rem;
}

.apps-platforms {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.apps-platforms span {
  font-size: 0.76rem;
  color: #ecf4ff;
  background: rgba(22, 35, 62, 0.86);
  border: 1px solid rgba(201, 219, 255, 0.45);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-weight: 700;
}

.apps-flow-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.app-node {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 20px rgba(7, 12, 28, 0.34);
  transform: translate(-50%, -50%);
  will-change: left, top, transform;
  user-select: none;
  white-space: nowrap;
}

.app-node img {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
}

.node-mail {
  background: #ffffff;
  color: #2a63c7;
}

.node-slack {
  background: linear-gradient(135deg, #3f0e40, #36c5f0);
  color: #f7fbff;
}

.node-vscode {
  background: linear-gradient(135deg, #1d73da, #2faeff);
  color: #f4fbff;
}

.node-notion {
  background: #ffffff;
  color: #121212;
}

.node-zoom {
  background: linear-gradient(135deg, #1f66ff, #38a2ff);
  color: #f5fbff;
}

.node-teams {
  background: linear-gradient(135deg, #5c4ec7, #7a69ef);
  color: #f5f4ff;
}

.node-telegram {
  background: linear-gradient(135deg, #1d95d2, #33b6f6);
  color: #f3fbff;
}

.node-discord {
  background: linear-gradient(135deg, #4f5bd5, #6f7bff);
  color: #f3f5ff;
}

.node-docs {
  background: linear-gradient(135deg, #2d7bf4, #61a6ff);
  color: #f3fbff;
}

.node-chatgpt {
  background: linear-gradient(135deg, #4a9385, #75b6a9);
  color: #f5fffb;
}

.node-calendar {
  background: linear-gradient(135deg, #fefefe, #f2f6ff);
  color: #1f4ca1;
}

.node-whatsapp {
  background: linear-gradient(135deg, #16b95f, #4cda85);
  color: #f4fff9;
}

.node-todoist {
  background: linear-gradient(135deg, #dd3329, #ff6350);
  color: #fff8f6;
}

.node-figma {
  background: linear-gradient(135deg, #a259ff, #fd4f68);
  color: #fff7ff;
}

.node-gmail {
  background: linear-gradient(135deg, #ffffff, #f2f4f9);
  color: #c63f37;
}

.node-x {
  background: #090909;
  color: #f2f2f2;
}

.node-notes {
  background: linear-gradient(135deg, #f7f8fc, #eceff6);
  color: #363b44;
}

.node-outlook {
  background: linear-gradient(135deg, #006ac7, #1f90ef);
  color: #edf8ff;
}

.node-clickup {
  background: linear-gradient(135deg, #7a3ff1, #ff6c98);
  color: #fff7ff;
}

.node-linear {
  background: linear-gradient(135deg, #161616, #303030);
  color: #f2f2f2;
}

.node-messages {
  background: linear-gradient(135deg, #28bc53, #54df7f);
  color: #f1fff5;
}

.node-grammarly {
  background: linear-gradient(135deg, #0a856f, #16b796);
  color: #f0fffb;
}

.apps-flow-layer .app-node {
  background: rgba(248, 252, 255, 0.98);
  border-color: rgba(214, 227, 252, 0.86);
  color: #20304f;
  padding: 0.38rem;
}

.apps-phone {
  position: absolute;
  right: clamp(0.9rem, 4vw, 3rem);
  top: 52%;
  transform: translateY(-50%);
  width: clamp(14.2rem, 27vw, 17.6rem);
  border-radius: 2rem;
  border: 2px solid rgba(240, 247, 255, 0.8);
  background: linear-gradient(160deg, #171d2d, #101524);
  box-shadow: 0 22px 44px rgba(9, 14, 30, 0.52);
  overflow: hidden;
  z-index: 5;
}

.apps-phone-screen {
  padding: 1rem 0.9rem 0.95rem;
  border-bottom: 1px solid rgba(233, 243, 255, 0.28);
}

.apps-chat-title {
  color: #eaf1ff;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.apps-chat-row {
  width: fit-content;
  max-width: 95%;
  margin-top: 0.45rem;
  border-radius: 0.75rem;
  padding: 0.46rem 0.58rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #eef5ff;
  background: rgba(122, 171, 250, 0.2);
}

.apps-chat-row.muted {
  background: rgba(255, 255, 255, 0.11);
}

.apps-chat-input {
  margin-top: 0.72rem;
  border: 1px solid rgba(202, 220, 255, 0.25);
  border-radius: 999px;
  padding: 0.38rem 0.56rem;
  color: rgba(237, 244, 255, 0.48);
  font-size: 0.7rem;
}

.apps-phone-mic {
  min-height: 5.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.36rem;
}

.mic-bar {
  width: 0.24rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #8ec1ff, #f6f9ff);
  animation: dictateBars 1.25s ease-in-out infinite;
}

.bar-a {
  height: 1.3rem;
  animation-delay: 0s;
}

.bar-b {
  height: 2rem;
  animation-delay: 0.12s;
}

.bar-c {
  height: 1.55rem;
  animation-delay: 0.22s;
}

.bar-d {
  height: 1.1rem;
  animation-delay: 0.34s;
}

section {
  padding: 4.6rem 0 0;
}

.section-head {
  max-width: 42rem;
}

.section-head h2 {
  margin-top: 1rem;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
}

.workflow {
  padding-top: 4.35rem;
}

.workflow-head {
  text-align: center;
  margin-inline: auto;
}

.workflow-head .eyebrow {
  margin-inline: auto;
}

.workflow-sub {
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 58ch;
  margin-inline: auto;
}

.workflow-track {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-card {
  border: 1px solid rgba(175, 198, 240, 0.56);
  border-radius: 1.05rem;
  padding: 0.9rem;
  background: linear-gradient(170deg, rgba(247, 251, 255, 0.95), rgba(239, 246, 255, 0.86));
  box-shadow: 0 14px 28px rgba(35, 75, 146, 0.11);
}

.workflow-card h3 {
  margin-top: 0.78rem;
  color: var(--primary-strong);
  font-size: 1.25rem;
}

.workflow-card p {
  margin-top: 0.42rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.workflow-visual {
  min-height: 13.2rem;
  border-radius: 0.86rem;
  border: 1px solid rgba(166, 191, 238, 0.58);
  background: linear-gradient(165deg, #f7fbff, #edf4ff 55%, #f8f1f5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.visual-hotkey::before,
.visual-wave::before,
.visual-output::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 8% 10%, rgba(255, 174, 150, 0.22), transparent 35%);
}

.keyboard-grid {
  width: min(19.5rem, 90%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.keycap {
  min-height: 2.5rem;
  border: 1px solid rgba(170, 193, 232, 0.62);
  border-radius: 0.75rem;
  background: #ffffff;
  color: #4a5f84;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 8px 14px rgba(35, 75, 146, 0.08);
}

.keycap-wide {
  grid-column: span 2;
  justify-content: flex-start;
  padding-left: 0.95rem;
  color: var(--muted);
}

.keycap-fn {
  grid-row: span 2;
  min-height: 5.5rem;
  font-size: 2.05rem;
  color: #2f56ba;
  background: linear-gradient(160deg, #f8fbff, #dceaff);
}

.keycap-space {
  grid-column: span 2;
  color: var(--primary-strong);
}

.voice-pill {
  width: min(17rem, 85%);
  min-height: 5.5rem;
  border: 1px solid rgba(170, 193, 232, 0.58);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  box-shadow: 0 10px 18px rgba(35, 75, 146, 0.09);
}

.voice-mic {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: linear-gradient(160deg, #f2f6ff, #dce8ff);
  border: 1px solid rgba(51, 130, 249, 0.35);
  position: relative;
}

.voice-mic::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.78rem;
  border: 2px solid #4867b6;
  border-top-left-radius: 0.32rem;
  border-top-right-radius: 0.32rem;
  border-bottom: none;
}

.voice-mic::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.42rem;
  transform: translateX(-50%);
  width: 0.6rem;
  height: 0.08rem;
  background: #4867b6;
  border-radius: 999px;
}

.voice-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}

.voice-bars i {
  width: 0.2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #7c7fd6, #3349ae);
  animation: voicePulse 1.35s ease-in-out infinite;
}

.voice-bars i:nth-child(1) {
  height: 0.65rem;
  animation-delay: 0s;
}

.voice-bars i:nth-child(2) {
  height: 1.2rem;
  animation-delay: 0.08s;
}

.voice-bars i:nth-child(3) {
  height: 0.85rem;
  animation-delay: 0.16s;
}

.voice-bars i:nth-child(4) {
  height: 1.45rem;
  animation-delay: 0.24s;
}

.voice-bars i:nth-child(5) {
  height: 0.95rem;
  animation-delay: 0.32s;
}

.voice-bars i:nth-child(6) {
  height: 1.3rem;
  animation-delay: 0.4s;
}

.voice-bars i:nth-child(7) {
  height: 0.8rem;
  animation-delay: 0.48s;
}

.voice-bars i:nth-child(8) {
  height: 1.1rem;
  animation-delay: 0.56s;
}

.voice-bars i:nth-child(9) {
  height: 0.72rem;
  animation-delay: 0.64s;
}

.voice-bars i:nth-child(10) {
  height: 1.25rem;
  animation-delay: 0.72s;
}

.output-draft {
  width: min(17.4rem, 86%);
  border: 1px solid rgba(170, 193, 232, 0.65);
  border-radius: 0.95rem;
  background: #ffffff;
  padding: 0.86rem 0.9rem;
  box-shadow: 0 10px 18px rgba(35, 75, 146, 0.09);
}

.output-line {
  margin: 0.36rem 0 0;
  color: #3f567f;
  font-size: 0.8rem;
  line-height: 1.42;
}

.output-line-title {
  margin-top: 0;
  color: #1d2b47;
  font-weight: 700;
}

.output-line-muted {
  color: #6f82a3;
  font-size: 0.7rem;
}

.output-caret {
  display: inline-block;
  width: 0.11rem;
  height: 0.8rem;
  background: #3c56aa;
  margin-top: 0.22rem;
  border-radius: 999px;
  animation: caretBlink 1s step-end infinite;
}

.features-showcase {
  padding-top: 4.75rem;
}

.features-head {
  max-width: 52rem;
}

.feature-row {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: center;
}

.feature-row-reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature-row-reverse .feature-copy {
  order: 2;
}

.feature-row-reverse .feature-visual-card {
  order: 1;
}

.feature-copy h3 {
  margin-top: 0.65rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.feature-copy p {
  margin-top: 0.58rem;
  color: var(--muted);
  max-width: 36ch;
  font-size: 1.02rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(51, 130, 249, 0.2);
  background: rgba(51, 130, 249, 0.1);
  color: var(--primary-strong);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.feature-visual-card {
  min-height: 20.6rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(160, 188, 236, 0.6);
  background: linear-gradient(155deg, #f7fbff, #edf4ff 56%, #f8f1f5);
  box-shadow: 0 18px 34px rgba(31, 65, 130, 0.14);
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.feature-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 14%, rgba(255, 164, 145, 0.24), transparent 34%);
  pointer-events: none;
}

.visual-autoedits {
  background: linear-gradient(158deg, #f7fbff, #edf5ff 52%, #f8f1f5);
  border-color: rgba(163, 190, 236, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auto-sequence {
  width: 100%;
  display: grid;
  gap: 0.62rem;
}

.auto-layer {
  border-radius: 0.88rem;
  border: 1px solid rgba(162, 188, 232, 0.58);
  padding: 0.82rem 0.88rem;
  position: relative;
}

.auto-layer p {
  margin: 0;
}

.auto-layer-raw {
  background: rgba(255, 238, 232, 0.93);
  border-color: rgba(228, 60, 36, 0.32);
  color: #7e4740;
  line-height: 1.4;
  font-size: 0.9rem;
  animation: autoRawCycle 12s ease-in-out infinite;
}

.auto-corrections {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-height: 2.4rem;
  align-items: flex-start;
}

.auto-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(85, 122, 188, 0.3);
  background: rgba(255, 255, 255, 0.96);
  color: #355185;
  font-size: 0.71rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  box-shadow: 0 6px 12px rgba(31, 65, 130, 0.09);
  opacity: 0;
  transform: translateY(6px) scale(0.96);
  animation: autoTagReveal 12s ease-in-out infinite;
}

.chip-a {
  animation-delay: 0s;
}

.chip-b {
  animation-delay: 0.22s;
}

.chip-c {
  animation-delay: 0.44s;
}

.chip-d {
  animation-delay: 0.66s;
}

.auto-layer-clean {
  background: rgba(238, 246, 255, 0.95);
  border-color: rgba(82, 134, 224, 0.35);
  color: #284378;
  font-size: 0.95rem;
  line-height: 1.42;
  font-weight: 600;
  animation: autoCleanCycle 12s ease-in-out infinite;
}

.visual-stylematching {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.style-branch-root {
  position: relative;
  z-index: 2;
  border-radius: 999px;
  border: 2px solid rgba(240, 246, 255, 0.94);
  background: rgba(26, 34, 53, 0.95);
  color: #f8fbff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  padding: 0.28rem 1rem;
}

.style-branch-lines {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 67%;
  height: 26%;
  transform: translateX(-50%);
  pointer-events: none;
}

.style-branch-lines span {
  position: absolute;
  bottom: 0;
  width: 2px;
  background: rgba(67, 100, 176, 0.55);
  transform-origin: top;
  animation: branchPulse 2.4s ease-in-out infinite;
}

.style-branch-lines span:nth-child(1) {
  left: 17%;
  height: 100%;
  transform: rotate(24deg);
  animation-delay: 0s;
}

.style-branch-lines span:nth-child(2) {
  left: 49%;
  height: 100%;
  transform: translateX(-50%);
  animation-delay: 0.35s;
}

.style-branch-lines span:nth-child(3) {
  right: 16%;
  height: 100%;
  transform: rotate(-24deg);
  animation-delay: 0.7s;
}

.style-tone-grid {
  margin-top: 4.2rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.style-tone-grid div {
  text-align: center;
}

.style-tone-grid img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.74rem;
  padding: 0.43rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(163, 186, 229, 0.72);
  box-shadow: 0 9px 16px rgba(31, 65, 130, 0.11);
}

.style-tone-grid p {
  margin-top: 0.42rem;
  color: var(--primary-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  animation: toneSwap 3s ease-in-out infinite;
}

.style-tone-grid div:nth-child(2) p {
  animation-delay: 0.4s;
}

.style-tone-grid div:nth-child(3) p {
  animation-delay: 0.8s;
}

.visual-context {
  padding: 1.3rem;
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.context-incoming {
  border: 1px solid rgba(167, 189, 228, 0.62);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.78rem 0.85rem;
  box-shadow: 0 9px 14px rgba(31, 65, 130, 0.09);
}

.context-meta {
  color: #667da6;
  font-size: 0.73rem;
  font-weight: 700;
}

.context-incoming p + p {
  margin-top: 0.35rem;
  color: #40556f;
}

.context-output {
  border: 1px solid rgba(112, 146, 208, 0.52);
  border-radius: 0.9rem;
  background: linear-gradient(160deg, rgba(226, 238, 255, 0.88), rgba(255, 242, 236, 0.82));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.75rem;
  animation: outputSlide 2.6s ease-in-out infinite;
}

.context-output img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.context-output p {
  color: #2b4ea7;
  font-size: 1.04rem;
  font-weight: 700;
}

.feature-pair {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0.9rem;
}

.feature-panel {
  border: 1px solid rgba(174, 197, 238, 0.56);
  border-radius: 1.02rem;
  background: linear-gradient(158deg, rgba(248, 251, 255, 0.96), rgba(239, 246, 255, 0.86));
  box-shadow: 0 14px 25px rgba(31, 65, 130, 0.11);
  padding: 1rem;
}

.feature-panel h3 {
  font-size: 1.08rem;
  color: var(--primary-strong);
}

.feature-panel p {
  margin-top: 0.42rem;
  color: var(--muted);
}

.panel-visual {
  margin-top: 0.75rem;
  min-height: 11.2rem;
  border-radius: 0.86rem;
  border: 1px solid rgba(163, 186, 229, 0.58);
  background: linear-gradient(165deg, #f5f9ff, #edf4ff);
  position: relative;
  overflow: hidden;
}

.visual-noise {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem;
}

.noise-device {
  border: 1px solid rgba(166, 190, 234, 0.65);
  border-radius: 0.78rem;
  background: #ffffff;
  box-shadow: 0 10px 16px rgba(31, 65, 130, 0.08);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.noise-desktop {
  width: 63%;
  min-height: 8rem;
  padding: 0.58rem 0.6rem;
}

.noise-mobile {
  width: 26%;
  min-height: 8rem;
  padding: 0.65rem 0.42rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.noise-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.noise-head-compact {
  width: 100%;
  justify-content: flex-start;
}

.noise-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
}

.noise-brand img {
  width: 0.8rem;
  height: 0.8rem;
  object-fit: contain;
}

.noise-brand span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-strong);
}

.noise-menu {
  width: 0.62rem;
  height: 0.08rem;
  border-radius: 999px;
  background: rgba(74, 96, 136, 0.44);
}

.noise-draft-lines {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.2rem;
}

.noise-draft-lines span {
  display: block;
  height: 0.19rem;
  border-radius: 999px;
  background: rgba(132, 156, 210, 0.36);
}

.noise-draft-lines span:nth-child(1) {
  width: 62%;
}

.noise-draft-lines span:nth-child(2) {
  width: 40%;
}

.noise-draft-lines span:nth-child(3) {
  width: 74%;
}

.noise-draft-lines span:nth-child(4) {
  width: 88%;
}

.noise-draft-lines span:nth-child(5) {
  width: 65%;
}

.noise-draft-lines span:nth-child(6) {
  width: 82%;
}

.noise-caption {
  margin-top: 0.56rem;
  font-size: 0.68rem;
  color: #5a6f93;
  font-weight: 700;
}

.noise-bars {
  display: flex;
  gap: 0.2rem;
  align-items: flex-end;
  margin-bottom: 0.12rem;
}

.noise-bars span {
  width: 0.18rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #8f99e7, #4659be);
  animation: noiseBars 1.8s ease-in-out infinite;
}

.noise-bars span:nth-child(1) {
  height: 0.6rem;
  animation-delay: 0s;
}

.noise-bars span:nth-child(2) {
  height: 1.1rem;
  animation-delay: 0.16s;
}

.noise-bars span:nth-child(3) {
  height: 0.76rem;
  animation-delay: 0.3s;
}

.noise-bars span:nth-child(4) {
  height: 1.3rem;
  animation-delay: 0.46s;
}

.noise-bars span:nth-child(5) {
  height: 0.68rem;
  animation-delay: 0.62s;
}

.noise-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(84, 121, 188, 0.3) 0.9px, transparent 0.9px),
    radial-gradient(circle, rgba(84, 121, 188, 0.22) 0.8px, transparent 0.8px);
  background-size: 28px 28px, 36px 36px;
  background-position: 0 0, 14px 17px;
  opacity: 0.28;
  animation: particleDrift 9s linear infinite;
  z-index: 1;
}

.visual-privacy {
  display: grid;
  place-items: center;
}

.privacy-rings {
  width: 9.2rem;
  height: 9.2rem;
  border-radius: 999px;
  border: 1px dashed rgba(83, 116, 192, 0.52);
  position: relative;
  animation: ringPulse 2.6s ease-in-out infinite;
}

.privacy-rings::before,
.privacy-rings::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(83, 116, 192, 0.45);
}

.privacy-rings::before {
  inset: 0.9rem;
}

.privacy-rings::after {
  inset: 1.85rem;
}

.privacy-center {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 16px rgba(31, 65, 130, 0.11);
}

.privacy-badge {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(160, 187, 233, 0.72);
  background: #fff;
  color: #3f5c8f;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.46rem;
  white-space: nowrap;
}

.badge-left {
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}

.badge-right {
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}

.badge-bottom {
  bottom: 0.7rem;
}

.visual-dictionary-light {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding: 0.92rem;
}

.dictionary-light-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.dictionary-light-title {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.dictionary-light-title img {
  width: 0.95rem;
  height: 0.95rem;
  object-fit: contain;
}

.dictionary-light-title strong {
  color: var(--primary-strong);
  font-size: 1.15rem;
}

.dictionary-light-add {
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(51, 130, 249, 0.12);
  border: 1px solid rgba(116, 157, 224, 0.5);
  color: var(--primary-strong);
  font-size: 1.28rem;
  font-weight: 700;
}

.dictionary-light-list {
  display: grid;
  gap: 0.42rem;
}

.dictionary-light-list p {
  margin: 0;
  border: 1px solid rgba(130, 176, 235, 0.5);
  border-radius: 999px;
  background: linear-gradient(160deg, #f9fcff, #eaf3ff);
  color: #2f4f82;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.32rem 0.7rem;
  box-shadow: 0 7px 14px rgba(31, 65, 130, 0.08);
  animation: dictionaryBob 3.2s ease-in-out infinite;
}

.dictionary-light-list p:nth-child(2n) {
  animation-delay: 0.45s;
}

.dictionary-light-list p:nth-child(3n) {
  animation-delay: 0.8s;
}

.billing-toggle {
  margin-top: 1.2rem;
  display: inline-flex;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem;
}

.billing-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.87rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
}

.billing-btn.is-active {
  background: var(--surface);
  color: var(--primary-strong);
  box-shadow: 0 8px 16px rgba(20, 43, 84, 0.1);
}

.pricing-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.price-card-featured {
  border-color: rgba(51, 130, 249, 0.4);
  background: linear-gradient(160deg, #ffffff, #eef5ff);
  box-shadow: 0 18px 34px rgba(51, 130, 249, 0.16);
}

.price-card-team {
  border-color: rgba(51, 130, 249, 0.3);
  background: linear-gradient(160deg, #ffffff, #f3f8ff);
}

.tier {
  color: var(--primary-strong);
  font-weight: 800;
}

.price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.period,
.save-note,
.trial-note {
  color: var(--muted);
}

.price-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
}

.price-card li + li {
  margin-top: 0.4rem;
}

.btn-disabled {
  opacity: 0.68;
  pointer-events: none;
  box-shadow: none;
}

.btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

.coming-soon-note {
  margin-top: 0.2rem;
  color: #3f5d8e;
  font-size: 0.83rem;
  font-weight: 700;
}

.trial-note {
  margin-top: 0.9rem;
}

.comparison-grid {
  margin-top: 1.25rem;
  border: 1px solid rgba(51, 130, 249, 0.24);
  border-radius: 1.2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 88%, rgba(143, 196, 255, 0.18), transparent 52%),
    radial-gradient(circle at 86% 12%, rgba(255, 179, 165, 0.16), transparent 42%),
    linear-gradient(154deg, #eef4ff 0%, #f9f4fe 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  box-shadow: 0 16px 30px rgba(31, 70, 140, 0.09);
}

.comparison-card {
  background: rgba(255, 255, 255, 0.9);
}

.comparison-card:first-child {
  border-right: 1px solid rgba(51, 130, 249, 0.16);
}

.comparison-card-muted {
  background: rgba(240, 246, 255, 0.52);
}

.comparison-card-head {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(51, 130, 249, 0.16);
}

.comparison-card-head-muted {
  justify-content: flex-start;
}

.comparison-brand {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-brand img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

.comparison-brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  color: #27416e;
}

.comparison-muted-title {
  margin: 0;
  color: #4b638d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.comparison-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.62rem;
  align-items: center;
  padding: 0.85rem 1rem;
  font-size: 1rem;
}

.comparison-list li + li {
  border-top: 1px solid rgba(51, 130, 249, 0.14);
}

.comparison-list-good li {
  color: #2b4675;
}

.comparison-list-muted li {
  color: #5a7098;
}

.comparison-mark {
  width: 1.18rem;
  height: 1.18rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.comparison-mark-good {
  background: rgba(51, 130, 249, 0.16);
  color: #2f69d4;
}

.comparison-mark-muted {
  background: rgba(117, 148, 200, 0.17);
  color: #667ea8;
}

.comparison-action {
  margin-top: 0.95rem;
  display: flex;
  justify-content: center;
}

.comparison-cta {
  margin: 0;
  min-width: 12.8rem;
}

.faq-list {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  padding: 0.95rem 1rem;
  cursor: pointer;
}

.faq-answer {
  color: var(--muted);
  padding: 0 1rem 1rem;
}

.faq-answer p {
  margin: 0;
}

.notify-form {
  margin-top: 0.85rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(51, 130, 249, 0.18);
  display: grid;
  gap: 0.55rem;
}

.notify-intro {
  font-size: 0.86rem;
  color: #36517f;
  font-weight: 700;
}

.notify-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.notify-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(51, 130, 249, 0.25);
  background: rgba(51, 130, 249, 0.08);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.52rem;
}

.notify-options input {
  accent-color: #3382f9;
}

.notify-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.notify-row input {
  width: 100%;
  border: 1px solid rgba(51, 130, 249, 0.32);
  border-radius: 0.62rem;
  padding: 0.5rem 0.6rem;
  font: inherit;
  color: #1c2f4f;
  background: #fff;
}

.notify-row input:focus {
  outline: 2px solid rgba(51, 130, 249, 0.24);
  border-color: rgba(51, 130, 249, 0.55);
}

.notify-submit {
  border: 1px solid rgba(51, 130, 249, 0.45);
  background: linear-gradient(160deg, #4a97ff, #3382f9);
  color: #fff;
  border-radius: 0.62rem;
  padding: 0.48rem 0.72rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.notify-feedback {
  margin: 0;
  font-size: 0.8rem;
  color: #36517f;
  min-height: 1.05rem;
}

.notify-success-card {
  margin-top: 0.85rem;
  border: 1px solid rgba(51, 130, 249, 0.28);
  border-radius: 0.75rem;
  background: linear-gradient(160deg, #f6fbff, #ecf4ff);
  padding: 0.8rem;
  box-shadow: 0 10px 20px rgba(31, 65, 130, 0.08);
}

.notify-success-card h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: #23457a;
}

.notify-success-card p {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.notify-reset-btn {
  margin-top: 0.55rem;
  border: 1px solid rgba(51, 130, 249, 0.34);
  background: #fff;
  color: var(--primary-strong);
  border-radius: 0.6rem;
  padding: 0.42rem 0.68rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cta {
  padding-bottom: 4.4rem;
}

.cta-card {
  border-radius: 1.15rem;
  border: 1px solid rgba(51, 130, 249, 0.32);
  background: linear-gradient(130deg, #dce8ff, #ffd9d0);
  padding: clamp(1.4rem, 3vw, 2.3rem);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.cta-card p {
  margin-top: 0.75rem;
  max-width: 60ch;
  color: #264072;
}

.site-footer {
  margin-top: 1rem;
  padding: 1.15rem 0 1.4rem;
  border-top: 1px solid rgba(51, 130, 249, 0.2);
  background:
    radial-gradient(circle at 16% 92%, rgba(143, 196, 255, 0.22), transparent 48%),
    radial-gradient(circle at 84% 8%, rgba(255, 179, 165, 0.2), transparent 42%),
    linear-gradient(160deg, #f5f8ff 0%, #eef4ff 58%, #f8f2fb 100%);
}

.footer-shell {
  border: 1px solid rgba(51, 130, 249, 0.18);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 20px 42px rgba(20, 43, 84, 0.09);
  padding: clamp(1.15rem, 3vw, 2rem);
}

.footer-hero {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.footer-app-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.footer-app {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.62rem;
  border: 1px solid rgba(51, 130, 249, 0.2);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(17, 38, 74, 0.1);
  animation: footerIconFloat 5.6s ease-in-out infinite;
}

.footer-app:nth-child(2n) {
  animation-delay: -0.65s;
}

.footer-app:nth-child(3n) {
  animation-delay: -1.15s;
}

.footer-app img {
  width: 1.22rem;
  height: 1.22rem;
  object-fit: contain;
}

.footer-hero h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
}

.footer-hero > p {
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 60ch;
  margin-inline: auto;
}

.footer-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.footer-actions .btn {
  min-width: 12.8rem;
}

.footer-availability {
  margin-top: 0.65rem;
  font-size: 0.84rem;
  color: #456193;
  font-weight: 600;
}

.footer-nav-band {
  margin-top: 1.95rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(51, 130, 249, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-logo {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
}

.footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  color: #395582;
  font-weight: 700;
  font-size: 0.92rem;
}

.footer-links a {
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-strong);
  border-bottom-color: rgba(51, 130, 249, 0.42);
}

.footer-bottom {
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(51, 130, 249, 0.15);
  color: #526c97;
  font-size: 0.88rem;
}

.content-page {
  padding: 3rem 0 4rem;
}

.content-shell {
  border: 1px solid rgba(51, 130, 249, 0.24);
  border-radius: 1.2rem;
  background: linear-gradient(160deg, #fefeff, #f0f6ff);
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 3vw, 2.2rem);
}

.content-shell h1 {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.content-shell > p {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 68ch;
}

.content-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.content-card {
  border-radius: 0.95rem;
  border: 1px solid rgba(51, 130, 249, 0.2);
  background: #fff;
  padding: 1rem;
}

.content-card h3 {
  font-size: 1.12rem;
}

.content-card p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.content-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.content-card li + li {
  margin-top: 0.28rem;
}

.legal-stack {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.72rem;
}

.legal-section {
  border-radius: 0.95rem;
  border: 1px solid rgba(51, 130, 249, 0.2);
  background: #fff;
  padding: 0.95rem;
}

.legal-section h2 {
  font-size: 1.1rem;
  color: #244272;
}

.legal-section p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-section p:first-of-type {
  margin-top: 0.45rem;
}

.legal-section ul {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.legal-section li + li {
  margin-top: 0.28rem;
}

.legal-note {
  margin-top: 0.75rem;
  color: #456193;
  font-size: 0.86rem;
  font-weight: 600;
}

.content-footer {
  border-top: 1px solid rgba(51, 130, 249, 0.2);
  background: rgba(51, 130, 249, 0.06);
  padding: 1rem 0 1.15rem;
}

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

.content-footer-copy {
  width: 100%;
  border-top: 1px solid rgba(51, 130, 249, 0.16);
  margin-top: 0.2rem;
  padding-top: 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1rem;
}

.contact-form {
  border: 1px solid rgba(51, 130, 249, 0.22);
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.contact-field {
  display: grid;
  gap: 0.32rem;
}

.contact-field span {
  font-size: 0.86rem;
  font-weight: 700;
  color: #33527f;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(51, 130, 249, 0.34);
  border-radius: 0.68rem;
  background: #fff;
  color: #1b365d;
  font: inherit;
  padding: 0.55rem 0.64rem;
}

.contact-field textarea {
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(51, 130, 249, 0.22);
  border-color: rgba(51, 130, 249, 0.58);
}

.contact-submit {
  width: fit-content;
}

.contact-feedback {
  margin: 0;
  min-height: 1.1rem;
  font-size: 0.84rem;
  color: #33527f;
}

.contact-side {
  border: 1px solid rgba(51, 130, 249, 0.22);
  border-radius: 1rem;
  background: linear-gradient(160deg, #f7fbff, #eef5ff);
  padding: 1rem;
}

.contact-side h2 {
  margin: 0;
  font-size: 1.2rem;
}

.contact-side p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.contact-side a {
  color: var(--primary-strong);
  text-decoration: underline;
}

.contact-success-card {
  margin-top: 1rem;
  border: 1px solid rgba(51, 130, 249, 0.28);
  border-radius: 1rem;
  background: linear-gradient(160deg, #f7fcff, #edf4ff);
  padding: 1rem;
}

.contact-success-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.contact-success-card p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.contact-reset-btn {
  margin-top: 0.65rem;
  border: 1px solid rgba(51, 130, 249, 0.35);
  background: #fff;
  color: var(--primary-strong);
  border-radius: 0.7rem;
  padding: 0.48rem 0.74rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

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

@keyframes corePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes coreRing {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes correctionFlash {
  0%,
  18% {
    opacity: 0;
    transform: translateY(8px) scale(0.95);
  }
  24%,
  46% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  54%,
  100% {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }
}

@keyframes rawLaneMove {
  0% {
    transform: translate(-68%, -50%);
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  34% {
    transform: translate(16%, -50%);
    opacity: 1;
  }
  44% {
    transform: translate(24%, -50%);
    opacity: 1;
  }
  50% {
    transform: translate(30%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(30%, -50%);
    opacity: 0;
  }
}

@keyframes cleanLaneMove {
  0%,
  8% {
    transform: translate(-30%, -50%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  45% {
    transform: translate(20%, -50%);
    opacity: 1;
  }
  56% {
    transform: translate(28%, -50%);
    opacity: 1;
  }
  62% {
    transform: translate(34%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(34%, -50%);
    opacity: 0;
  }
}

@keyframes cloudDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-38%);
  }
}

@keyframes marqueeFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-45%);
  }
}

@keyframes dictateBars {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1.18);
    opacity: 1;
  }
}

@keyframes voicePulse {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.72;
  }
  50% {
    transform: scaleY(1.28);
    opacity: 1;
  }
}

@keyframes caretBlink {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(-2deg);
  }
}

@keyframes autoRawCycle {
  0%,
  38% {
    opacity: 1;
    transform: translateY(0);
  }
  48%,
  84% {
    opacity: 0.45;
    transform: translateY(-1px);
  }
  92%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes autoTagReveal {
  0%,
  34% {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }
  44%,
  74% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  84%,
  100% {
    opacity: 0;
    transform: translateY(4px) scale(0.98);
  }
}

@keyframes autoCleanCycle {
  0%,
  40% {
    opacity: 0;
    transform: translateY(8px);
  }
  50%,
  86% {
    opacity: 1;
    transform: translateY(0);
  }
  94%,
  100% {
    opacity: 0;
    transform: translateY(6px);
  }
}

@keyframes branchPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.95;
  }
}

@keyframes toneSwap {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.88;
  }
  50% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

@keyframes outputSlide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

@keyframes noiseBars {
  0%,
  100% {
    transform: scaleY(0.72);
  }
  50% {
    transform: scaleY(1.34);
  }
}

@keyframes particleDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-22px);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.88;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes dictionaryBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes footerIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "card"
      "meta";
    gap: 1.35rem;
    align-items: stretch;
  }

  .apps-scene {
    min-height: 37rem;
  }

  .apps-copy {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    max-width: 100%;
    text-align: center;
    padding: 1.35rem 1.2rem 0;
  }

  .apps-copy h2 {
    max-width: none;
  }

  .apps-copy p {
    max-width: 36ch;
    margin-inline: auto;
  }

  .apps-platforms {
    justify-content: center;
  }

  .apps-phone {
    left: 50%;
    right: auto;
    top: 68%;
    transform: translate(-50%, -50%);
    width: clamp(13.8rem, 42vw, 16rem);
  }

  .speed-track {
    grid-template-columns: 1fr;
  }

  .workflow-visual {
    min-height: 12rem;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
  }

  .feature-row-reverse .feature-copy,
  .feature-row-reverse .feature-visual-card {
    order: initial;
  }

  .feature-copy p {
    max-width: 52ch;
  }

  .feature-visual-card {
    min-height: 18rem;
  }

  .workflow-track,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

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

  .comparison-card:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(51, 130, 249, 0.16);
  }

  .feature-pair {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .site-header {
    background: rgba(244, 248, 255, 0.94);
    backdrop-filter: blur(8px);
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 4.3rem;
    right: 0.75rem;
    left: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 0.95rem;
    box-shadow: var(--shadow);
    padding: 0.9rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .nav.open {
    display: flex;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .apps-scene {
    min-height: 38rem;
    border-radius: 1.05rem;
  }

  .apps-copy {
    padding: 1.15rem 0.95rem 0;
  }

  .apps-copy h2 {
    font-size: clamp(1.8rem, 9.2vw, 2.45rem);
  }

  .apps-copy p {
    font-size: 0.98rem;
  }

  .apps-phone {
    width: 13.1rem;
    top: 71%;
    border-radius: 1.75rem;
  }

  .apps-phone-screen {
    padding: 0.8rem 0.72rem 0.74rem;
  }

  .apps-chat-row {
    font-size: 0.66rem;
  }

  .app-node {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 0.72rem;
    font-size: 0.62rem;
  }

  .app-node img {
    width: 1.28rem;
    height: 1.28rem;
  }

  .apps-flow-layer .app-node:nth-child(2n) {
    display: none;
  }

  .speed-card {
    padding: 1rem;
  }

  .speed-head h2 {
    font-size: clamp(1.3rem, 6.2vw, 1.7rem);
  }

  .speed-step {
    padding: 0.72rem;
  }

  .speed-proof {
    padding: 0.72rem;
  }

  .speed-proof-cta {
    margin-left: 0;
  }

  .workflow {
    padding-top: 3.8rem;
  }

  .workflow-sub {
    font-size: 0.95rem;
  }

  .workflow-card h3 {
    font-size: 1.12rem;
  }

  .workflow-card p {
    font-size: 0.9rem;
  }

  .workflow-visual {
    min-height: 10.4rem;
  }

  .keycap {
    min-height: 2.2rem;
    border-radius: 0.64rem;
  }

  .keycap-fn {
    min-height: 4.8rem;
    font-size: 1.72rem;
  }

  .voice-pill {
    min-height: 4.8rem;
  }

  .features-showcase {
    padding-top: 4.1rem;
  }

  .feature-row {
    margin-top: 1rem;
    gap: 0.75rem;
  }

  .feature-copy h3 {
    font-size: clamp(1.35rem, 6.6vw, 1.75rem);
  }

  .feature-copy p {
    font-size: 0.95rem;
  }

  .feature-visual-card {
    min-height: 15.6rem;
    padding: 0.8rem;
    border-radius: 0.9rem;
  }

  .comparison-card-head {
    min-height: 3.5rem;
    padding: 0.7rem 0.8rem;
  }

  .comparison-card-head-muted {
    align-items: flex-start;
  }

  .comparison-brand strong {
    font-size: 1.48rem;
  }

  .comparison-list li {
    font-size: 0.9rem;
    gap: 0.52rem;
    padding: 0.68rem 0.78rem;
  }

  .comparison-cta {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .comparison-action {
    margin-top: 0.75rem;
  }

  .contact-form,
  .contact-side,
  .contact-success-card {
    border-radius: 0.9rem;
    padding: 0.85rem;
  }

  .contact-submit {
    width: 100%;
  }

  .auto-layer-raw {
    min-height: 6.7rem;
    font-size: 0.79rem;
  }

  .auto-chip {
    font-size: 0.64rem;
    padding: 0.2rem 0.45rem;
  }

  .style-tone-grid img {
    width: 2.2rem;
    height: 2.2rem;
  }

  .style-tone-grid p {
    font-size: 0.9rem;
  }

  .context-output p {
    font-size: 0.9rem;
  }

  .panel-visual {
    min-height: 9.6rem;
  }

  .dictionary-light-title strong {
    font-size: 1rem;
  }

  .dictionary-light-list p {
    font-size: 0.85rem;
  }

  .notify-row {
    grid-template-columns: 1fr;
  }

  .notify-submit {
    width: 100%;
  }

  .footer-shell {
    border-radius: 1rem;
    padding: 1rem;
  }

  .footer-hero h2 {
    font-size: clamp(1.55rem, 8.6vw, 2.3rem);
  }

  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-nav-band {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-links {
    font-size: 0.86rem;
    gap: 0.5rem 0.85rem;
  }

  .footer-bottom {
    font-size: 0.82rem;
  }

  .content-page {
    padding: 2rem 0 3rem;
  }

  .content-shell {
    border-radius: 0.95rem;
    padding: 1rem;
  }

  .content-shell h1 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

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

  .content-footer-copy {
    font-size: 0.8rem;
  }

  .window-body {
    padding: 0.85rem;
  }

  .flow-surface {
    min-height: 14.2rem;
  }

  .flow-core {
    width: 5.9rem;
    height: 5.9rem;
  }

  .flow-core img {
    width: 1.45rem;
    height: 1.45rem;
  }

  .flow-core span {
    font-size: 0.64rem;
  }

  .flow-corrections {
    width: 11.2rem;
    top: 0.36rem;
    height: 3rem;
  }

  .correction-burst {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.14rem;
    padding-left: 0.45rem;
  }

  .correction-burst span {
    font-size: 0.5rem;
    padding: 0.11rem 0.24rem;
  }

  .correction-burst small {
    font-size: 0.44rem;
    padding: 0.08rem 0.2rem;
  }

  .flow-lane {
    top: 53%;
    height: 2.2rem;
  }

  .lane-left,
  .lane-right {
    width: calc(50% - 3.1rem);
  }

  .flow-stream {
    width: 36rem;
    font-size: 0.62rem;
    padding: 0.34rem 0.48rem;
  }

  @keyframes rawLaneMove {
    0% {
      transform: translate(-74%, -50%);
      opacity: 0;
    }
    6% {
      opacity: 1;
    }
    34% {
      transform: translate(20%, -50%);
      opacity: 1;
    }
    44% {
      transform: translate(28%, -50%);
      opacity: 1;
    }
    50% {
      transform: translate(35%, -50%);
      opacity: 0;
    }
    100% {
      transform: translate(35%, -50%);
      opacity: 0;
    }
  }

  @keyframes cleanLaneMove {
    0%,
    8% {
      transform: translate(-36%, -50%);
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    45% {
      transform: translate(22%, -50%);
      opacity: 1;
    }
    56% {
      transform: translate(30%, -50%);
      opacity: 1;
    }
    62% {
      transform: translate(36%, -50%);
      opacity: 0;
    }
    100% {
      transform: translate(36%, -50%);
      opacity: 0;
    }
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  section {
    padding-top: 3.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-core,
  .flow-core::before,
  .correction-burst,
  .raw-stream,
  .clean-stream,
  .auto-layer-raw,
  .auto-layer-clean,
  .mic-bar,
  .voice-bars i,
  .output-caret,
  .auto-chip,
  .style-tone-grid p,
  .context-output,
  .noise-bars span,
  .noise-particles,
  .privacy-rings,
  .dictionary-light-list p {
    animation: none !important;
  }

  .flow-surface {
    min-height: auto;
    display: grid;
    gap: 0.5rem;
    padding: 4.3rem 0.6rem 0.55rem;
  }

  .flow-lane {
    position: static;
    transform: none;
    height: auto;
    display: grid;
    gap: 0.45rem;
  }

  .lane-mask {
    position: static;
    width: 100%;
    overflow: visible;
  }

  .flow-stream {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    opacity: 1;
  }

  .auto-chip {
    opacity: 1;
    transform: none;
  }

  .auto-layer-clean {
    opacity: 1;
    transform: none;
  }
}
