@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;600;700;800;900&family=JetBrains+Mono:wght@200;400;500;600;700&family=Mohave:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");

:root {
  --bg: #f4f4f2;
  --paper: #f7f7f7;
  --ink: #050505;
  --muted: #6f6f6d;
  --line: rgba(9, 9, 9, 0.12);
  --red: #df3337;
  --white: #ffffff;
  --header-height: 96px;
  --header-glass-opacity: 0.1;
  --header-glass-blur: 10px;
  --header-glass-saturation: 100%;
  --theme-transition: 240ms ease;
  --page-gutter: clamp(24px, 6vw, 112px);
  --body-font: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono-font: "JetBrains Mono", "Noto Sans JP", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --display-font: "Mohave", "Inter", "Noto Sans JP", sans-serif;
}

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

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 16px;
  letter-spacing: -0.018em;
  line-height: 1.08;
  text-rendering: geometricPrecision;
}

html[lang="ja"] body {
  letter-spacing: 0;
  line-height: 1.08;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.page {
  width: 100%;
  background: var(--paper);
}

.grid-plane {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(9, 9, 9, 0.04);
  background: transparent;
  transition: border-color var(--theme-transition);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(247, 247, 247, var(--header-glass-opacity));
  backdrop-filter: saturate(var(--header-glass-saturation)) blur(var(--header-glass-blur));
  -webkit-backdrop-filter: saturate(var(--header-glass-saturation)) blur(var(--header-glass-blur));
  transition:
    background-color var(--theme-transition),
    backdrop-filter var(--theme-transition),
    -webkit-backdrop-filter var(--theme-transition);
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 var(--page-gutter);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 64px;
  height: 32px;
}

.brand-mark img {
  width: 64px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .brand-mark img {
  filter: none;
  transition: filter var(--theme-transition);
}

.site-header .button--dark {
  border-color: var(--ink);
  background-color: var(--ink);
  color: var(--white);
}

.site-header .locale-button {
  border-color: var(--ink);
  background-color: rgba(247, 247, 247, 0.9);
  color: var(--ink);
}

.site-header .button--dark,
.site-header .locale-button {
  transition:
    border-color var(--theme-transition),
    background-color var(--theme-transition),
    color var(--theme-transition);
}

.site-header[data-header-theme="dark"] {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header[data-header-theme="dark"]::before {
  background-color: rgba(0, 0, 0, calc(var(--header-glass-opacity) + 0.08));
}

.site-header[data-header-theme="dark"] .brand-mark img {
  filter: brightness(0) invert(1);
}

.site-header[data-header-theme="dark"] .button--dark,
.site-header[data-header-theme="dark"] .locale-button {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--ink);
}

.button,
.locale-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid var(--ink);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 100;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.button {
  min-width: 160px;
  padding: 0 22px;
}

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

.button--light {
  gap: 10px;
  background: transparent;
  color: var(--ink);
}

.button--light::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.locale-button {
  min-width: 32px;
  padding: 0 9px;
  background: var(--paper);
}

.locale-button::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background-color: currentColor;
  mask: url("../img/globe.svg") center / contain no-repeat;
  -webkit-mask: url("../img/globe.svg") center / contain no-repeat;
}

.site-header .locale-button::before {
  margin-right: 0;
}

.site-header .locale-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: calc(100svh - var(--header-height));
  padding: 72px var(--page-gutter) 48px;
  background: var(--paper);
}

.hero-lockup {
  align-self: center;
  justify-self: center;
  display: grid;
  justify-items: center;
  transform: translateY(-24px);
}

.hero-logo {
  width: clamp(190px, 20vw, 293px);
  height: auto;
}

.wordmark {
  display: grid;
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
}

