/* ATC2Text — Flight Notes. A considered cockpit companion. */
:root {
  --paper: #f7f8f4;
  --white: #fff;
  --ink: #152b32;
  --muted: #57686b;
  --line: #dce2dc;
  --blue: #2658cb;
  --navy: #183c43;
  --lime: #d6edaa;
  --mono: "IBM Plex Mono", monospace;
  --sans: "DM Sans", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
img,
svg {
  vertical-align: middle;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #3968db;
  outline-offset: 5px;
}
button:disabled {
  cursor: wait;
  opacity: 0.75;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.06;
}
em {
  font-family: var(--serif);
  font-weight: 400;
}
h2 {
  font-size: clamp(42px, 4.45vw, 64px);
  letter-spacing: -2.4px;
}
h3 {
  font-size: 28px;
  letter-spacing: -0.9px;
}
.shell {
  width: calc(100% - 112px);
  max-width: 1320px;
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.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;
  top: 12px;
  left: 16px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  z-index: 100;
  border-radius: 8px;
}
.skip-link:focus {
  transform: translateY(0);
}
.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  font: 400 12px/1.5 var(--mono);
  letter-spacing: 1.2px;
}
.status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: #4b7957;
  box-shadow: 0 0 0 4px #4b795712;
  border-radius: 50%;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  min-height: 56px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button .icon {
  width: 19px;
  height: 19px;
  transition: transform 0.2s;
}
.button:hover .icon {
  transform: translateX(3px);
}
.button:hover {
  transform: translateY(-2px);
}
.button-blue {
  background: var(--blue);
  color: white;
  box-shadow: 0 5px 12px #2658cb15;
}
.button-blue:hover {
  background: #1d47a6;
  box-shadow: 0 8px 24px #2658cb25;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #27464e;
}
.button-lime {
  background: var(--lime);
  color: #17352d;
}
.button-lime:hover {
  background: #e3f7c0;
}
.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 14px;
  gap: 22px;
}
.site-header {
  height: 92px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}
