@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=Special+Elite&display=swap");

:root {
  --ink: #0c2530;
  --ink-soft: #536874;
  --blue: #0084ff;
  --blue-deep: #006bd6;
  --blue-pale: #eaf6ff;
  --moss: #426859;
  --line: rgba(12, 37, 48, 0.11);
  --glass: rgba(255, 255, 255, 0.3);
  --wandor-prompt: #905831;
  --display: "Geist", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --brand: "Special Elite", "Songti SC", serif;
  --sans: "Geist", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
  background: #fff;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
  text-rendering: optimizeLegibility;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

::selection {
  color: #fff;
  background: rgba(0, 132, 255, 0.78);
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.ambient-glow {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(92px);
  pointer-events: none;
}

.ambient-glow--one {
  top: -230px;
  left: -240px;
  width: 760px;
  height: 620px;
  background: rgba(96, 177, 255, 0.34);
  transform: rotate(-15deg);
}

.ambient-glow--two {
  top: 70px;
  left: 280px;
  width: 480px;
  height: 360px;
  background: rgba(49, 154, 255, 0.17);
  transform: rotate(18deg);
}

.glass-nav {
  position: fixed;
  z-index: 100;
  top: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100vw - 32px);
  min-height: 58px;
  padding: 7px 8px 7px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 4px 4px 0 rgba(255, 255, 255, 0.25),
    0 18px 50px rgba(38, 100, 143, 0.12);
  backdrop-filter: blur(50px) saturate(160%);
  -webkit-backdrop-filter: blur(50px) saturate(160%);
  transform: translateX(-50%);
}

.glass-nav--dark {
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    inset 0 4px 4px 0 rgba(255, 255, 255, 0.34),
    0 18px 50px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.6px;
  white-space: nowrap;
}

.brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 50% 42% 52% 46%;
  background:
    radial-gradient(circle at 35% 28%, #d6f4ff 0 16%, transparent 18%),
    linear-gradient(135deg, #32c79a, #1688ff 58%, #7855ff);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.66),
    0 5px 13px rgba(0, 132, 255, 0.38);
  transform: rotate(-18deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 18px 0 28px;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(12, 37, 48, 0.64);
  font-size: 13px;
  font-weight: 500;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="location"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
  outline: none;
}

.nav-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 16px;
  color: #fff;
  background: rgba(0, 132, 255, 0.8);
  box-shadow:
    inset 0 4px 4px 0 rgba(255, 255, 255, 0.35),
    0 12px 28px rgba(0, 111, 224, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}

.nav-cta {
  min-height: 44px;
  padding: 0 8px 0 15px;
  font-size: 13px;
  font-weight: 600;
}

.primary-cta {
  min-height: 58px;
  padding: 0 9px 0 22px;
  font-size: 15px;
  font-weight: 600;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.primary-cta:hover,
.primary-cta:focus-visible {
  background: rgba(0, 118, 236, 0.9);
  box-shadow:
    inset 0 4px 4px 0 rgba(255, 255, 255, 0.4),
    0 18px 38px rgba(0, 111, 224, 0.26);
  outline: none;
  transform: scale(1.02);
}

.arrow-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--blue-deep);
  background: #fff;
  box-shadow: 0 5px 14px rgba(0, 75, 153, 0.14);
  font-size: 17px;
  line-height: 1;
}

.nav-cta .arrow-icon {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

.screen-rail {
  position: fixed;
  z-index: 80;
  top: 50%;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transform: translateY(-50%);
}

.screen-rail__count {
  margin-bottom: 6px;
  color: rgba(12, 37, 48, 0.72);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
}

.screen-rail__count i {
  margin: 0 3px;
  opacity: 0.32;
  font-style: normal;
}

.screen-rail__line {
  width: 1px;
  height: 26px;
  margin-bottom: 3px;
  background: linear-gradient(transparent, rgba(12, 37, 48, 0.18));
}

.screen-rail a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid transparent;
  border-radius: 50%;
  color: rgba(12, 37, 48, 0.36);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  transition: 180ms ease;
}

.screen-rail a:hover,
.screen-rail a:focus-visible,
.screen-rail a[aria-current="location"] {
  border-color: rgba(12, 37, 48, 0.1);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.8),
    0 8px 24px rgba(20, 73, 106, 0.12);
  backdrop-filter: blur(24px);
  outline: none;
}

.screen-rail--dark .screen-rail__count,
.screen-rail--dark a {
  color: rgba(255, 255, 255, 0.46);
}

.screen-rail--dark .screen-rail__line {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.24));
}

.screen-rail--dark a:hover,
.screen-rail--dark a:focus-visible,
.screen-rail--dark a[aria-current="location"] {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
}

.section {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: 132px clamp(28px, 5vw, 82px) 54px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
}

.section-inner {
  width: min(100%, 1600px);
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  padding-top: 118px;
  background: transparent;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 172px);
}

.hero-grid {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(30px, 5vw, 86px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 710px;
  padding-left: clamp(0px, 2vw, 32px);
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  padding: 8px 12px;
  border: 1px solid rgba(12, 37, 48, 0.09);
  border-radius: 999px;
  color: rgba(12, 37, 48, 0.76);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(20px);
  font-size: 12px;
  font-weight: 600;
}

.proof-stars {
  color: #ff801e;
  font-size: 10px;
  letter-spacing: 1px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  width: 27px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.62;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  text-wrap: balance;
}

h1 {
  max-width: 740px;
  font-size: clamp(50px, 5.3vw, 75px);
  line-height: 1.05;
  letter-spacing: -2.2px;
}

h2 {
  max-width: 11em;
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.8;
  letter-spacing: -0.8px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  color: rgba(12, 37, 48, 0.68);
  font-size: 14px;
  font-weight: 600;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-deep);
  outline: none;
}