.wordmark strong {
  display: block;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.wordmark span {
  display: block;
  margin-top: 9px;
  font-family: var(--mono-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.45em;
  line-height: 1;
  transform: translateX(4px);
}

.hero-lower {
  display: grid;
  justify-items: center;
  gap: 30px;
}

.hero-tagline {
  margin: 0;
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 100;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

html[lang="ja"] .hero-tagline {
  letter-spacing: 0;
}

.scroll-cue {
  position: relative;
  width: 24px;
  height: 24px;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.intro {
  padding: clamp(96px, 12vw, 180px) var(--page-gutter);
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 10vw, 180px);
}

.intro-column {
  display: grid;
  gap: clamp(36px, 4vw, 72px);
}

.intro p {
  margin: 0;
  max-width: 480px;
  font-size: clamp(26px, 2.8vw, 48px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

html[lang="ja"] .intro p {
  letter-spacing: 0;
}

.product-showcase {
  padding: clamp(96px, 10vw, 168px) var(--page-gutter) var(--page-gutter);
  background: var(--white);
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 8vw, 120px);
  margin-bottom: clamp(38px, 4vw, 72px);
}

.product-title {
  margin: 0;
  font-size: clamp(56px, 6vw, 100px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.product-meta {
  margin: clamp(20px, 2.2vw, 40px) 0 0;
  font-family: var(--display-font);
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

html[lang="ja"] .product-meta {
  letter-spacing: 0;
}

.product-artwork {
  margin: 0;
}

.product-artwork img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-artwork figcaption {
  margin-top: clamp(16px, 1.2vw, 24px);
  color: #aaaaaa;
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
}

.product-quote {
  max-width: 460px;
  margin: clamp(96px, 14vw, 300px) auto 0;
  text-align: center;
}

.product-quote blockquote {
  margin: 0;
  font-size: clamp(18px, 3vw, 36px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.product-quote figcaption {
  margin-top: clamp(20px, 1.8vw, 34px);
  color: #b7b7b7;
  font-size: clamp(14px, 1.2vw, 23px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

html[lang="ja"] .product-quote blockquote {
  font-style: normal;
  letter-spacing: 0;
}

.product-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(96px, 14vw, 260px);
}

.product-media-item {
  margin: 0;
  overflow: hidden;
  background: #e8e8e8;
  aspect-ratio: 5 / 4;
}

.product-media-item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 11 / 6;
}

.product-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autonomy-section {
  overflow: hidden;
  background: #000;
  color: var(--white);
}

.autonomy-panel {
  position: relative;
  overflow: hidden;
  background: #000;
}

.autonomy-panel--aircraft {
  display: grid;
  place-items: center;
  min-height: clamp(720px, 86svh, 980px);
  padding: clamp(120px, 12vw, 220px) var(--page-gutter);
}

.autonomy-panel--aircraft::after,
.autonomy-panel--map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.autonomy-panel--aircraft::after {
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0) 0 34%, rgba(0, 0, 0, 0.52) 72%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.68));
}

.autonomy-aircraft {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(1120px, 82vw);
  max-width: none;
  height: auto;
  opacity: 0.88;
  transform: translate(-50%, -45%);
}

.autonomy-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  text-align: center;
  transform: translateY(-4vh);
}

.autonomy-copy p {
  margin: 0;
  color: #f4f4f4;
  font-size: clamp(30px, 2.8vw, 48px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.14;
  text-wrap: balance;
}

.autonomy-copy p + p {
  margin-top: clamp(42px, 4.5vw, 72px);
}

html[lang="ja"] .autonomy-copy p {
  letter-spacing: 0;
}

.autonomy-panel--map {
  min-height: clamp(760px, 98svh, 1080px);
}

.autonomy-panel--map::after {
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, #000 100%),
    radial-gradient(circle at 50% 54%, rgba(0, 0, 0, 0) 0 38%, rgba(0, 0, 0, 0.48) 78%, rgba(0, 0, 0, 0.88) 100%);
}

.autonomy-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.autonomy-label {
  position: absolute;
  z-index: 2;
  margin: 0;
  font-family: var(--mono-font);
  font-size: clamp(20px, 2vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.autonomy-label--left {
  top: clamp(140px, 18vh, 240px);
  left: var(--page-gutter);
}

.autonomy-label--right {
  right: var(--page-gutter);
  bottom: clamp(80px, 11vh, 150px);
  text-align: right;
}

html[lang="ja"] .autonomy-label {
  letter-spacing: 0;
}

.site-footer {
  padding: clamp(56px, 4.8vw, 80px) var(--page-gutter) clamp(40px, 3.8vw, 58px);
  background: var(--paper);
}

.footer-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  min-height: clamp(260px, 21vw, 340px);
  column-gap: clamp(18px, 2vw, 32px);
}

.footer-brand {
  grid-column: 1 / span 2;
  align-self: start;
}

.footer-brand-link {
  display: inline-flex;
}

.footer-logo {
  width: clamp(120px, 10vw, 144px);
  height: auto;
}

.footer-links {
  grid-column: 9 / -1;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(104px, 1fr));
  width: min(100%, 390px);
  gap: clamp(22px, 2.8vw, 52px);
  align-self: start;
}

.footer-column h2 {
  margin: 0 0 clamp(16px, 1.7vw, 28px);
  font-family: var(--mono-font);
  font-size: clamp(11px, 0.78vw, 14px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: clamp(10px, 1vw, 17px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: #a8a8a8;
  font-family: var(--mono-font);
  font-size: clamp(10px, 0.72vw, 13px);
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2vw, 32px);
  align-items: end;
}

.footer-legal {
  grid-column: 1 / span 6;
}

.copyright {
  margin: 0 0 clamp(20px, 1.9vw, 32px);
  color: #ababab;
  font-family: var(--mono-font);
  font-size: clamp(12px, 0.72vw, 14px);
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2.5vw, 44px);
  font-family: var(--body-font);
  font-size: clamp(10px, 0.66vw, 12px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-actions {
  grid-column: 8 / span 5;
  display: flex;
  align-items: end;
  justify-content: end;
  gap: clamp(14px, 1.5vw, 26px);
}

.site-footer .button,
.site-footer .locale-button {
  min-height: clamp(32px, 2.4vw, 38px);
  font-size: clamp(10px, 0.66vw, 12px);
  font-weight: 600;
  letter-spacing: 0;
}

.site-footer .button {
  min-width: clamp(116px, 8.5vw, 146px);
}

.site-footer .button--light::after {
  width: 8px;
  height: 8px;
  transform: translateY(-1px) rotate(45deg);
}

.site-footer .locale-button {
  min-width: clamp(78px, 6vw, 94px);
  background: transparent;
}

.site-footer .locale-button::before {
  width: 14px;
  height: 14px;
  margin-right: 7px;
}

.subpage-main {
  background: var(--paper);
}

.subpage-hero {
  display: grid;
  align-content: end;
  min-height: calc(72svh - var(--header-height));
  padding: clamp(96px, 11vw, 176px) var(--page-gutter) clamp(64px, 8vw, 132px);
}

.subpage-kicker {
  margin: 0 0 clamp(30px, 3vw, 56px);
  font-family: var(--mono-font);
  font-size: clamp(15px, 1.2vw, 22px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.subpage-title {
  margin: 0;
  max-width: 1120px;
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.82;
}

.subpage-lead {
  max-width: 860px;
  margin: clamp(36px, 4.5vw, 78px) 0 0;
  font-size: clamp(28px, 3.5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

html[lang="ja"] .subpage-title,
html[lang="ja"] .subpage-lead {
  letter-spacing: 0;
}

.subpage-content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 56px);
  padding: 0 var(--page-gutter) clamp(112px, 12vw, 200px);
}

.subpage-card-grid {
  grid-column: 5 / span 8;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 5vw, 96px);
  border-top: 1px solid var(--line);
}

.subpage-card {
  display: grid;
  align-content: start;
  min-height: 180px;
  padding: clamp(28px, 3vw, 52px) 0;
  border-bottom: 1px solid var(--line);
}

.subpage-card--wide {
  grid-column: 1 / -1;
}

.subpage-card h2 {
  margin: 0 0 24px;
  font-family: var(--mono-font);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.subpage-card p {
  margin: 0;
  max-width: 560px;
  color: #4c4c4c;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

html[lang="ja"] .subpage-card p {
  letter-spacing: 0;
}

.subpage-card a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subpage-card .button {
  justify-self: start;
  margin-top: 28px;
}

.legal-document {
  grid-column: 5 / span 8;
  border-top: 1px solid var(--line);
}

.legal-date {
  margin: 0;
  padding: clamp(24px, 2.6vw, 44px) 0;
  color: #777777;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono-font);
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.legal-section {
  padding: clamp(28px, 3.2vw, 56px) 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 clamp(18px, 1.8vw, 30px);
  font-family: var(--mono-font);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.legal-section p {
  margin: 0;
  max-width: 780px;
  color: #4c4c4c;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.legal-section p + p {
  margin-top: 16px;
}

.legal-section a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

html[lang="ja"] .legal-section p {
  letter-spacing: 0;
}

@media (max-width: 1100px) {
  .footer-brand {
    grid-column: 1 / span 2;
  }

  .footer-links {
    grid-column: 7 / -1;
    width: min(100%, 340px);
  }

  .footer-legal {
    grid-column: 1 / span 6;
  }

  .footer-actions {
    grid-column: 7 / span 6;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 15px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-top: 58px;
  }

  .hero-logo {
    width: 240px;
  }

  .wordmark strong {
    font-size: 41px;
  }

  .wordmark span {
    font-size: 13px;
  }

  .intro {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .intro-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .intro-column:first-child,
  .intro-column:last-child {
    grid-column: span 2;
  }

  .intro p {
    font-size: clamp(27px, 4.7vw, 38px);
    line-height: 0.98;
  }

  .product-header {
    display: grid;
    gap: 18px;
  }

  .product-meta {
    margin: 0;
    text-align: left;
    white-space: normal;
  }

  .autonomy-panel--aircraft {
    min-height: clamp(700px, 86svh, 860px);
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .autonomy-aircraft {
    width: 128vw;
    transform: translate(-50%, -43%);
  }

  .autonomy-copy {
    width: min(100%, 600px);
    transform: translateY(-2vh);
  }

  .autonomy-copy p {
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.16;
  }

  .autonomy-panel--map {
    min-height: clamp(680px, 92svh, 860px);
  }

  .autonomy-label {
    font-size: clamp(18px, 3.2vw, 28px);
  }

  .footer-brand {
    grid-column: 1 / span 4;
    min-height: auto;
  }

  .footer-shell,
  .footer-bottom {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-shell {
    min-height: auto;
    row-gap: 44px;
  }

  .footer-links {
    grid-column: 3 / -1;
    justify-self: end;
    grid-template-columns: repeat(2, 1fr);
    width: min(100%, 300px);
  }

  .footer-bottom {
    row-gap: 28px;
  }

  .footer-legal {
    grid-column: 1 / span 4;
  }

  .footer-actions {
    grid-column: 1 / span 4;
    justify-content: start;
  }

  .subpage-hero {
    min-height: calc(62svh - var(--header-height));
  }

  .subpage-card-grid {
    grid-column: 1 / -1;
  }

  .legal-document {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 58px;
  }

  .button {
    min-width: 92px;
    padding: 0 14px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-top: 54px;
    padding-bottom: 38px;
  }

  .hero-logo {
    width: 214px;
  }

  .wordmark strong {
    font-size: 35px;
  }

  .wordmark span {
    margin-top: 7px;
    font-size: 11px;
    letter-spacing: 0.36em;
  }

  .hero-tagline {
    font-size: 17px;
  }

  .intro {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .intro-grid {
    gap: 42px;
  }

  .intro-column:first-child,
  .intro-column:last-child {
    grid-column: 1 / -1;
  }

  .intro-column {
    gap: 30px;
  }

  .intro p {
    max-width: 100%;
    font-size: clamp(25px, 7.5vw, 32px);
    line-height: 1;
  }

  .product-showcase {
    padding-top: 82px;
    padding-bottom: var(--page-gutter);
  }

  .product-title {
    font-size: clamp(52px, 17vw, 76px);
  }

  .product-artwork {
    margin-right: calc(var(--page-gutter) * -0.25);
    margin-left: calc(var(--page-gutter) * -0.25);
  }

  .product-artwork figcaption {
    padding-right: calc(var(--page-gutter) * 0.25);
    padding-left: calc(var(--page-gutter) * 0.25);
  }

  .product-quote {
    margin-top: 96px;
  }

  .product-quote blockquote {
    font-size: clamp(25px, 7.5vw, 34px);
  }

  .product-media {
    grid-template-columns: 1fr;
    margin-top: 96px;
  }

  .product-media-item,
  .product-media-item--wide {
    aspect-ratio: 16 / 9;
  }

  .autonomy-panel--aircraft {
    min-height: 660px;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .autonomy-aircraft {
    left: 44%;
    width: 190vw;
    opacity: 0.78;
    transform: translate(-50%, -42%);
  }

  .autonomy-copy {
    width: min(100%, 360px);
    transform: none;
  }

  .autonomy-copy p {
    font-size: clamp(23px, 7.1vw, 31px);
    letter-spacing: -0.055em;
    line-height: 1.16;
  }

  .autonomy-copy p + p {
    margin-top: 36px;
  }

  .autonomy-panel--map {
    min-height: 620px;
  }

  .autonomy-map {
    inset: 0 auto 0 50%;
    width: 170%;
    transform: translateX(-46%);
    object-position: center;
  }

  .autonomy-label {
    max-width: calc(100% - (var(--page-gutter) * 2));
    font-size: clamp(17px, 5.2vw, 24px);
    line-height: 1.12;
    white-space: normal;
  }

  .autonomy-label--left {
    top: 76px;
  }

  .autonomy-label--right {
    right: var(--page-gutter);
    bottom: 64px;
    left: var(--page-gutter);
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-self: start;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    row-gap: 22px;
  }

  .footer-logo {
    width: 96px;
  }

  .footer-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: start;
    gap: 12px;
  }

  .legal-links {
    gap: 18px;
  }

  .site-footer .button,
  .site-footer .locale-button {
    min-height: 34px;
    font-size: 10px;
  }

  .site-footer .button {
    min-width: 124px;
  }

  .site-footer .locale-button {
    min-width: 86px;
  }

  .subpage-hero {
    min-height: calc(68svh - var(--header-height));
    padding-top: 76px;
    padding-bottom: 64px;
  }

  .subpage-title {
    font-size: clamp(54px, 17vw, 76px);
  }

  .subpage-lead {
    font-size: clamp(25px, 7.5vw, 34px);
    line-height: 1;
  }

  .subpage-card-grid {
    grid-template-columns: 1fr;
  }

  .subpage-card {
    min-height: auto;
  }
}

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