/*
 * RYYE W12 Pro preorder storefront
 * Mobile-first, logical-property based, and safe-area aware.
 */

:root {
  color-scheme: light;
  --canvas: #f4f1e8;
  --canvas-deep: #ebe5d8;
  --paper: #fffdf8;
  --paper-soft: #faf7ef;
  --ink: #171b18;
  --ink-soft: #333a35;
  --muted: #697068;
  --muted-strong: #515952;
  --line: rgba(23, 27, 24, 0.12);
  --line-strong: rgba(23, 27, 24, 0.22);
  --forest: #174d38;
  --forest-bright: #23684c;
  --mint: #cfe9d9;
  --coral: #ef7659;
  --coral-soft: #ffd8cc;
  --amber: #e9a348;
  --night: #0d120f;
  --night-soft: #151c18;
  --night-card: #1a211d;
  --white: #ffffff;
  --success: #1c7651;
  --danger: #b74938;
  --shadow-xs: 0 1px 2px rgba(16, 24, 19, 0.08);
  --shadow-sm: 0 8px 24px rgba(20, 27, 22, 0.08);
  --shadow-md: 0 18px 50px rgba(20, 27, 22, 0.13);
  --shadow-lg: 0 32px 90px rgba(12, 18, 14, 0.2);
  --radius-sm: 0.75rem;
  --radius-md: 1.125rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.5rem;
  --container: 77.5rem;
  --header-height: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", Roboto, "Noto Sans Arabic", Arial, sans-serif;
}

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

html {
  background: var(--canvas);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding-block-end: calc(5rem + env(safe-area-inset-bottom));
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 2%, rgba(255, 255, 255, 0.84), transparent 24rem),
    var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

button:disabled {
  cursor: wait;
  opacity: 0.62;
}

body:has(dialog[open]) {
  overflow: hidden;
}

main {
  position: relative;
  overflow: clip;
}

button,
input,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button,
select,
summary,
[role="radio"] {
  -webkit-tap-highlight-color: transparent;
}

button,
select,
summary {
  cursor: pointer;
}

button {
  border: 0;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

svg:not(.route-map) {
  flex: 0 0 auto;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

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

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

input:focus-visible,
select:focus-visible {
  outline-offset: 1px;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  inset-block-start: max(0.75rem, env(safe-area-inset-top));
  inset-inline-start: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-md);
  font-weight: 750;
  transform: translateY(-180%);
  transition: transform 180ms var(--ease);
}

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

/* Shared controls */
.primary-button,
.secondary-button,
.header-cta,
.text-button,
.mobile-buybar button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: -0.012em;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.primary-button {
  padding-inline: 1.35rem;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(17, 24, 19, 0.18);
}

.primary-button svg,
.secondary-button svg,
.text-link svg,
.header-cta svg,
.mobile-buybar svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 2.2;
}

.secondary-button {
  padding-inline: 1.25rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}

.text-button {
  min-height: 2.75rem;
  padding-inline: 0.875rem;
  background: transparent;
  color: var(--ink-soft);
}

.full-button {
  width: 100%;
}

.light-button {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.icon-button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-soft);
  transition: transform 180ms var(--ease), background-color 180ms ease;
}

.icon-button svg {
  width: 1.2rem;
  height: 1.2rem;
}

.microcopy {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-strong);
  font-size: 0.8rem;
  line-height: 1.45;
}

.microcopy svg {
  width: 1rem;
  height: 1rem;
  margin-block-start: 0.08rem;
  color: var(--forest-bright);
}

.microcopy.centered {
  justify-content: center;
  text-align: center;
}

/* Announcement and navigation */
.announcement {
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding:
    max(0.45rem, env(safe-area-inset-top))
    max(0.75rem, env(safe-area-inset-right))
    0.45rem
    max(0.75rem, env(safe-area-inset-left));
  background: var(--forest);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
}

.announcement-dot,
.live-dot {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #76e1aa;
  box-shadow: 0 0 0 0.25rem rgba(118, 225, 170, 0.14);
}

.announcement-sep {
  color: rgba(255, 255, 255, 0.4);
}

.site-header {
  position: sticky;
  z-index: 90;
  inset-block-start: 0;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
  border-block-end: 1px solid rgba(23, 27, 24, 0.08);
  background: rgba(244, 241, 232, 0.86);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled,
.site-header[data-scrolled="true"] {
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 30px rgba(22, 29, 24, 0.07);
}

.brand {
  display: inline-flex;
  min-height: 2.75rem;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.brand-mark {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 0.48rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.header-select,
.lang-button {
  min-height: 2.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 720;
}

.header-select {
  width: 5.2rem;
  max-width: none;
  padding-inline: 0.45rem 1.1rem;
}

.lang-button {
  padding-inline: 0.65rem;
}

.header-cta {
  min-height: 2.75rem;
  padding-inline: 0.9rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 3rem max(1rem, env(safe-area-inset-right)) 1.5rem max(1rem, env(safe-area-inset-left));
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset-block-start: -12rem;
  inset-inline-start: -18rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85), transparent 67%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--forest-bright);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-block-end: 1.25rem;
}

.live-dot {
  background: var(--coral);
  box-shadow: 0 0 0 0.25rem rgba(239, 118, 89, 0.14);
  animation: pulse-dot 2.6s ease-out infinite;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.65rem, 13vw, 4.5rem);
  font-weight: 620;
  letter-spacing: -0.066em;
  line-height: 0.94;
}

.hero h1 > span {
  display: block;
}

.hero h1 > span:first-child {
  margin-block-end: 0.8rem;
  color: var(--muted-strong);
  font-size: 0.22em;
  font-weight: 820;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 37rem;
  margin-block-start: 1.35rem;
  color: var(--muted-strong);
  font-size: clamp(1rem, 4.5vw, 1.18rem);
  line-height: 1.6;
}

.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: 1.4rem;
}

.proof-chips > span {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  gap: 0.4rem;
  padding-inline: 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink-soft);
  font-size: 0.71rem;
  font-weight: 690;
  white-space: nowrap;
}

.proof-chips svg {
  width: 0.88rem;
  height: 0.88rem;
  color: var(--forest-bright);
}

.hero-offer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  max-width: 29rem;
  margin-block-start: 1.75rem;
  padding-block-start: 1.3rem;
  border-block-start: 1px solid var(--line);
}

.price-label {
  display: block;
  margin-block-end: 0.18rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 660;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.price-line strong {
  font-size: 1.58rem;
  font-weight: 790;
  letter-spacing: -0.04em;
}

.price-line s {
  color: var(--muted);
  font-size: 0.88rem;
}

.save-pill {
  flex: 0 0 auto;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.66rem;
  font-weight: 820;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.1rem;
  margin-block-start: 1.35rem;
}

.hero-actions .primary-button {
  min-width: 10.5rem;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 740;
}

.hero-copy > .microcopy {
  max-width: 28rem;
  margin-block-start: 1rem;
}

.hero-visual {
  position: relative;
  min-height: clamp(23rem, 104vw, 34rem);
  margin-block-start: 2.2rem;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 24, 0.08);
  border-radius: clamp(1.5rem, 7vw, 2.75rem);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.96) 0 19%, rgba(255, 255, 255, 0.35) 20% 42%, transparent 60%),
    linear-gradient(145deg, #dfd8ca 0%, #f7f3eb 52%, #d6d7ca 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), var(--shadow-sm);
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(23, 27, 24, 0.13) 0.75px, transparent 0.75px);
  background-size: 16px 16px;
  opacity: 0.28;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(23, 27, 24, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: min(77vw, 25rem);
  height: min(77vw, 25rem);
  animation: orbit-breathe 7s ease-in-out infinite;
}

