:root {
  color-scheme: dark;
  --bg: #08090a;
  --surface: #0d0e10;
  --surface-raised: #131416;
  --text: #f5f5f2;
  --muted: #9b9ca0;
  --line: #292b2f;
  --line-strong: #4b4d52;
  --max: 1600px;
  --gutter: clamp(24px, 4.8vw, 76px);
  --display: clamp(3.4rem, 7.4vw, 8.6rem);
  --heading: clamp(2.4rem, 5vw, 5.4rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--text);
  color: var(--bg);
}

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

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--max);
  min-height: 88px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 66%, transparent);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: min-height 220ms ease, background 220ms ease;
}

.site-header.is-compact {
  min-height: 68px;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 1.3rem;
  font-weight: 750;
  letter-spacing: -0.045em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.2vw, 56px);
  color: #d7d7d5;
  font-size: 0.94rem;
}

.primary-nav a,
.language-switch a,
.site-footer a {
  transition: color 160ms ease, opacity 160ms ease;
}

.primary-nav a:hover,
.language-switch a:hover,
.site-footer a:hover {
  color: #fff;
}

.language-switch {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
  color: #727378;
  font-size: 0.9rem;
}

.language-switch a[aria-current="true"] {
  color: var(--text);
}

.hero {
  position: relative;
  overflow: clip;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.9fr);
  align-items: center;
  width: 100%;
  max-width: var(--max);
  min-height: 940px;
  margin: 0 auto;
  padding: 144px var(--gutter) 90px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 36px 0 74px;
}