.brand-two {
  color: var(--blue);
}
.site-header nav {
  display: flex;
  gap: 36px;
  margin-left: 60px;
}
.site-header nav a {
  font-size: 16px;
  color: #4a5e63;
  padding: 12px 0;
  position: relative;
}
.site-header nav a:after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width 0.25s;
}
.site-header nav a:hover:after {
  width: 100%;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  padding-top: 48px;
  padding-bottom: 48px;
  align-items: center;
}
.hero-copy {
  padding-block: 26px 12px;
  min-width: 0;
}
.hero h1 {
  font-size: clamp(67px, 6.5vw, 98px);
  letter-spacing: -5px;
  line-height: 0.99;
  margin-top: 30px;
}
.hero h1 em {
  color: var(--blue);
  font-size: 1.1em;
  letter-spacing: -4px;
}
.hero-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 440px;
  margin-top: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 29px;
}
.text-link {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 0;
}
.text-link:hover {
  color: var(--blue);
}
.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border: 1px solid #bcc9c7;
  border-radius: 50%;
  font-size: 7px;
  padding-left: 2px;
}
.release-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 17px;
}
.release-note .icon {
  width: 13px;
  height: 13px;
  fill: currentColor;
  stroke: none;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 58px;
  font: 400 12px/1.7 var(--mono);
  letter-spacing: 0.8px;
  color: #52675b;
}
.hero-footnote strong {
  font-weight: 400;
  color: #314a45;
}
.mini-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 26px;
  color: #5b766e;
  flex-shrink: 0;
}
.mini-wave i {
  display: block;
  width: 2px;
  height: 7px;
  border-radius: 4px;
  background: currentColor;
}
.mini-wave i:nth-child(3n) {
  height: 17px;
}
.mini-wave i:nth-child(3n + 2) {
  height: 11px;
}
.mini-wave i:nth-child(5) {
  height: 25px;
}
.hero-art {
  min-width: 0;
  height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 0;
  position: relative;
  background: transparent;
  color: var(--ink);
}
.phone {
  position: relative;
  flex: none;
  width: 272px;
  height: 526px;
  border-radius: 40px;
  background: #536165;
  padding: 6px;
  box-shadow:
    0 28px 48px -28px #152b3245,
    0 4px 12px #152b3210;
  z-index: 1;
}
.art-caption {
  display: grid;
  gap: 5px;
  text-align: center;
  line-height: 1.4;
}
.art-caption > span:first-child {
  font-size: 14px;
  font-weight: 500;
  color: #486255;
}
.art-caption > span:last-child {
  font: 400 12px/1.5 var(--mono);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #607367;
}
@media (max-width: 767px) {
  .hero-art {
    height: auto;
    padding: 12px 0 18px;
  }
}
.phone:before {
  content: "";
  position: absolute;
  right: -6px;
  top: 130px;
  height: 54px;
  width: 3px;
  border-radius: 2px;
  background: #546560;
}
.phone:after {
  content: "";
  position: absolute;
  left: -3px;
  top: 112px;
  height: 62px;
  width: 3px;
  border-radius: 2px;
  background: #64726e;
}
.phone-camera {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 77px;
  height: 21px;
  background: #091719;
  border-radius: 20px;
  z-index: 3;
}
.phone-camera:after {
  content: "";
  position: absolute;
  right: 11px;
  top: 7px;
  width: 7px;
  height: 7px;
  background: #203b4b;
  border-radius: 50%;
  border: 1px solid #32555d;
}
.phone-screen {
  border: 3px solid #0b191c;
  border-radius: 35px;
  overflow: hidden;
  background: #f4f6f1;
  height: 100%;
  padding: 10px 16px;
  color: #18332e;
  position: relative;
}
.phone-status {
  font-size: 11px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  margin-inline: 5px;
  height: 35px;
  padding-top: 1px;
}
.phone-status-icons {
  font-size: 9px;
  letter-spacing: 1px;
}
.phone-status-icons > span {
  font-size: 15px;
  margin-left: 4px;
}
.phone-topline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.phone-menu {
  margin-left: auto;
  letter-spacing: 2px;
  font-size: 11px;
}
.phone-station {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.mono-label {
  font: 400 12px/1.5 var(--mono);
  letter-spacing: 0.5px;
}
.phone-station .mono-label {
  display: block;
  color: #596d64;
  font-size: 11px;
}
.phone-station strong {
  font: 500 38px/1.1 var(--sans);
  letter-spacing: -1.6px;
  display: block;
  margin-top: 3px;
}
.phone-station strong span {
  color: #6b8075;
}
.station-unit {
  font: 400 11px/1.5 var(--mono);
  padding-bottom: 6px;
  color: #5c7166;
}
.phone-wave {
  height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d9e1d6;
  margin-bottom: 12px;
}
.phone-wave svg {
  width: 100%;
  height: 29px;
  stroke: #3c705d;
  stroke-width: 1;
  fill: none;
}
.phone-section-label {
  display: flex;
  justify-content: space-between;
  font: 400 11px/1.5 var(--mono);
  letter-spacing: 0.3px;
  color: #526a60;
}
.phone-section-label > span:first-child {
  display: flex;
  align-items: center;
  gap: 5px;
}
.phone-section-label .status-dot {
  width: 4px;
  height: 4px;
  box-shadow: none;
}
.phone-message {
  background: white;
  border: 1px solid #dce6dd;
  border-radius: 9px;
  padding: 12px 11px;
  margin-top: 8px;
  box-shadow: 0 3px 5px #20403505;
}
.message-callsign {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 400 11px/1.4 var(--mono);
  color: #78877e;
}
.callsign-pill {
  color: #264fbd;
  background: #ecf1fe;
  border: 1px solid #d8e2fa;
  padding: 2px 5px;
  font-size: 11px;
  border-radius: 3px;
}
.phone-message p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.2px;
  margin-top: 8px;
}
.phone-message mark {
  color: inherit;
  padding: 1px 3px;
  border-radius: 2px;
}
.mark-blue {
  background: #e8edfb;
}
.mark-orange {
  background: #fbe5c9;
}
.mark-green {
  background: #e3efd7;
}
.message-time {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-top: 10px;
  color: #67756a;
}
.phone-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 9px;
}
.phone-values > div {
  border: 1px solid #dce4d8;
  background: #edf1e8;
  padding: 8px;
  border-radius: 6px;
}
.phone-values > div > span {
  font: 400 11px/1.5 var(--mono);
  color: #556652;
  display: block;
}
.phone-values strong {
  display: block;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
}
.phone-values small {
  font-size: 11px;
  font-weight: 400;
  color: #5c715a;
}
.phone-history {
  margin-top: 12px;
}
.phone-history p {
  font-size: 14px;
  line-height: 1.7;
  color: #5e7162;
  margin-top: 5px;
}
.phone-history b {
  font-weight: 500;
  color: #304b3b;
}
.phone-bottom {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #4e684f;
  margin-top: 8px;
}
.record-dot {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #47765a;
}
.mic-button {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #234e41;
  color: #e0edd6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mic-button .icon {
  width: 14px;
  height: 14px;
}
.phone-home {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 3px;
  border-radius: 4px;
  background: #22352d;
}
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 28px;
  gap: 20px;
}
.trust-strip > span {
  font: 400 12px/1.5 var(--mono);
  letter-spacing: 0.8px;
  color: #536b61;
}
.trust-strip > div {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  color: #496056;
}
.trust-strip .icon {
  width: 18px;
  height: 18px;
  color: #526d5c;
}
.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 48px;
}
.section-eyebrow {
  color: #4f675e;
  margin-bottom: 21px;
  font-size: 12px;
}
.section-intro > p {
  color: var(--muted);
  font-size: 16px;
  max-width: 352px;
  padding-bottom: 7px;
  line-height: 1.8;
}
.section-intro h2 em {
  color: #557966;
}
.demo-panel {
  display: grid;
  grid-template-columns: 31% 69%;
  border: 1px solid #d7dfd5;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}
.demo-side {
  padding: 36px 30px 30px;
  background: #eef2e8;
  border-right: 1px solid #d7dfd5;
}
.demo-side > .mono-label {
  color: #536b58;
}
.demo-side h3 {
  font-size: 30px;
  line-height: 1.12;
  margin-top: 25px;
}
.demo-side > p {
  font-size: 16px;
  color: #54654f;
  line-height: 1.8;
  margin-top: 16px;
}
.scenario-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 28px;
}
.scenario-tabs button {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #52674e;
  text-align: left;
  padding: 13px 12px;
  font: 400 14px/1.4 var(--mono);
  min-height: 45px;
  transition:
    background 0.2s,
    color 0.2s;
}
.scenario-tabs button span {
  font-family: var(--sans);
  font-size: 16px;
}
.scenario-tabs .icon {
  width: 15px;
  height: 15px;
  margin-left: auto;
  opacity: 0;
}
.scenario-tabs button.active {
  color: white;
  background: #234339;
}
.scenario-tabs button.active .icon {
  opacity: 1;
}
.scenario-tabs button:not(.active):hover {
  background: #e1e8d8;
}
.demo-main {
  padding: 31px 42px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: radial-gradient(ellipse at 100% 100%, #f2f5f0, transparent 70%);
}
.demo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 400 14px/1.5 var(--mono);
  letter-spacing: 0.8px;
  color: #527060;
  gap: 10px;
}
.demo-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}
.demo-top > span:last-child {
  font-size: 17px;
  color: #315047;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.demo-top small {
  font-size: 14px;
  color: #5a7061;
}
.demo-transcript {
  font-size: clamp(26px, 2.55vw, 38px);
  line-height: 1.7;
  letter-spacing: -1px;
  margin-top: 46px;
  min-height: 160px;
  color: #2d453e;
}
.demo-transcript span {
  padding: 1px 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 4px;
}
.demo-callsign {
  color: #264faa;
  background: #eaf0fe;
}
.demo-altitude,
.demo-heading {
  background: #edf3d8;
  color: #486027;
}
.demo-pressure {
  background: #f8e7cf;
  color: #92561d;
}
.demo-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font: 400 14px/1.5 var(--mono);
  color: #5a6e61;
  margin-top: 31px;
}
.demo-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.demo-legend i {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  display: block;
}
.legend-blue {
  background: #4066bc;
}
.legend-green {
  background: #728d48;
}
.legend-orange {
  background: #bc8250;
}
.demo-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 30px;
  gap: 15px;
}
.demo-bottom > span:last-child {
  font: 400 14px/1.5 var(--mono);
  color: #627767;
}
.demo-bottom .mini-wave {
  gap: 3px;
  height: 20px;
  color: #71907d;
  transform: scaleY(0.7);
  transform-origin: left center;
}
.features-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 112px;
}
.feature-card {
  min-width: 0;
}
.feature-visual {
  height: 214px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 26px;
}
.feature-card > .eyebrow {
  font-size: 12px;
  color: #627260;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-size: 29px;
  line-height: 1.16;
}
.feature-card > p:last-child {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 14px;
  max-width: 330px;
}
.offline-visual {
  background: #eaf0e2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offline-device {
  width: 76px;
  height: 98px;
  background: #fafbf5;
  border: 1px solid #bdcfb4;
  border-radius: 17px;
  box-shadow: 0 6px 14px #65795816;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  z-index: 1;
  transform: rotate(-8deg);
}
.offline-device .icon {
  width: 29px;
  height: 29px;
  color: #4c6c45;
}
.offline-device span {
  font: 400 12px/1.5 var(--mono);
  letter-spacing: 0.5px;
  color: #4c6442;
}
.offline-orbit {
  width: 270px;
  height: 270px;
  border: 1px solid #b7c9ac70;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.offline-orbit.inner {
  width: 188px;
  height: 188px;
}
.offline-chip {
  position: absolute;
  bottom: 30px;
  right: 20px;
  font: 400 12px/1.5 var(--mono);
  letter-spacing: 0.5px;
  color: #48613e;
  padding: 7px 9px;
  background: #f7f9ee;
  border: 1px solid #c5d1b8;
  border-radius: 4px;
  z-index: 2;
}
.offline-point {
  width: 7px;
  height: 7px;
  background: #92a568;
  position: absolute;
  border: 2px solid #e9f1e1;
  border-radius: 50%;
  top: 34px;
  left: 23%;
}
.history-visual {
  background: #edf0f6;
  padding: 36px 23px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
}
.log-line {
  background: #fff;
  border: 1px solid #d7dfe9;
  border-radius: 7px;
  padding: 11px 10px;
  box-shadow: 0 3px 5px #2c355705;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: rotate(-3deg);
}
.log-line:nth-child(2) {
  transform: translateX(8px) rotate(-3deg);
}
.log-line > span {
  font: 400 12px/1.5 var(--mono);
  color: #64718b;
}
.log-line p {
  font-size: 12px;
  line-height: 1.4;
  color: #48617b;
  white-space: nowrap;
}
.log-line p b {
  font-weight: 500;
  color: #305394;
}
.log-line .icon {
  margin-left: auto;
  width: 10px;
  height: 10px;
  color: #548a60;
}
.language-visual {
  background: #f1ede4;
}
.language-word {
  position: absolute;
  font-family: var(--mono);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -1.3px;
  border: 1px solid #d4cbb7;
  padding: 10px 16px;
  border-radius: 5px;
  background: #faf8f2;
  box-shadow: 0 3px 5px #453c1e05;
  color: #756548;
}
.word-one {
  top: 28px;
  left: 33px;
  transform: rotate(-8deg);
}
.word-two {
  top: 78px;
  right: 24px;
  transform: rotate(7deg);
  background: #e9eddc;
  color: #527047;
  border-color: #c5d0b3;
}
.word-three {
  top: 128px;
  left: 24px;
  transform: rotate(-5deg);
}
.language-caption {
  position: absolute;
  bottom: 15px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font: 400 12px/1.5 var(--mono);
  letter-spacing: 0.3px;
  color: #75664d;
}
.language-caption .icon {
  width: 10px;
  height: 10px;
}
.how-section {
  background: #edf1e7;
  border-top: 1px solid #dfe5d8;
  border-bottom: 1px solid #dfe5d8;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #bdcbb7;
  padding-top: 19px;
  color: #526647;
}
.step-top > span {
  font: 400 14px/1.5 var(--mono);
}
.step-top .icon {
  width: 21px;
  height: 21px;
}
.step h3 {
  font-size: 26px;
  margin-top: 39px;
}
.step > p {
  font-size: 16px;
  line-height: 1.85;
  color: #566650;
  margin-top: 16px;
  max-width: 330px;
}
.safety-note {
  margin-top: 54px;
  border-top: 1px solid #cdd8c4;
  padding-top: 23px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 100%;
}
.safety-note .icon {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: #5b7151;
}
.safety-note p {
  font-size: 14px;
  line-height: 1.9;
  color: #5e6f54;
  max-width: 900px;
}
.safety-note strong {
  font-weight: 600;
  color: #344b2d;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
}
.faq-heading > p:not(.eyebrow) {
  font-size: 16px;
  margin-top: 25px;
  color: var(--muted);
}
.faq-heading h2 em {
  color: #557966;
}
.faq-plane {
  width: 150px;
  height: 135px;
  margin-top: 30px;
  margin-left: 30px;
  color: #82987b;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 25px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #647b65;
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  padding-bottom: 24px;
  padding-right: 28px;
}
.inline-button {
  display: inline;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inline-button:hover {
  text-decoration-thickness: 2px;
}
.waitlist-section {
  padding-bottom: 88px;
}
.waitlist-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #173d40;
  border: 1px solid #214d47;
  border-radius: 17px;
  padding: 62px 68px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: center;
  color: #eff2e8;
}
.waitlist-lines {
  position: absolute;
  z-index: -1;
  border: 1px solid #c8dfc11a;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
}
.waitlist-lines:before,
.waitlist-lines:after {
  content: "";
  position: absolute;
  inset: -80px;
  border: 1px solid #c8dfc116;
  border-radius: 50%;
}
.waitlist-lines:after {
  inset: -160px;
}
.waitlist-copy > .eyebrow {
  color: #c1d6b5;
  font-size: 12px;
  letter-spacing: 1px;
}
.waitlist-copy .status-dot {
  background: var(--lime);
  box-shadow: none;
}
.waitlist-copy h2 {
  font-size: 63px;
  margin-top: 23px;
  letter-spacing: -2px;
}
.waitlist-copy h2 em {
  color: var(--lime);
}
.waitlist-copy > p:not(.eyebrow) {
  color: #b5cdc0;
  font-size: 16px;
  margin-top: 22px;
  line-height: 1.9;
}
#waitlist-form {
  margin-top: 29px;
}
.form-row {
  display: flex;
  gap: 7px;
  padding: 6px;
  border: 1px solid #56746a;
  background: #244c47;
  border-radius: 9px;
  max-width: 530px;
}
.form-row:focus-within {
  outline: 2px solid #b1d28c;
  outline-offset: 3px;
}
.form-row input {
  min-width: 0;
  flex: 1;
  width: 100%;
  background: none;
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 12px;
  font-size: 16px;
  outline: none;
}
.form-row input::placeholder {
  color: #c1d2c7;
}
.form-row input:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 0;
}
.form-row .button {
  min-height: 45px;
  padding: 12px 16px;
  font-size: 16px;
  gap: 14px;
  border-radius: 5px;
}
.form-row .icon {
  width: 15px;
  height: 15px;
}
#form-note {
  font-size: 14px;
  line-height: 1.8;
  color: #abc6b7;
  max-width: 460px;
  margin-top: 12px;
}
.form-status {
  font-size: 16px;
  line-height: 1.7;
  color: #e0f2be;
}
.form-status:not(:empty) {
  margin-top: 14px;
}
.form-status[data-state="error"] {
  color: #ffd3bc;
}
.form-status[data-state="success"] {
  color: #e4f5cd;
}
.boarding-pass {
  background: #f3f3e7;
  color: #243f34;
  border-radius: 10px;
  padding: 26px 26px 25px;
  transform: rotate(7deg);
  box-shadow: 12px 20px 25px #0523264a;
  max-width: 292px;
  width: 100%;
  justify-self: center;
  position: relative;
}
.pass-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  letter-spacing: -0.6px;
  font-size: 15px;
}
.pass-header .icon {
  margin-left: auto;
  width: 20px;
  height: 20px;
}
.pass-caption {
  font: 400 12px/1.5 var(--mono);
  letter-spacing: 0.8px;
  color: #617058;
  margin-top: 35px;
}
.pass-destination {
  font: italic 62px/1.2 var(--serif);
  letter-spacing: -2px;
  color: #3e6540;
}
.pass-route {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 400 12px/1.5 var(--mono);
  margin-top: 19px;
  color: #526647;
}
.pass-route-line {
  height: 1px;
  border-top: 1px dashed #b2bea1;
  flex: 1;
}
.pass-route .icon {
  width: 19px;
  height: 19px;
  transform: rotate(45deg);
}
.pass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 29px;
}
.pass-grid span {
  font: 400 12px/1.5 var(--mono);
  color: #526647;
  letter-spacing: 0.6px;
  display: block;
}
.pass-grid strong {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  display: block;
  margin-top: 4px;
}
.pass-divider {
  position: relative;
  border-top: 1px dashed #bcc6ac;
  margin: 25px -26px 22px;
}
.pass-divider:before,
.pass-divider:after {
  content: "";
  position: absolute;
  left: -7px;
  top: -8px;
  width: 15px;
  height: 15px;
  background: #173d40;
  border-radius: 50%;
}
.pass-divider:after {
  left: auto;
  right: -7px;
}
.pass-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font: 400 12px/1.8 var(--mono);
  letter-spacing: 0.3px;
  color: #526647;
}
.barcode {
  height: 28px;
  width: 83px;
  display: block;
  background: repeating-linear-gradient(
    90deg,
    #65745a 0px,
    #65745a 1px,
    transparent 1px,
    transparent 3px,
    #65745a 3px,
    #65745a 5px,
    transparent 5px,
    transparent 6px,
    #65745a 6px,
    #65745a 7px,
    transparent 7px,
    transparent 11px
  );
  opacity: 0.8;
}
.site-footer {
  padding-bottom: 28px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  gap: 20px;
}
.footer-top .brand {
  font-size: 20px;
}
.footer-top p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  color: #4f6b56;
}
.back-top {
  display: flex;
  gap: 17px;
  align-items: center;
  font-size: 16px;
}
.back-top span {
  font-size: 20px;
}
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: #5f7367;
}
.footer-bottom .inline-button {
  font-size: 14px;
}
dialog {
  border: 1px solid #c9d5c7;
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  padding: 30px;
  width: min(560px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  margin: auto;
  box-shadow: 0 30px 90px #0b20265c;
}
dialog::backdrop {
  background: #0b252ca8;
  backdrop-filter: blur(5px);
}
.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.dialog-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  color: var(--ink);
  font-size: 25px;
}
.dialog-head .eyebrow {
  font-size: 12px;
  color: #5b765d;
}
dialog h2 {
  font-size: 39px;
  letter-spacing: -1.5px;
  margin-top: 24px;
}
dialog p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 20px;
}
dialog .dialog-done {
  margin-top: 26px;
  min-height: 46px;
  font-size: 14px;
}
.noscript-note {
  font-size: 14px;
  margin-top: 12px;
}
@media (min-width: 1600px) {
  .hero {
    gap: 76px;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero h1 {
    font-size: 102px;
  }
}
@media (max-width: 1199px) {
  .shell {
    width: calc(100% - 72px);
  }
  .hero {
    gap: 32px;
  }
  .hero h1 {
    font-size: 76px;
    letter-spacing: -4px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    font-size: 16px;
    padding-inline: 18px;
    gap: 15px;
  }
  .text-link {
    font-size: 16px;
  }
  .hero-footnote {
    margin-top: 42px;
  }
  .hero-description {
    font-size: 18px;
  }
  .desktop-break {
    display: none;
  }
  .section-intro {
    gap: 45px;
  }
  .section-intro > p {
    max-width: 310px;
    font-size: 16px;
  }
  .demo-side {
    padding: 30px 23px;
  }
  .demo-main {
    padding: 30px;
  }
  .demo-transcript {
    font-size: 29px;
  }
  .demo-side h3 {
    font-size: 27px;
  }
  .feature-visual {
    height: 200px;
  }
  .features-section {
    gap: 20px;
  }
  .feature-card h3 {
    font-size: 27px;
  }
  .history-visual {
    padding: 30px 12px;
  }
  .log-line {
    gap: 6px;
    padding: 11px 8px;
  }
  .log-line p {
    font-size: 12px;
  }
  .log-line > span {
    font-size: 12px;
  }
  .language-word {
    font-size: 19px;
  }
  .waitlist-card {
    padding: 55px 44px;
    gap: 40px;
  }
  .waitlist-copy h2 {
    font-size: 57px;
  }
  .boarding-pass {
    max-width: 255px;
    padding-inline: 22px;
  }
  .pass-divider {
    margin-inline: -22px;
  }
  .form-row .button {
    padding-inline: 12px;
    font-size: 16px;
    gap: 8px;
  }
  .faq-section {
    gap: 60px;
  }
  .trust-strip > span {
    font-size: 12px;
  }
  .trust-strip > div {
    font-size: 14px;
    gap: 8px;
  }
  .site-header nav {
    margin-left: 0;
    gap: 27px;
  }
}
@media (max-width: 959px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .hero h1 {
    font-size: 63px;
    letter-spacing: -3.3px;
  }
  .hero .eyebrow {
    font-size: 12px;
    letter-spacing: 0.6px;
    gap: 7px;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 23px;
  }
  .hero-actions .button {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 16px;
  }
  .text-link {
    padding: 10px 0;
  }
  .hero-footnote {
    margin-top: 29px;
    font-size: 12px;
    gap: 12px;
  }
  .release-note {
    font-size: 14px;
    gap: 6px;
    margin-top: 11px;
  }
  .section {
    padding-block: 86px;
  }
  .section-intro {
    gap: 36px;
  }
  .section-intro h2 {
    font-size: 43px;
    letter-spacing: -1.7px;
  }
  .section-intro > p {
    max-width: 270px;
  }
  .demo-panel {
    grid-template-columns: 34% 66%;
  }
  .demo-side {
    padding: 28px 20px;
  }
  .demo-side h3 {
    font-size: 23px;
  }
  .demo-side > p {
    font-size: 16px;
  }
  .demo-side > .mono-label {
    font-size: 12px;
  }
  .demo-main {
    padding: 27px;
  }
  .demo-transcript {
    font-size: 26px;
    min-height: 175px;
    line-height: 1.7;
    margin-top: 42px;
  }
  .demo-top {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  .demo-top > span:last-child {
    font-size: 14px;
  }
  .demo-legend {
    gap: 11px;
    font-size: 14px;
    margin-top: 28px;
  }
  .demo-bottom > span:last-child {
    font-size: 14px;
    max-width: 150px;
    text-align: right;
  }
  .features-section {
    padding-bottom: 86px;
    gap: 20px;
  }
  .feature-card h3 {
    font-size: 23px;
    letter-spacing: -0.6px;
  }
  .feature-card > p:last-child {
    font-size: 16px;
  }
  .feature-card > .eyebrow {
    font-size: 12px;
  }
  .feature-visual {
    height: 180px;
  }
  .language-word {
    font-size: 15px;
    padding: 9px 12px;
  }
  .word-one {
    left: 23px;
    top: 27px;
  }
  .word-two {
    right: 14px;
    top: 65px;
  }
  .word-three {
    left: 15px;
    top: 108px;
  }
  .language-caption {
    font-size: 12px;
    right: 10px;
    bottom: 13px;
    gap: 3px;
  }
  .history-visual {
    padding: 26px 8px;
    gap: 8px;
  }
  .log-line {
    padding: 10px 7px;
    gap: 6px;
  }
  .log-line > span {
    display: none;
  }
  .log-line p {
    font-size: 12px;
  }
  .offline-chip {
    font-size: 12px;
    right: 12px;
    bottom: 23px;
  }
  .steps {
    gap: 30px;
  }
  .step h3 {
    font-size: 24px;
  }
  .step > p {
    font-size: 16px;
  }
  .faq-section {
    gap: 44px;
    grid-template-columns: 1fr 1.3fr;
  }
  .faq-heading h2 {
    font-size: 43px;
    letter-spacing: -1.7px;
  }
  .faq-heading .eyebrow {
    font-size: 12px;
    letter-spacing: 0.7px;
  }
  .faq-list summary {
    font-size: 14px;
    padding-block: 23px;
  }
  .faq-list details > p {
    font-size: 16px;
  }
  .waitlist-card {
    grid-template-columns: 1.55fr 1fr;
    padding: 48px 32px;
    gap: 30px;
  }
  .waitlist-copy h2 {
    font-size: 50px;
  }
  .waitlist-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .waitlist-copy > .eyebrow {
    font-size: 12px;
  }
  .form-row {
    flex-wrap: wrap;
    background: none;
    border: 0;
    padding: 0;
    gap: 9px;
  }
  .form-row input {
    flex: auto;
    min-height: 47px;
    padding: 13px;
    border: 1px solid #648576;
    background: #244c47;
    border-radius: 6px;
    font-size: 16px;
  }
  .form-row .button {
    width: 100%;
    font-size: 16px;
    gap: 25px;
  }
  .form-row:focus-within {
    outline: none;
  }
  #form-note {
    font-size: 14px;
  }
  .boarding-pass {
    padding: 22px 17px;
    max-width: 220px;
    transform: rotate(6deg);
  }
  .pass-header {
    font-size: 12px;
  }
  .pass-header img {
    width: 23px;
    height: 23px;
  }
  .pass-destination {
    font-size: 51px;
  }
  .pass-grid {
    gap: 10px;
  }
  .pass-grid strong {
    font-size: 12px;
  }
  .pass-divider {
    margin-inline: -17px;
  }
  .pass-bottom {
    font-size: 12px;
  }
  .barcode {
    width: 64px;
  }
  .footer-top p {
    font-size: 20px;
  }
  .footer-bottom {
    font-size: 14px;
  }
  .trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .trust-strip > span {
    grid-column: 1/-1;
    text-align: center;
    font-size: 12px;
  }
  .trust-strip > div {
    justify-content: center;
    font-size: 14px;
  }
}
@media (max-width: 699px) {
  html {
    scroll-padding-top: 24px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 75px;
  }
  .brand {
    font-size: 21px;
    gap: 7px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .site-header nav {
    display: none;
  }
  .site-header .button-small {
    font-size: 14px;
    min-height: 39px;
    padding: 10px 13px;
    gap: 12px;
  }
  .site-header .button-small .icon {
    width: 15px;
    height: 15px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 30px;
    padding-bottom: 31px;
  }
  .hero-copy {
    padding-top: 9px;
    padding-bottom: 0;
  }
  .hero .eyebrow {
    font-size: 12px;
    letter-spacing: 0.8px;
  }
  .hero h1 {
    font-size: 76px;
    letter-spacing: -4px;
    margin-top: 26px;
    line-height: 0.99;
  }
  .hero h1 em {
    letter-spacing: -3px;
  }
  .hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 25px;
    max-width: 440px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 25px;
    margin-top: 26px;
  }
  .hero-actions .button {
    min-height: 51px;
    font-size: 16px;
    padding: 14px 18px;
    gap: 18px;
  }
  .text-link {
    font-size: 16px;
    gap: 7px;
  }
  .release-note {
    font-size: 14px;
    gap: 8px;
    margin-top: 17px;
  }
  .hero-footnote {
    display: none;
  }
  .trust-strip {
    padding-block: 22px;
    column-gap: 8px;
    row-gap: 16px;
  }
  .trust-strip > span {
    font-size: 12px;
    letter-spacing: 0.8px;
  }
  .trust-strip > div {
    font-size: 14px;
    gap: 6px;
    line-height: 1.4;
  }
  .trust-strip .icon {
    width: 14px;
    height: 14px;
  }
  .section {
    padding-block: 72px;
  }
  .section-intro {
    display: block;
    margin-bottom: 31px;
  }
  .section-intro h2 {
    font-size: 43px;
    letter-spacing: -1.7px;
  }
  .section-eyebrow {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .section-intro > p {
    font-size: 16px;
    max-width: 400px;
    padding: 0;
    margin-top: 22px;
  }
  .demo-panel {
    grid-template-columns: 1fr;
    border-radius: 11px;
  }
  .demo-side {
    padding: 25px 24px 20px;
    border-right: 0;
    border-bottom: 1px solid #d7dfd5;
  }
  .demo-side > .mono-label {
    font-size: 12px;
  }
  .demo-side h3 {
    font-size: 26px;
    margin-top: 16px;
  }
  .demo-side h3 br {
    display: none;
  }
  .demo-side > p {
    font-size: 16px;
    margin-top: 11px;
    max-width: 350px;
  }
  .scenario-tabs {
    flex-direction: row;
    gap: 5px;
    margin-top: 22px;
  }
  .scenario-tabs button {
    flex: 1;
    justify-content: center;
    gap: 7px;
    padding: 11px 7px;
    font-size: 14px;
    min-height: 42px;
  }
  .scenario-tabs button span {
    font-size: 16px;
  }
  .scenario-tabs .icon {
    display: none;
  }
  .demo-main {
    padding: 26px 23px 24px;
    min-height: 366px;
  }
  .demo-top {
    font-size: 14px;
    gap: 7px;
  }
  .demo-top > span:first-child {
    gap: 7px;
  }
  .demo-top > span:last-child {
    font-size: 14px;
  }
  .demo-top small {
    font-size: 14px;
  }
  .demo-transcript {
    font-size: 27px;
    min-height: 169px;
    line-height: 1.65;
    margin-top: 28px;
    letter-spacing: -0.6px;
  }
  .demo-transcript span {
    padding: 1px 4px;
  }
  .demo-legend {
    margin-top: 22px;
    gap: 12px;
    font-size: 14px;
  }
  .demo-legend span {
    gap: 5px;
  }
  .demo-bottom {
    padding-top: 21px;
  }
  .demo-bottom > span:last-child {
    font-size: 14px;
    max-width: 160px;
  }
  .features-section {
    grid-template-columns: 1fr;
    gap: 37px;
    padding-bottom: 73px;
  }
  .feature-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .feature-visual {
    height: 230px;
    margin-bottom: 25px;
  }
  .feature-card > .eyebrow {
    font-size: 12px;
    margin-bottom: 13px;
  }
  .feature-card h3 {
    font-size: 29px;
    letter-spacing: -0.8px;
  }
  .feature-card > p:last-child {
    font-size: 16px;
    max-width: 410px;
    margin-top: 13px;
  }
  .offline-chip {
    font-size: 12px;
    right: 30px;
    bottom: 31px;
  }
  .offline-device {
    width: 88px;
    height: 110px;
  }
  .offline-device .icon {
    width: 35px;
    height: 35px;
  }
  .offline-device span {
    font-size: 12px;
  }
  .offline-orbit {
    width: 320px;
    height: 320px;
  }
  .offline-orbit.inner {
    width: 220px;
    height: 220px;
  }
  .history-visual {
    padding: 38px 28px;
    gap: 11px;
  }
  .log-line {
    padding: 13px 13px;
    gap: 11px;
  }
  .log-line > span {
    display: block;
    font-size: 12px;
  }
  .log-line p {
    font-size: 12px;
  }
  .log-line .icon {
    width: 13px;
    height: 13px;
  }
  .language-word {
    font-size: 26px;
    padding: 11px 17px;
  }
  .word-one {
    left: 42px;
    top: 28px;
  }
  .word-two {
    right: 35px;
    top: 87px;
  }
  .word-three {
    left: 30px;
    top: 145px;
  }
  .language-caption {
    font-size: 12px;
    bottom: 18px;
    right: 20px;
    gap: 5px;
  }
  .language-caption .icon {
    width: 12px;
    height: 12px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 31px;
    margin-top: 33px;
  }
  .step {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 18px;
  }
  .step-top {
    grid-column: 1;
    grid-row: 1/3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 21px;
    border: 0;
    border-right: 1px solid #c1cfb9;
    padding: 4px 17px 0 0;
  }
  .step-top > span {
    font-size: 14px;
  }
  .step-top .icon {
    width: 20px;
    height: 20px;
  }
  .step h3 {
    font-size: 27px;
    margin-top: 0;
  }
  .step > p {
    font-size: 16px;
    max-width: none;
    margin-top: 13px;
  }
  .safety-note {
    margin-top: 34px;
    gap: 10px;
    padding-top: 22px;
  }
  .safety-note p {
    font-size: 14px;
    line-height: 1.85;
  }
  .faq-section {
    display: block;
  }
  .faq-heading h2 {
    font-size: 45px;
  }
  .faq-heading .eyebrow {
    font-size: 12px;
  }
  .faq-heading > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 16px;
  }
  .faq-plane {
    display: none;
  }
  .faq-list {
    margin-top: 30px;
  }
  .faq-list summary {
    font-size: 14px;
    min-height: 72px;
    gap: 24px;
    padding-block: 22px;
  }
  .faq-list details > p {
    font-size: 16px;
    padding-right: 23px;
  }
  .waitlist-section {
    padding-bottom: 53px;
  }
  .waitlist-card {
    grid-template-columns: 1fr;
    padding: 33px 26px 42px;
    gap: 41px;
    border-radius: 12px;
  }
  .waitlist-copy > .eyebrow {
    font-size: 12px;
    letter-spacing: 0.7px;
  }
  .waitlist-copy h2 {
    font-size: 49px;
    letter-spacing: -1.8px;
    margin-top: 24px;
  }
  .waitlist-copy > p:not(.eyebrow) {
    font-size: 16px;
    margin-top: 20px;
  }
  .waitlist-copy > p:not(.eyebrow) br {
    display: none;
  }
  .form-row {
    gap: 10px;
  }
  #waitlist-form {
    margin-top: 24px;
  }
  .form-row input {
    min-height: 51px;
    font-size: 16px;
    padding: 14px;
  }
  .form-row .button {
    min-height: 48px;
    font-size: 16px;
  }
  #form-note {
    font-size: 14px;
    line-height: 1.85;
  }
  .boarding-pass {
    max-width: 250px;
    transform: rotate(5deg);
    padding: 22px 24px;
  }
  .pass-header {
    font-size: 14px;
  }
  .pass-header img {
    width: 26px;
    height: 26px;
  }
  .pass-caption {
    margin-top: 24px;
    font-size: 12px;
  }
  .pass-destination {
    font-size: 57px;
  }
  .pass-grid {
    margin-top: 21px;
    gap: 20px;
  }
  .pass-grid strong {
    font-size: 12px;
  }
  .pass-grid span {
    font-size: 12px;
  }
  .pass-divider {
    margin: 21px -24px 20px;
  }
  .pass-bottom {
    font-size: 12px;
  }
  .barcode {
    width: 78px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 21px;
    padding-bottom: 27px;
  }
  .footer-top p {
    font-size: 22px;
    grid-row: 2;
    grid-column: 1/-1;
  }
  .footer-top .brand {
    font-size: 19px;
  }
  .footer-top .brand img {
    width: 27px;
    height: 27px;
  }
  .back-top {
    font-size: 16px;
    gap: 13px;
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 13px;
    font-size: 14px;
    padding-top: 22px;
  }
  .footer-bottom > span:nth-child(2) {
    grid-row: 2;
    grid-column: 1/-1;
    font-size: 14px;
  }
  .footer-bottom .inline-button {
    font-size: 14px;
  }
  .site-footer {
    padding-bottom: 26px;
  }
  dialog {
    padding: 23px;
  }
  dialog h2 {
    font-size: 34px;
  }
}
@media (max-width: 374px) {
  .shell {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    padding-inline: 15px;
    gap: 11px;
  }
  .text-link {
    font-size: 16px;
    gap: 6px;
  }
  .trust-strip > div {
    font-size: 14px;
    gap: 4px;
  }
  .trust-strip .icon {
    width: 13px;
    height: 13px;
  }
  .section-intro h2 {
    font-size: 39px;
  }
  .demo-main {
    padding: 24px 20px;
  }
  .demo-transcript {
    font-size: 25px;
  }
  .demo-side {
    padding-inline: 20px;
  }
  .demo-legend {
    gap: 9px;
    font-size: 14px;
  }
  .demo-bottom > span:last-child {
    max-width: 134px;
  }
  .waitlist-card {
    padding-inline: 23px;
  }
  .waitlist-copy h2 {
    font-size: 44px;
  }
  .history-visual {
    padding-inline: 20px;
  }
  .log-line p {
    font-size: 12px;
  }
  .language-word {
    font-size: 24px;
  }
  .word-two {
    right: 22px;
  }
}
@media (max-width: 959px) {
  .form-row input {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: enter 0.7s ease-out both;
  }
  .demo-transcript.is-changing {
    animation: transmission 0.35s ease-out;
  }
  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes transmission {
    from {
      opacity: 0.3;
      transform: translateY(5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Readable type stays readable at every breakpoint; layouts wrap instead. */
.hero-description {
  max-width: 500px;
}
.hero-actions,
.release-note {
  flex-wrap: wrap;
  row-gap: 12px;
}
.hero-art {
  height: auto;
  min-height: 620px;
}
.phone {
  width: min(320px, 100%);
  height: auto;
}
.phone-screen {
  height: auto;
  padding: 12px 18px 28px;
}
.phone-topline {
  margin-bottom: 14px;
}
.phone-wave {
  height: 34px;
}
.phone-message p {
  line-height: 1.6;
}
.phone-history p {
  line-height: 1.5;
}
.phone-values strong {
  font-size: 22px;
}
.phone-bottom {
  margin-top: 12px;
}
.phone-home {
  bottom: 9px;
}
.demo-top,
.demo-bottom {
  flex-wrap: wrap;
  gap: 12px 20px;
}
.demo-legend {
  gap: 12px 20px;
}
.demo-bottom > span:last-child {
  max-width: none;
}
.feature-visual {
  height: 260px;
}
.offline-device {
  width: 102px;
  height: 124px;
}
.offline-device span {
  text-align: center;
}
.log-line p {
  white-space: normal;
  min-width: 0;
}
.log-line > span {
  flex-shrink: 0;
}
.log-line .icon {
  flex-shrink: 0;
}
.language-caption {
  left: 18px;
  right: 18px;
  justify-content: center;
  text-align: center;
}
.footer-bottom {
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .features-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
    width: 100%;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 767px) {
  .hero-art {
    min-height: 0;
  }
  .header-inner {
    gap: 12px;
  }
  .site-header .button-small {
    padding-inline: 12px;
    gap: 12px;
    min-height: 44px;
  }
  .trust-strip {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .trust-strip > span {
    grid-column: auto;
  }
  .trust-strip > div {
    justify-content: flex-start;
  }
  .scenario-tabs {
    flex-direction: column;
    gap: 6px;
  }
  .scenario-tabs button {
    justify-content: flex-start;
    gap: 12px;
    padding: 13px 14px;
  }
  .scenario-tabs .icon {
    display: block;
  }
  .demo-bottom > span:last-child {
    max-width: none;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
  }
  .footer-bottom > span:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 374px) {
  .site-header .button-small .icon {
    display: none;
  }
}
