:root {
  --ink: #2c2d2b;
  --ink-deep: #11110f;
  --paper: #f0f0ed;
  --white: #ffffff;
  --blue: #86b8cb;
  --blue-deep: #10205c;
  --mist: #d9e1df;
  --sand: #d9b68b;
  --orange: #d66c42;
  --green: #253a33;
  --line: rgba(17, 17, 15, 0.18);
  --header-height: 92px;
  --page-pad: clamp(22px, 4.8vw, 74px);
  --content-max: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink-deep);
  background: var(--paper);
  font-family: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink-deep);
  transform: translateY(-150%);
  transition: transform 0.2s;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: height 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.site-header.is-fixed {
  position: fixed;
  height: 74px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(17, 17, 15, 0.08);
}

main {
  padding-top: var(--header-height);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  background: var(--ink-deep);
  border-radius: 50%;
}

.brand__mark::before,
.brand__mark::after,
.brand__mark span {
  position: absolute;
  content: "";
}

.brand__mark::before {
  width: 28px;
  height: 14px;
  bottom: 5px;
  left: 5px;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.brand__mark::after {
  width: 2px;
  height: 28px;
  top: 5px;
  left: 18px;
  background: var(--white);
  transform: rotate(38deg);
}

.brand__mark span {
  width: 16px;
  height: 16px;
  top: 4px;
  right: 4px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(-12deg);
}

.brand__name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.global-nav > a:not(.button) {
  position: relative;
  padding: 9px 0;
}

.global-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.global-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 28px;
  height: 18px;
}

.menu-toggle__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}

.menu-toggle__icon span:first-child {
  top: 3px;
}

.menu-toggle__icon span:last-child {
  top: 13px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child {
  top: 8px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child {
  top: 8px;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: color 0.25s, background-color 0.25s, border-color 0.25s, transform 0.25s;
}

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

.button--small {
  min-height: 46px;
  padding: 10px 18px;
}

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

.button--dark:hover {
  color: var(--ink-deep);
  background: var(--blue);
}

.button--light {
  min-width: min(410px, 100%);
  color: var(--ink-deep);
  background: var(--white);
}

.button--light:hover {
  background: var(--blue);
}

.button--outline-light {
  color: var(--blue);
  border-color: var(--blue);
}

.button--outline-light:hover {
  color: var(--ink-deep);
  background: var(--blue);
}

.button--blue {
  color: var(--ink-deep);
  background: var(--blue);
}

.button--blue:hover {
  background: var(--white);
}

.button__arrow {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.hero .media-placeholder,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 12, 16, 0.2) 0%, rgba(8, 12, 16, 0.08) 36%, rgba(8, 12, 16, 0.55) 100%),
    linear-gradient(90deg, rgba(8, 12, 16, 0.18), transparent 40%, rgba(8, 12, 16, 0.08));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - (var(--page-pad) * 2)));
  padding: 72px 0 92px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--white);
}

.eyebrow--blue {
  color: var(--blue);
}

.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(48px, 6.1vw, 94px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--blue);
}

.hero__lead {
  margin-bottom: 8px;
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 800;
  line-height: 1.55;
}

.hero__copy {
  margin-bottom: 30px;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 600;
}

