:root {
  --paper: #f3f2ee;
  --paper-clean: #fbfaf7;
  --white: #ffffff;
  --ink: #111214;
  --ink-soft: #595a5d;
  --ink-faint: #68696d;
  --graphite: #0b0c0f;
  --graphite-raised: #15161a;
  --dark-ink: #f5f5f3;
  --dark-soft: #a6a6aa;
  --line: rgb(17 18 20 / 0.14);
  --line-dark: rgb(255 255 255 / 0.16);
  --focus: #4365f6;
  --max: 1180px;
  --gutter: clamp(22px, 4.5vw, 54px);
  --section: clamp(88px, 11vw, 168px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

#product,
#how,
#features,
#privacy,
#pricing,
#faq {
  scroll-margin-top: 88px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
  font: inherit;
}

::selection {
  background: var(--ink);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 650;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

/* Navigation stays dark so the approved white wordmark remains exact. */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(11 12 15 / 0.94);
  color: var(--dark-ink);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-inner {
  width: min(100%, calc(var(--max) + (var(--gutter) * 2)));
  height: 66px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}

.wordmark,
.footer-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.wordmark img {
  width: auto;
  height: 31px;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #babac0;
  font-size: 13px;
  font-weight: 540;
  letter-spacing: -0.006em;
  transition: color 160ms ease, background-color 160ms ease;
}

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

.nav-links .nav-action {
  min-height: 38px;
  padding: 9px 16px;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 650;
}

.nav-links .nav-action:hover {
  background: #e7e7e4;
  color: var(--ink);
}

.home-hero {
  padding: clamp(82px, 9vw, 132px) var(--gutter) 0;
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  width: min(100%, 980px);
  margin-inline: auto;
  text-align: center;
}

.product-line {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 580;
  letter-spacing: -0.018em;
}

h1,
h2,
h3 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, sans-serif;
  text-wrap: balance;
}

h1 {
  font-size: clamp(58px, 9.4vw, 126px);
  font-weight: 660;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero-lede {
  width: min(100%, 720px);
  margin: 30px auto 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 26px;
}

.hero-availability {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--ink-faint);
  font-size: 13.5px;
  line-height: 1.5;
}

.hero-availability a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.button {
  min-height: 52px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.015em;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button.primary:hover {
  border-color: #333438;
  background: #333438;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid currentColor;
  padding-block: 6px 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 610;
  line-height: 1.2;
}

.text-action span,
.privacy-copy a span {
  transition: transform 180ms var(--ease);
}

.text-action:hover span,
.privacy-copy a:hover span {
  transform: translateX(3px);
}

.hero-object {
  position: relative;
  width: min(100%, 1380px);
  height: clamp(560px, 52vw, 750px);
  margin: clamp(58px, 8vw, 104px) auto 0;
  overflow: hidden;
  border-block: 1px solid rgb(17 18 20 / 0.16);
  background: #aaa9a6;
  isolation: isolate;
}

.product-stage__icon {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-stage__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 53%;
}

.product-stage__window {
  position: absolute;
  top: 6%;
  left: 6%;
  z-index: 2;
  width: min(44%, 610px);
  overflow: hidden;
  border: 1px solid rgb(17 18 20 / 0.32);
  border-radius: 22px;
  background: #f1f2f3;
  box-shadow: 0 32px 64px rgb(17 18 20 / 0.22), 0 3px 8px rgb(17 18 20 / 0.16);
  transform: rotate(-1.1deg);
}

.product-stage__window img {
  width: 100%;
  height: auto;
}

.product-stage__recorder {
  position: absolute;
  right: 12%;
  bottom: 7%;
  z-index: 3;
  width: min(44%, 600px);
  height: auto;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgb(17 18 20 / 0.28), 0 2px 5px rgb(17 18 20 / 0.2);
  transform: rotate(0.35deg);
}

.chapter {
  padding: var(--section) var(--gutter);
}

.chapter-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.chapter-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(34px, 8vw, 120px);
  align-items: end;
}

.chapter-heading h2,
.privacy-copy h2,
.pricing-chapter h2,
.faq-chapter h2 {
  font-size: clamp(44px, 6.2vw, 84px);
  font-weight: 630;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.chapter-heading p,
.pricing-chapter p {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.023em;
  text-wrap: pretty;
}

.transformation {
  border-bottom: 1px solid var(--line);
  background: var(--paper-clean);
}

.speech-proof {
  margin-top: clamp(68px, 9vw, 124px);
}

.speech-line {
  display: grid;
  grid-template-columns: minmax(110px, 0.28fr) minmax(0, 1.72fr);
  gap: 30px;
  padding-block: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.speech-line:last-child {
  border-bottom: 1px solid var(--line);
}

.speech-line dt {
  padding-top: 0.3em;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}

.speech-line dd {
  font-size: clamp(27px, 4vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.speech-line.spoken dd {
  color: #77777a;
  font-weight: 430;
}

.speech-line.spoken s {
  color: #68696d;
  text-decoration-color: #5c5c5f;
  text-decoration-thickness: 0.06em;
}

.speech-line.written dd {
  color: var(--ink);
  font-weight: 640;
}

.capabilities {
  background: var(--paper);
}

.chapter-heading.compact {
  display: block;
}

.chapter-heading.compact h2 {
  max-width: 15ch;
}

.capability-list {
  margin-top: clamp(68px, 8vw, 112px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(48px, 8vw, 120px);
}

.capability-list article {
  min-height: 188px;
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
}

.capability-list article:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.capability-list h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 620;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.capability-list p {
  max-width: 46ch;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  text-wrap: pretty;
}

.privacy-chapter {
  padding: var(--section) var(--gutter);
  background: var(--graphite);
  color: var(--dark-ink);
}

.privacy-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(40px, 9vw, 140px);
  align-items: end;
}

.privacy-copy h2 {
  max-width: 11ch;
}

.privacy-copy p {
  color: var(--dark-soft);
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.022em;
  text-wrap: pretty;
}

.privacy-copy a {
  width: fit-content;
  margin-top: 26px;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgb(255 255 255 / 0.55);
  color: var(--dark-ink);
  font-weight: 610;
}

.local-flow {
  margin-top: clamp(74px, 9vw, 124px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.local-flow li {
  position: relative;
  min-height: 178px;
  padding: 34px clamp(20px, 3vw, 42px) 32px 0;
}

.local-flow li + li {
  padding-left: clamp(20px, 3vw, 42px);
  border-left: 1px solid var(--line-dark);
}

.local-flow strong,
.local-flow span {
  display: block;
}

.local-flow strong {
  font-size: clamp(22px, 2.5vw, 31px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.local-flow span {
  max-width: 22ch;
  margin-top: 13px;
  color: var(--dark-soft);
  font-size: 15px;
}

.no-server {
  margin-top: 30px;
  color: var(--dark-soft);
  font-size: 15px;
}

.pricing-chapter {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.pricing-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
}

.pricing-chapter h2 {
  font-size: clamp(66px, 9vw, 118px);
}

.pricing-chapter p {
  max-width: 620px;
  margin-top: 26px;
}

.pricing-chapter .price-detail {
  margin-top: 16px;
  color: var(--ink-faint);
  font-size: 14px;
}

.pricing-actions {
  min-width: 220px;
  display: grid;
  justify-items: start;
  gap: 18px;
}

.pricing-actions .button {
  width: 100%;
}

.faq-chapter {
  background: var(--paper-clean);
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
}

.faq-chapter h2 {
  font-size: clamp(42px, 5vw, 68px);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 610;
  line-height: 1.25;
  letter-spacing: -0.032em;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 1px;
  background: currentColor;
  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: 62ch;
  padding: 0 52px 28px 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.site-footer {
  padding: 54px var(--gutter);
  background: var(--graphite);
  color: var(--dark-ink);
}

.footer-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}

.footer-mark img {
  width: auto;
  height: 27px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
}

.footer-links a,
.site-footer p {
  color: #929297;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 820px) {
  .nav-links > a:not(.nav-action) {
    display: none;
  }

  .chapter-heading,
  .privacy-copy,
  .pricing-inner,
  .faq-inner {
    grid-template-columns: 1fr;
  }

  .chapter-heading,
  .privacy-copy,
  .faq-inner {
    align-items: start;
  }

  .chapter-heading p,
  .privacy-copy > div:last-child {
    max-width: 600px;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .capability-list article:nth-last-child(2) {
    border-bottom: 0;
  }

  .pricing-actions {
    min-width: 0;
    justify-items: start;
  }

  .pricing-actions .button {
    width: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 20px;
    --section: 84px;
  }

  .nav-inner {
    height: 62px;
    gap: 14px;
  }

  .wordmark img {
    height: 27px;
    max-width: 142px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links .nav-action {
    min-height: 36px;
    padding: 8px 13px;
    font-size: 12px;
  }

  .home-hero {
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(52px, 17vw, 76px);
    line-height: 0.94;
    letter-spacing: -0.04em;
  }

  .product-line {
    margin-bottom: 20px;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 30px;
    flex-direction: column;
  }

  .hero-actions .button {
    width: min(100%, 280px);
  }

  .hero-object {
    width: calc(100% + (var(--gutter) * 2));
    height: clamp(480px, 132vw, 560px);
    margin-left: calc(var(--gutter) * -1);
    margin-top: 64px;
  }

  .hero-object .product-stage__icon img {
    object-position: 64% 51%;
  }

  .hero-object .product-stage__window {
    top: 5%;
    left: 4%;
    width: 78%;
    border-radius: 17px;
    box-shadow: 0 22px 42px rgb(17 18 20 / 0.24), 0 2px 5px rgb(17 18 20 / 0.16);
    transform: rotate(-0.7deg);
  }

  .hero-object .product-stage__recorder {
    right: auto;
    bottom: 6%;
    left: 8%;
    width: 84%;
    border-radius: 16px;
    box-shadow: 0 18px 34px rgb(17 18 20 / 0.3), 0 2px 4px rgb(17 18 20 / 0.2);
  }

  .chapter-heading h2,
  .privacy-copy h2,
  .pricing-chapter h2 {
    line-height: 1;
  }

  .speech-line {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .speech-line dt {
    padding-top: 0;
  }

  .speech-line dd {
    font-size: clamp(26px, 8.5vw, 36px);
  }

  .capability-list article {
    min-height: 0;
    padding-block: 26px 32px;
  }

  .local-flow {
    grid-template-columns: 1fr;
  }

  .local-flow li {
    min-height: 0;
    padding: 26px 0 28px;
  }

  .local-flow li + li {
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .pricing-actions {
    margin-top: 8px;
  }

  .pricing-actions .button {
    width: 100%;
  }

  .faq-list summary {
    padding-block: 22px;
    font-size: 19px;
  }

  .site-footer {
    padding-block: 46px;
  }
}

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

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