.hero h1,
.final-cta h2 {
  margin: 0;
  font-size: var(--display);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

html[data-lang="ko"] .hero h1 {
  font-size: clamp(4rem, 4.6vw, 5.5rem);
  word-break: keep-all;
}

html[data-lang="ko"] h2,
html[data-lang="ko"] h3 {
  word-break: keep-all;
}

.hero h1 span,
.final-cta h2 span {
  display: block;
}

.hero-copy > p {
  max-width: 640px;
  margin: clamp(30px, 3vw, 50px) 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  line-height: 1.7;
  letter-spacing: -0.025em;
}

.hero-actions {
  margin-top: 38px;
}

.release-status {
  max-width: 255px;
  color: #77787c;
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 740px;
}

.wave-field {
  position: absolute;
  top: 50%;
  left: -26%;
  width: 145%;
  max-width: none;
  transform: translateY(-50%);
  overflow: visible;
}

.wave-field path {
  fill: none;
  stroke: #a8a9ac;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.wave-field path:nth-child(1) { opacity: 0.12; }
.wave-field path:nth-child(2) { opacity: 0.23; }
.wave-field path:nth-child(3) { opacity: 0.7; }

.live-label {
  position: absolute;
  top: 16%;
  left: 6%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfcfcd;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.live-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5f5f2;
  box-shadow: 0 0 0 5px rgb(245 245 242 / 0.08);
  animation: livePulse 1.8s ease-in-out infinite;
}

.phone {
  position: absolute;
  overflow: hidden;
  container-type: inline-size;
  border: 1px solid #46484d;
  border-radius: clamp(30px, 3vw, 50px);
  background: #020303;
  box-shadow: 0 50px 100px rgb(0 0 0 / 0.52), inset 0 0 0 5px #101113;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 5px solid #101113;
  border-radius: inherit;
  pointer-events: none;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

talkcrush-screen {
  display: block;
  width: 100%;
  height: 100%;
}

.app-ui {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0c;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  user-select: none;
}

.app-system-bar {
  display: flex;
  align-items: center;
  min-height: 10.5cqw;
  padding: 2.3cqw 5cqw 0;
  color: rgb(255 255 255 / 0.88);
  font-size: 3cqw;
  font-weight: 650;
  line-height: 1;
}

.app-system-spacer,
.app-status-spacer {
  flex: 1;
}

.app-signal {
  display: flex;
  align-items: end;
  gap: 0.7cqw;
  height: 3.2cqw;
  margin-right: 2cqw;
}

.app-signal i {
  width: 0.8cqw;
  border-radius: 0.4cqw;
  background: currentColor;
}

.app-signal i:nth-child(1) { height: 1.2cqw; }
.app-signal i:nth-child(2) { height: 1.9cqw; }
.app-signal i:nth-child(3) { height: 2.6cqw; }
.app-signal i:nth-child(4) { height: 3.2cqw; }

.app-wifi {
  width: 3.8cqw;
  height: 2.8cqw;
  margin-right: 2cqw;
  border-top: 0.75cqw solid currentColor;
  border-radius: 50% 50% 0 0;
}

.app-battery {
  position: relative;
  width: 5cqw;
  height: 2.5cqw;
  border: 0.45cqw solid currentColor;
  border-radius: 0.7cqw;
}

.app-battery::after {
  content: "";
  position: absolute;
  top: 0.45cqw;
  right: -1.2cqw;
  width: 0.7cqw;
  height: 1.1cqw;
  border-radius: 0 0.4cqw 0.4cqw 0;
  background: currentColor;
}

.app-status-strip {
  display: flex;
  align-items: center;
  gap: 2.1cqw;
  min-height: 12.5cqw;
  padding: 2.2cqw 4cqw;
}

.app-icon {
  flex: 0 0 auto;
  width: 5.6cqw;
  height: 5.6cqw;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: rgb(255 255 255 / 0.72);
}

.app-icon.is-muted {
  width: 5cqw;
  height: 5cqw;
  color: rgb(255 255 255 / 0.35);
}

.app-live-dot {
  width: 1.8cqw;
  height: 1.8cqw;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1.8cqw rgb(255 255 255 / 0.035);
}

.app-status-label {
  color: rgb(255 255 255 / 0.7);
  font-size: 3cqw;
  white-space: nowrap;
}

.app-transcript {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 4cqw 4.5cqw 1cqw;
}

.app-memo {
  min-height: 13.4cqw;
  margin-bottom: 3.1cqw;
}

.app-memo p {
  margin: 0;
}

.app-source {
  padding: 0 1.8cqw;
  color: rgb(255 255 255 / 0.38);
  font-size: 3.25cqw;
  font-weight: 400;
  line-height: 1.35;
}

.app-translation {
  margin-top: 1cqw !important;
  padding: 0.85cqw 1.8cqw;
  color: #fff;
  font-size: 4.45cqw;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.app-typed-line.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.45cqw;
  height: 0.92em;
  margin-left: 0.65cqw;
  transform: translateY(0.08em);
  background: currentColor;
  animation: typeCaret 480ms steps(1, end) infinite;
}

.app-ghost {
  display: flex;
  gap: 1cqw;
  padding: 1cqw 1.8cqw;
}

.app-ghost i {
  width: 1.3cqw;
  height: 1.3cqw;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.24);
  animation: appDot 1s ease-in-out infinite;
}

.app-ghost i:nth-child(2) { animation-delay: 120ms; }
.app-ghost i:nth-child(3) { animation-delay: 240ms; }

.app-transcript-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4cqw;
}

.app-transcript-empty p {
  margin: 0;
  color: rgb(255 255 255 / 0.28);
  font-size: 3.6cqw;
  line-height: 1.6;
  text-align: center;
  white-space: pre-line;
}

.app-ghost-center {
  padding: 0;
}

.app-controls {
  display: grid;
  grid-template-columns: 1fr 21cqw 1fr;
  align-items: center;
  min-height: 27cqw;
  padding: 1.5cqw 4cqw 4cqw;
}

.app-control-cluster {
  display: flex;
  align-items: end;
  gap: 1.5cqw;
}

.app-control-item,
.app-center-control,
.app-language-control {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: rgb(255 255 255 / 0.3);
  font-size: 2.15cqw;
  line-height: 1.2;
  white-space: nowrap;
}

.app-control-item .app-icon {
  width: 6cqw;
  height: 6cqw;
  margin-bottom: 1.1cqw;
}

.app-mic-wrap {
  position: relative;
  display: block;
}

.app-mic-wrap .app-chevron {
  position: absolute;
  right: -2.2cqw;
  bottom: 0;
  width: 3.7cqw;
  height: 3.7cqw;
  margin: 0;
  color: rgb(255 255 255 / 0.45);
}

.app-orb {
  display: grid;
  place-items: center;
  width: 18.5cqw;
  height: 18.5cqw;
  margin-bottom: 1.1cqw;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 7cqw 1.5cqw rgb(255 255 255 / 0.2);
}

.app-orb i {
  width: 5.2cqw;
  height: 5.2cqw;
  border-radius: 1.1cqw;
  background: #09090b;
}

.app-language-control {
  justify-self: end;
}

.app-language-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19cqw;
  height: 9.5cqw;
  margin-bottom: 1.1cqw;
  border: 0.3cqw solid rgb(255 255 255 / 0.2);
  border-radius: 2.1cqw;
  color: rgb(255 255 255 / 0.7);
}