.hero__note {
  margin: 12px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero__scroll span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.section {
  padding: clamp(88px, 10vw, 154px) 0;
}

.section--light {
  background: var(--paper);
}

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

.section--blue {
  color: var(--white);
  background: var(--blue-deep);
}

.section__inner {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.display-title {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.display-title--xl {
  font-size: clamp(58px, 8.7vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.display-title--light {
  color: var(--white);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
}

.intro__copy {
  max-width: 600px;
  font-size: 17px;
}

.intro__copy p {
  margin-bottom: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.text-link span {
  transition: transform 0.25s;
}

.text-link:hover span {
  transform: translateX(5px);
}

.section-heading {
  margin-bottom: clamp(70px, 8vw, 120px);
}

.section-heading--light {
  color: var(--white);
}

.van-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(45px, 8vw, 120px);
}

.van-card--offset {
  margin-top: clamp(100px, 15vw, 220px);
}

.van-card .media-placeholder {
  margin-bottom: 34px;
}

.van-card__number {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.van-card h3 {
  margin-bottom: 12px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.van-card__spec {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 800;
}

.van-card > p:not(.van-card__number):not(.van-card__spec) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.detail-toggle {
  margin-top: 28px;
}

.detail-toggle summary {
  display: inline-flex;
  min-width: 150px;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 9px 15px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  list-style: none;
  border: 2px solid var(--blue);
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
}

.detail-toggle summary::-webkit-details-marker {
  display: none;
}

.detail-toggle summary:hover {
  color: var(--ink-deep);
  background: var(--blue);
}

.detail-toggle[open] summary span {
  transform: rotate(45deg);
}

.detail-toggle summary span {
  display: inline-block;
  transition: transform 0.25s;
}

.detail-toggle div {
  max-width: 550px;
  padding: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--ink);
}

.split-feature__copy {
  display: flex;
  min-height: 740px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) var(--page-pad);
}

.split-feature__copy h2 {
  margin: 0 0 34px;
  font-size: clamp(42px, 4vw, 66px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.split-feature__copy p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.split-feature__copy .button {
  margin-top: 22px;
}

.split-feature__media,
.split-feature__media .media-placeholder {
  min-height: 740px;
}

.center-heading {
  max-width: 930px;
  margin: 0 auto clamp(65px, 8vw, 112px);
  text-align: center;
}

.center-heading .display-title {
  margin-bottom: 32px;
}

.center-heading > p:not(.eyebrow) {
  max-width: 780px;
  margin-right: auto;
  margin-bottom: 8px;
  margin-left: auto;
  font-weight: 600;
}

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

.equipment-card:nth-child(even) {
  margin-top: 48px;
}

.equipment-card__number {
  margin: 18px 0 4px;
  color: #565b59;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.equipment-card h3 {
  margin-bottom: 8px;
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.equipment-card > p:last-child {
  margin-bottom: 0;
  color: #555954;
  font-size: 13px;
  line-height: 1.65;
}

.immersive-feature {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.immersive-feature > .media-placeholder,
.immersive-feature__shade {
  position: absolute;
  inset: 0;
}

.immersive-feature__shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 14, 12, 0.82) 0%, rgba(9, 14, 12, 0.58) 42%, rgba(9, 14, 12, 0.08) 75%);
}

.immersive-feature__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 850px;
  width: min(720px, 100%);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 100px var(--page-pad);
}

.immersive-feature__content h2 {
  margin: 0 0 34px;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.immersive-feature__content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.journeys__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(55px, 10vw, 170px);
  align-items: end;
  margin-bottom: clamp(90px, 11vw, 170px);
}

.journeys__intro > div:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.journey-list {
  display: grid;
  gap: clamp(90px, 12vw, 180px);
}

.journey-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.journey-card--reverse {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.08fr);
}

.journey-card--reverse .media-placeholder {
  grid-column: 2;
  grid-row: 1;
}

.journey-card--reverse .journey-card__copy {
  grid-column: 1;
  grid-row: 1;
}

.journey-card__copy h3 {
  margin: 0 0 24px;
  font-size: clamp(40px, 4.7vw, 70px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.journey-card__copy > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(50px, 7vw, 100px) clamp(28px, 5vw, 72px);
}

.editorial-card {
  position: relative;
}

.editorial-card--wide {
  margin-top: 90px;
}

.editorial-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 17px 0 10px;
  color: #595c58;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.editorial-card h3 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.prepared__heading {
  max-width: 1250px;
  margin-bottom: clamp(65px, 8vw, 110px);
}

.prepared__heading .display-title {
  margin-bottom: 30px;
  font-size: clamp(40px, 4.5vw, 68px);
}

.prepared__heading > p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.guide-list li {
  display: grid;
  min-height: 120px;
  grid-template-columns: 65px 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.guide-list li > span:first-child {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.guide-list h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1.35;
}

.guide-list__status {
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.6fr) minmax(0, 1fr);
  gap: clamp(55px, 10vw, 160px);
}

.faq__intro {
  max-width: 420px;
  margin-top: 26px;
  color: #5a5d59;
}

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

.faq-list details {
  border-bottom: 1px solid var(--ink-deep);
  scroll-margin-top: 110px;
}

.faq-list summary {
  display: grid;
  min-height: 92px;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 4px;
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  font-size: 22px;
  font-weight: 400;
  border: 1px solid var(--ink-deep);
  border-radius: 50%;
  transition: color 0.2s, background-color 0.2s, transform 0.3s;
}

.faq-list details[open] summary span {
  color: var(--white);
  background: var(--ink-deep);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 760px;
  padding: 0 56px 30px 4px;
  color: #4e514d;
}

.early-access {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.early-access__pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.045;
  pointer-events: none;
}

.early-access__pattern span {
  position: absolute;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(180px, 29vw, 480px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.early-access__pattern span:nth-child(1) {
  top: -30px;
  left: -80px;
}

.early-access__pattern span:nth-child(2) {
  top: 38%;
  right: -290px;
}

.early-access__pattern span:nth-child(3) {
  bottom: -30px;
  left: 15%;
}

.early-access__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(var(--content-max), 100%);
  min-height: 760px;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  gap: clamp(70px, 11vw, 180px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) var(--page-pad);
}

.early-access__copy h2 {
  margin: 0 0 36px;
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.early-access__copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
}

.signup-form {
  padding: clamp(30px, 4vw, 52px);
  color: var(--ink-deep);
  background: var(--white);
}

.form-field label {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.form-field__control {
  position: relative;
}

.form-field input {
  width: 100%;
  height: 62px;
  padding: 0 48px 0 0;
  color: var(--ink-deep);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--ink-deep);
  border-radius: 0;
  outline: 0;
}

.form-field input::placeholder {
  color: #5f625e;
}

.form-field input:focus {
  border-color: var(--blue-deep);
}

.form-field input:focus-visible {
  outline: 3px solid var(--blue-deep);
  outline-offset: 4px;
}

.form-field input[aria-invalid="true"] {
  border-color: #b8422d;
}

.form-field__icon {
  position: absolute;
  top: 50%;
  right: 4px;
  font-size: 21px;
  transform: translateY(-50%);
}

.form-field__help,
.form-field__error {
  margin: 9px 0 0;
  font-size: 11px;
  line-height: 1.5;
}

.form-field__help {
  color: #666964;
}

.form-field__error {
  min-height: 17px;
  color: #a83422;
  font-weight: 700;
}

.button--submit {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}

.button--submit:disabled {
  cursor: progress;
  opacity: 0.62;
  transform: none;
}

.signup-form__status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.signup-form__noscript {
  margin: 14px 0 0;
  color: #a83422;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.signup-form__notes {
  margin-top: 28px;
  padding-top: 20px;
  color: #666964;
  font-size: 10px;
  line-height: 1.6;
  border-top: 1px solid var(--line);
}

.signup-form__notes p {
  margin-bottom: 6px;
}

.site-footer {
  padding: 82px var(--page-pad) 32px;
  color: var(--white);
  background: var(--ink);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  width: min(var(--content-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.site-footer__top {
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 74px;
}

.brand--footer .brand__mark {
  background: var(--white);
}

.brand--footer .brand__mark::before {
  border-color: var(--ink-deep);
}

.brand--footer .brand__mark::after {
  background: var(--ink-deep);
}

.brand--footer .brand__mark span {
  border-color: var(--ink-deep);
}

.site-footer__top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-top-link {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-top-link span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}

.site-footer__bottom {
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.site-footer__bottom p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

/* Image placeholders: replace each block with an <img> while keeping the class and aspect ratio. */
.media-placeholder {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #b9c7c6;
}

.media-placeholder::before,
.media-placeholder::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.media-placeholder::before {
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.11) 48% 49%, transparent 49%),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 48% 49%, transparent 49%);
  background-size: 70px 70px;
}

.media-placeholder::after {
  z-index: 5;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.media-placeholder__label {
  position: absolute;
  z-index: 8;
  top: 25px;
  left: 25px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(17, 17, 15, 0.72);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.16em;
}

.media-placeholder--hero {
  background:
    linear-gradient(180deg, #9eb9c6 0%, #cbd3d0 46%, #b29c78 47%, #887557 70%, #3b3d32 100%);
}

.media-placeholder--hero::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.7), transparent 22%),
    linear-gradient(150deg, transparent 0 62%, rgba(255, 255, 255, 0.15) 62% 64%, transparent 64%);
}

.media-placeholder__sun {
  position: absolute;
  top: 15%;
  right: 13%;
  width: clamp(80px, 9vw, 145px);
  aspect-ratio: 1;
  background: rgba(240, 217, 171, 0.75);
  border-radius: 50%;
  filter: blur(1px);
}

.media-placeholder__ridge {
  position: absolute;
  right: -10%;
  bottom: 24%;
  left: -10%;
  height: 34%;
  clip-path: polygon(0 100%, 0 70%, 10% 46%, 17% 61%, 27% 28%, 36% 62%, 47% 38%, 58% 67%, 69% 26%, 78% 49%, 88% 21%, 100% 57%, 100% 100%);
}

.media-placeholder__ridge--back {
  bottom: 27%;
  background: #6f7f76;
  opacity: 0.58;
}

.media-placeholder__ridge--front {
  background: #45564e;
  opacity: 0.8;
  transform: scaleX(-1);
}

.media-placeholder__van {
  position: absolute;
  right: 18%;
  bottom: 18%;
  width: clamp(250px, 34vw, 510px);
  height: clamp(100px, 13.8vw, 205px);
  background: #e5e2d8;
  border: 3px solid rgba(17, 17, 15, 0.3);
  border-radius: 18px 55px 10px 10px;
  box-shadow: 0 18px 30px rgba(17, 17, 15, 0.25);
}

.media-placeholder__van::before {
  position: absolute;
  top: 12%;
  right: 5%;
  width: 24%;
  height: 35%;
  content: "";
  background: #617680;
  border-radius: 3px 25px 3px 3px;
  box-shadow: -75px 0 0 #617680;
}

.media-placeholder__van::after {
  position: absolute;
  right: 7%;
  bottom: 14%;
  left: 7%;
  height: 4%;
  content: "";
  background: var(--blue-deep);
}

.media-placeholder__wheel {
  position: absolute;
  z-index: 2;
  bottom: -12%;
  width: 16%;
  aspect-ratio: 1;
  background: #252724;
  border: 8px solid #3d3e3a;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #a8a8a0;
}

.media-placeholder__wheel--left {
  left: 13%;
}

.media-placeholder__wheel--right {
  right: 12%;
}

.media-placeholder--van {
  aspect-ratio: 1.45 / 1;
  background: linear-gradient(145deg, #55665f, #b5a37d 58%, #4b4b40);
}

.media-placeholder--van::before {
  background:
    linear-gradient(115deg, rgba(20, 31, 28, 0.9) 0 38%, transparent 38%),
    linear-gradient(0deg, rgba(17, 17, 15, 0.25), transparent);
}

.media-placeholder--cargo {
  background: linear-gradient(145deg, #a89d88, #d2c6ae 45%, #7d745f);
}

.placeholder-line {
  position: absolute;
  right: -8%;
  bottom: 13%;
  width: 70%;
  height: 28%;
  border: 16px solid rgba(255, 255, 255, 0.45);
  transform: skewX(-32deg);
}

.placeholder-line--b {
  right: 20%;
  bottom: 30%;
  width: 42%;
  height: 40%;
  border-color: rgba(17, 17, 15, 0.33);
}

.media-placeholder--pickup {
  height: 100%;
  background:
    linear-gradient(145deg, rgba(21, 38, 55, 0.4), transparent),
    linear-gradient(135deg, #8ba5b3, #c8b38c 55%, #4a544c);
}

.media-placeholder--pickup::before {
  right: -12%;
  bottom: -5%;
  width: 78%;
  height: 46%;
  background: rgba(238, 234, 220, 0.72);
  border-radius: 35% 0 0;
  transform: rotate(-6deg);
}

.placeholder-phone {
  position: absolute;
  top: 24%;
  left: 25%;
  width: clamp(120px, 15vw, 220px);
  aspect-ratio: 0.52;
  padding: 10px;
  background: #202321;
  border: 3px solid #090a09;
  border-radius: 24px;
  box-shadow: 30px 35px 55px rgba(17, 17, 15, 0.32);
  transform: rotate(-10deg);
}

.placeholder-phone span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, var(--blue) 0 28%, var(--white) 28% 100%);
  border-radius: 14px;
}

.media-placeholder--equipment {
  aspect-ratio: 0.9 / 1;
}

.media-placeholder--bed {
  background: linear-gradient(145deg, #5c6059 0 38%, #ded7c7 38% 75%, #8f7b63 75%);
}

.media-placeholder--storage {
  background:
    linear-gradient(90deg, rgba(25, 28, 26, 0.38) 0 8%, transparent 8% 92%, rgba(25, 28, 26, 0.38) 92%),
    linear-gradient(135deg, #a67f59, #d3b78e);
}

.media-placeholder--power {
  background:
    radial-gradient(circle at 50% 55%, #232623 0 9%, #d6d2c2 9% 18%, transparent 18%),
    linear-gradient(145deg, #63777c, #aeb9b5);
}

.media-placeholder--wifi {
  background:
    repeating-radial-gradient(circle at 50% 65%, transparent 0 18px, rgba(255, 255, 255, 0.6) 19px 21px, transparent 22px 34px),
    linear-gradient(145deg, #333d38, #78908b);
}

.media-placeholder--immersive {
  background: linear-gradient(180deg, #aebbc0 0 38%, #5f7069 38% 70%, #3a403a 70%);
}

.media-placeholder--immersive::before {
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 229, 177, 0.7), transparent 14%),
    linear-gradient(168deg, transparent 0 59%, rgba(255, 255, 255, 0.1) 59% 60%, transparent 60%);
}

.media-placeholder__building {
  position: absolute;
  right: 0;
  bottom: 22%;
  width: 30%;
  height: 36%;
  background: #b2a28a;
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 100%, 0 100%);
}

.media-placeholder__building--two {
  right: 27%;
  width: 22%;
  height: 28%;
  background: #7d7465;
}

.media-placeholder__van--small {
  right: 12%;
  bottom: 12%;
  width: clamp(250px, 30vw, 440px);
  height: clamp(100px, 12vw, 176px);
}

.media-placeholder--journey {
  aspect-ratio: 1.3 / 1;
}

.media-placeholder--setouchi {
  background:
    linear-gradient(180deg, #91b7c7 0 45%, #547d8a 45% 70%, #b9aa86 70%);
}

.media-placeholder--setouchi::before {
  background:
    radial-gradient(ellipse at 65% 56%, #4b6658 0 13%, transparent 13%),
    radial-gradient(ellipse at 28% 58%, #5c7363 0 9%, transparent 9%);
}

.media-placeholder--mountains {
  background:
    linear-gradient(145deg, transparent 0 33%, rgba(37, 58, 51, 0.8) 33% 66%, transparent 66%),
    linear-gradient(35deg, #7f988a, #354a40);
}

.media-placeholder--pacific {
  background:
    linear-gradient(180deg, #9cc3cf 0 38%, #326a7d 38% 75%, #d2c199 75%);
}

.media-placeholder--culture {
  background:
    linear-gradient(90deg, rgba(95, 56, 33, 0.5) 0 8%, transparent 8% 92%, rgba(95, 56, 33, 0.5) 92%),
    repeating-linear-gradient(90deg, #a16f48 0 13%, #c99d70 13% 26%);
}

.media-placeholder--editorial {
  aspect-ratio: 1.5 / 1;
}

.media-placeholder--iya {
  background:
    linear-gradient(150deg, transparent 0 42%, rgba(34, 62, 50, 0.84) 42% 70%, transparent 70%),
    linear-gradient(35deg, #95aaa0, #354d42);
}

.media-placeholder--food {
  background:
    radial-gradient(circle at 55% 55%, #d0b17d 0 18%, #6e513c 18% 22%, transparent 22%),
    linear-gradient(145deg, #8f633d, #c69d6b);
}

.media-placeholder--henro {
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(242, 239, 223, 0.84) 42% 58%, transparent 58%),
    linear-gradient(145deg, #64746d, #aaa58c);
}

.media-placeholder--quiet {
  background:
    radial-gradient(circle at 72% 25%, rgba(239, 218, 168, 0.85) 0 8%, transparent 8%),
    linear-gradient(180deg, #96abb0 0 40%, #50695a 40% 72%, #282f2b 72%);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.9s var(--ease);
}

.reveal-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-only {
  display: none;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    height: var(--header-height);
  }

  .site-header.is-fixed {
    height: 68px;
  }

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

  .global-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 120px var(--page-pad) 70px;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--white);
    background: var(--ink-deep);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 0.35s, opacity 0.35s, transform 0.35s var(--ease);
  }

  .global-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .global-nav > a:not(.button) {
    width: 100%;
    padding: 15px 0;
    font-size: clamp(24px, 5vw, 44px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.03em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .global-nav > .button {
    width: 100%;
    margin-top: 32px;
    color: var(--ink-deep);
    background: var(--blue);
  }

  .menu-open .site-header,
  .menu-open .site-header.is-fixed {
    color: var(--white);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .menu-open .brand__mark {
    background: var(--white);
  }

  .menu-open .brand__mark::before {
    border-color: var(--ink-deep);
  }

  .menu-open .brand__mark::after {
    background: var(--ink-deep);
  }

  .menu-open .brand__mark span {
    border-color: var(--ink-deep);
  }

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

  .equipment-card:nth-child(even) {
    margin-top: 30px;
  }

  .early-access__inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 1100px) and (max-height: 600px) {
  .global-nav {
    padding-top: 82px;
    padding-bottom: 24px;
  }

  .global-nav > a:not(.button) {
    padding: 9px 0;
    font-size: clamp(20px, 5vw, 28px);
  }

  .global-nav > .button {
    min-height: 44px;
    margin-top: 16px;
  }
}

@media (max-width: 820px) {
  :root {
    --page-pad: 22px;
  }

  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  main {
    padding-top: 0;
  }

  .site-header {
    position: absolute;
    color: var(--white);
    background: transparent;
  }

  .site-header.is-fixed {
    position: fixed;
    color: var(--ink-deep);
    background: var(--white);
  }

  .site-header:not(.is-fixed) .brand__mark {
    background: var(--white);
  }

  .site-header:not(.is-fixed) .brand__mark::before {
    border-color: var(--ink-deep);
  }

  .site-header:not(.is-fixed) .brand__mark::after {
    background: var(--ink-deep);
  }

  .site-header:not(.is-fixed) .brand__mark span {
    border-color: var(--ink-deep);
  }

  .brand__name {
    font-size: 23px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 100svh;
    place-items: end start;
  }

  .hero__content {
    width: 100%;
    padding: 132px var(--page-pad) 105px;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 74px);
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__copy {
    max-width: 330px;
    font-size: 13px;
  }

  .hero__scroll {
    display: none;
  }

  .hero .media-placeholder__van {
    right: -8%;
    bottom: 26%;
    opacity: 0.85;
  }

  .hero .media-placeholder__label {
    top: auto;
    right: 20px;
    bottom: 82px;
    left: auto;
  }

  .intro__grid,
  .journeys__intro,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .van-grid {
    grid-template-columns: 1fr;
  }

  .van-card--offset {
    margin-top: 40px;
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .split-feature__copy,
  .split-feature__media,
  .split-feature__media .media-placeholder {
    min-height: 620px;
  }

  .split-feature__copy {
    grid-row: 2;
  }

  .split-feature__media {
    grid-row: 1;
  }

  .immersive-feature,
  .immersive-feature__content {
    min-height: 760px;
  }

  .immersive-feature__shade {
    background: linear-gradient(0deg, rgba(9, 14, 12, 0.9) 0%, rgba(9, 14, 12, 0.48) 65%, rgba(9, 14, 12, 0.08) 100%);
  }

  .immersive-feature__content {
    justify-content: flex-end;
    padding-bottom: 70px;
  }

  .journey-card,
  .journey-card--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .journey-card--reverse .media-placeholder,
  .journey-card--reverse .journey-card__copy {
    grid-column: 1;
  }

  .journey-card--reverse .media-placeholder {
    grid-row: 1;
  }

  .journey-card--reverse .journey-card__copy {
    grid-row: 2;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card--wide {
    margin-top: 0;
  }

  .early-access__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: calc(66px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 22px calc(14px + env(safe-area-inset-bottom));
    color: var(--ink-deep);
    background: var(--blue);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 -8px 25px rgba(17, 17, 15, 0.16);
    transform: translateY(0);
    transition: transform 0.35s var(--ease), visibility 0.35s;
  }

  .mobile-cta span:last-child {
    font-size: 21px;
  }
}

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

  .section {
    padding: 78px 0;
  }

  .display-title {
    font-size: clamp(38px, 11vw, 56px);
  }

  .display-title--xl {
    font-size: clamp(58px, 18vw, 88px);
  }

  .mobile-only {
    display: initial;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero__content .button {
    font-size: 12px;
  }

  .media-placeholder__label {
    top: 18px;
    left: 18px;
    max-width: calc(100% - 36px);
    padding: 6px 8px;
    font-size: 8px;
  }

  .van-card h3 {
    font-size: 52px;
  }

  .van-card__spec {
    font-size: 17px;
  }

  .split-feature__copy,
  .split-feature__media,
  .split-feature__media .media-placeholder {
    min-height: 520px;
  }

  .split-feature__copy {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .split-feature__copy h2 {
    font-size: 41px;
  }

  .placeholder-phone {
    left: 22%;
    width: 140px;
  }

  .equipment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 14px;
  }

  .equipment-card:nth-child(even) {
    margin-top: 24px;
  }

  .equipment-card h3 {
    font-size: 17px;
  }

  .equipment-card > p:last-child {
    font-size: 11px;
  }

  .immersive-feature__content h2 {
    font-size: 43px;
  }

  .media-placeholder__van--small {
    right: -10%;
    bottom: 36%;
  }

  .journey-list {
    gap: 88px;
  }

  .journey-card__copy h3 {
    font-size: 43px;
  }

  .editorial-grid {
    gap: 58px;
  }

  .editorial-card h3 {
    max-width: 100%;
    font-size: 22px;
  }

  .guide-list li {
    min-height: 96px;
    grid-template-columns: 35px 1fr auto;
    gap: 12px;
  }

  .guide-list h3 {
    font-size: 17px;
  }

  .guide-list__status {
    padding: 4px 7px;
    font-size: 8px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 15px;
  }

  .faq-list details > p {
    padding-right: 20px;
  }

  .early-access__copy h2 {
    font-size: 58px;
  }

  .signup-form {
    margin-right: calc(var(--page-pad) * -1);
    margin-left: calc(var(--page-pad) * -1);
    padding: 34px 22px;
  }

  .site-footer {
    padding-top: 60px;
  }

  .site-footer__top {
    flex-direction: column;
    padding-bottom: 50px;
  }

  .footer-top-link {
    margin-top: 10px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__bottom nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .reveal-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}
