:root {
  color-scheme: dark;
  --ink: #070808;
  --paper: #fff6e7;
  --muted: #b9c0b9;
  --line: rgba(255, 246, 231, 0.16);
  --panel: rgba(18, 23, 21, 0.78);
  --teal: #43c6b3;
  --teal-dark: #143d39;
  --red: #ff4f36;
  --amber: #ffbc62;
  --green: #8de08f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--paper);
  background:
    radial-gradient(circle at 18% -8%, rgba(67, 198, 179, 0.2), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(255, 79, 54, 0.16), transparent 28rem),
    linear-gradient(180deg, #080908 0%, #0d1110 42%, #090b0a 100%);
  overflow-x: hidden;
}

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

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

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

button {
  font: inherit;
  color: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: overlay;
}

.announcement {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 8, 0.8);
  height: 38px;
}

.ticker {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 246, 231, 0.72);
  padding: 10px 0;
  animation: marquee 26s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.ticker span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--red);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 10, 9, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

.brand,
.nav-download,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--ink) 0 27%, transparent 28%),
    conic-gradient(from 180deg, var(--teal) 0 47%, transparent 47% 52%, var(--red) 52% 100%);
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.16);
}

.nav-links {
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 246, 231, 0.68);
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 12px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.nav-download {
  justify-self: end;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: #09100e;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.download-icon,
.play-icon,
.waitlist-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  flex: 0 0 auto;
}

.download-icon {
  background: currentColor;
  clip-path: path("M7 1h2v7l3-3 1.4 1.4L8 11.8 2.6 6.4 4 5l3 3V1ZM2 13h12v2H2v-2Z");
}

.waitlist-icon {
  position: relative;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.waitlist-icon::before,
.waitlist-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 9px;
  height: 2px;
  background: currentColor;
}

.waitlist-icon::before {
  left: -1px;
  transform: rotate(33deg);
  transform-origin: left center;
}

.waitlist-icon::after {
  right: -1px;
  transform: rotate(-33deg);
  transform-origin: right center;
}

.play-icon {
  border-left: 13px solid currentColor;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  min-height: calc(100svh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 34px;
  align-items: center;
  padding: 72px 0 58px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.97;
}

.hero-title {
  max-width: 720px;
  font-size: clamp(50px, 5.4vw, 82px);
  line-height: 1.02;
}

.hero-title .word,
.hero-title .char {
  display: inline-block;
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 246, 231, 0.76);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  overflow: hidden;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateY(100%);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.button:hover::before {
  transform: translateY(0);
}

.button.primary {
  background: var(--paper);
  color: #0b100f;
  box-shadow: 0 18px 42px rgba(255, 246, 231, 0.16);
}

.button.primary::before {
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.button.secondary::before {
  background: rgba(255, 255, 255, 0.1);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255, 246, 231, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.hero-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 8, 8, 0.5), transparent 42%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.floating-pill,
.recording-pill-large {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 8, 8, 0.88);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.54);
}

.floating-pill {
  position: absolute;
  left: 50%;
  top: 22%;
  z-index: 2;
  width: min(480px, calc(100% - 48px));
  height: 72px;
  transform: translateX(-50%);
  padding: 0 18px;
}

.pill-button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
}

.close-button {
  background: #6c6f6b;
}

.stop-button {
  background: var(--red);
}

.waveform,
.live-wave {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
}

.waveform span,
.live-wave i {
  width: 3px;
  height: var(--h, 18px);
  border-radius: 999px;
  background: var(--paper);
  animation: pulse 920ms ease-in-out infinite;
  animation-delay: calc(var(--i, 1) * -70ms);
}

.waveform span:nth-child(1),
.live-wave i:nth-child(1) { --h: 10px; --i: 1; }
.waveform span:nth-child(2),
.live-wave i:nth-child(2) { --h: 24px; --i: 2; }
.waveform span:nth-child(3),
.live-wave i:nth-child(3) { --h: 36px; --i: 3; }
.waveform span:nth-child(4),
.live-wave i:nth-child(4) { --h: 18px; --i: 4; }
.waveform span:nth-child(5),
.live-wave i:nth-child(5) { --h: 42px; --i: 5; }
.waveform span:nth-child(6),
.live-wave i:nth-child(6) { --h: 26px; --i: 6; }
.waveform span:nth-child(7),
.live-wave i:nth-child(7) { --h: 14px; --i: 7; }
.waveform span:nth-child(8),
.live-wave i:nth-child(8) { --h: 32px; --i: 8; }
.waveform span:nth-child(9),
.live-wave i:nth-child(9) { --h: 40px; --i: 9; }
.waveform span:nth-child(10),
.live-wave i:nth-child(10) { --h: 22px; --i: 10; }
.waveform span:nth-child(11) { --h: 12px; --i: 11; background: var(--red); }
.waveform span:nth-child(12) { --h: 30px; --i: 12; background: var(--red); }