.app-language-pair b {
  font-size: 2.55cqw;
  font-weight: 600;
}

.app-language-pair .app-icon {
  width: 3.7cqw;
  height: 3.7cqw;
  margin: 0 0.8cqw;
}

.phone-speaker {
  position: absolute;
  top: 2.2cqw;
  left: 50%;
  z-index: 2;
  width: 32%;
  height: 6.2cqw;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #000;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.02);
}

.phone-hero {
  top: 3%;
  right: 4%;
  width: min(73%, 480px);
  aspect-ratio: 9 / 16;
  transform: rotate(2deg);
}

.visual-caption {
  position: absolute;
  right: 2%;
  bottom: 5%;
  color: #737479;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.quiet-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  max-width: var(--max);
  min-height: 470px;
  margin: 0 auto;
  padding: 95px var(--gutter) 110px;
}

.section-rule {
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--line);
}

.quiet-feature h2,
.section-heading h2,
.third-copy h2 {
  margin: 0;
  font-size: var(--heading);
  font-weight: 740;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.quiet-feature-copy p,
.third-copy p {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.7;
}

.listening-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 180px;
}

.listening-mark span {
  width: 4px;
  border-radius: 3px;
  background: var(--text);
  animation: listen 1.35s var(--ease) infinite alternate;
}

.listening-mark span:nth-child(1),
.listening-mark span:nth-child(5) { height: 34px; opacity: 0.35; }
.listening-mark span:nth-child(2),
.listening-mark span:nth-child(4) { height: 82px; opacity: 0.7; animation-delay: -0.45s; }
.listening-mark span:nth-child(3) { height: 132px; animation-delay: -0.82s; }

.how {
  max-width: var(--max);
  margin: 0 auto;
  padding: 130px var(--gutter) 150px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: start;
}

.section-index {
  padding-top: 10px;
  color: #707176;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 100px 0 0 80px;
  padding: 0;
  list-style: none;
}

.steps li {
  min-width: 0;
}

.step-top {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #bbbcbf;
  font-size: 0.8rem;
}

.step-line {
  position: relative;
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}

.step-line::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--text);
  border-radius: 50%;
  background: var(--bg);
}

.steps h3 {
  margin: 30px 0 0;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  letter-spacing: -0.045em;
}

.steps p {
  max-width: 330px;
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(0, 1.2fr);
  max-width: var(--max);
  min-height: 830px;
  margin: 0 auto;
  padding: 70px var(--gutter) 100px;
  border-top: 1px solid var(--line);
}

.showcase-phones {
  position: relative;
  min-height: 670px;
}

.phone-conversation,
.phone-listening {
  width: min(48%, 280px);
  aspect-ratio: 9 / 16;
}

.phone-conversation {
  top: 3%;
  left: 0;
  transform: rotate(-3deg);
}

