:root {
  --ink: #07140f;
  --ink-raised: #0d2119;
  --green: #0c8b59;
  --green-bright: #66e0a2;
  --green-soft: #dff8e9;
  --cream: #f6f7f0;
  --paper: #fcfdf8;
  --coral: #ee684d;
  --yellow: #f3c95b;
  --muted: #63746d;
  --line: rgba(7, 20, 15, 0.14);
  --font-display: "Manrope", sans-serif;
  --font-mono: "DM Mono", monospace;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 20, 15, 0.96);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.brand__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(246, 247, 240, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:not(.nav-links__cta):hover,
.nav-links a:not(.nav-links__cta):focus-visible {
  color: var(--green-bright);
}

.nav-links__cta {
  padding: 10px 13px;
  border: 1px solid rgba(102, 224, 162, 0.72);
  border-radius: 5px;
  color: var(--green-bright);
}

.nav-links__cta:hover,
.nav-links__cta:focus-visible {
  background: var(--green-bright);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 247, 240, 0.24);
  border-radius: 5px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle svg {
  width: 19px;
}

.hero {
  position: relative;
  min-height: clamp(560px, calc(100svh - 140px), 700px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 20, 15, 1) 0%, rgba(7, 20, 15, 0.98) 39%, rgba(7, 20, 15, 0.48) 68%, rgba(7, 20, 15, 0.18) 100%),
    #07140f;
  color: var(--cream);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(102, 224, 162, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 224, 162, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 72%);
}

.hero__inner {
  position: relative;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: min(60%, 690px);
  padding: 10px 0;
  animation: hero-copy-in 700ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green-bright);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  background: var(--coral);
}

.eyebrow--dark {
  color: var(--green);
}

.hero h1 {
  margin-top: 22px;
  color: var(--cream);
  font-size: clamp(76px, 9vw, 124px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.82;
}

.hero__statement {
  margin-top: 24px;
  color: var(--cream);
  font-size: clamp(31px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.04;
}

.hero__statement em {
  color: var(--green-bright);
  font-style: normal;
}

.hero__lede {
  max-width: 590px;
  margin-top: 18px;
  color: rgba(246, 247, 240, 0.7);
  font-size: 16px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 17px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.3;
}

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

.button--primary {
  background: var(--green);
  color: white;
  box-shadow: 0 13px 24px rgba(12, 139, 89, 0.17);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #087548;
}

.google-play-badge {
  display: inline-flex;
  width: 190px;
  min-height: 58px;
  align-items: center;
  transition: filter 180ms ease, transform 180ms ease;
}

.google-play-badge img {
  width: 100%;
  height: auto;
}

.google-play-badge:hover,
.google-play-badge:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--green);
}

.text-link--hero {
  color: rgba(246, 247, 240, 0.86);
}

.text-link--hero:hover,
.text-link--hero:focus-visible {
  color: var(--green-bright);
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
  margin: 22px 0 0;
}

.hero__proof div {
  min-width: 0;
  padding-left: 13px;
  border-left: 2px solid rgba(102, 224, 162, 0.72);
}

.hero__proof dt {
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
}

.hero__proof dd {
  margin: 5px 0 0;
  color: rgba(246, 247, 240, 0.5);
  font-size: 11px;
  line-height: 1.45;
}

.hero__media {
  position: absolute;
  z-index: 1;
  top: 0;
  right: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
  bottom: 0;
  display: flex;
  width: min(58vw, 760px);
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero__media::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, #07140f 0%, rgba(7, 20, 15, 0.76) 15%, transparent 50%);
  content: "";
  pointer-events: none;
}

.hero__media img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 96%;
  max-width: min(100%, 540px);
  object-fit: contain;
  filter: drop-shadow(0 35px 42px rgba(0, 0, 0, 0.55));
  animation:
    hero-device-in 800ms 120ms cubic-bezier(0.2, 0.72, 0.2, 1) both,
    hero-device-float 7s 1s ease-in-out infinite;
}

.hero-note {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid rgba(246, 247, 240, 0.2);
  border-radius: 6px;
  background: rgba(7, 20, 15, 0.84);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 10px;
  backdrop-filter: blur(12px);
  animation: hero-note-in 500ms 650ms ease both;
}