.orbit-two {
  width: min(101vw, 33rem);
  height: min(101vw, 33rem);
  border-style: dashed;
  opacity: 0.7;
  animation: orbit-spin 40s linear infinite;
}

.product-glow {
  position: absolute;
  z-index: -1;
  inset: 22% 15%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  filter: blur(2rem);
}

.hero-watch {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: min(91%, 33rem);
  max-width: none;
  filter: drop-shadow(0 2rem 1.8rem rgba(22, 31, 25, 0.23));
  transform: translate(-50%, -50%) rotate(-7deg);
  animation: watch-float 5.5s var(--ease) infinite;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 7.4rem;
  padding: 0.62rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 0.95rem;
  background: rgba(255, 253, 248, 0.78);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  box-shadow: var(--shadow-sm);
}

.floating-card > svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--coral);
}

.floating-card > span {
  display: flex;
  flex-direction: column;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.55rem;
}

.floating-card strong {
  font-size: 0.72rem;
  letter-spacing: -0.01em;
}

.floating-card-health {
  inset-block-start: 15%;
  inset-inline-start: 4%;
}

.floating-card-sleep {
  inset-block-end: 20%;
  inset-inline-end: 3%;
}

.floating-card-sleep > svg {
  color: #6c75ad;
}

.color-picker {
  position: absolute;
  z-index: 5;
  inset-block-end: 0.85rem;
  inset-inline-start: 50%;
  display: flex;
  gap: 0.3rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.75);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transform: translateX(-50%);
}

.color-swatch {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
}

.color-swatch > span {
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.38);
}

.color-swatch.is-selected {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

/* Trust bar */
.trust-bar {
  display: grid;
  width: min(calc(100% - 2rem), var(--container));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1rem auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.62);
  box-shadow: var(--shadow-xs);
}

.trust-bar > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 0.7rem;
  border-block-end: 1px solid var(--line);
}

.trust-bar > div:nth-child(odd) {
  border-inline-end: 1px solid var(--line);
}

.trust-bar > div:nth-last-child(-n + 2) {
  border-block-end: 0;
}

.trust-bar svg {
  width: 1.08rem;
  height: 1.08rem;
  flex: 0 0 auto;
  color: var(--forest-bright);
}