@keyframes pulse {
  50% {
    height: calc(var(--h, 18px) * 0.45);
    opacity: 0.58;
  }
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.proof-item {
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.proof-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.proof-item span,
.feature-panel p,
.final-copy p {
  color: rgba(255, 246, 231, 0.68);
  line-height: 1.6;
}

.answer-section {
  padding: 92px 0 42px;
}

.answer-copy {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding: 30px 0 34px;
  border-block: 1px solid var(--line);
}

.answer-copy .eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.answer-copy h2 {
  grid-column: 1;
  grid-row: 2;
  margin-top: 18px;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.02;
}

.answer-copy p:not(.eyebrow),
.faq-grid p {
  color: rgba(255, 246, 231, 0.68);
  line-height: 1.62;
}

.answer-copy p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 760px;
  margin: 0;
  padding-top: 2px;
  font-size: clamp(17px, 1.25vw, 20px);
}

.faq-grid h3 {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.workflow {
  padding: 120px 0 96px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 44px;
}

.section-heading h2,
.feature-panel h2,
.final-copy h2 {
  font-size: clamp(42px, 5.7vw, 86px);
}

.workflow-stage {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 0.65fr) 1fr;
  gap: 18px;
  align-items: center;
}

.voice-column,
.text-column {
  display: grid;
  gap: 18px;
}

.recording-pill-large {
  width: 100%;
  min-height: 88px;
  padding: 0 26px;
}

.record-dot,
.stop-square {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.record-dot {
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 9px rgba(255, 79, 54, 0.14);
}

.stop-square {
  border-radius: 9px;
  background: var(--paper);
}

.spoken-card,
.finished-card,
.mock-panel,
.mini-window,
.insight-ui,
.privacy-stack {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.spoken-card,
.finished-card {
  min-height: 260px;
  padding: 28px;
  border-radius: 20px;
}

.spoken-card span,
.finished-card span,
.mini-title {
  display: block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.spoken-card p,
.finished-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.spoken-card p {
  color: rgba(255, 246, 231, 0.44);
}

.finished-card p {
  color: var(--paper);
}

.window-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0;
}

.window-dots span:nth-child(1) { background: var(--red); }
.window-dots span:nth-child(2) { background: var(--amber); }
.window-dots span:nth-child(3) { background: var(--teal); }

.arrow-rail svg {
  width: 100%;
  min-height: 180px;
  overflow: visible;
}

.arrow-rail path {
  stroke: var(--teal);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 12 16;
  filter: drop-shadow(0 0 14px rgba(67, 198, 179, 0.65));
}

.feature-band {
  padding: 96px 0;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(67, 198, 179, 0.1), transparent 36%),
    linear-gradient(315deg, rgba(255, 79, 54, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.03);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-panel {
  display: grid;
  align-content: space-between;
  min-height: 640px;
  gap: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(7, 8, 8, 0.52);
}

.feature-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4vw, 58px);
}

.mini-window,
.insight-ui,
.privacy-stack {
  border-radius: 18px;
  padding: 18px;
}

.rule-row {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.rule-row + .rule-row {
  margin-top: 10px;
}

.rule-row b {
  font-size: 14px;
}

.rule-row span {
  color: rgba(255, 246, 231, 0.62);
  font-size: 13px;
}

.insight-ui {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric {
  min-height: 128px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.metric span {
  display: block;
  color: rgba(255, 246, 231, 0.54);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 18px;
  font-size: 34px;
}

.heatmap {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
}

.heatmap i {
  aspect-ratio: 1;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.heatmap i:nth-child(3n) { background: rgba(67, 198, 179, 0.5); }
.heatmap i:nth-child(5n) { background: rgba(255, 79, 54, 0.62); }
.heatmap i:nth-child(7n) { background: rgba(67, 198, 179, 0.9); }

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

.privacy-stack div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.privacy-stack span {
  width: 20px;
  height: 20px;
  border: 2px solid var(--teal);
  border-radius: 5px;
  background: linear-gradient(135deg, transparent 46%, var(--teal) 48% 58%, transparent 60%);
}

.app-section {
  padding: 116px 0;
}

.faq-section {
  padding: 112px 0;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.faq-grid h3 {
  margin-top: 0;
  color: var(--paper);
}

.faq-grid p {
  margin: 0;
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 18px;
  align-items: start;
}

.mock-panel {
  border-radius: 18px;
  overflow: hidden;
}

.panel-header,
.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.panel-header span,
.panel-footer,
.transcript-list article span,
.setting-line span {
  color: rgba(255, 246, 231, 0.54);
  font-size: 12px;
  font-weight: 700;
}

.transcript-list {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.transcript-list article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.transcript-list p {
  margin: 8px 0 0;
  line-height: 1.55;
}

.panel-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.settings-panel {
  margin-top: 52px;
}

.setting-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.setting-line b {
  font-size: 13px;
}

.final-cta {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 8, 8, 0.9), rgba(7, 8, 8, 0.5), rgba(7, 8, 8, 0.78));
}

.final-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  max-width: 720px;
}

.final-copy p {
  max-width: 590px;
  margin: 22px 0 28px;
  font-size: 18px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  color: rgba(255, 246, 231, 0.52);
  font-size: 13px;
  font-weight: 700;
}

.site-footer a {
  color: var(--teal);
}

.waitlist-modal {
  width: min(548px, calc(100% - 28px));
  padding: 0;
  border: 1px solid rgba(255, 246, 231, 0.2);
  border-radius: 22px;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 0%, rgba(67, 198, 179, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(20, 24, 23, 0.98), rgba(8, 10, 9, 0.98));
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.68);
}

.waitlist-modal::backdrop {
  background: rgba(3, 4, 4, 0.72);
  backdrop-filter: blur(12px);
}

.waitlist-panel {
  position: relative;
  padding: 34px;
}

.waitlist-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.waitlist-close::before,
.waitlist-close::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 15px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--paper);
}

.waitlist-close::before {
  transform: rotate(45deg);
}

.waitlist-close::after {
  transform: rotate(-45deg);
}

.waitlist-panel h2 {
  max-width: 430px;
  font-size: clamp(40px, 8vw, 66px);
}

.waitlist-copy {
  max-width: 430px;
  margin: 18px 0 24px;
  color: rgba(255, 246, 231, 0.68);
  line-height: 1.6;
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
}

.waitlist-form label span {
  color: rgba(255, 246, 231, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.waitlist-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 246, 231, 0.18);
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
  font: inherit;
}

.waitlist-form input:focus {
  border-color: rgba(67, 198, 179, 0.76);
  box-shadow: 0 0 0 4px rgba(67, 198, 179, 0.14);
}

.waitlist-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-submit {
  width: 100%;
  margin-top: 4px;
}

.waitlist-submit[disabled] {
  cursor: wait;
  opacity: 0.74;
}

.waitlist-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 246, 231, 0.64);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.waitlist-status.is-success {
  color: var(--green);
}

.waitlist-status.is-error {
  color: var(--amber);
}

.guide-hero {
  min-height: calc(88svh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 34px;
  align-items: center;
  padding: 72px 0 74px;
}

.guide-title {
  max-width: 920px;
}

.guide-panel {
  align-self: center;
  border-radius: 20px;
  overflow: hidden;
}

.guide-menu-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.guide-menu-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.guide-menu-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(67, 198, 179, 0.55);
  background: rgba(67, 198, 179, 0.08);
}

.guide-menu-list span,
.step-number {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.guide-intro,
.guide-section,
.guide-examples {
  padding: 96px 0;
}

.guide-note-grid,
.how-to-grid,
.example-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.guide-note,
.how-to-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.guide-note h3,
.how-to-card h3 {
  max-width: 560px;
  margin: 16px 0 12px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
}

.guide-note p,
.how-to-card p,
.guide-copy p,
.numbered-steps span,
.correction-result p {
  color: rgba(255, 246, 231, 0.68);
  line-height: 1.6;
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.guide-copy {
  position: sticky;
  top: 116px;
}

.guide-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5.6vw, 84px);
}

.guide-copy p {
  max-width: 520px;
  font-size: 17px;
}

.how-to-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 2;
}