.hero-note svg {
  width: 14px;
  color: var(--green-bright);
}

.hero-note--voice {
  top: 30%;
  left: 14%;
}

.hero-note--clear {
  right: 8%;
  bottom: 23%;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes hero-device-in {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.97);
  }
}

@keyframes hero-device-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes hero-note-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.language-band {
  border-top: 1px solid #e2e8e1;
  border-bottom: 1px solid #e2e8e1;
  background: #fff;
}

.language-band__inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #234736;
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}

.language-band__rule {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--coral);
}

.language-band__note {
  padding-left: 22px;
  border-left: 1px solid rgba(7, 20, 15, 0.14);
  color: var(--green);
  font-weight: 500;
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-intro {
  max-width: 680px;
}

.section-intro--wide {
  max-width: 770px;
}

.section-intro h2,
.feature-rail__heading h2,
.privacy-section h2,
.download-section h2 {
  margin-top: 17px;
  font-size: clamp(34px, 4vw, 57px);
  font-weight: 800;
  line-height: 1.07;
}

.translation-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.66fr) minmax(380px, 1fr);
  gap: clamp(44px, 8vw, 116px);
  align-items: center;
  margin-top: 60px;
}

.translation-story > p {
  max-width: 390px;
  color: #53665d;
  font-size: 17px;
  line-height: 1.7;
}

.language-status {
  display: grid;
  gap: 11px;
  margin-top: 34px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.language-status span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-status__live {
  color: var(--green);
  font-weight: 500;
}

.language-status svg {
  width: 15px;
  height: 15px;
  padding: 2px;
  border-radius: 50%;
  background: var(--green);
  color: white;
}

.translator {
  overflow: hidden;
  border: 1px solid rgba(7, 20, 15, 0.22);
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 15px 15px 0 var(--green-soft);
}

.translator__topbar {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(246, 247, 240, 0.13);
  color: rgba(246, 247, 240, 0.52);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.translator__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-bright);
}

.translator__live > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(102, 224, 162, 0.12);
}

.translator__body {
  padding: 28px;
}

.translator__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--green-bright);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.translator__label span:last-child {
  color: rgba(246, 247, 240, 0.48);
}

.translator__label svg {
  width: 16px;
  color: var(--yellow);
}

.translator__source p,
.translator__result p {
  max-width: 530px;
  margin-top: 11px;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.translator__source p {
  color: rgba(246, 247, 240, 0.78);
}

.waveform {
  display: flex;
  height: 31px;
  align-items: center;
  gap: 4px;
  margin-top: 19px;
}

.waveform span {
  display: block;
  width: 3px;
  height: var(--bar-height, 10px);
  border-radius: 3px;
  background: var(--green-bright);
}

.waveform span:nth-child(2n) { --bar-height: 21px; }
.waveform span:nth-child(3n) { --bar-height: 15px; }
.waveform span:nth-child(4n) { --bar-height: 27px; }
.waveform span:nth-child(5n) { --bar-height: 8px; }

.translator__arrow {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin: 19px 0;
  border: 1px solid rgba(246, 247, 240, 0.2);
  border-radius: 50%;
  color: var(--yellow);
}

.translator__arrow svg {
  width: 16px;
}

.translator__result {
  padding: 17px;
  border: 1px solid rgba(102, 224, 162, 0.32);
  border-radius: 6px;
  background: #163c2a;
}

.translator__result p {
  color: white;
}

.translator__mic {
  display: flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 23px;
  border: 1px solid rgba(246, 247, 240, 0.16);
  border-radius: 5px;
  background: transparent;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.translator__mic:hover,
.translator__mic:focus-visible,
.translator[data-state="listening"] .translator__mic {
  border-color: var(--green-bright);
  background: rgba(102, 224, 162, 0.12);
}

.translator__mic svg {
  width: 17px;
  color: var(--green-bright);
}

.translator__status {
  min-height: 18px;
  margin-top: 10px;
  color: rgba(246, 247, 240, 0.48);
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: center;
}

.translator[data-state="listening"] .waveform span {
  animation: wave 480ms ease-in-out infinite alternate;
}

.translator[data-state="listening"] .waveform span:nth-child(2n) { animation-delay: 110ms; }
.translator[data-state="listening"] .waveform span:nth-child(3n) { animation-delay: 220ms; }

@keyframes wave {
  to { transform: scaleY(1.55); }
}

.feature-rail {
  overflow: hidden;
  background: var(--green);
  color: white;
}

.feature-rail__inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 9vw, 130px);
  padding-top: 110px;
  padding-bottom: 110px;
}

