:root {
  color-scheme: light;
  --canvas: #f8fafe;
  --surface: #ffffff;
  --surface-subtle: #f2f5fb;
  --text: #11182d;
  --text-secondary: #63708a;
  --border: #e4e9f2;
  --primary: #5b5cf6;
  --primary-dark: #4647d8;
  --violet: #8a5cf6;
  --sky: #2c9cff;
  --aqua: #21c7d9;
  --success: #16865b;
  --danger: #c83f50;
  --coral: #ff826f;
  --shadow-small: 0 12px 32px rgb(17 24 45 / 8%);
  --shadow-preview: 0 32px 80px rgb(46 71 130 / 15%);
  --gradient: linear-gradient(135deg, var(--aqua), var(--sky) 34%, var(--primary) 68%, var(--violet));
  --shell: 1200px;
  --header-height: 72px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--canvas);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
}

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

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

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 5vw, 4.875rem);
  font-weight: 740;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-line-accent {
  color: var(--primary);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  font-weight: 720;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 690;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--text);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:is(a, button, input, select, summary):focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #245ac7;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: white;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 13px;
  box-shadow: 0 9px 24px rgb(91 92 246 / 22%);
  font-weight: 680;
  line-height: 1.25;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 12px 30px rgb(70 71 216 / 28%);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  color: #eef0ff;
  background: #8889da;
  border-color: #8889da;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.button-small {
  min-height: 44px;
  padding: 9px 17px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding-inline: 6px;
  color: var(--text);
  font-weight: 680;
  transition: color 160ms ease;
}

.text-link:hover {
  color: var(--primary-dark);
}

.text-link span {
  color: var(--primary);
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgb(248 250 254 / 90%);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: rgb(228 233 242 / 90%);
  box-shadow: 0 5px 20px rgb(17 24 45 / 4%);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-size: 1.28rem;
  font-weight: 740;
  letter-spacing: -0.035em;
}

.brand img {
  border-radius: 11px;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-navigation > a:not(.button) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.94rem;
  font-weight: 620;
  transition: color 160ms ease;
}

.primary-navigation > a:not(.button):hover,
.primary-navigation > a:not(.button):focus-visible {
  color: var(--text);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-button[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.no-script-navigation {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 6px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px 24px;
}

.no-script-navigation a {
  min-height: 44px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 620;
  line-height: 44px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 104px 120px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 610px;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: 72px;
}

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

.hero-intro {
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--text-secondary);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}

.development-note {
  display: flex;
  max-width: 590px;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 0;
  color: #4f5c76;
  font-size: 0.9rem;
  line-height: 1.55;
}

.development-note > span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 7px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(255 130 111 / 13%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-glow-one {
  top: 5%;
  right: -220px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, var(--aqua), transparent 68%);
}

.hero-glow-two {
  bottom: -240px;
  left: 32%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--violet), transparent 68%);
  opacity: 0.09;
}

.product-preview {
  position: relative;
  margin: 0;
  padding-top: 24px;
  text-align: center;
}