.how-to-card {
  min-height: 310px;
}

.how-to-card strong {
  color: var(--paper);
}

.setting-demo {
  grid-column: 2;
  border-radius: 18px;
  overflow: hidden;
}

.shortcut-demo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 24px;
}

.keycap,
.plus,
.shortcut-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.keycap {
  min-width: 62px;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 246, 231, 0.28);
  border-radius: 12px;
  background: rgba(255, 246, 231, 0.09);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.18);
  font-size: 22px;
  font-weight: 900;
}

.keycap.wide {
  min-width: 128px;
}

.plus {
  color: rgba(255, 246, 231, 0.48);
  font-weight: 900;
}

.shortcut-status {
  min-height: 40px;
  margin-left: auto;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(67, 198, 179, 0.14);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dictionary-guide {
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 79, 54, 0.12), transparent 22rem),
    radial-gradient(circle at 42% 88%, rgba(67, 198, 179, 0.1), transparent 30rem);
}

.dictionary-walkthrough {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  grid-column: 2;
  gap: 18px;
}

.dictionary-steps,
.correction-builder {
  border-radius: 18px;
  overflow: hidden;
}

.numbered-steps {
  list-style: none;
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
}

.numbered-steps li {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(12, 15, 14, 0.94);
}

.numbered-steps strong {
  font-size: 15px;
}