.feature-rail .eyebrow {
  color: var(--yellow);
}

.feature-rail .eyebrow > span {
  background: var(--yellow);
}

.feature-rail__heading h2 {
  max-width: 400px;
}

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

.feature-list article {
  min-width: 0;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.feature-list > article > svg {
  width: 23px;
  height: 23px;
  color: var(--yellow);
}

.feature-list h3 {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.25;
}

.feature-list p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.65;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 57px;
}

.use-case {
  position: relative;
  display: grid;
  min-height: 244px;
  grid-template-columns: 46px minmax(0, 1fr) 36px;
  gap: 17px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.use-case--lead {
  border-color: var(--green);
  background: var(--green-soft);
}

.use-case__index {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 11px;
}

.use-case__label {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.use-case h3 {
  max-width: 330px;
  margin-top: 11px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
}

.use-case div > p:last-child {
  max-width: 390px;
  margin-top: 14px;
  color: #56675f;
  font-size: 13px;
  line-height: 1.6;
}

.use-case > svg {
  width: 27px;
  height: 27px;
  color: var(--coral);
}

.use-case--quote {
  display: flex;
  min-height: 244px;
  flex-direction: column;
  justify-content: space-between;
  border: 0;
  background: var(--ink);
  color: var(--cream);
}

.use-case--quote p {
  max-width: 410px;
  font-size: clamp(20px, 2.5vw, 31px);
  font-weight: 700;
  line-height: 1.28;
}

.use-case--quote span {
  color: var(--green-bright);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.privacy-section {
  background: #e9f2e9;
}

.privacy-section__inner {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr) auto;
  gap: 33px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

.privacy-section__icon {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(12, 139, 89, 0.3);
  border-radius: 7px;
  color: var(--green);
}

.privacy-section__icon svg {
  width: 30px;
  height: 30px;
}

.privacy-section h2 {
  margin-top: 12px;
  font-size: clamp(30px, 3.6vw, 48px);
}

.privacy-section div > p:last-child {
  max-width: 650px;
  margin-top: 18px;
  color: #4c6256;
  font-size: 15px;
  line-height: 1.65;
}

.text-link--light {
  min-width: 170px;
  color: var(--green);
}

.download-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(102, 224, 162, 0.18);
  border-bottom: 1px solid rgba(102, 224, 162, 0.18);
  background:
    linear-gradient(110deg, rgba(238, 104, 77, 0.09), transparent 30%),
    var(--ink);
  color: var(--cream);
}

.download-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(102, 224, 162, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 224, 162, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

.download-section__inner {
  position: relative;
  display: grid;
  min-height: 390px;
  grid-template-columns: 132px minmax(0, 1fr) 210px;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.download-section__identity {
  display: grid;
  gap: 14px;
  color: rgba(246, 247, 240, 0.62);
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
}

.download-section__identity img {
  width: 116px;
  height: 116px;
  border-radius: 26px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
}

.download-section__copy {
  max-width: 650px;
}

.download-section h2 {
  color: var(--cream);
}

.download-section__copy > p:last-child {
  max-width: 570px;
  margin-top: 20px;
  color: rgba(246, 247, 240, 0.64);
  font-size: 16px;
  line-height: 1.65;
}

.download-section__action {
  display: grid;
  justify-items: center;
  gap: 5px;
}

.download-section__action span {
  color: rgba(246, 247, 240, 0.5);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.footer {
  border-top: 1px solid rgba(246, 247, 240, 0.15);
  background: var(--ink);
  color: rgba(246, 247, 240, 0.62);
}

.footer__inner {
  display: flex;
  min-height: 111px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.footer__meta {
  display: grid;
  gap: 5px;
  text-align: center;
}

.footer__meta p:last-child {
  color: rgba(246, 247, 240, 0.36);
  font-size: 9px;
}

.footer a:not(.brand):hover,
.footer a:not(.brand):focus-visible {
  color: var(--green-bright);
}

@media (max-width: 940px) {
  :root { --shell: min(100% - 40px, 740px); }

  .hero {
    min-height: 680px;
  }

  .hero__inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero__copy {
    width: 68%;
    padding: 12px 0;
  }

  .hero__media {
    right: -70px;
    width: 62%;
  }

  .hero__media img {
    max-height: 650px;
  }

  .hero-note--voice {
    left: 6%;
  }

  .download-section__inner {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .download-section__identity img {
    width: 104px;
    height: 104px;
  }

  .download-section__action {
    grid-column: 2;
    justify-items: start;
  }

  .feature-rail__inner,
  .translation-grid {
    grid-template-columns: 1fr;
  }

  .translation-story > p {
    max-width: 600px;
  }

  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .privacy-section__inner {
    grid-template-columns: 65px minmax(0, 1fr);
  }

  .privacy-section .text-link {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 32px); }

  .nav {
    min-height: 64px;
  }

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

  .nav-links {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 18px;
    border-bottom: 1px solid rgba(246, 247, 240, 0.17);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 47px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(246, 247, 240, 0.09);
  }

  .nav-links__cta {
    justify-content: center;
    margin-top: 12px;
    border-color: var(--green-bright) !important;
  }

  .hero {
    min-height: 0;
    background: var(--ink);
  }

  .hero__inner {
    display: block;
    padding-top: 32px;
    padding-bottom: 0;
  }

  .hero__copy {
    width: 100%;
    padding: 0 0 25px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: 72px;
  }

  .hero__statement {
    margin-top: 20px;
    font-size: 36px;
  }

  .hero__lede {
    margin-top: 16px;
    font-size: 15px;
  }

  .hero__actions {
    gap: 15px;
    margin-top: 20px;
  }

  .google-play-badge {
    width: 184px;
  }

  .button {
    width: 100%;
  }

  .hero__proof {
    display: none;
  }

  .hero__proof dt {
    font-size: 10px;
  }

  .hero__proof dd {
    font-size: 9px;
  }

  .hero__media {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + 32px);
    height: 300px;
    margin-left: -16px;
  }

  .hero__media::before {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 28%);
  }

  .hero__media img {
    max-height: 410px;
  }

  .hero-note {
    font-size: 9px;
  }

  .hero-note--voice {
    top: 25%;
    left: 5%;
  }

  .hero-note--clear {
    right: 4%;
    bottom: 24%;
  }

  .language-band__inner {
    min-height: 76px;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 8px;
    line-height: 1.5;
  }

  .language-band__rule {
    width: 9px;
  }

  .language-band__note {
    width: 100%;
    padding-top: 7px;
    padding-left: 0;
    border-top: 1px solid rgba(7, 20, 15, 0.1);
    border-left: 0;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-intro h2,
  .feature-rail__heading h2,
  .privacy-section h2,
  .download-section h2 {
    font-size: 34px;
  }

  .translation-grid {
    gap: 38px;
    margin-top: 41px;
  }

  .translation-story > p {
    font-size: 16px;
  }

  .translator {
    box-shadow: 9px 9px 0 var(--green-soft);
  }

  .translator__topbar {
    padding: 0 13px;
    font-size: 8px;
  }

  .translator__body {
    padding: 19px;
  }

  .translator__source p,
  .translator__result p {
    font-size: 20px;
  }

  .feature-rail__inner {
    gap: 44px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-list h3 {
    margin-top: 16px;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .use-case {
    min-height: 216px;
    padding: 22px;
  }

  .privacy-section__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 67px;
    padding-bottom: 67px;
  }

  .privacy-section .text-link {
    grid-column: auto;
  }

  .download-section__inner {
    min-height: 0;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 24px 18px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .download-section__identity {
    gap: 9px;
    font-size: 8px;
  }

  .download-section__identity img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .download-section__action {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .download-section__copy > p:last-child {
    font-size: 14px;
  }

  .footer__inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footer__meta {
    text-align: left;
  }
}

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