.preview-label {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 24px;
  padding: 6px 10px;
  color: #4f5c76;
  background: var(--surface-subtle);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-window {
  position: relative;
  min-height: 500px;
  background: rgb(255 255 255 / 96%);
  border: 1px solid rgb(218 225 238 / 92%);
  border-radius: 18px;
  box-shadow: var(--shadow-preview);
  transform: rotate(1deg);
}

.window-bar {
  display: grid;
  height: 54px;
  align-items: center;
  padding-inline: 18px;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 12px 12px 12px 1fr;
  gap: 7px;
}

.window-bar > span {
  width: 11px;
  height: 11px;
  background: #d9deea;
  border-radius: 50%;
}

.window-bar > span:first-child {
  background: #ff9181;
}

.window-bar > span:nth-child(2) {
  background: #f4c75c;
}

.window-bar > span:nth-child(3) {
  background: #63c98b;
}

.window-bar p {
  margin: 0 44px 0 0;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 630;
  text-align: center;
}

.document-preview {
  max-width: 480px;
  padding: 60px 52px 110px;
  color: #2c3550;
  font-size: 0.94rem;
  line-height: 1.75;
}

.document-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.avatar-placeholder {
  width: 34px;
  height: 34px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.8;
}

.meta-line {
  width: 132px;
  height: 9px;
  background: #e1e6ef;
  border-radius: 6px;
}

.document-greeting {
  font-weight: 690;
}

.dictation-target {
  padding: 12px 14px;
  margin-inline: -14px;
  background: #f3f6ff;
  border-radius: 10px;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.15em;
  margin-left: 3px;
  vertical-align: -0.16em;
  background: var(--primary);
}

.document-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.document-lines span {
  height: 8px;
  background: #edf0f6;
  border-radius: 5px;
}

.document-lines span:nth-child(2) {
  width: 87%;
}

.document-lines span:nth-child(3) {
  width: 64%;
}

.listening-panel {
  position: absolute;
  right: 28px;
  bottom: 34px;
  left: 28px;
  display: grid;
  min-height: 84px;
  align-items: center;
  padding: 15px 18px;
  background: var(--surface);
  border: 1px solid #dfe5f1;
  border-radius: 17px;
  box-shadow: 0 20px 50px rgb(37 50 90 / 17%);
  grid-template-columns: 42px minmax(92px, auto) 1fr auto;
  gap: 14px;
  transform: rotate(-1deg);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.listening-panel.is-active {
  border-color: rgb(91 92 246 / 42%);
  box-shadow: 0 22px 56px rgb(60 68 160 / 22%);
}

.listening-panel img {
  border-radius: 12px;
}

.listening-copy {
  display: grid;
  line-height: 1.25;
}

.listening-copy strong {
  font-size: 0.95rem;
}

.listening-copy span {
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 0.72rem;
}

.timer {
  color: var(--text-secondary);
  font-size: 0.77rem;
  font-variant-numeric: tabular-nums;
}

.waveform {
  display: flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.waveform span {
  width: 3px;
  height: 20%;
  background: #c5cedf;
  border-radius: 999px;
  transform: scaleY(0.55);
  transform-origin: center;
  transition: background-color 180ms ease;
}

.listening-panel.is-active .waveform span {
  background: var(--primary);
  animation: waveform 1.1s ease-in-out infinite alternate;
}

.listening-panel.is-active .waveform span:nth-child(2),
.listening-panel.is-active .waveform span:nth-child(6) {
  animation-delay: -0.7s;
}

.listening-panel.is-active .waveform span:nth-child(3),
.listening-panel.is-active .waveform span:nth-child(5) {
  animation-delay: -0.35s;
}

.listening-panel.is-active .waveform span:nth-child(4) {
  animation-delay: -0.9s;
}

@keyframes waveform {
  0% {
    transform: scaleY(0.35);
    background: var(--aqua);
  }
  100% {
    transform: scaleY(1);
    background: var(--violet);
  }
}

.demo-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  margin-top: 24px;
  color: var(--primary-dark);
  background: var(--surface);
  border: 1px solid rgb(91 92 246 / 28%);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
  cursor: pointer;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 720;
}

.demo-toggle:hover {
  background: #f0f1ff;
  border-color: rgb(91 92 246 / 52%);
}

.demo-toggle[aria-pressed="true"] .demo-toggle-icon {
  font-size: 0;
}

.demo-toggle[aria-pressed="true"] .demo-toggle-icon::before {
  display: block;
  width: 10px;
  height: 10px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.workflow-section {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-heading {
  max-width: 690px;
}

.section-heading > p:not(.eyebrow, .goal-note) {
  color: var(--text-secondary);
  font-size: 1.08rem;
}

.section-heading-centred {
  margin: 0 auto 64px;
  text-align: center;
}

.workflow-grid {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-grid li {
  position: relative;
  min-height: 240px;
  padding: 30px 28px;
  border: 1px solid var(--border);
}

.workflow-grid li:first-child {
  border-radius: 16px 0 0 16px;
}

.workflow-grid li:last-child {
  border-radius: 0 16px 16px 0;
}

.workflow-grid li + li {
  border-left: 0;
}

.workflow-grid li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 44px;
  right: -13px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--primary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  content: "→";
  font-size: 0.78rem;
}

.step-number {
  display: block;
  margin-bottom: 44px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.workflow-grid h3 {
  font-size: 1.14rem;
}

.workflow-grid p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.split-heading {
  display: grid;
  align-items: end;
  margin-bottom: 56px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 72px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.section-lead {
  max-width: 500px;
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 1.08rem;
}

.use-case-list {
  display: grid;
  overflow: hidden;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 17px;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-case-list > div {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  font-weight: 660;
}

.use-case-list span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--primary);
  background: #f0f1ff;
  border-radius: 10px;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.use-case-list > div:hover span {
  color: white;
  background: var(--primary);
  transform: translate(1px, -1px);
}

.trust-section {
  background: #f1f4fb;
  border-block: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 96px;
}

.trust-intro {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  align-self: start;
}

.goal-note {
  display: inline-flex;
  padding: 8px 11px;
  margin-top: 16px;
  margin-bottom: 0;
  color: #525d75;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 620;
}

.principles {
  display: grid;
  gap: 16px;
}

.principles article {
  display: grid;
  min-height: 156px;
  align-items: start;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  grid-template-columns: 48px 1fr;
  gap: 22px;
}

.principle-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--primary-dark);
  background: #eeefff;
  border-radius: 13px;
  font-size: 0.76rem;
  font-weight: 760;
}

.principles p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mode-grid article {
  min-height: 264px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 17px;
}

.mode-grid article.featured-mode {
  background: linear-gradient(150deg, #fff, #f4f3ff 74%);
  border-color: #cacaff;
  box-shadow: var(--shadow-small);
}

.mode-marker {
  display: block;
  width: 44px;
  height: 5px;
  margin-bottom: 54px;
  border-radius: 999px;
}

.mode-marker.literal {
  background: var(--aqua);
}

.mode-marker.standard {
  margin-bottom: 0;
  background: var(--primary);
}

.mode-marker.professional {
  background: var(--violet);
}

.mode-header {
  display: flex;
  min-height: 59px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mode-badge {
  padding: 5px 8px;
  color: var(--primary-dark);
  background: #e8e9ff;
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 730;
}

.mode-grid p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.privacy-section {
  color: #f5f7ff;
  background: #171d35;
}

.privacy-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 72px 96px;
}

.privacy-intro .eyebrow {
  color: #82dce5;
}

.privacy-intro h2 {
  color: white;
}

.privacy-intro > p:not(.eyebrow) {
  color: #b9c1d6;
}

.privacy-defaults {
  display: grid;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.privacy-defaults li {
  display: grid;
  min-height: 88px;
  align-items: center;
  padding: 20px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 14px;
  font-size: 0.9rem;
  grid-template-columns: 28px 1fr;
  gap: 11px;
}

.privacy-defaults span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #a7f0f6;
  background: rgb(33 199 217 / 14%);
  border-radius: 8px;
  font-weight: 800;
}

.cloud-clarification {
  grid-column: 1 / -1;
  padding: 26px 30px;
  color: #d2d7e7;
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 13%);
  border-left: 4px solid var(--aqua);
  border-radius: 14px;
}

.cloud-clarification strong {
  display: block;
  margin-bottom: 8px;
  color: white;
}

.cloud-clarification p {
  margin-bottom: 0;
}

.early-access {
  background: var(--surface);
}

.early-access-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  gap: 96px;
}

.early-access-copy {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.waitlist-form {
  padding: 36px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-small);
}

.field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.field-group label {
  color: #252d43;
  font-size: 0.9rem;
  font-weight: 680;
}

.field-group label > span {
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 540;
}

.field-group label > span[aria-hidden="true"] {
  color: var(--danger);
}

input,
select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid #cfd6e5;
  border-radius: 11px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

input:hover,
select:hover {
  border-color: #aeb8cc;
}

input:disabled,
select:disabled {
  color: var(--text-secondary);
  background: var(--surface-subtle);
  border-color: #d8deea;
  cursor: not-allowed;
  opacity: 1;
}

input:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgb(91 92 246 / 14%);
}

input[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgb(200 63 80 / 10%);
}

.field-hint,
.field-error {
  min-height: 18px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  line-height: 1.4;
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-weight: 620;
}

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

.form-submit {
  position: relative;
  width: 100%;
  margin-top: 3px;
}

.button-spinner {
  display: none;
  width: 17px;
  height: 17px;
  margin-left: 10px;
  border: 2px solid rgb(255 255 255 / 45%);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.form-submit.is-loading .button-spinner {
  display: block;
}

.form-submit:disabled {
  cursor: not-allowed;
}

.form-submit.is-loading:disabled {
  cursor: wait;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.consent-copy {
  margin: 13px 0 0;
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-align: center;
}

.consent-copy span {
  display: block;
  margin-top: 6px;
  color: #7b4050;
  font-weight: 620;
}

.consent-copy a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--primary-dark);
  font-weight: 680;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 0;
  padding: 0;
  margin-top: 0;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-status.is-error,
.form-status.is-success,
.form-status.is-notice {
  min-height: 48px;
  padding: 12px 14px;
  margin-top: 18px;
}

.form-status.is-error {
  color: #8b2c3a;
  background: #fff0f2;
  border: 1px solid #f4c8ce;
}

.form-status.is-success {
  color: #126440;
  background: #edf9f3;
  border: 1px solid #c5ead7;
}

.form-status.is-notice {
  color: #4f5870;
  background: #f0f3f9;
  border: 1px solid #d8deea;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(500px, 1.3fr);
  gap: 96px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  align-self: start;
}

.faq-list {
  border-top: 1px solid #d6ddea;
}

.faq-list details {
  border-bottom: 1px solid #d6ddea;
}

.faq-list summary {
  position: relative;
  min-height: 72px;
  padding: 23px 52px 21px 0;
  font-size: 1.05rem;
  font-weight: 680;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 34px;
  right: 4px;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 690px;
  padding: 0 52px 24px 0;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 112px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.final-cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 120%, rgb(33 199 217 / 14%), transparent 38%),
    radial-gradient(circle at 70% -20%, rgb(138 92 246 / 14%), transparent 38%);
}

.final-cta-inner {
  position: relative;
  display: flex;
  max-width: 880px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.final-cta-inner img {
  margin-bottom: 26px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgb(60 80 145 / 18%);
}

.final-cta-inner h2 {
  margin-bottom: 32px;
}

.site-footer {
  padding-block: 56px 38px;
  color: #aeb6cb;
  background: #11162a;
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr auto auto;
  gap: 56px;
}

.footer-brand {
  color: white;
}

.footer-grid > div:first-child > p {
  margin: 12px 0 0;
  font-size: 0.88rem;
}

.footer-navigation {
  display: grid;
  min-width: 180px;
  gap: 12px;
}

.footer-navigation a,
.footer-navigation span,
.footer-meta a,
.footer-meta p {
  min-height: 28px;
  margin: 0;
  color: #b8c0d4;
  font-size: 0.82rem;
}

.footer-navigation a,
.footer-meta a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  transition: color 160ms ease;
}

.footer-navigation a:hover,
.footer-meta a:hover {
  color: white;
}

.footer-navigation small {
  color: #78839d;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
  text-align: right;
}

@media (max-width: 1100px) {
  h1 {
    font-size: clamp(3rem, 4.4vw, 3.6rem);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(450px, 1.14fr);
    gap: 44px;
  }

  .hero {
    padding-top: 80px;
  }

  .document-preview {
    padding-inline: 38px;
  }

  .trust-grid,
  .early-access-grid,
  .faq-grid {
    gap: 64px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding-block: 88px;
  }

  .js .menu-button {
    display: flex;
  }

  .primary-navigation {
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-preview);
    flex-direction: column;
    gap: 2px;
    max-height: calc(100dvh - var(--header-height) - 24px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation > a:not(.button) {
    padding: 8px 12px;
  }

  .primary-navigation .button {
    margin-top: 8px;
  }

  .hero {
    padding-block: 72px 96px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 64px;
  }

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

  .product-preview {
    width: min(100%, 680px);
    margin-inline: auto;
  }

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

  .workflow-grid li:nth-child(2) {
    border-radius: 0 16px 0 0;
  }

  .workflow-grid li:nth-child(3) {
    border-top: 0;
    border-left: 1px solid var(--border);
    border-radius: 0 0 0 16px;
  }

  .workflow-grid li:last-child {
    border-top: 0;
    border-radius: 0 0 16px 0;
  }

  .workflow-grid li:nth-child(2)::after {
    display: none;
  }

  .split-heading,
  .trust-grid,
  .early-access-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .trust-intro,
  .early-access-copy,
  .faq-intro {
    position: static;
  }

  .use-case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .mode-grid article {
    min-height: auto;
  }

  .mode-marker {
    margin-bottom: 38px;
  }

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

  .cloud-clarification {
    grid-column: auto;
  }

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

  .footer-meta {
    align-items: end;
    justify-items: start;
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding-block: 72px;
  }

  h1 {
    font-size: clamp(2.75rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    padding-block: 56px 76px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .preview-window {
    min-height: 450px;
  }

  .document-preview {
    padding: 44px 28px 130px;
    font-size: 0.84rem;
  }

  .listening-panel {
    right: 16px;
    bottom: 20px;
    left: 16px;
    min-height: 94px;
    padding: 13px;
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
  }

  .listening-panel img {
    width: 38px;
    height: 38px;
  }

  .waveform {
    grid-column: 2 / -1;
    grid-row: 2;
    height: 20px;
    justify-content: flex-start;
  }

  .timer {
    grid-column: 3;
    grid-row: 1;
  }

  .workflow-grid,
  .use-case-list,
  .privacy-defaults {
    grid-template-columns: 1fr;
  }

  .workflow-grid li,
  .workflow-grid li:first-child,
  .workflow-grid li:nth-child(2),
  .workflow-grid li:nth-child(3),
  .workflow-grid li:last-child {
    min-height: auto;
    border: 1px solid var(--border);
    border-radius: 0;
  }

  .workflow-grid li:first-child {
    border-radius: 16px 16px 0 0;
  }

  .workflow-grid li:last-child {
    border-radius: 0 0 16px 16px;
  }

  .workflow-grid li + li {
    border-top: 0;
  }

  .workflow-grid li::after {
    display: none;
  }

  .step-number {
    margin-bottom: 26px;
  }

  .use-case-list > div {
    min-height: 84px;
  }

  .principles article {
    grid-template-columns: 1fr;
  }

  .privacy-defaults li {
    min-height: 74px;
  }

  .waitlist-form {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .final-cta {
    padding-block: 80px;
  }

  .final-cta-inner img {
    width: 88px;
    height: 88px;
  }

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

  .footer-meta {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  h1 {
    font-size: 2.5rem;
  }

  .preview-window {
    min-height: 430px;
  }

  .document-preview {
    padding-inline: 22px;
  }

  .listening-copy span {
    font-size: 0.68rem;
  }
}

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

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