.correction-builder {
  align-self: start;
}

.correction-builder label {
  display: grid;
  gap: 8px;
  margin: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.correction-builder label span,
.correction-result span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.correction-builder label b {
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.correction-result {
  margin: 18px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(67, 198, 179, 0.16), rgba(255, 79, 54, 0.1));
}

.correction-result p {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.06;
  color: var(--paper);
}

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

.guide-examples .rule-row {
  min-height: 150px;
  border: 1px solid var(--line);
}

.guide-final {
  margin-top: 36px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .workflow-stage,
  .feature-grid,
  .app-showcase,
  .guide-hero,
  .guide-section,
  .dictionary-walkthrough {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .arrow-rail {
    display: none;
  }

  .feature-panel {
    min-height: auto;
  }

  .settings-panel {
    margin-top: 0;
  }

  .guide-copy {
    position: static;
  }

  .how-to-grid,
  .setting-demo,
  .dictionary-walkthrough {
    grid-column: auto;
  }

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

}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px;
  }

  .brand span:last-child,
  .nav-download span:last-child {
    display: none;
  }

  .nav-download {
    width: 40px;
    min-height: 40px;
    padding: 0;
    justify-content: center;
  }

  .section-shell,
  .final-copy,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  .hero-title {
    font-size: clamp(42px, 12.4vw, 52px);
  }

  .guide-title {
    font-size: clamp(46px, 15vw, 74px);
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 340px;
  }

  .floating-pill {
    top: 16%;
    height: 58px;
    gap: 10px;
  }

  .pill-button {
    width: 26px;
    height: 26px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .answer-section,
  .faq-section {
    padding: 76px 0 0;
  }

  .answer-copy {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0 28px;
  }

  .answer-copy .eyebrow,
  .answer-copy h2,
  .answer-copy p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .answer-copy h2 {
    margin-top: 0;
    font-size: clamp(34px, 9.5vw, 48px);
  }

  .answer-copy p:not(.eyebrow) {
    padding-top: 0;
    font-size: 16px;
  }

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

  .workflow {
    padding: 82px 0 70px;
  }

  .spoken-card,
  .finished-card,
  .feature-panel {
    padding: 20px;
  }

  .spoken-card p,
  .finished-card p {
    font-size: 26px;
  }

  .insight-ui {
    grid-template-columns: 1fr;
  }

  .heatmap {
    grid-column: auto;
    grid-template-columns: repeat(9, 1fr);
  }

  .final-cta {
    min-height: 500px;
  }

  .guide-hero {
    padding-top: 54px;
  }

  .guide-intro,
  .guide-section,
  .guide-examples {
    padding: 72px 0;
  }

  .guide-note-grid,
  .how-to-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .guide-note,
  .how-to-card {
    min-height: auto;
    padding: 20px;
  }

  .shortcut-status {
    width: 100%;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