.phone-listening {
  top: 15%;
  left: 52%;
  transform: rotate(2deg);
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.capability {
  min-height: 330px;
  padding: 58px 42px 46px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.capability h3 {
  max-width: 310px;
  margin: 64px 0 0;
  font-size: clamp(1.8rem, 2.8vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.capability p {
  max-width: 320px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.mini-wave {
  display: block;
  width: 100%;
  height: 24px;
  background: repeating-linear-gradient(90deg, transparent 0 6px, #a9aaad 6px 7px, transparent 7px 12px);
  mask-image: linear-gradient(0deg, transparent 0, #000 42%, #000 58%, transparent 100%);
  opacity: 0.7;
}

.third-language {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px var(--gutter);
  border-top: 1px solid var(--line);
}

.third-copy {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  align-content: start;
}

.third-copy h2,
.third-copy p {
  grid-column: 2;
}

.language-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.language-rail div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 0 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.language-rail span {
  color: #77787c;
  font-size: 0.8rem;
}

.language-rail strong {
  overflow: hidden;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  font-weight: 620;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.final-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  max-width: var(--max);
  min-height: 650px;
  margin: 0 auto;
  padding: 140px var(--gutter) 120px;
  border-top: 1px solid var(--line);
}

.final-cta h2 {
  font-size: clamp(3.3rem, 6vw, 7.2rem);
}

.cta-status {
  padding: 0 0 10px clamp(28px, 5vw, 85px);
  border-left: 1px solid var(--line-strong);
}

.cta-status p {
  max-width: 360px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 1.05rem;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 245px;
  min-height: 64px;
  padding: 16px 25px;
  border: 1px solid #d4d4d1;
  font-weight: 680;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 1fr auto;
  align-items: center;
  gap: 26px;
  max-width: calc(var(--max) - (var(--gutter) * 2));
  min-height: 116px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: #85868a;
  font-size: 0.86rem;
}

.site-footer nav {
  display: flex;
  gap: 32px;
}

.site-footer .footer-brand {
  color: var(--text);
  font-size: 1rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes livePulse {
  0%, 100% { opacity: 0.5; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes listen {
  from { transform: scaleY(0.58); }
  to { transform: scaleY(1); }
}

@keyframes appDot {
  0%, 65%, 100% { opacity: 0.35; transform: scale(0.82); }
  30% { opacity: 1; transform: scale(1); }
}

@keyframes typeCaret {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

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

  .primary-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.75fr);
    min-height: 820px;
  }

  html[data-lang="ko"] .hero h1 {
    font-size: clamp(3.2rem, 5.7vw, 4.1rem);
  }

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

  .phone-hero {
    right: -4%;
    width: min(86%, 390px);
  }

  .product-showcase {
    grid-template-columns: minmax(330px, 0.7fr) minmax(0, 1.3fr);
  }

  .showcase-phones {
    min-height: 630px;
  }

  .capability {
    padding: 42px 28px;
  }

  .site-footer {
    grid-template-columns: 1fr 2fr;
    padding: 28px 0;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
    --display: clamp(3rem, 14.3vw, 4.7rem);
    --heading: clamp(2.25rem, 11vw, 3.6rem);
  }

  .site-header {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    font-size: 1.1rem;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .language-switch {
    font-size: 0.78rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  html[data-lang="ko"] .hero h1 {
    font-size: var(--display);
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy > p {
    max-width: 92%;
    margin-top: 26px;
    font-size: 1rem;
  }

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

  .release-status {
    max-width: none;
    font-size: 0.82rem;
  }

  .hero-visual {
    min-height: 640px;
    margin-top: 45px;
  }

  .wave-field {
    left: -44%;
    width: 190%;
  }

  .phone-hero {
    top: 0;
    right: 8%;
    width: min(76%, 330px);
  }

  .live-label {
    top: 10%;
    left: 2%;
  }

  .visual-caption {
    display: none;
  }

  .quiet-feature {
    grid-template-columns: 1fr;
    min-height: 540px;
    padding-top: 75px;
    padding-bottom: 80px;
  }

  .quiet-feature-copy p,
  .third-copy p {
    font-size: 1rem;
  }

  .listening-mark {
    height: 160px;
    margin-top: 30px;
  }

  .how {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .section-heading,
  .third-copy {
    grid-template-columns: 1fr;
  }

  .section-index,
  .third-copy h2,
  .third-copy p {
    grid-column: 1;
  }

  .section-index {
    margin-bottom: 24px;
    padding-top: 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 54px;
    margin: 70px 0 0;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 20px;
  }

  .showcase-phones {
    min-height: 560px;
  }

  .phone-conversation,
  .phone-listening {
    width: min(47%, 210px);
  }

  .phone-conversation { left: 2%; }
  .phone-listening { left: 52%; }

  .capabilities {
    grid-template-columns: 1fr;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .capability {
    min-height: 250px;
    padding: 44px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability h3 {
    margin-top: 44px;
  }

  .third-language {
    grid-template-columns: 1fr;
    gap: 75px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

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

  .language-rail div {
    grid-template-columns: 26px minmax(0, 1fr);
  }

  .final-cta {
    grid-template-columns: 1fr;
    min-height: 600px;
    padding-top: 100px;
    padding-bottom: 90px;
  }

  .cta-status {
    margin-top: 70px;
    padding: 0;
    border-left: 0;
  }

  .coming-soon {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: none;
    margin: 0 var(--gutter);
    padding: 38px 0 44px;
  }

  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
}

@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;
  }
}