.trust-bar span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.trust-bar strong {
  overflow: hidden;
  font-size: 0.65rem;
  font-weight: 760;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-bar small {
  color: var(--muted);
  font-size: 0.57rem;
  line-height: 1.3;
}

/* Common sections */
.section {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 5rem max(1rem, env(safe-area-inset-right)) 5rem max(1rem, env(safe-area-inset-left));
}

.section-heading {
  max-width: 47rem;
  margin-block-end: 2rem;
}

.section-heading .section-kicker,
.ecosystem-copy .section-kicker,
.box-card .section-kicker {
  margin-block-end: 0.8rem;
}

.section-heading h2,
.ecosystem-copy h2,
.box-card h2,
.final-cta h2 {
  font-size: clamp(2.1rem, 10vw, 4rem);
  font-weight: 610;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.section-heading > p:last-child:not(.section-kicker) {
  max-width: 37rem;
  margin-block-start: 1rem;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.65;
}

.compact-heading {
  margin-inline: auto;
  text-align: center;
}

/* Social stories */
.social-section {
  padding-block-start: 5.5rem;
}

.story-rail {
  display: grid;
  grid-auto-columns: min(82vw, 21rem);
  grid-auto-flow: column;
  gap: 0.85rem;
  margin-inline: calc(max(1rem, env(safe-area-inset-left)) * -1);
  padding-inline: max(1rem, env(safe-area-inset-left));
  padding-block-end: 0.75rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 1rem;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.story-rail::-webkit-scrollbar {
  display: none;
}

.story-card {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  text-align: start;
  isolation: isolate;
}

.story-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.story-card > img {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.story-workout > img {
  object-position: center 42%;
}

.story-gradient {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 12, 9, 0.89) 0%, rgba(7, 12, 9, 0.05) 58%, rgba(7, 12, 9, 0.15) 100%);
}

.story-icon {
  position: absolute;
  z-index: 2;
  inset-block-start: 1rem;
  inset-inline-end: 1rem;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.story-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.story-copy {
  position: absolute;
  z-index: 2;
  inset: auto 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.story-copy small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-copy strong {
  max-width: 14ch;
  font-size: 1.45rem;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.story-health {
  background:
    radial-gradient(circle at 50% 33%, rgba(246, 141, 113, 0.32), transparent 13rem),
    linear-gradient(155deg, #391a19, #121915 70%);
}

.story-metric {
  position: absolute;
  z-index: 1;
  inset-block-start: 24%;
  inset-inline: 1.5rem;
  display: grid;
  place-items: center;
  color: var(--white);
}

.story-metric .pulse-ring {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  margin-block-end: 0.8rem;
  border: 1px solid rgba(255, 134, 105, 0.55);
  border-radius: 50%;
  background: rgba(239, 118, 89, 0.13);
  box-shadow: 0 0 0 0.8rem rgba(239, 118, 89, 0.05);
}

.story-metric .pulse-ring svg {
  width: 1.7rem;
  height: 1.7rem;
  color: #ff9b83;
}

.story-metric > strong {
  font-size: 4.4rem;
  font-weight: 520;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.story-metric > small {
  margin-block-start: 0.3rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.story-metric > svg {
  width: 100%;
  margin-block-start: 1rem;
  fill: none;
  overflow: visible;
  stroke: #ff8e72;
  stroke-linecap: round;
  stroke-width: 3;
  filter: drop-shadow(0 0 0.45rem rgba(255, 142, 114, 0.55));
}

.story-app {
  background: linear-gradient(155deg, #c3d9ca, #718e7b 52%, #1b2a22);
}

.mini-phone {
  position: absolute;
  z-index: 1;
  inset-block-start: 9%;
  inset-inline-start: 50%;
  width: 70%;
  height: 70%;
  padding: 2.8rem 1rem 1rem;
  overflow: hidden;
  border: 0.35rem solid #171a18;
  border-radius: 2rem;
  background: #f4f1e8;
  color: var(--ink);
  box-shadow: 0 1.8rem 3rem rgba(7, 15, 10, 0.35);
  transform: translateX(-50%) rotate(3deg);
}

.mini-island {
  position: absolute;
  inset-block-start: 0.65rem;
  inset-inline-start: 50%;
  width: 3.2rem;
  height: 0.8rem;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.mini-greeting {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.mini-score {
  display: grid;
  width: 6.7rem;
  height: 6.7rem;
  place-items: center;
  align-content: center;
  margin: 1.1rem auto;
  border: 0.65rem solid #5c9374;
  border-inline-end-color: rgba(92, 147, 116, 0.15);
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 650;
}

.mini-score small {
  color: var(--muted);
  font-size: 0.43rem;
  font-weight: 650;
}

.mini-bars {
  display: flex;
  height: 3.3rem;
  align-items: end;
  gap: 0.3rem;
}

.mini-bars i {
  width: 100%;
  height: 40%;
  border-radius: 999px 999px 0 0;
  background: #6ca181;
}

.mini-bars i:nth-child(2) { height: 72%; }
.mini-bars i:nth-child(3) { height: 48%; }
.mini-bars i:nth-child(4) { height: 88%; }
.mini-bars i:nth-child(5) { height: 64%; }
.mini-bars i:nth-child(6) { height: 78%; }

/* Dark feature bento */
.dark-section {
  position: relative;
  padding: 5rem max(1rem, env(safe-area-inset-right)) 5.5rem max(1rem, env(safe-area-inset-left));
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(74, 139, 104, 0.2), transparent 34rem),
    var(--night);
  color: var(--white);
}

.dark-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 70%);
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.dark-section > * {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.light-heading .section-kicker {
  color: #8ec9a8;
}

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

.feature-bento {
  display: grid;
  gap: 0.85rem;
}

.bento-card {
  position: relative;
  min-height: 25rem;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 50%),
    var(--night-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  isolation: isolate;
}

.bento-copy {
  position: relative;
  z-index: 3;
  max-width: 31rem;
}

.bento-number {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  margin-block-end: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #86bd9f;
  font-size: 0.58rem;
  font-weight: 800;
}

.bento-copy h3 {
  max-width: 15ch;
  font-size: clamp(1.7rem, 8vw, 2.6rem);
  font-weight: 570;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.bento-copy h3 span:first-child {
  color: #93c9ab;
}

.bento-copy p {
  max-width: 31rem;
  margin-block-start: 0.75rem;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.87rem;
  line-height: 1.6;
}

.display-demo {
  position: absolute;
  z-index: 1;
  inset: auto -1rem -7.5rem;
  height: 23rem;
  background: radial-gradient(circle at 50% 62%, rgba(107, 183, 139, 0.18), transparent 57%);
}

.demo-watch {
  position: absolute;
  inset-block-start: 2rem;
  inset-inline-start: 50%;
  width: 13rem;
  height: 18rem;
  border: 0.75rem solid #292e2b;
  border-radius: 3.4rem;
  background: #090b0a;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.5), inset 0 0 0 2px #3f4641;
  transform: translateX(-50%) perspective(40rem) rotateX(6deg);
}

.demo-watch::before,
.demo-watch::after {
  position: absolute;
  z-index: -1;
  inset-inline-start: 50%;
  width: 6.8rem;
  height: 6rem;
  background: linear-gradient(90deg, #202522, #353c37, #1d211f);
  content: "";
  transform: translateX(-50%);
}

.demo-watch::before {
  inset-block-end: 98%;
  border-radius: 1.2rem 1.2rem 0 0;
}

.demo-watch::after {
  inset-block-start: 98%;
  border-radius: 0 0 1.2rem 1.2rem;
}

.demo-screen {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2.55rem;
  background:
    radial-gradient(circle at 50% 52%, rgba(37, 123, 82, 0.45), transparent 42%),
    #050706;
}

.demo-screen > span {
  font-size: 2.45rem;
  font-weight: 320;
  letter-spacing: -0.06em;
}

.demo-screen > small {
  margin-block-start: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.rings {
  width: 4.5rem;
  height: 4.5rem;
  margin-block-start: 0.8rem;
  border: 0.45rem solid #ec7658;
  border-inline-end-color: rgba(236, 118, 88, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.45rem #5ca17c, inset 0 0 0 0.88rem rgba(92, 161, 124, 0.16);
}

.battery-card {
  min-height: 22rem;
  background:
    radial-gradient(circle at 50% 88%, rgba(105, 189, 143, 0.2), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 50%),
    var(--night-card);
}

.battery-visual {
  position: absolute;
  z-index: 1;
  inset: auto 1.35rem 1.4rem;
  display: flex;
  align-items: baseline;
  color: #a9d8bc;
}

.battery-visual > strong {
  font-size: clamp(6.5rem, 31vw, 9.5rem);
  font-weight: 300;
  letter-spacing: -0.105em;
  line-height: 0.8;
}

.battery-visual > span {
  margin-inline-start: 0.65rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.9rem;
  font-weight: 700;
}

.battery-track {
  position: absolute;
  inset-block-end: -0.25rem;
  inset-inline: 0;
  height: 0.22rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.battery-track i {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4f9b70, #b3e2c5);
}

.gps-card {
  min-height: 25rem;
}

.route-map {
  position: absolute;
  z-index: 1;
  inset: auto -6rem -0.5rem auto;
  width: 34rem;
  max-width: none;
  fill: var(--coral);
}

.map-road {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 2;
}

.map-route {
  fill: none;
  stroke: #ef8065;
  stroke-dasharray: 8 7;
  stroke-linecap: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 0.4rem rgba(239, 128, 101, 0.28));
}

.sport-card {
  min-height: 23rem;
}

.sport-icons {
  position: absolute;
  inset: auto 1.15rem 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.sport-icons span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.045);
}

.sport-icons span:nth-child(2) { background: rgba(83, 149, 111, 0.15); color: #92cba9; }
.sport-icons span:nth-child(3) { background: rgba(80, 118, 151, 0.16); color: #8fc3d5; }
.sport-icons span:nth-child(4) { background: rgba(201, 108, 83, 0.15); color: #ee9e87; }

.sport-icons svg {
  width: 1.45rem;
  height: 1.45rem;
}

/* App ecosystem */
.ecosystem-section {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-block: 5.5rem;
}

.ecosystem-copy > p:not(.section-kicker) {
  max-width: 35rem;
  margin-block-start: 1.15rem;
  color: var(--muted-strong);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin-block: 1.5rem;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
}

.check-list svg {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.18rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  stroke-width: 3;
}

.phone-stage {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.92), transparent 17rem),
    linear-gradient(145deg, #c6d9cb, #8dab98 62%, #627a6a);
  box-shadow: var(--shadow-sm);
}

.phone-stage::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(18, 47, 33, 0.18) 0.75px, transparent 0.75px);
  background-size: 18px 18px;
  opacity: 0.28;
  content: "";
}

.phone-shell {
  position: absolute;
  z-index: 2;
  inset-block-start: 2.3rem;
  inset-inline-start: 50%;
  width: min(66vw, 15.5rem);
  height: 31rem;
  padding: 0.45rem;
  border-radius: 2.7rem;
  background: linear-gradient(145deg, #373d39, #0f1210 40%, #414842);
  box-shadow: 0 2.5rem 4rem rgba(17, 39, 27, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transform: translateX(-50%) rotate(-2deg);
}

.phone-island {
  position: absolute;
  z-index: 4;
  inset-block-start: 1rem;
  inset-inline-start: 50%;
  width: 4.7rem;
  height: 1.15rem;
  border-radius: 999px;
  background: #080a09;
  transform: translateX(-50%);
}

.phone-home {
  position: relative;
  height: 100%;
  padding: 2.7rem 0.85rem 3.5rem;
  overflow: hidden;
  border-radius: 2.3rem;
  background: #f6f2e9;
  color: var(--ink);
}

.phone-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.phone-top > div {
  display: flex;
  flex-direction: column;
}

.phone-top small {
  color: var(--muted);
  font-size: 0.46rem;
}

.phone-top strong {
  margin-block-start: 0.15rem;
  font-size: 0.75rem;
  letter-spacing: -0.02em;
}

.avatar-dot {
  width: 1.6rem;
  height: 1.6rem;
  border: 0.2rem solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: linear-gradient(145deg, #dba58e, #6a493d);
  box-shadow: var(--shadow-xs);
}

.vitality {
  margin-block-start: 0.9rem;
  padding: 1rem;
  border-radius: 1.1rem;
  background: linear-gradient(145deg, #164e37, #276448);
  color: var(--white);
  box-shadow: 0 0.8rem 1.4rem rgba(23, 77, 56, 0.18);
}

.vitality > span {
  display: inline-block;
  padding: 0.18rem 0.38rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #b8e6ca;
  font-size: 0.4rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.vitality h3 {
  margin-block-start: 0.6rem;
  font-size: 1rem;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.vitality > p {
  margin-block-start: 0.35rem;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.48rem;
  line-height: 1.5;
}

.vitality > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-block-start: 0.8rem;
  padding-block-start: 0.65rem;
  border-block-start: 1px solid rgba(255, 255, 255, 0.12);
}

.vitality > div strong {
  display: flex;
  flex-direction: column;
  font-size: 0.63rem;
}

.vitality > div small {
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.36rem;
  font-weight: 500;
}

.phone-home > h4 {
  margin: 1rem 0 0.6rem;
  font-size: 0.65rem;
}

.phone-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.phone-cards > div {
  display: flex;
  min-height: 6rem;
  flex-direction: column;
  padding: 0.7rem;
  border: 1px solid rgba(23, 27, 24, 0.08);
  border-radius: 0.85rem;
  background: var(--paper);
}

.phone-cards svg {
  width: 0.9rem;
  height: 0.9rem;
  margin-block-end: 0.45rem;
  color: var(--coral);
}

.phone-cards > div:nth-child(2) svg {
  color: #6972a7;
}

.phone-cards span {
  color: var(--muted);
  font-size: 0.46rem;
}

.phone-cards strong {
  margin-block-start: auto;
  font-size: 0.8rem;
}

.phone-cards strong small {
  color: var(--muted);
  font-size: 0.4rem;
}

.phone-nav {
  position: absolute;
  inset: auto 0.7rem 0.55rem;
  display: flex;
  height: 2.8rem;
  align-items: center;
  justify-content: space-around;
  border: 1px solid rgba(23, 27, 24, 0.06);
  border-radius: 1rem;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 -0.25rem 1rem rgba(24, 32, 27, 0.05);
}

.phone-nav svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--muted);
}

.phone-nav svg:first-child {
  color: var(--forest-bright);
}

.ecosystem-watch {
  position: absolute;
  z-index: 3;
  inset: auto -17% -12% auto;
  width: min(70vw, 24rem);
  max-width: none;
  filter: drop-shadow(0 2rem 1.5rem rgba(18, 37, 26, 0.35));
  transform: rotate(-15deg);
}

/* Configurator */
.order-section {
  padding-block-start: 5.75rem;
}

.product-configurator {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.config-visual {
  position: relative;
  display: grid;
  min-height: 23rem;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 47%, rgba(255, 255, 255, 0.95), transparent 12rem),
    linear-gradient(145deg, #ddd7c9, #f4efe6);
}

.config-visual::before,
.config-visual::after {
  position: absolute;
  border: 1px solid rgba(23, 27, 24, 0.09);
  border-radius: 50%;
  content: "";
}

.config-visual::before {
  width: 17rem;
  height: 17rem;
}

.config-visual::after {
  width: 23rem;
  height: 23rem;
  border-style: dashed;
}

.config-visual img {
  position: relative;
  z-index: 1;
  width: min(95%, 28rem);
  filter: drop-shadow(0 1.8rem 1.4rem rgba(24, 32, 27, 0.22));
  transform: rotate(-6deg);
  transition: opacity 180ms ease, transform 500ms var(--ease);
}

.config-panel {
  padding: 1.4rem;
}

.config-step,
.config-panel fieldset > legend {
  margin-block-end: 0.75rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 790;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finish-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.finish-option {
  display: flex;
  min-width: 0;
  min-height: 3.55rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-soft);
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 690;
  text-align: start;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.finish-option > span:first-child {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.finish-option.is-selected,
.finish-option[aria-checked="true"] {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--ink), var(--shadow-xs);
}

.config-summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-block: 1.35rem;
  padding-block: 1.15rem;
  border-block: 1px solid var(--line);
}

.config-summary > span {
  display: flex;
  flex-direction: column;
}

.config-summary > span:last-child {
  align-items: flex-end;
  text-align: end;
}

.config-summary span > span,
.config-summary small {
  color: var(--muted);
  font-size: 0.66rem;
}

.config-summary strong {
  margin-block-start: 0.15rem;
  font-size: 0.9rem;
}

.config-summary > span:last-child strong {
  font-size: 1.22rem;
  letter-spacing: -0.035em;
}

.config-panel > .microcopy {
  margin-block-start: 0.8rem;
}

/* Comparison */
.compare-section {
  padding-block-start: 2rem;
}

.comparison {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-xs);
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--line-strong) transparent;
}

.comparison-row {
  display: grid;
  min-width: 43rem;
  grid-template-columns: minmax(12rem, 1.45fr) repeat(3, minmax(8rem, 1fr));
  align-items: stretch;
  border-block-end: 1px solid var(--line);
}

.comparison-row:last-child {
  border-block-end: 0;
}

.comparison-row > * {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-inline-end: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.77rem;
  text-align: center;
}

.comparison-row > *:first-child {
  justify-content: flex-start;
  color: var(--ink-soft);
  font-weight: 680;
  text-align: start;
}

.comparison-row > *:last-child {
  border-inline-end: 0;
}

.comparison-row > *:nth-child(2) {
  background: rgba(207, 233, 217, 0.36);
  color: var(--forest);
  font-weight: 790;
}

.comparison-row svg {
  width: 1.15rem;
  height: 1.15rem;
  padding: 0.1rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  stroke-width: 3;
}

.comparison-head > * {
  min-height: 4.75rem;
  background: var(--paper-soft);
  color: var(--muted-strong);
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1.3;
}

.comparison-head > *:nth-child(2) {
  background: var(--forest);
  color: var(--white);
}

/* Specifications and box */
.specs-section {
  padding-block-start: 2.5rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.66);
}

.spec-grid > div {
  display: flex;
  min-height: 10.5rem;
  flex-direction: column;
  padding: 1rem;
  border-block-end: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
}

.spec-grid > div:nth-child(even) {
  border-inline-end: 0;
}

.spec-grid > div:nth-last-child(-n + 2) {
  border-block-end: 0;
}

.spec-grid svg {
  width: 1.3rem;
  height: 1.3rem;
  margin-block-end: auto;
  color: var(--forest-bright);
}

.spec-grid div > span {
  margin-block-start: 1rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 720;
  text-transform: uppercase;
}

.spec-grid strong {
  margin-block-start: 0.25rem;
  font-size: 0.77rem;
  font-weight: 720;
  line-height: 1.4;
}

.spec-note {
  max-width: 60rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
  text-align: center;
}

.box-section {
  padding-block-start: 1rem;
}

.box-card {
  display: grid;
  gap: 2rem;
  padding: 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(115, 177, 141, 0.24), transparent 24rem),
    var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.box-card .section-kicker {
  color: #a8dbbe;
}

.box-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.box-items > span {
  display: flex;
  min-height: 7rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.box-items svg {
  width: 1.35rem;
  height: 1.35rem;
  color: #a8dbbe;
}

.box-items strong {
  font-size: 0.72rem;
  font-weight: 660;
  line-height: 1.35;
}

/* Preorder timeline */
.timeline-section {
  padding-block-start: 5rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 55rem;
  margin-inline: auto;
  list-style: none;
}

.timeline::before {
  position: absolute;
  inset-block: 1.35rem;
  inset-inline-start: 1.15rem;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 0.95rem;
  padding-block-end: 1.75rem;
}

.timeline li:last-child {
  padding-block-end: 0;
}

.timeline li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--canvas);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
}

.timeline li.is-current > span {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 0 0 0.35rem rgba(23, 77, 56, 0.1);
}

.timeline li > div {
  display: flex;
  flex-direction: column;
  padding-block-start: 0.15rem;
}

.timeline strong {
  font-size: 0.9rem;
}

.timeline small {
  max-width: 29rem;
  margin-block-start: 0.25rem;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.promise-note {
  display: flex;
  max-width: 55rem;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 2rem auto 0;
  padding: 1rem;
  border: 1px solid rgba(23, 77, 56, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(207, 233, 217, 0.34);
  color: var(--forest);
}

.promise-note svg {
  width: 1.05rem;
  height: 1.05rem;
  margin-block-start: 0.1rem;
}

.promise-note p {
  font-size: 0.72rem;
  line-height: 1.55;
}

/* FAQ */
.faq-section {
  padding-block-start: 2rem;
}

.faq-list {
  max-width: 55rem;
  margin-inline: auto;
  border-block-start: 1px solid var(--line-strong);
}

.faq-list details {
  border-block-end: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-size: 0.95rem;
  font-weight: 720;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 0.35rem;
  width: 0.9rem;
  height: 1.5px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
  transform: translateY(-50%);
  transition: transform 220ms var(--ease);
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-list details p {
  max-width: 47rem;
  padding: 0 2rem 1.35rem 0;
  color: var(--muted-strong);
  font-size: 0.83rem;
  line-height: 1.7;
}

/* Final CTA and footer */
.final-cta {
  display: grid;
  gap: 1.5rem;
  width: min(calc(100% - 2rem), var(--container));
  margin: 1rem auto 4.5rem;
  padding: 2rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 10%, rgba(118, 190, 149, 0.3), transparent 22rem),
    var(--night);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.final-cta .section-kicker {
  margin-block-end: 0.75rem;
  color: #8ecaa8;
}

.final-cta h2 {
  max-width: 14ch;
}

.final-cta div > p:last-child {
  margin-block-start: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.final-cta .light-button {
  width: fit-content;
}

.site-footer {
  padding: 3.5rem max(1rem, env(safe-area-inset-right)) calc(2rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  border-block-start: 1px solid var(--line);
  background: #e9e4d9;
}

.footer-brand,
.footer-links,
.footer-bottom {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.footer-brand p {
  margin-block-start: 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1rem;
  margin-block-start: 2.5rem;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links strong {
  margin-block-end: 0.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: var(--muted-strong);
  font-size: 0.78rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
  margin-block-start: 2.75rem;
  padding-block-start: 1rem;
  border-block-start: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.65rem;
}

.footer-bottom button {
  padding: 0;
  background: transparent;
  color: var(--muted-strong);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Sticky mobile checkout */
.mobile-buybar {
  position: fixed;
  z-index: 80;
  inset: auto 0 0;
  display: flex;
  min-height: calc(4.4rem + env(safe-area-inset-bottom));
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem max(0.75rem, env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  border-block-start: 1px solid rgba(23, 27, 24, 0.1);
  background: rgba(255, 253, 248, 0.93);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 -0.75rem 2rem rgba(19, 26, 21, 0.09);
  transition: transform 300ms var(--ease);
}

.mobile-buybar.is-hidden,
.mobile-buybar[data-visible="false"] {
  transform: translateY(110%);
}

.mobile-buybar > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mobile-buybar strong {
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.mobile-buybar small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.57rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-buybar button {
  min-height: 3rem;
  flex: 0 0 auto;
  padding-inline: 1.15rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
  box-shadow: 0 0.5rem 1.2rem rgba(20, 27, 22, 0.18);
}

/* Dialogs */
dialog {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

dialog::backdrop {
  background: rgba(6, 10, 8, 0.62);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.preorder-dialog {
  inset: auto 0 0;
  width: 100%;
  max-width: none;
  max-height: calc(100dvh - max(0.75rem, env(safe-area-inset-top)));
  margin: auto 0 0;
  overflow: hidden;
  border-radius: 1.6rem 1.6rem 0 0;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.preorder-dialog[open] {
  display: block;
  animation: sheet-in 360ms var(--ease) both;
}

.dialog-shell {
  max-height: inherit;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.dialog-head {
  position: sticky;
  z-index: 6;
  inset-block-start: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1rem 0.9rem;
  border-block-end: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.dialog-step {
  display: block;
  margin-block-end: 0.25rem;
  color: var(--forest-bright);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-head h2 {
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.checkout-step {
  display: none;
  padding: 1rem 1rem calc(1.25rem + env(safe-area-inset-bottom));
}

.checkout-step.is-active {
  display: block;
  animation: content-in 260ms var(--ease) both;
}

.checkout-product {
  display: grid;
  grid-template-columns: 4.2rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-block-end: 1.25rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-soft);
}

.checkout-product img {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
  filter: drop-shadow(0 0.5rem 0.45rem rgba(24, 32, 27, 0.16));
}

.checkout-product > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.checkout-product > div strong {
  font-size: 0.82rem;
}

.checkout-product > div span,
.checkout-product > div small {
  color: var(--muted);
  font-size: 0.65rem;
}

.checkout-product > strong {
  font-size: 0.8rem;
  white-space: nowrap;
}

.checkout-step legend {
  margin-block-end: 0.6rem;
  font-size: 0.77rem;
  font-weight: 750;
}

.checkout-colors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.checkout-colors label {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 4.4rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 0.2rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--paper-soft);
  cursor: pointer;
}

.checkout-colors input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkout-colors label > span {
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid rgba(0, 0, 0, 0.17);
  border-radius: 50%;
  background: var(--swatch);
}

.checkout-colors small {
  overflow: hidden;
  max-width: 100%;
  color: var(--muted-strong);
  font-size: 0.56rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-colors label:has(input:checked) {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.checkout-colors label:has(input:focus-visible) {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.field-row,
.form-grid {
  display: grid;
  gap: 0.7rem;
  margin-block-start: 1rem;
}

.field-row {
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
}

.field-row label,
.form-grid label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.field-row select,
.form-grid input {
  width: 100%;
  min-height: 3.15rem;
  padding-inline: 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.7rem;
  background: var(--white);
  font-size: max(1rem, 16px);
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field-row select:focus,
.form-grid input:focus {
  border-color: var(--forest-bright);
  box-shadow: 0 0 0 3px rgba(35, 104, 76, 0.1);
}

.form-grid input:user-invalid {
  border-color: var(--danger);
}

.order-lines {
  display: grid;
  gap: 0.65rem;
  margin-block: 1rem;
  padding: 0.9rem;
  border-radius: 0.75rem;
  background: var(--paper-soft);
}

.order-lines > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-strong);
  font-size: 0.72rem;
}

.order-lines strong {
  color: var(--ink);
  font-size: 0.72rem;
}

.order-lines .order-total {
  margin-block-start: 0.2rem;
  padding-block-start: 0.7rem;
  border-block-start: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.order-lines .order-total strong {
  font-size: 0.95rem;
}

.demo-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.8rem;
  border: 1px solid rgba(23, 77, 56, 0.14);
  border-radius: 0.75rem;
  background: rgba(207, 233, 217, 0.36);
  color: var(--forest);
}

.demo-notice > svg {
  width: 1.1rem;
  height: 1.1rem;
  margin-block-start: 0.1rem;
}

.demo-notice span {
  display: flex;
  flex-direction: column;
}

.demo-notice strong {
  font-size: 0.72rem;
}

.demo-notice small {
  margin-block-start: 0.1rem;
  color: var(--muted-strong);
  font-size: 0.64rem;
  line-height: 1.45;
}

.check-row {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.65rem;
  margin-block-start: 0.9rem;
  color: var(--muted-strong);
  font-size: 0.68rem;
  line-height: 1.45;
  cursor: pointer;
}

.check-row input,
.consent-options input {
  width: 1.1rem;
  height: 1.1rem;
  margin-block-start: 0.05rem;
  accent-color: var(--forest);
}

.checkout-actions,
.success-actions {
  display: flex;
  gap: 0.6rem;
  margin-block-start: 1.15rem;
}

.checkout-actions > *,
.success-actions > * {
  flex: 1;
}

.checkout-actions .primary-button,
.checkout-actions .secondary-button,
.success-actions .primary-button,
.success-actions .secondary-button {
  min-height: 3.15rem;
  padding-inline: 0.8rem;
  font-size: 0.73rem;
}

.secure-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-block-start: 0.8rem;
  color: var(--muted);
  font-size: 0.61rem;
  text-align: center;
}

.secure-line svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--forest-bright);
}

.success-step {
  min-height: 29rem;
  padding-block-start: 3rem;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  box-shadow: 0 0 0 0.7rem rgba(207, 233, 217, 0.34);
}

.success-icon svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 2.5;
}

.success-step .section-kicker {
  margin-block-end: 0.6rem;
}

.success-step h2 {
  font-size: 2.6rem;
  font-weight: 610;
  letter-spacing: -0.055em;
}

.success-step > p:not(.section-kicker) {
  max-width: 28rem;
  margin: 0.75rem auto 0;
  color: var(--muted-strong);
  font-size: 0.8rem;
  line-height: 1.6;
}

.order-number {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 25rem;
  align-items: center;
  gap: 0.25rem 1rem;
  margin: 1.5rem auto 0;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--paper-soft);
  text-align: start;
}

.order-number > span {
  color: var(--muted);
  font-size: 0.61rem;
}

.order-number > strong {
  grid-column: 1;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.order-number button {
  display: inline-flex;
  grid-column: 2;
  grid-row: 1 / 3;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
}

.order-number svg {
  width: 0.9rem;
  height: 0.9rem;
}

/* Story modal */
.story-dialog {
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.story-dialog[open] {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  animation: dialog-fade 240ms ease both;
}

.story-close {
  position: absolute;
  z-index: 5;
  inset-block-start: max(1rem, env(safe-area-inset-top));
  inset-inline-end: max(1rem, env(safe-area-inset-right));
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(12, 18, 14, 0.5);
  color: var(--white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.story-close svg {
  width: 1.2rem;
  height: 1.2rem;
}

.story-demo {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(82, 144, 107, 0.32), transparent 16rem),
    linear-gradient(145deg, #1b2820, #0b0f0d);
}

.story-demo::before,
.story-demo::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.story-demo::before {
  width: 16rem;
  height: 16rem;
}

.story-demo::after {
  width: 24rem;
  height: 24rem;
  border-style: dashed;
}

.story-dialog-copy {
  position: relative;
  z-index: 2;
  padding: 1.25rem max(1rem, env(safe-area-inset-right)) calc(1.25rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  border-block-start: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 18, 15, 0.94);
}

.story-dialog-copy > span {
  color: #8fc8a7;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.story-dialog-copy h2 {
  margin-block-start: 0.35rem;
  font-size: 1.7rem;
  font-weight: 590;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.story-dialog-copy p {
  max-width: 37rem;
  margin-block-start: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  line-height: 1.55;
}

.story-dialog-copy .primary-button {
  width: 100%;
  margin-block-start: 1rem;
  background: var(--paper);
  color: var(--ink);
}

/* Privacy consent */
.consent-banner {
  position: fixed;
  z-index: 120;
  inset: auto max(0.75rem, env(safe-area-inset-right)) calc(5.1rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  padding: 1rem;
  border: 1px solid rgba(23, 27, 24, 0.13);
  border-radius: 1.25rem;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  animation: content-in 300ms var(--ease) both;
}

.consent-banner > div:first-child strong {
  display: block;
  font-size: 0.9rem;
}

.consent-banner > div:first-child p {
  margin-block-start: 0.35rem;
  color: var(--muted-strong);
  font-size: 0.68rem;
  line-height: 1.5;
}

.consent-actions {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr;
  gap: 0.4rem;
  margin-block-start: 0.85rem;
}

.consent-actions .primary-button,
.consent-actions .secondary-button,
.consent-actions .text-button {
  min-height: 2.8rem;
  padding-inline: 0.5rem;
  font-size: 0.65rem;
}

.consent-dialog {
  inset: auto 0 0;
  width: 100%;
  max-width: none;
  max-height: calc(100dvh - max(0.75rem, env(safe-area-inset-top)));
  margin: auto 0 0;
  padding-block-end: calc(1rem + env(safe-area-inset-bottom));
  overflow-y: auto;
  border-radius: 1.6rem 1.6rem 0 0;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.consent-dialog[open] {
  display: block;
  animation: sheet-in 340ms var(--ease) both;
}

.consent-dialog > .dialog-head {
  margin-block-end: 0.25rem;
}

.consent-options {
  padding: 0 1rem;
}

.consent-options > div,
.consent-options > label {
  display: flex;
  min-height: 4.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-block-end: 1px solid var(--line);
}

.consent-options > div > span:first-child,
.consent-options > label > span {
  display: flex;
  flex-direction: column;
}

.consent-options strong {
  font-size: 0.8rem;
}

.consent-options small {
  margin-block-start: 0.15rem;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.4;
}

.always-on {
  flex: 0 0 auto;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.58rem;
  font-weight: 780;
}

.consent-dialog > .full-button {
  width: calc(100% - 2rem);
  margin: 1rem 1rem 0;
}

.toast {
  position: fixed;
  z-index: 200;
  inset: auto 1rem calc(5.3rem + env(safe-area-inset-bottom));
  width: fit-content;
  max-width: calc(100% - 2rem);
  margin-inline: auto;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-md);
  font-size: 0.72rem;
  font-weight: 680;
  text-align: center;
  animation: toast-in 260ms var(--ease) both;
}

/* RTL */
html[dir="rtl"] .primary-button [data-lucide="arrow-right"],
html[dir="rtl"] .mobile-buybar [data-lucide="arrow-right"],
html[dir="rtl"] .text-link [data-lucide="play-circle"],
html[dir="rtl"] [data-lucide="arrow-up-right"],
html[dir="rtl"] [data-lucide="arrow-left"] {
  transform: scaleX(-1);
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .bento-copy,
html[dir="rtl"] .ecosystem-copy {
  text-align: start;
}

html[dir="rtl"] .compact-heading {
  text-align: center;
}

html[dir="rtl"] .color-picker {
  transform: translateX(50%);
}

html[dir="rtl"] .phone-shell {
  transform: translateX(50%) rotate(2deg);
}

html[dir="rtl"] .mini-phone {
  transform: translateX(50%) rotate(-3deg);
}

html[dir="rtl"] .hero-orbit {
  transform: translate(-50%, -50%);
}

html[dir="rtl"] .hero-watch {
  transform: translate(-50%, -50%) rotate(7deg);
  animation-name: watch-float-rtl;
}

html[dir="rtl"] .orbit-one {
  animation-name: orbit-breathe-rtl;
}

html[dir="rtl"] .orbit-two {
  animation-name: orbit-spin-rtl;
}

html[dir="rtl"] .route-map {
  transform: scaleX(-1);
}

html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[name="postcode"],
html[dir="rtl"] [data-order-id] {
  direction: ltr;
  text-align: start;
}

/* Compact phones */
@media (max-width: 374px) {
  .announcement {
    gap: 0.3rem;
    font-size: 0.61rem;
  }

  .site-header {
    padding-inline: max(0.7rem, env(safe-area-inset-left)) max(0.7rem, env(safe-area-inset-right));
  }

  .brand {
    gap: 0.4rem;
    font-size: 0.78rem;
  }

  .brand-mark {
    width: 1.65rem;
    height: 1.65rem;
  }

  .header-select {
    display: none;
  }

  .lang-button {
    padding-inline: 0.4rem;
  }

  .header-cta {
    padding-inline: 0.72rem;
  }

  .hero {
    padding-block-start: 2.4rem;
  }

  .proof-chips > span {
    padding-inline: 0.55rem;
    font-size: 0.65rem;
  }

  .hero-offer {
    align-items: flex-start;
  }

  .save-pill {
    margin-block-start: 0.15rem;
  }

  .hero-actions .primary-button {
    flex: 1 1 100%;
  }

  .hero-actions .text-link {
    margin-inline: auto;
  }

  .floating-card {
    min-width: 6.6rem;
    padding: 0.5rem;
  }

  .floating-card-health {
    inset-inline-start: 2%;
  }

  .floating-card-sleep {
    inset-inline-end: 1%;
  }

  .trust-bar > div {
    gap: 0.45rem;
    padding-inline: 0.5rem;
  }

  .trust-bar small {
    display: none;
  }

  .finish-options {
    grid-template-columns: 1fr;
  }

  .config-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .config-summary > span:last-child {
    align-items: flex-start;
    text-align: start;
  }

  .checkout-product {
    grid-template-columns: 3.5rem 1fr;
  }

  .checkout-product img {
    width: 3.5rem;
    height: 3.5rem;
  }

  .checkout-product > strong {
    grid-column: 2;
  }

  .checkout-actions,
  .success-actions {
    flex-direction: column-reverse;
  }

  .consent-actions {
    grid-template-columns: 1fr 1fr;
  }

  .consent-actions .text-button {
    order: 3;
    grid-column: 1 / -1;
  }
}

/* Social traffic lands on the product before the longer story on phone screens. */
@media (max-width: 41.99rem) {
  .hero {
    padding-block-start: 1rem;
  }

  .hero-visual {
    order: -1;
    min-height: clamp(17.5rem, 74vw, 20rem);
    margin-block: 0 1.65rem;
  }

  .hero-watch {
    width: min(82%, 21rem);
  }

  .floating-card {
    min-width: 6.7rem;
    padding: 0.5rem 0.58rem;
  }

  .floating-card-health {
    inset-block-start: 10%;
  }

  .floating-card-sleep {
    inset-block-end: 18%;
  }
}

@media (max-width: 23rem) {
  .site-header > .brand > span:last-child {
    display: none;
  }
}

@media (min-width: 42rem) {
  body {
    padding-block-end: 0;
  }

  .announcement {
    min-height: 2.45rem;
    font-size: 0.72rem;
  }

  .site-header {
    padding-inline: max(1.5rem, env(safe-area-inset-left)) max(1.5rem, env(safe-area-inset-right));
  }

  .header-select,
  .lang-button {
    min-height: 2.75rem;
    font-size: 0.78rem;
  }

  .header-cta {
    min-height: 2.75rem;
    padding-inline: 1.15rem;
  }

  .hero,
  .section,
  .dark-section,
  .site-footer {
    padding-inline: max(2rem, env(safe-area-inset-left)) max(2rem, env(safe-area-inset-right));
  }

  .hero {
    padding-block-start: 4.5rem;
  }

  .hero-visual {
    min-height: 38rem;
  }

  .floating-card {
    min-width: 9.2rem;
    padding: 0.8rem 0.9rem;
  }

  .floating-card small {
    font-size: 0.62rem;
  }

  .floating-card strong {
    font-size: 0.84rem;
  }

  .trust-bar {
    width: min(calc(100% - 4rem), var(--container));
  }

  .trust-bar > div {
    padding: 1.1rem;
  }

  .trust-bar strong {
    font-size: 0.73rem;
  }

  .trust-bar small {
    font-size: 0.62rem;
  }

  .section,
  .dark-section {
    padding-block: 7rem;
  }

  .section-heading {
    margin-block-end: 3rem;
  }

  .story-rail {
    grid-auto-columns: min(43vw, 22rem);
    margin-inline: 0;
    padding-inline: 0;
  }

  .story-card {
    min-height: 31rem;
  }

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

  .display-card,
  .gps-card {
    grid-column: 1 / -1;
  }

  .bento-card {
    min-height: 28rem;
    padding: 1.75rem;
  }

  .display-demo {
    inset: 0 -3rem auto 43%;
    height: 100%;
  }

  .demo-watch {
    inset-block-start: 4.5rem;
  }

  .route-map {
    inset-inline-end: -2rem;
    width: 42rem;
  }

  .ecosystem-section {
    gap: 4rem;
  }

  .phone-stage {
    min-height: 42rem;
  }

  .phone-shell {
    width: 18rem;
    height: 36rem;
  }

  .phone-home {
    padding-inline: 1.05rem;
  }

  .ecosystem-watch {
    inset-inline-end: -7%;
    width: 29rem;
  }

  .product-configurator {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  }

  .config-visual {
    min-height: 35rem;
  }

  .config-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
  }

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

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

  .spec-grid > div {
    min-height: 12rem;
    padding: 1.3rem;
  }

  .spec-grid > div:nth-child(even) {
    border-inline-end: 1px solid var(--line);
  }

  .spec-grid > div:nth-child(3n) {
    border-inline-end: 0;
  }

  .spec-grid > div:nth-last-child(-n + 3) {
    border-block-end: 0;
  }

  .spec-grid > div:nth-child(4) {
    border-block-end: 0;
  }

  .box-card {
    padding: 2.5rem;
  }

  .box-items > span {
    min-height: 8rem;
    padding: 1.15rem;
  }

  .faq-list summary {
    padding-block: 1.5rem;
    font-size: 1rem;
  }

  .final-cta {
    width: min(calc(100% - 4rem), var(--container));
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-block-end: 6rem;
    padding: 3rem;
  }

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

  .mobile-buybar {
    display: none;
  }

  .preorder-dialog,
  .consent-dialog {
    inset: 0;
    width: min(calc(100% - 2rem), 42rem);
    max-width: 42rem;
    max-height: min(88dvh, 49rem);
    margin: auto;
    border-radius: 1.6rem;
  }

  .preorder-dialog[open],
  .consent-dialog[open] {
    animation-name: dialog-pop;
  }

  .dialog-head {
    padding: 1.3rem 1.4rem 1rem;
  }

  .checkout-step {
    padding: 1.25rem 1.4rem 1.5rem;
  }

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

  .form-grid .span-2 {
    grid-column: 1 / -1;
  }

  .story-dialog {
    inset: 50% auto auto 50%;
    width: min(calc(100% - 3rem), 66rem);
    height: min(82dvh, 44rem);
    margin: 0;
    border-radius: 2rem;
    transform: translate(-50%, -50%);
  }

  .story-dialog[open] {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    grid-template-rows: 1fr;
  }

  .story-dialog-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.2rem;
    border-block-start: 0;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.1);
  }

  .story-dialog-copy h2 {
    font-size: 2.35rem;
  }

  .story-dialog-copy .primary-button {
    width: fit-content;
  }

  .consent-banner {
    inset: auto 1.5rem 1.5rem auto;
    width: min(calc(100% - 3rem), 36rem);
    padding: 1.25rem;
  }

  .consent-dialog {
    max-height: min(80dvh, 38rem);
  }

  .consent-options {
    padding-inline: 1.4rem;
  }

  .consent-dialog > .full-button {
    width: calc(100% - 2.8rem);
    margin-inline: 1.4rem;
  }

  .toast {
    inset-block-end: 1.5rem;
  }
}

@media (min-width: 60rem) {
  :root {
    --header-height: 4.75rem;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding-inline: max(2.5rem, calc((100% - var(--container)) / 2));
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.7rem;
  }

  .desktop-nav a {
    position: relative;
    padding-block: 0.45rem;
    color: var(--muted-strong);
    font-size: 0.77rem;
    font-weight: 680;
  }

  .desktop-nav a::after {
    position: absolute;
    inset: auto 50% 0;
    height: 1.5px;
    background: var(--ink);
    content: "";
    transition: inset 220ms var(--ease);
  }

  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after {
    inset-inline: 0;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    min-height: min(50rem, calc(100svh - 7.2rem));
    grid-template-columns: minmax(0, 0.92fr) minmax(31rem, 1.08fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5.5rem);
    padding-block: 4.5rem 3rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 6.3vw, 6.4rem);
  }

  .hero-visual {
    min-height: min(43rem, calc(100svh - 11rem));
    margin-block-start: 0;
  }

  .hero-watch {
    width: min(91%, 39rem);
  }

  .floating-card-health {
    inset-block-start: 19%;
    inset-inline-start: 5%;
  }

  .floating-card-sleep {
    inset-block-end: 19%;
    inset-inline-end: 5%;
  }

  .trust-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-block-start: 1.5rem;
  }

  .trust-bar > div,
  .trust-bar > div:nth-last-child(-n + 2) {
    border-block-end: 0;
    border-inline-end: 1px solid var(--line);
  }

  .trust-bar > div:last-child {
    border-inline-end: 0;
  }

  .trust-bar > div:nth-child(odd) {
    border-inline-end: 1px solid var(--line);
  }

  .section,
  .dark-section {
    padding-block: 8.5rem;
  }

  .story-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: initial;
    gap: 1rem;
    overflow: visible;
  }

  .story-card {
    min-height: 37rem;
  }

  .feature-bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 14.5rem;
    gap: 1rem;
  }

  .bento-card {
    min-height: 0;
  }

  .display-card {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
  }

  .battery-card {
    grid-column: 8 / 13;
    grid-row: 1 / 3;
  }

  .gps-card {
    grid-column: 1 / 8;
    grid-row: 3 / 5;
  }

  .sport-card {
    grid-column: 8 / 13;
    grid-row: 3 / 5;
  }

  .display-demo {
    inset-inline-start: 42%;
  }

  .battery-visual > strong {
    font-size: 10rem;
  }

  .gps-card .bento-copy {
    max-width: 22rem;
  }

  .route-map {
    inset-inline-end: -5rem;
    width: 38rem;
  }

  .ecosystem-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(31rem, 1.2fr);
    gap: 6rem;
  }

  .phone-stage {
    min-height: 42rem;
  }

  .phone-shell {
    inset-inline-start: 42%;
  }

  .ecosystem-watch {
    inset-inline-end: -8%;
  }

  .product-configurator {
    width: min(100%, 67rem);
    margin-inline: auto;
  }

  .comparison,
  .spec-grid {
    width: min(100%, 67rem);
    margin-inline: auto;
  }

  .comparison-row {
    min-width: 0;
  }

  .box-card {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    padding: 3.5rem;
  }

  .box-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .timeline {
    max-width: 68rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .timeline::before {
    inset: 1.15rem calc(12.5% - 1.15rem) auto;
    width: auto;
    height: 1px;
  }

  .timeline li {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
    text-align: center;
  }

  .timeline li > span {
    margin-inline: auto;
  }

  .timeline li > div {
    align-items: center;
  }

  .promise-note {
    max-width: 68rem;
  }

  .site-footer {
    display: grid;
    grid-template-columns: minmax(14rem, 0.7fr) minmax(31rem, 1.3fr);
    gap: 2rem 5rem;
    padding-block-start: 5rem;
  }

  .footer-brand,
  .footer-links,
  .footer-bottom {
    width: 100%;
  }

  .footer-links {
    margin-block-start: 0;
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (min-width: 80rem) {
  .site-header {
    padding-inline: max(2.5rem, calc((100% - var(--container)) / 2));
  }

  .hero,
  .section,
  .dark-section {
    padding-inline: max(2rem, calc((100% - var(--container)) / 2));
  }

  .hero-visual {
    min-height: 44rem;
  }

  .bento-card {
    padding: 2rem;
  }
}

/* Pointer enhancement */
@media (hover: hover) and (pointer: fine) {
  .primary-button:hover,
  .header-cta:hover,
  .mobile-buybar button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(17, 24, 19, 0.24);
  }

  .light-button:hover {
    background: var(--white);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.27);
  }

  .secondary-button:hover {
    border-color: var(--ink);
    background: var(--white);
    transform: translateY(-1px);
  }

  .icon-button:hover,
  .story-close:hover {
    transform: rotate(5deg) scale(1.04);
  }

  .header-select:hover,
  .lang-button:hover {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.46);
  }

  .text-link:hover,
  .footer-links a:hover {
    color: var(--forest-bright);
  }

  .text-link:hover svg {
    transform: translateX(0.18rem);
  }

  .story-card:hover > img {
    transform: scale(1.045);
  }

  .story-card:hover .story-icon {
    background: rgba(255, 255, 255, 0.23);
    transform: scale(1.05);
  }

  .color-swatch:hover,
  .finish-option:hover {
    border-color: var(--line-strong);
    background: var(--white);
  }

  .config-visual:hover img {
    transform: rotate(-3deg) scale(1.025);
  }

  .faq-list summary:hover {
    color: var(--forest-bright);
  }

  .checkout-colors label:hover {
    border-color: var(--line-strong);
    background: var(--white);
  }
}

/* Landscape phones and short viewports */
@media (orientation: landscape) and (max-height: 34rem) and (max-width: 60rem) {
  .announcement {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
    gap: 2rem;
    padding-block: 2rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 8vw, 4.6rem);
  }

  .hero-visual {
    min-height: 28rem;
    margin-block-start: 0;
  }

  .preorder-dialog {
    inset: 0;
    width: min(calc(100% - 1.5rem), 42rem);
    max-width: 42rem;
    max-height: calc(100dvh - 1rem);
    margin: auto;
    border-radius: 1.3rem;
  }

  .checkout-product {
    margin-block-end: 0.75rem;
  }

  .story-dialog {
    grid-template-columns: 1.35fr 0.65fr;
    grid-template-rows: 1fr;
  }
}

/* Motion and contrast preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .hero-watch {
    animation: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: rgba(23, 27, 24, 0.28);
    --line-strong: rgba(23, 27, 24, 0.5);
    --muted: #4f554f;
    --muted-strong: #383e39;
  }

  .site-header,
  .mobile-buybar,
  .consent-banner {
    background: var(--paper);
  }

  .bento-copy p,
  .story-dialog-copy p {
    color: rgba(255, 255, 255, 0.78);
  }
}

@media (forced-colors: active) {
  .primary-button,
  .header-cta,
  .mobile-buybar button,
  .brand-mark,
  .timeline li.is-current > span {
    border: 1px solid ButtonText;
  }

  .color-swatch > span,
  .finish-option > span:first-child,
  .checkout-colors label > span {
    forced-color-adjust: none;
  }
}

@media print {
  .announcement,
  .site-header,
  .mobile-buybar,
  .consent-banner,
  dialog,
  .hero-actions,
  .final-cta .primary-button {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
  }

  .dark-section,
  .final-cta,
  .box-card {
    background: #fff;
    color: #000;
  }

  .bento-copy p,
  .final-cta div > p:last-child {
    color: #333;
  }
}

@keyframes pulse-dot {
  0%, 55%, 100% { box-shadow: 0 0 0 0.25rem rgba(239, 118, 89, 0.14); }
  24% { box-shadow: 0 0 0 0.5rem rgba(239, 118, 89, 0); }
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(0.98); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.035); opacity: 1; }
}

@keyframes watch-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-7deg); }
  50% { transform: translate(-50%, calc(-50% - 0.55rem)) rotate(-5.5deg); }
}

@keyframes orbit-spin-rtl {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes orbit-breathe-rtl {
  0%, 100% { transform: translate(-50%, -50%) scale(0.98); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.035); opacity: 1; }
}

@keyframes watch-float-rtl {
  0%, 100% { transform: translate(-50%, -50%) rotate(7deg); }
  50% { transform: translate(-50%, calc(-50% - 0.55rem)) rotate(5.5deg); }
}

@keyframes sheet-in {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dialog-pop {
  from { opacity: 0; transform: translateY(0.8rem) scale(0.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dialog-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes content-in {
  from { opacity: 0; transform: translateY(0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(0.75rem) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