.hero-note {
  margin: 17px 0 0;
  color: rgba(12, 37, 48, 0.44);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.orb-stage {
  position: relative;
  min-height: clamp(430px, 61vh, 690px);
  overflow: visible;
  isolation: isolate;
}

.orb-stage::before {
  position: absolute;
  z-index: -3;
  top: 50%;
  left: 50%;
  width: min(61vw, 870px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 34% 30%,
      rgba(255, 255, 255, 0.96),
      rgba(203, 235, 255, 0.72) 26%,
      rgba(51, 163, 255, 0.18) 53%,
      transparent 72%
    );
  filter: blur(3px);
  content: "";
  transform: translate(-50%, -50%);
}

.orb-fallback {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: min(48vw, 630px);
  aspect-ratio: 1;
  border-radius: 42% 58% 52% 48% / 48% 44% 56% 52%;
  background:
    radial-gradient(circle at 32% 23%, #fff 0 7%, transparent 20%),
    radial-gradient(circle at 67% 68%, #5e5cff 0 8%, transparent 36%),
    conic-gradient(from 210deg, #2e8fff, #7fe8ff, #fff, #5058ff, #2e8fff);
  box-shadow:
    inset 22px 10px 48px rgba(255, 255, 255, 0.52),
    inset -28px -22px 66px rgba(47, 61, 255, 0.36),
    0 44px 100px rgba(0, 132, 255, 0.23);
  filter: saturate(132%) blur(0.2px);
  opacity: 0.92;
  transform: translate(-50%, -50%) rotate(-12deg);
  animation: orb-breathe 7s ease-in-out infinite;
}

.glassy-orb {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(58vw, 800px);
  max-width: none;
  height: auto;
  mix-blend-mode: screen;
  filter: hue-rotate(-55deg) saturate(250%) brightness(1.2) contrast(1.1);
  transform: translate(-50%, -50%) scale(1.25);
  pointer-events: none;
}

.orb-ring {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(27, 142, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orb-ring--one {
  width: min(42vw, 570px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(28deg) scaleY(0.74);
}

.orb-ring--two {
  width: min(50vw, 700px);
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.58;
  transform: translate(-50%, -50%) rotate(-34deg) scaleY(0.62);
}

@keyframes orb-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(0.98);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-8deg) scale(1.03);
  }
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 4px 4px rgba(255, 255, 255, 0.3),
    0 24px 50px rgba(22, 98, 153, 0.14);
  backdrop-filter: blur(34px) saturate(150%);
  -webkit-backdrop-filter: blur(34px) saturate(150%);
}

.floating-card--top {
  top: 18%;
  right: 4%;
}

.floating-card--bottom {
  bottom: 16%;
  left: 4%;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  margin-bottom: 3px;
  color: rgba(12, 37, 48, 0.48);
  font-size: 10px;
}

.floating-card strong {
  color: rgba(12, 37, 48, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.status-dot {
  width: 11px;
  height: 11px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: #36bf88;
  box-shadow:
    0 0 0 3px rgba(54, 191, 136, 0.15),
    0 5px 12px rgba(54, 191, 136, 0.32);
}

.spectrum-chip {
  width: 12px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(#ffcf6b, #77e4bd 45%, #4ba5ff 75%, #8d67ff);
  box-shadow: 0 5px 14px rgba(61, 132, 215, 0.22);
}

.trust-strip {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
  padding: 17px 18px;
  border-top: 1px solid rgba(12, 37, 48, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 3px 4px rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
}

.trust-strip > p {
  margin: 0;
  color: rgba(12, 37, 48, 0.46);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nature-marks {
  display: flex;
  justify-content: space-between;
  gap: clamp(24px, 6vw, 100px);
  align-items: center;
}

.nature-mark {
  display: grid;
  gap: 2px;
  color: rgba(12, 37, 48, 0.42);
  filter: grayscale(1);
}

.nature-mark strong {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nature-mark span {
  font-size: 9px;
  letter-spacing: 0.08em;
}

.story-section {
  display: grid;
  place-items: center;
  background: #fff;
}

.section--mist {
  background:
    radial-gradient(
      circle at 86% 18%,
      rgba(96, 177, 255, 0.14),
      transparent 26%
    ),
    linear-gradient(180deg, #fbfdff, #f4faff 55%, #fff);
}

.section--blue-glow {
  background:
    radial-gradient(
      circle at 72% 46%,
      rgba(49, 154, 255, 0.15),
      transparent 32%
    ),
    #fff;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(60px, 8vw, 132px);
  align-items: center;
}

.two-column--reverse {
  grid-template-columns: minmax(440px, 1.12fr) minmax(0, 0.88fr);
}

.section-copy {
  max-width: 690px;
}

.body-copy {
  max-width: 650px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.28vw, 18px);
  line-height: 1.88;
  letter-spacing: -0.35px;
}

.body-copy p {
  margin: 0 0 1.1em;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.spec-pills span {
  display: grid;
  gap: 3px;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid rgba(12, 37, 48, 0.09);
  border-radius: 14px;
  color: rgba(12, 37, 48, 0.48);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: inset 0 3px 4px rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(16px);
  font-size: 10px;
}

.spec-pills strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
}

.visual-frame {
  position: relative;
  min-height: clamp(480px, 62vh, 660px);
  border: 1px solid rgba(12, 37, 48, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 4px 4px rgba(255, 255, 255, 0.5),
    0 38px 90px rgba(21, 95, 140, 0.13);
  backdrop-filter: blur(34px) saturate(138%);
  -webkit-backdrop-filter: blur(34px) saturate(138%);
  overflow: hidden;
}

.frame-label {
  position: absolute;
  z-index: 8;
  top: 22px;
  right: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(12, 37, 48, 0.42);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.tank-frame {
  background:
    radial-gradient(
      circle at 68% 38%,
      rgba(64, 181, 255, 0.18),
      transparent 32%
    ),
    linear-gradient(150deg, rgba(255, 255, 255, 0.68), rgba(224, 246, 255, 0.5));
}

.tank-visual {
  position: absolute;
  top: 12%;
  right: 16%;
  bottom: 12%;
  left: 18%;
  filter: drop-shadow(0 30px 34px rgba(36, 103, 137, 0.2));
}

.tank-lid {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -3%;
  left: -3%;
  display: flex;
  justify-content: center;
  gap: 16px;
  height: 16%;
  padding-top: 6%;
  border: 1px solid rgba(12, 37, 48, 0.11);
  border-radius: 19px 19px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(210, 229, 236, 0.7)),
    #fff;
  box-shadow:
    inset 0 5px 7px rgba(255, 255, 255, 0.9),
    0 10px 26px rgba(30, 94, 130, 0.15);
}

.tank-lid i {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(12, 37, 48, 0.16);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #cbdce4);
  box-shadow:
    inset -3px -4px 7px rgba(18, 66, 88, 0.12),
    0 3px 5px rgba(255, 255, 255, 0.7);
}

.tank-water {
  position: absolute;
  top: 13%;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(31, 108, 144, 0.2);
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.65),
      rgba(135, 215, 243, 0.22) 47%,
      rgba(47, 134, 166, 0.28)
    );
  box-shadow:
    inset 12px 0 18px rgba(255, 255, 255, 0.42),
    inset -14px 0 20px rgba(54, 137, 166, 0.12);
  overflow: hidden;
}

.water-line {
  position: absolute;
  top: 22%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(31, 142, 186, 0.38),
    transparent
  );
  box-shadow: 0 7px 18px rgba(72, 186, 225, 0.18);
}

.plant {
  position: absolute;
  bottom: -7%;
  width: 29%;
  height: 57%;
  border-radius: 72% 28% 62% 38%;
  background:
    radial-gradient(circle at 25% 20%, #7bc99b 0 7%, transparent 8%),
    repeating-radial-gradient(
      ellipse at 50% 100%,
      rgba(51, 111, 77, 0.86) 0 7%,
      rgba(104, 162, 106, 0.72) 8% 12%,
      transparent 13% 17%
    );
  filter: blur(0.2px);
  opacity: 0.9;
}

.plant--one {
  left: 9%;
  transform: rotate(-8deg);
}

.plant--two {
  right: 13%;
  height: 42%;
  transform: rotate(9deg) scaleX(0.84);
}

.stone {
  position: absolute;
  bottom: -4%;
  border-radius: 48% 52% 34% 66%;
  background: linear-gradient(145deg, #4d6a66, #1c3c3c);
  box-shadow: inset 7px 8px 13px rgba(255, 255, 255, 0.13);
}

.stone--one {
  left: 34%;
  width: 28%;
  height: 20%;
  transform: rotate(-8deg);
}

.stone--two {
  right: 4%;
  width: 23%;
  height: 16%;
  transform: rotate(8deg);
}

.fish-trace {
  position: absolute;
  color: rgba(12, 89, 125, 0.45);
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 4px;
}

.fish-trace--one {
  top: 42%;
  left: 42%;
}

.fish-trace--two {
  top: 61%;
  right: 17%;
  font-size: 14px;
}

.measure-line {
  position: absolute;
  color: rgba(12, 37, 48, 0.48);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
}

.measure-line::before,
.measure-line::after {
  position: absolute;
  background: rgba(12, 37, 48, 0.2);
  content: "";
}

.measure-line--width {
  right: 16%;
  bottom: 7%;
  left: 18%;
  height: 1px;
  border-top: 1px dashed rgba(12, 37, 48, 0.2);
  text-align: center;
}

.measure-line--width::before,
.measure-line--width::after {
  top: -4px;
  width: 1px;
  height: 9px;
}

.measure-line--width::before {
  left: 0;
}

.measure-line--width::after {
  right: 0;
}

.measure-line--width span {
  position: relative;
  top: -18px;
  padding: 0 7px;
  background: rgba(243, 250, 255, 0.78);
}

.measure-line--height {
  top: 13%;
  right: 9%;
  bottom: 12%;
  width: 1px;
  border-left: 1px dashed rgba(12, 37, 48, 0.2);
}

.measure-line--height::before,
.measure-line--height::after {
  left: -4px;
  width: 9px;
  height: 1px;
}

.measure-line--height::before {
  top: 0;
}

.measure-line--height::after {
  bottom: 0;
}

.measure-line--height span {
  position: absolute;
  top: 48%;
  left: 9px;
  white-space: nowrap;
}

.visual-disclaimer {
  position: absolute;
  z-index: 8;
  right: 24px;
  bottom: 18px;
  margin: 0;
  color: rgba(12, 37, 48, 0.42);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.control-visual {
  padding: 11% 8% 8%;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(96, 177, 255, 0.22),
      transparent 32%
    ),
    linear-gradient(145deg, #f9fcff, #eaf6ff);
}

.control-panel {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(12, 37, 48, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 4px 4px rgba(255, 255, 255, 0.44),
    0 24px 56px rgba(28, 97, 141, 0.14);
  backdrop-filter: blur(34px);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.panel-topline small,
.panel-topline strong {
  display: block;
}

.panel-topline small {
  margin-bottom: 4px;
  color: rgba(12, 37, 48, 0.46);
  font-size: 10px;
}

.panel-topline strong {
  font-family: var(--display);
  font-size: 22px;
}

.connected-pill {
  padding: 7px 10px;
  border: 1px solid rgba(44, 174, 121, 0.16);
  border-radius: 999px;
  color: #27855d;
  background: rgba(103, 218, 162, 0.12);
  font-size: 10px;
  font-weight: 700;
}

.knob-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.knob-item {
  display: grid;
  place-items: center;
  padding: 10px 6px;
  border-right: 1px solid rgba(12, 37, 48, 0.07);
  text-align: center;
}

.knob-item:last-child {
  border-right: 0;
}

.knob {
  position: relative;
  width: clamp(54px, 6vw, 82px);
  height: clamp(54px, 6vw, 82px);
  margin-bottom: 12px;
  border: 1px solid rgba(12, 37, 48, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, #fff 0 8%, transparent 9%),
    linear-gradient(145deg, #f9fdff, #c7dae4);
  box-shadow:
    inset -8px -9px 14px rgba(20, 67, 89, 0.12),
    inset 7px 6px 13px rgba(255, 255, 255, 0.86),
    0 9px 18px rgba(24, 80, 108, 0.14);
}

.knob::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 2px;
  height: 13px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform-origin: 50% calc(50% + 20px);
}

.knob--1::after {
  transform: translateX(-50%) rotate(28deg);
}

.knob--2::after {
  transform: translateX(-50%) rotate(-36deg);
}

.knob--3::after {
  transform: translateX(-50%) rotate(0);
}

.knob-item small {
  color: rgba(12, 37, 48, 0.42);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.knob-item strong {
  margin-top: 2px;
  font-family: var(--display);
  font-size: 12px;
}

.schedule-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid rgba(12, 37, 48, 0.07);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.46);
}

.schedule-time {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
}

.schedule-card strong,
.schedule-card small {
  display: block;
}

.schedule-card strong {
  margin-bottom: 2px;
  font-size: 12px;
}

.schedule-card small {
  color: rgba(12, 37, 48, 0.44);
  font-size: 9px;
}

.toggle {
  position: relative;
  width: 32px;
  height: 19px;
  border-radius: 999px;
  background: rgba(0, 132, 255, 0.72);
  box-shadow: inset 0 2px 4px rgba(0, 73, 145, 0.16);
}

.toggle i {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 73, 145, 0.2);
}

.feature-stack {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.feature-stack > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.feature-stack > div > span {
  color: var(--blue);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
}

.feature-stack p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.feature-stack strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.micro-note {
  margin: 12px 0 0;
  color: rgba(12, 37, 48, 0.4);
  font-size: 10px;
}

.light-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.light-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(0, 132, 255, 0.13);
  border-radius: 999px;
  color: rgba(0, 93, 186, 0.72);
  background: rgba(231, 246, 255, 0.58);
  font-size: 10px;
  font-weight: 600;
}

.light-visual {
  background:
    radial-gradient(circle at 50% 50%, rgba(88, 184, 255, 0.15), transparent 45%),
    rgba(248, 252, 255, 0.64);
}

.spectrum-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(60%, 410px);
  aspect-ratio: 1;
  transform: translate(-50%, -56%);
}

.spectrum-halo::before {
  position: absolute;
  inset: -27%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.88),
    rgba(74, 175, 255, 0.24) 38%,
    transparent 67%
  );
  filter: blur(16px);
  content: "";
}

.spectrum-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 27%, #fff 0 10%, transparent 24%),
    conic-gradient(
      from 215deg,
      #4e8dff,
      #53e5df,
      #d9ff98,
      #ffd27a,
      #ff8b8b,
      #9370ff,
      #4e8dff
    );
  box-shadow:
    inset 20px 13px 32px rgba(255, 255, 255, 0.65),
    inset -25px -23px 48px rgba(42, 74, 202, 0.28),
    0 34px 70px rgba(26, 127, 205, 0.2);
  filter: saturate(82%);
  animation: spectrum-drift 10s ease-in-out infinite;
}

@keyframes spectrum-drift {
  0%,
  100% {
    border-radius: 48% 52% 45% 55% / 54% 42% 58% 46%;
    transform: rotate(-4deg);
  }
  50% {
    border-radius: 55% 45% 56% 44% / 44% 55% 45% 56%;
    transform: rotate(8deg) scale(1.03);
  }
}

.spectrum-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(13, 112, 196, 0.18);
  border-radius: 50%;
}

.spectrum-orbit--one {
  width: 138%;
  height: 61%;
  transform: translate(-50%, -50%) rotate(19deg);
}

.spectrum-orbit--two {
  width: 119%;
  height: 74%;
  border-style: dashed;
  opacity: 0.62;
  transform: translate(-50%, -50%) rotate(-43deg);
}

.color-readout {
  position: absolute;
  right: 7%;
  bottom: 7%;
  left: 7%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid rgba(12, 37, 48, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 3px 3px rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(22px);
}

.color-readout small,
.color-readout strong {
  display: block;
}

.color-readout small {
  margin-bottom: 4px;
  color: rgba(12, 37, 48, 0.42);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.color-readout strong {
  font-family: var(--display);
  font-size: 13px;
}

.color-bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
}

.color-bars i {
  width: 6px;
  border-radius: 999px;
  background: var(--blue);
}

.color-bars i:nth-child(1) {
  height: 11px;
  background: #6b84ff;
}

.color-bars i:nth-child(2) {
  height: 19px;
  background: #55c3f2;
}

.color-bars i:nth-child(3) {
  height: 27px;
  background: #84d9a9;
}

.color-bars i:nth-child(4) {
  height: 20px;
  background: #f5cf75;
}

.color-bars i:nth-child(5) {
  height: 13px;
  background: #f39c84;
}

.landscape-visual {
  background:
    radial-gradient(
      circle at 22% 16%,
      rgba(93, 184, 242, 0.22),
      transparent 31%
    ),
    linear-gradient(145deg, #f3fbff, #e8f4f6);
}

.relief-board {
  position: absolute;
  top: 12%;
  right: 14%;
  bottom: 13%;
  left: 14%;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 44% 56% 18% 16% / 16% 20% 12% 14%;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(255, 255, 255, 0.6), transparent 16%),
    radial-gradient(ellipse at 68% 62%, rgba(31, 82, 76, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(91, 140, 116, 0.76), rgba(25, 70, 67, 0.94));
  box-shadow:
    inset 22px 16px 34px rgba(255, 255, 255, 0.18),
    inset -28px -24px 46px rgba(9, 40, 43, 0.32),
    0 34px 66px rgba(22, 75, 82, 0.22);
  overflow: hidden;
  transform: rotate(1.6deg);
}

.relief {
  position: absolute;
  border-radius: 44% 56% 62% 38%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(145deg, #779976, #274f49);
  box-shadow:
    inset 7px 8px 12px rgba(255, 255, 255, 0.12),
    9px 11px 18px rgba(9, 38, 39, 0.27);
}

.relief--one {
  top: 11%;
  left: -2%;
  width: 52%;
  height: 23%;
  transform: rotate(-18deg);
}

.relief--two {
  top: 30%;
  right: 2%;
  width: 56%;
  height: 19%;
  transform: rotate(16deg);
}

.relief--three {
  bottom: 25%;
  left: 12%;
  width: 61%;
  height: 20%;
  transform: rotate(-9deg);
}

.relief--four {
  right: -7%;
  bottom: 4%;
  width: 69%;
  height: 24%;
  transform: rotate(10deg);
}

.relief-trace {
  position: absolute;
  width: 48%;
  height: 72%;
  border: 1px solid rgba(195, 226, 201, 0.28);
  border-radius: 50%;
}

.relief-trace--one {
  top: 10%;
  left: 20%;
  transform: rotate(29deg) scaleY(1.5);
}

.relief-trace--two {
  right: 7%;
  bottom: 5%;
  transform: rotate(-31deg) scaleY(1.3);
}

.material-tag {
  position: absolute;
  z-index: 5;
  bottom: 8%;
  left: 7%;
  display: grid;
  min-width: 235px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 15px;
  color: #fff;
  background: rgba(8, 36, 37, 0.4);
  box-shadow:
    inset 0 3px 4px rgba(255, 255, 255, 0.12),
    0 18px 32px rgba(10, 50, 53, 0.22);
  backdrop-filter: blur(22px);
}

.material-tag small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.material-tag strong {
  font-size: 13px;
}

.material-tag span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

blockquote {
  position: relative;
  margin: 34px 0 0;
  padding: 21px 24px 21px 54px;
  border: 1px solid rgba(12, 37, 48, 0.08);
  border-radius: 16px;
  color: rgba(12, 37, 48, 0.72);
  background: rgba(242, 250, 255, 0.58);
  box-shadow: inset 0 3px 4px rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

blockquote > span {
  position: absolute;
  top: 12px;
  left: 19px;
  color: rgba(0, 132, 255, 0.5);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.preorder-section {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding-bottom: 0;
  color: #fff;
  background:
    radial-gradient(circle at 71% 28%, rgba(31, 143, 255, 0.38), transparent 31%),
    linear-gradient(145deg, #071d27 0%, #0b2a37 48%, #061820 100%);
  overflow: hidden;
}

.preorder-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.preorder-glow--one {
  top: -16%;
  right: 4%;
  width: 580px;
  height: 580px;
  background: rgba(0, 132, 255, 0.28);
}

.preorder-glow--two {
  bottom: -20%;
  left: -10%;
  width: 520px;
  height: 520px;
  background: rgba(53, 183, 153, 0.12);
}

.preorder-grid {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  padding-bottom: 72px;
}

.preorder-section h2 {
  color: #fff;
}

.preorder-section .eyebrow {
  color: #83c5ff;
}

.preorder-section .body-copy {
  color: rgba(236, 246, 251, 0.68);
}

.proof-badge--light {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 3px 4px rgba(255, 255, 255, 0.06);
}

.price-card {
  position: relative;
  padding: clamp(25px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 4px 4px rgba(255, 255, 255, 0.1),
    0 38px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(42px) saturate(150%);
  -webkit-backdrop-filter: blur(42px) saturate(150%);
}

.price-card__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.price-line {
  display: flex;
  align-items: flex-end;
  margin: 28px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.price-line small {
  margin: 0 6px 14px 0;
  color: #8cc8ff;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
}

.price-line strong {
  font-family: var(--display);
  font-size: clamp(72px, 7vw, 108px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -5px;
}

.price-line span {
  margin: 0 0 10px 17px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.price-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.price-facts > div {
  min-height: 82px;
  padding: 15px;
  background: rgba(4, 26, 35, 0.34);
}

.price-facts small,
.price-facts strong {
  display: block;
}

.price-facts small {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.price-facts strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.45;
}

.primary-cta--wide {
  width: 100%;
  justify-content: space-between;
}

.terms {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.65;
}

.site-footer {
  margin: auto calc(clamp(28px, 5vw, 82px) * -1) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.09);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-end;
  padding: 28px 0 32px;
}

.brand--footer {
  color: #fff;
}

.footer-inner > div > p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  line-height: 1.7;
  text-align: right;
}

@media (max-width: 1180px) {
  .hero-grid,
  .two-column,
  .two-column--reverse,
  .preorder-grid {
    gap: 48px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  }

  .two-column,
  .two-column--reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  }

  .preorder-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

  .screen-rail {
    right: 12px;
  }
}

@media (max-width: 940px) {
  html {
    scroll-snap-type: y mandatory;
  }

  .section {
    min-height: auto;
    padding: 126px 28px 76px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 125px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-grid,
  .two-column,
  .two-column--reverse,
  .preorder-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-copy,
  .body-copy {
    max-width: 720px;
  }

  .orb-stage {
    min-height: 540px;
  }

  .glassy-orb {
    width: min(88vw, 720px);
  }

  .orb-stage::before {
    width: min(100vw, 860px);
  }

  .orb-fallback {
    width: min(68vw, 560px);
  }

  .orb-ring--one {
    width: min(68vw, 570px);
  }

  .orb-ring--two {
    width: min(78vw, 700px);
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .nature-marks {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .two-column--reverse .section-copy {
    order: -1;
  }

  .visual-frame {
    width: min(100%, 760px);
    min-height: 570px;
  }

  .preorder-section {
    min-height: 100svh;
    padding-bottom: 0;
  }

  .site-footer {
    margin-top: 20px;
  }

  .screen-rail {
    display: none;
  }
}

@media (max-width: 720px) {
  .glass-nav {
    top: 16px;
    width: calc(100vw - 28px);
    justify-content: space-between;
    min-height: 54px;
    padding-left: 15px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    font-size: 18px;
  }

  .section {
    padding: 108px 20px 62px;
  }

  .hero {
    padding-top: 108px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 62px);
    letter-spacing: -2px;
  }

  h2 {
    font-size: clamp(39px, 11vw, 54px);
    letter-spacing: -1.8px;
  }

  .proof-badge {
    margin-bottom: 22px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-cta {
    justify-content: space-between;
    min-width: min(100%, 280px);
  }

  .orb-stage {
    min-height: 410px;
    margin: -16px -16px 0;
  }

  .floating-card {
    min-width: 190px;
    padding: 10px 12px;
  }

  .floating-card--top {
    top: 13%;
    right: 1%;
  }

  .floating-card--bottom {
    bottom: 11%;
    left: 1%;
  }

  .trust-strip {
    padding-top: 20px;
  }

  .nature-marks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .visual-frame {
    min-height: 480px;
    border-radius: 24px;
  }

  .tank-visual {
    right: 17%;
    left: 12%;
  }

  .measure-line--width {
    right: 17%;
    left: 12%;
  }

  .control-visual {
    padding: 62px 14px 14px;
  }

  .control-panel {
    padding: 22px 15px;
  }

  .knob-row {
    margin: 8px 0;
  }

  .schedule-card {
    grid-template-columns: 47px 1fr auto;
    gap: 8px;
  }

  .schedule-card small {
    display: none;
  }

  .spectrum-halo {
    width: 62%;
  }

  .material-tag {
    bottom: 9%;
    left: 5%;
  }

  .relief-board {
    right: 8%;
    left: 8%;
  }

  .price-facts {
    grid-template-columns: 1fr;
  }

  .price-facts > div {
    min-height: auto;
  }

  .price-line strong {
    font-size: 78px;
  }

  .footer-inner {
    display: grid;
    gap: 22px;
    padding: 25px 20px 30px;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .proof-stars {
    display: none;
  }

  .hero-actions {
    display: grid;
    gap: 8px;
  }

  .text-link {
    justify-content: center;
  }

  .nature-marks {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-card strong {
    max-width: 142px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .visual-frame {
    min-height: 440px;
  }

  .frame-label {
    top: 18px;
    right: 18px;
    left: 18px;
  }

  .tank-visual {
    top: 15%;
    right: 19%;
    bottom: 13%;
    left: 9%;
  }

  .measure-line--height {
    top: 15%;
    right: 8%;
    bottom: 13%;
  }

  .measure-line--width {
    right: 19%;
    bottom: 8%;
    left: 9%;
  }

  .knob {
    width: 56px;
    height: 56px;
  }

  .schedule-card {
    padding: 12px 10px;
  }

  .color-readout {
    right: 5%;
    left: 5%;
  }

  .visual-disclaimer {
    right: 16px;
  }

  .material-tag {
    min-width: 210px;
  }

  .price-card {
    margin: 0 -2px;
    padding: 24px 18px;
  }
}

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

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

/* Wandor-inspired hero, translated into SeeWild's natural-observation language. */
.wandor-hero {
  position: relative;
  min-height: max(100svh, 790px);
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: #1a1a1a;
  background: #d9e1df;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  z-index: 0;
  inset: -2.5%;
  background-image: url("./homepage/hero-shrimp-landscape-poster.jpg");
  background-position: center 50%;
  background-size: cover;
  animation: hero-drift 18s ease-in-out infinite alternate;
  transform: scale(1.04);
  will-change: transform;
}

.hero-background-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  pointer-events: none;
}

.hero-photo-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(6, 18, 17, 0.28) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 48%);
  pointer-events: none;
}

.hero-top-gradient {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: min(76vh, 700px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.94) 25%,
    rgba(255, 255, 255, 0.66) 58%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 1360px);
  min-height: max(100svh, 790px);
  margin: 0 auto;
}

.hero-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px 16px;
}

.site-fixed-nav {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  color: #1a1a1a;
  transition: color 220ms ease;
}

.site-fixed-nav .hero-wordmark img {
  transition: opacity 220ms ease;
}

.site-fixed-nav--dark .hero-nav-center a,
.site-fixed-nav--dark .hero-nav-link,
.site-fixed-nav--dark .hero-nav-cta {
  color: rgba(255, 255, 255, 0.92);
}

.site-fixed-nav--dark .hero-nav-cta {
  background: #0a0a0a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 8px 22px rgba(0, 0, 0, 0.2);
}

.site-fixed-nav--dark .hero-nav-cta:hover,
.site-fixed-nav--dark .hero-nav-cta:focus-visible {
  background: #252525;
}

.hero-wordmark {
  color: #0a0a0a;
  font-family: var(--brand);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
}

.hero-wordmark img {
  display: block;
  width: 118px;
  height: auto;
  object-fit: contain;
}

.hero-wordmark img {
  display: block;
  width: 118px;
  height: auto;
  object-fit: contain;
}

.hero-nav-center {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 32px;
  transform: translateX(-50%);
}

.hero-nav-center a,
.hero-nav-link {
  border: 0;
  color: #1a1a1a;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 180ms ease;
}

.hero-nav-center a:hover,
.hero-nav-center a:focus-visible,
.hero-nav-link:hover,
.hero-nav-link:focus-visible {
  opacity: 0.55;
  outline: none;
}

.hero-nav-link--studio {
  position: relative;
  cursor: default;
}

.hero-nav-link--studio:hover,
.hero-nav-link--studio:focus-visible {
  opacity: 1;
}

.hero-nav-link--studio:focus-visible {
  outline: 1px solid rgba(8, 18, 15, 0.42);
  outline-offset: 6px;
}

.site-fixed-nav--dark .hero-nav-link--studio:focus-visible {
  outline-color: rgba(255, 255, 255, 0.46);
}

.hero-nav-status {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: max-content;
  max-width: min(280px, calc(100vw - 32px));
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(8, 18, 15, 0.84);
  box-shadow: 0 14px 34px rgba(3, 11, 8, 0.2);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
}

.hero-nav-link--studio:hover .hero-nav-status,
.hero-nav-link--studio:focus-visible .hero-nav-status {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.hero-nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fafafa;
  background: #0a0a0a;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.hero-nav-cta:hover,
.hero-nav-cta:focus-visible {
  background: #333;
  outline: none;
}

.hero-nav-cta:active {
  transform: scale(0.95);
}

.wandor-hero-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(96px, 13vh, 138px) 24px 72px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 20px;
  color: rgba(26, 26, 26, 0.56);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.wandor-hero h1 {
  max-width: 880px;
  color: #1a1a1a;
  font-family: var(--sans);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.wandor-hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-subtitle {
  max-width: 590px;
  margin: 23px 0 0;
  color: #676b69;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-conversion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.hero-price-hint {
  margin: 0;
  color: rgba(26, 26, 26, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-card-scroll {
  position: absolute;
  right: 40px;
  bottom: 36px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 17px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.hero-card-scroll:hover,
.hero-card-scroll:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  outline: 2px solid #fff;
  outline-offset: 2px;
  transform: scale(1.05);
}

.hero-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fafafa;
  background: #0a0a0a;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.hero-card-cta:hover,
.hero-card-cta:focus-visible {
  background: #333;
  outline: none;
}

.hero-card-cta:active {
  transform: scale(0.95);
}

.hero-shipping-note {
  margin: 2px 0 0;
  color: rgba(26, 26, 26, 0.48);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
}

@keyframes hero-drift {
  0% {
    transform: scale(1.04) translate3d(-0.6%, -0.3%, 0);
  }
  100% {
    transform: scale(1.1) translate3d(0.8%, 0.5%, 0);
  }
}

@media (max-width: 980px) {
  .hero-nav {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero-nav-center {
    display: none;
  }

  .wandor-hero-body {
    padding-top: clamp(54px, 7vh, 82px);
  }
}

@media (max-width: 760px) {
  .wandor-hero,
  .hero-content {
    min-height: max(100svh, 760px);
  }

  .hero-photo {
    inset: -4%;
    background-position: 40% center;
  }

  .hero-background-video {
    object-position: 40% center;
  }

  .hero-photo-shade {
    background:
      linear-gradient(180deg, transparent 44%, rgba(5, 19, 17, 0.38) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 70%);
  }

  .hero-top-gradient {
    height: 72%;
    background: linear-gradient(
      180deg,
      #fff 0%,
      rgba(255, 255, 255, 0.96) 31%,
      rgba(255, 255, 255, 0.7) 63%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .hero-nav {
    padding: 20px 24px 14px;
  }

  .hero-wordmark {
    font-size: 32px;
  }

  .hero-nav-link {
    display: block;
  }

  .hero-nav-actions {
    gap: clamp(8px, 3vw, 20px);
  }

  .hero-nav-link {
    font-size: clamp(11px, 2.3vw, 14px);
    white-space: nowrap;
  }

  .hero-nav-link--studio {
    display: none;
  }

  .hero-nav-cta {
    display: inline-flex;
    min-height: 40px;
    padding: 0 14px;
    font-size: clamp(11px, 2.3vw, 14px);
    white-space: nowrap;
  }

  .wandor-hero-body {
    padding: 52px 24px 50px;
  }

  .wandor-hero-body > .hero-kicker,
  .wandor-hero-body > h1,
  .wandor-hero-body > .hero-subtitle {
    transform: translateY(30px);
  }

  .hero-kicker {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .wandor-hero h1 {
    font-size: clamp(34px, 10.4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
  }

  .hero-subtitle {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-conversion {
    gap: 10px;
    margin-top: 20px;
    transform: translateY(30px);
  }

  .hero-price-hint {
    font-size: 12px;
  }

  .hero-card-cta {
    min-width: 220px;
    height: 54px;
    padding: 0 22px;
    font-size: 14px;
  }

  .hero-card-scroll {
    right: 24px;
    bottom: 24px;
  }
}

@media (max-width: 440px) {
  .hero-card-cta {
    min-width: min(220px, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo {
    animation: none;
    transform: scale(1.04);
  }

  .hero-background-video {
    display: none;
  }
}

/* Full editorial treatment for screens 02–06. */
.editorial-screen {
  position: relative;
  min-height: max(100svh, 720px);
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #dce5df;
  isolation: isolate;
}

.editorial-bg {
  position: absolute;
  z-index: 0;
  inset: -2%;
  background-position: center;
  background-size: cover;
  animation: editorial-drift 22s ease-in-out infinite alternate;
  transform: scale(1.035);
  will-change: transform;
}

.editorial-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.editorial-screen--design .editorial-bg {
  background-image: url("./homepage/section-design-rainy-night.jpg");
  background-position: 68% 10%;
  animation: none;
  transform: scale(1.035);
  will-change: auto;
}

.editorial-screen--design .editorial-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 14, 15, 0.66) 0%,
      rgba(5, 14, 15, 0.52) 30%,
      rgba(5, 14, 15, 0.18) 64%,
      rgba(5, 14, 15, 0.06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 10, 11, 0.18) 0%,
      rgba(3, 10, 11, 0.02) 40%,
      rgba(3, 10, 11, 0.2) 100%
    );
}

.editorial-screen--rhythm {
  background-image: url("./homepage/section-rhythm-video-poster.jpg");
  background-position: 50% 50%;
  background-size: cover;
}

.editorial-screen--rhythm .editorial-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 14, 10, 0.12) 0%,
      rgba(5, 14, 10, 0.22) 40%,
      rgba(5, 14, 10, 0.74) 100%
    ),
    linear-gradient(180deg, rgba(2, 10, 8, 0.18), transparent 36%);
}

.editorial-background-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 50%;
  pointer-events: none;
}

.editorial-background-video--rhythm {
  object-position: 50% 50%;
}

.editorial-screen--light {
  background-image: url("./homepage/section-light.png");
  background-position: 35% 50%;
  background-size: cover;
}

.editorial-screen--light .editorial-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.2) 48%,
      rgba(255, 255, 255, 0.9) 100%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent 30%);
}

.landscape-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.landscape-scene {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position:
    var(--landscape-scene-position-x, 48%)
    var(--landscape-scene-position-y, 46%);
}

.landscape-board-viewport {
  position: absolute;
  z-index: 1;
  top: var(--landscape-tank-top, 17.4%);
  left: var(--landscape-tank-left, 59.6%);
  width: var(--landscape-tank-width, 19%);
  height: var(--landscape-tank-height, 70%);
  overflow: hidden;
  opacity: 0;
  perspective: 1350px;
  transition: opacity 180ms ease;
}

.landscape-carousel[data-metrics-ready="true"] .landscape-board-viewport {
  opacity: 1;
}

.landscape-board-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition:
    opacity 980ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1180ms cubic-bezier(0.2, 0.72, 0.2, 1);
  visibility: hidden;
  will-change: transform, opacity;
}

.landscape-carousel--forward .landscape-board-slide {
  transform: translate3d(13%, 0, -84px) rotateY(-4deg) scale(0.988);
}

.landscape-carousel--forward .landscape-board-slide.is-exiting {
  transform: translate3d(-13%, 0, -84px) rotateY(4deg) scale(0.988);
}

.landscape-carousel--backward .landscape-board-slide {
  transform: translate3d(-13%, 0, -84px) rotateY(4deg) scale(0.988);
}

.landscape-carousel--backward .landscape-board-slide.is-exiting {
  transform: translate3d(13%, 0, -84px) rotateY(-4deg) scale(0.988);
}

.landscape-board-slide.is-active,
.landscape-board-slide.is-exiting {
  visibility: visible;
}

.landscape-board-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateY(0) scale(1);
}

.landscape-board-slide.is-exiting {
  z-index: 1;
  opacity: 0;
}

.landscape-board-image {
  position: absolute;
  top: var(--landscape-board-image-top, -17.4%);
  left: var(--landscape-board-image-left, -313%);
  display: block;
  width: var(--landscape-scene-width, 526%);
  height: var(--landscape-scene-height, 143%);
  max-width: none;
  user-select: none;
}

.landscape-board-switcher {
  position: absolute;
  z-index: 3;
  top: calc(
    var(--landscape-tank-top, 17.4%) +
      var(--landscape-tank-height, 70%) - 46px
  );
  left: var(--landscape-tank-center-x, 69%);
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(245, 246, 242, 0.58);
  box-shadow: 0 8px 24px rgba(19, 29, 23, 0.12);
  backdrop-filter: blur(16px) saturate(112%);
  -webkit-backdrop-filter: blur(16px) saturate(112%);
  transform: translateX(-50%);
  pointer-events: auto;
}

.landscape-board-switcher button {
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: rgba(26, 26, 26, 0.58);
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.landscape-board-switcher button:hover,
.landscape-board-switcher button:focus-visible {
  color: #1a1a1a;
  outline: none;
}

.landscape-board-switcher button:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(26, 26, 26, 0.34);
}

.landscape-board-switcher button.is-active {
  color: rgba(255, 255, 255, 0.94);
  background: rgba(18, 27, 22, 0.78);
}

.editorial-screen--landscape .editorial-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.86) 0%,
      rgba(255, 255, 255, 0.68) 28%,
      rgba(255, 255, 255, 0.05) 66%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 32%);
}

.editorial-screen--preorder .editorial-bg {
  background-image: url("./homepage/section-preorder.png");
  background-position: 50% 52%;
}

.editorial-screen--preorder .editorial-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(4, 12, 10, 0.22) 0%,
      rgba(4, 12, 10, 0.5) 54%,
      rgba(4, 12, 10, 0.96) 100%
    ),
    linear-gradient(90deg, rgba(3, 11, 9, 0.32), rgba(3, 11, 9, 0.08));
}

.editorial-screen--preorder {
  background: #040c0a;
}

.editorial-chrome {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  min-height: 48px;
  color: rgba(26, 26, 26, 0.78);
}

.editorial-wordmark {
  justify-self: start;
  color: #0a0a0a;
  font-family: var(--brand);
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.editorial-wordmark img {
  display: block;
  width: 118px;
  height: auto;
  object-fit: contain;
}

.editorial-next {
  position: absolute;
  z-index: 4;
  right: 40px;
  bottom: 36px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #111;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.editorial-next:hover,
.editorial-next:focus-visible {
  background: rgba(255, 255, 255, 0.38);
  outline: 2px solid #fff;
  outline-offset: 2px;
  transform: scale(1.05);
}

.editorial-screen--dark .editorial-chrome {
  color: rgba(255, 255, 255, 0.72);
}

.editorial-screen--dark .editorial-wordmark,
.editorial-screen--dark .editorial-next {
  color: #fff;
}

.editorial-screen--dark .hero-nav-center a,
.editorial-screen--dark .hero-nav-link,
.editorial-screen--dark .hero-nav-cta {
  color: rgba(255, 255, 255, 0.92);
}

.editorial-screen--dark .hero-nav-cta {
  background: #0a0a0a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 8px 22px rgba(0, 0, 0, 0.2);
}

.editorial-screen--dark .hero-nav-cta:hover,
.editorial-screen--dark .hero-nav-cta:focus-visible {
  background: #252525;
}

.editorial-stage {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 1360px);
  min-height: max(100svh, 720px);
  margin: 0 auto;
  padding: 108px 40px 62px;
  align-items: center;
}

.editorial-stage--left {
  justify-content: flex-start;
}

.editorial-stage--right {
  justify-content: flex-end;
}

.editorial-stage--bottom {
  align-items: flex-end;
}

.editorial-glass {
  position: relative;
  width: min(610px, 48vw);
  padding: clamp(28px, 3.2vw, 42px);
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 44px;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.23);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 0 4px rgba(0, 0, 0, 0.12),
    0 30px 80px rgba(18, 42, 35, 0.14);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  overflow: hidden;
}

.editorial-glass::before {
  position: absolute;
  top: -25%;
  left: -8%;
  width: 58%;
  height: 55%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(22px);
  content: "";
  pointer-events: none;
}

.editorial-glass > * {
  position: relative;
}

.editorial-glass--dark {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
  background: rgba(5, 18, 14, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 0 4px rgba(0, 0, 0, 0.28),
    0 30px 80px rgba(0, 0, 0, 0.28);
}

.editorial-glass.editorial-glass--copy {
  border: 0;
  border-radius: 0;
  background: radial-gradient(
    ellipse at 38% 50%,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.22) 52%,
    rgba(255, 255, 255, 0.07) 76%,
    transparent 100%
  );
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.editorial-glass.editorial-glass--copy::before {
  display: none;
}

.editorial-glass.editorial-glass--copy.editorial-glass--dark {
  background: radial-gradient(
    ellipse at 38% 50%,
    rgba(5, 18, 14, 0.52) 0%,
    rgba(5, 18, 14, 0.32) 54%,
    rgba(5, 18, 14, 0.1) 78%,
    transparent 100%
  );
}

.editorial-screen--design
  .editorial-glass.editorial-glass--copy.editorial-glass--dark {
  background: radial-gradient(
    ellipse at 38% 50%,
    rgba(5, 16, 17, 0.4) 0%,
    rgba(5, 16, 17, 0.2) 54%,
    rgba(5, 16, 17, 0.05) 78%,
    transparent 100%
  );
}

.editorial-kicker {
  margin: 0 0 18px;
  color: rgba(26, 26, 26, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.editorial-glass--dark .editorial-kicker {
  color: rgba(255, 255, 255, 0.58);
}

.editorial-screen--design .editorial-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.editorial-glass h2 {
  max-width: 9.6em;
  color: inherit;
  font-family: var(--sans);
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

#design-title,
#light-title {
  max-width: none;
  font-size: clamp(38px, 3.8vw, 54px);
}

#design-title span,
#light-title span,
#landscape-title span {
  display: block;
  white-space: nowrap;
}

.editorial-body {
  margin-top: 24px;
  color: rgba(26, 26, 26, 0.7);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.76;
  letter-spacing: -0.018em;
}

.editorial-glass--dark .editorial-body {
  color: rgba(255, 255, 255, 0.7);
}

.editorial-screen--design .editorial-body {
  color: rgba(255, 255, 255, 0.78);
}

.editorial-body p {
  margin: 0 0 0.8em;
}

.editorial-body p:last-child {
  margin-bottom: 0;
}

.editorial-stats {
  margin-top: 25px;
  padding-top: 14px;
  border-top: 1px solid rgba(26, 26, 26, 0.14);
}

.editorial-stats span {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(26, 26, 26, 0.46);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.editorial-stats strong {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.editorial-glass--dark .editorial-stats {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.editorial-glass--dark .editorial-stats span {
  color: rgba(255, 255, 255, 0.58);
}

.editorial-screen--design .editorial-stats span {
  color: rgba(255, 255, 255, 0.66);
}

.editorial-glass--dark .editorial-stats strong {
  color: rgba(255, 255, 255, 0.94);
}

.editorial-features {
  display: grid;
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.editorial-features > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.editorial-features > div > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
}

.editorial-features p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.editorial-features strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.editorial-micro-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
}

.editorial-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.editorial-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: rgba(26, 26, 26, 0.66);
  background: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  font-weight: 600;
}

.editorial-pills--terracotta span {
  color: #714729;
  background: rgba(144, 88, 49, 0.09);
}

.editorial-screen--landscape .editorial-pills--terracotta {
  gap: 0;
}

.editorial-screen--landscape .editorial-pills--terracotta span {
  padding: 0 13px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
}

.editorial-screen--landscape .editorial-pills--terracotta span + span {
  border-left: 1px solid rgba(113, 71, 41, 0.34);
}

.editorial-screen--light .editorial-pills {
  gap: 0;
}

.editorial-screen--light .editorial-pills span {
  padding: 0 13px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-size: 15px !important;
  font-weight: 600;
}

.editorial-screen--light .editorial-pills span + span {
  border-left: 1px solid rgba(26, 26, 26, 0.24) !important;
}

.editorial-disclaimer {
  position: absolute;
  z-index: 4;
  right: 40px;
  bottom: 24px;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: rgba(26, 26, 26, 0.55);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 8px;
  letter-spacing: 0.07em;
}

.editorial-disclaimer--light {
  color: rgba(255, 255, 255, 0.62);
  background: rgba(7, 18, 15, 0.16);
}

.editorial-preorder-layout {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1360px);
  min-height: max(100svh, 720px);
  margin: 0 auto;
  padding: 108px 40px 106px;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.editorial-preorder-layout .editorial-glass {
  width: 100%;
}

.editorial-care-card h2 {
  max-width: 7em;
}

.editorial-price-card {
  width: min(440px, 30vw);
  justify-self: end;
  transform: translate(0, 3vh);
  padding: clamp(22px, 2vw, 28px);
  border: 0;
  border-radius: 24px;
  color: #1a1a1a;
  background: rgba(239, 244, 237, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(110%);
  -webkit-backdrop-filter: blur(18px) saturate(110%);
}

.editorial-preorder-layout .editorial-price-card {
  width: min(440px, 30vw);
}

.editorial-price-card::before {
  display: none;
}

.editorial-price-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(26, 26, 26, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.editorial-join-title {
  margin: 18px 0 8px;
  color: #1a1a1a;
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.editorial-join-intro {
  max-width: 34em;
  margin: 0 0 14px;
  color: rgba(26, 26, 26, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.editorial-join-qr {
  display: block;
  width: min(100%, 240px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 14px;
  background: #fff;
  object-fit: contain;
  image-rendering: pixelated;
}

.editorial-price-line {
  display: flex;
  align-items: flex-end;
  margin: 24px 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.editorial-price-line small {
  margin: 0 5px 10px 0;
  color: var(--wandor-prompt);
  font-size: 22px;
  font-weight: 700;
}

.editorial-price-line strong {
  font-size: clamp(68px, 6vw, 92px);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.editorial-price-line span {
  margin: 0 0 8px 16px;
  color: rgba(26, 26, 26, 0.5);
  font-size: 10px;
}

.editorial-capacity {
  display: grid;
  gap: 7px;
  margin: -4px 0 18px;
}

.editorial-capacity-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: rgba(26, 26, 26, 0.6);
  font-size: 10px;
}

.editorial-capacity-heading strong {
  color: rgba(26, 26, 26, 0.82);
  font-size: 11px;
  font-weight: 650;
}

.editorial-capacity-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.12);
  overflow: hidden;
}

.editorial-capacity-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #667c65;
}

.editorial-capacity--full .editorial-capacity-track span {
  background: rgba(26, 26, 26, 0.5);
}

.editorial-capacity > small {
  color: rgba(26, 26, 26, 0.4);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.editorial-price-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 19px;
}

.editorial-price-facts > div {
  min-height: auto;
  padding: 10px 0;
  border: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 0;
  background: transparent;
}

.editorial-price-facts strong {
  display: block;
}

.editorial-price-facts strong {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
}

.editorial-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #fafafa;
  background: #0a0a0a;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.editorial-buy:hover,
.editorial-buy:focus-visible {
  background: #333;
  outline: none;
}

.editorial-buy:active {
  transform: scale(0.98);
}

.editorial-buy:disabled {
  color: rgba(255, 255, 255, 0.62);
  background: rgba(26, 26, 26, 0.48);
  cursor: not-allowed;
  transform: none;
}

.editorial-terms {
  margin: 11px 2px 0;
  color: rgba(26, 26, 26, 0.48);
  font-size: 9px;
  line-height: 1.6;
}

.registration-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgba(3, 10, 8, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.registration-dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: min(760px, calc(100svh - 48px));
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  color: #1a1a1a;
  background: rgba(244, 247, 241, 0.97);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  overflow-y: auto;
}

.registration-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 50%;
  place-items: center;
  color: rgba(26, 26, 26, 0.72);
  background: rgba(255, 255, 255, 0.52);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.registration-eyebrow {
  margin: 0 48px 12px 0;
  color: rgba(26, 26, 26, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.registration-dialog h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.registration-intro,
.registration-success > p:not(.registration-eyebrow) {
  margin: 14px 0 24px;
  color: rgba(26, 26, 26, 0.62);
  font-size: 13px;
  line-height: 1.75;
}

.registration-form {
  display: grid;
  gap: 16px;
}

.registration-form label:not(.registration-consent) {
  display: grid;
  gap: 7px;
  color: rgba(26, 26, 26, 0.72);
  font-size: 11px;
  font-weight: 650;
}

.registration-form input[type="text"],
.registration-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 12px;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.68);
  font: inherit;
  font-size: 14px;
}

.registration-form input:focus-visible,
.registration-close:focus-visible,
.registration-primary:focus-visible {
  outline: 2px solid #667c65;
  outline-offset: 2px;
}

.registration-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(26, 26, 26, 0.62);
  font-size: 11px;
  line-height: 1.6;
}

.registration-consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: #667c65;
}

.registration-primary {
  display: grid;
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  place-items: center;
  color: #fff;
  background: #0a0a0a;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}

.registration-form > small {
  color: rgba(26, 26, 26, 0.44);
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
}

.registration-success {
  display: grid;
  justify-items: start;
  padding-top: 20px;
}

.registration-success > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: #667c65;
  font-size: 24px;
}

.editorial-footer {
  position: absolute;
  z-index: 4;
  right: 64px;
  bottom: 22px;
  left: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  color: #fff;
}

.editorial-wordmark--footer {
  color: #fff;
  font-size: 26px;
}

.editorial-wordmark--footer img {
  filter: invert(1);
}

.editorial-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  line-height: 1.6;
  text-align: right;
}

.editorial-footer-company {
  display: inline-block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.editorial-footer-about-link {
  display: inline-block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 180ms ease;
}

.editorial-footer-about-link:hover,
.editorial-footer-about-link:focus-visible {
  color: rgba(255, 255, 255, 0.92);
  outline: none;
}

.editorial-footer-brand {
  display: grid;
  justify-items: end;
  justify-self: end;
}

.editorial-screen--preorder .editorial-footer p {
  font-size: 10px;
}

.editorial-screen--preorder .editorial-footer-company {
  font-size: 9px;
}

.editorial-footer-legal {
  display: grid;
  justify-items: center;
  gap: 3px;
}

.editorial-footer-legal a {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 7px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 180ms ease;
}

.editorial-screen--preorder .editorial-footer-legal a {
  font-size: 9px;
}

.editorial-footer-legal a:hover {
  color: rgba(255, 255, 255, 0.52);
}

.editorial-footer-police-icon {
  width: 11px;
  height: 11px;
  opacity: 0.72;
}

.editorial-footer-qrs {
  display: flex;
  justify-self: start;
  align-items: flex-start;
  gap: 8px;
}

.editorial-footer-qrs figure {
  display: grid;
  justify-items: center;
  gap: 3px;
  margin: 0;
}

.editorial-footer-qr-frame {
  display: grid;
  width: 68px;
  height: 68px;
  padding: 7px;
  place-items: center;
  border-radius: 8px;
  background: rgba(5, 12, 10, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 8px 24px rgba(0, 0, 0, 0.16);
}

.editorial-footer-qr-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.editorial-footer-qrs figcaption {
  color: rgba(255, 255, 255, 0.52);
  font-size: 7px;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

@keyframes editorial-drift {
  0% {
    transform: scale(1.035) translate3d(-0.35%, -0.25%, 0);
  }
  100% {
    transform: scale(1.075) translate3d(0.55%, 0.35%, 0);
  }
}

@media (max-width: 960px) {
  .editorial-glass {
    width: min(620px, 62vw);
  }

  .editorial-preorder-layout {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

  .editorial-price-facts > div {
    min-height: auto;
  }
}

@media (min-width: 761px) {
  .wandor-hero,
  .hero-content,
  .editorial-screen,
  .editorial-stage,
  .editorial-preorder-layout {
    height: 100svh;
    min-height: 100svh;
  }
}

@media (max-width: 760px) {
  .editorial-screen {
    min-height: max(100svh, 820px);
  }

  .editorial-screen--design .editorial-bg {
    background-position: 82% 50%;
  }

  .editorial-screen--rhythm {
    background-position: 28% 50%;
  }

  .editorial-background-video {
    object-position: 4% 52%;
  }

  .editorial-background-video--rhythm {
    object-position: 28% 50%;
  }

  .editorial-screen--light {
    background-position: 4% 52%;
  }

  .landscape-board-switcher {
    top: calc(var(--landscape-tank-top, 15%) + 16px);
  }

  .editorial-screen--preorder .editorial-bg {
    background-position: 50% 54%;
  }

  .editorial-screen--light .editorial-overlay,
  .editorial-screen--landscape .editorial-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.36) 0%,
      rgba(255, 255, 255, 0.08) 34%,
      rgba(255, 255, 255, 0.84) 76%,
      rgba(255, 255, 255, 0.95) 100%
    );
  }

  .editorial-screen--design .editorial-overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 13, 14, 0.12) 0%,
      rgba(4, 13, 14, 0.08) 34%,
      rgba(4, 13, 14, 0.58) 76%,
      rgba(4, 13, 14, 0.84) 100%
    );
  }

  .editorial-screen--rhythm .editorial-overlay,
  .editorial-screen--preorder .editorial-overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 13, 10, 0.2) 0%,
      rgba(4, 13, 10, 0.18) 34%,
      rgba(4, 13, 10, 0.76) 78%,
      rgba(4, 13, 10, 0.96) 100%
    );
  }

  .editorial-wordmark {
    font-size: 27px;
  }

  .editorial-next {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }

  .editorial-stage {
    min-height: max(100svh, 820px);
    padding: 96px 20px 56px;
    align-items: flex-end;
  }

  .editorial-stage--left,
  .editorial-stage--right {
    justify-content: center;
  }

  .editorial-glass {
    width: 100%;
    padding: 25px;
    border-width: 2px;
    border-radius: 34px;
  }

  .editorial-glass h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  #design-title,
  #light-title {
    font-size: clamp(28px, 7.9vw, 42px);
  }

  .editorial-body {
    margin-top: 19px;
    font-size: 14px;
    line-height: 1.66;
  }

  .editorial-stats {
    margin-top: 19px;
    padding-top: 12px;
  }

  .editorial-stats span {
    gap: 8px;
  }

  .editorial-features {
    margin-top: 19px;
  }

  .editorial-features > div {
    padding: 11px 0;
  }

  .editorial-pills {
    margin-top: 19px;
  }

  .editorial-disclaimer {
    right: 20px;
    bottom: 16px;
  }

  .editorial-preorder-layout {
    display: grid;
    min-height: auto;
    padding: 96px 20px 36px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .editorial-price-card {
    width: 100%;
    justify-self: stretch;
    transform: none;
  }

  .editorial-preorder-layout .editorial-price-card {
    width: 100%;
  }

  .editorial-screen--preorder {
    min-height: auto;
  }

  .editorial-screen--preorder .editorial-next {
    display: none;
  }

  .editorial-price-line strong {
    font-size: 72px;
  }

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

  .registration-modal {
    padding: 12px;
    align-items: end;
  }

  .registration-dialog {
    width: 100%;
    max-height: calc(100svh - 24px);
    padding: 30px 22px 24px;
    border-radius: 24px;
  }

  .registration-close {
    top: 14px;
    right: 14px;
  }

  .registration-dialog h2 {
    font-size: 34px;
  }

  .editorial-footer {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin: 0 20px;
    padding: 8px 0 34px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
  }

  .editorial-footer-qrs,
  .editorial-footer-brand {
    justify-self: center;
  }

  .editorial-footer-legal {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    justify-items: center;
    gap: 6px;
  }

  .editorial-footer-qr-frame {
    width: 72px;
    height: 72px;
    padding: 5px;
    border-radius: 8px;
  }

  .editorial-footer-qrs {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 8px 14px;
  }

  .editorial-footer-qrs::before {
    content: "关注见野";
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .editorial-footer-qrs figcaption {
    font-size: 9px;
  }

  .editorial-screen--preorder .editorial-footer-legal a {
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
  }

  .editorial-footer-brand {
    width: 100%;
    justify-items: center;
  }

  .editorial-screen--preorder .editorial-footer-brand p {
    max-width: none;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
  }

  .editorial-screen--preorder .editorial-footer-company {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
  }

  .editorial-footer-about-link {
    font-size: 10px;
  }

  .editorial-screen--preorder .editorial-disclaimer {
    bottom: 72px;
  }
}

@media (max-width: 460px) {
  .editorial-chrome {
    grid-template-columns: 1fr auto;
  }

  .editorial-chrome > span {
    display: none;
  }

  .editorial-glass {
    padding: 23px;
  }

  .editorial-glass h2 {
    font-size: 38px;
  }

  .editorial-price-top {
    display: grid;
    gap: 4px;
  }

  .editorial-price-line span {
    max-width: 66px;
    text-align: left;
  }

  .editorial-footer p {
    max-width: 190px;
  }

  .editorial-screen--preorder .editorial-footer p {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-bg {
    animation: none;
    transform: scale(1.035);
  }

  .editorial-background-video {
    display: none;
  }

  .landscape-board-slide {
    transition: opacity 180ms linear;
    transform: none !important;
  }
}
