:root {
  --ink: #101727;
  --night: #111a31;
  --night-2: #172544;
  --paper: #f7f3eb;
  --white: #fffdf8;
  --blue: #3159e8;
  --blue-dark: #2442b9;
  --ice: #dce7fa;
  --coral: #f47758;
  --peach: #f3c5ad;
  --lilac: #ddd8f1;
  --sand: #e8dfcf;
  --sun: #f3d675;
  --muted: #667082;
  --pad: clamp(20px, 5vw, 78px);
  --radius: clamp(22px, 2.6vw, 42px);
  --progress: 0%;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.48;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--coral); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 11px 15px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.page-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: var(--progress);
  height: 3px;
  background: var(--coral);
  pointer-events: none;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  min-height: 76px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(170px, 250px) 1fr auto;
  align-items: center;
  gap: 40px;
  background: rgba(247, 243, 235, .9);
  border-bottom: 1px solid rgba(16, 23, 39, .12);
  backdrop-filter: blur(18px);
}
.brand { width: min(205px, 100%); }
.brand img, .site-footer img { width: 100%; height: auto; mix-blend-mode: multiply; }
.main-nav { justify-self: center; display: flex; gap: clamp(24px, 3vw, 50px); }
.main-nav a, .header-cta {
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
}
.main-nav a { position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--coral); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-cta { padding: 12px 18px; display: inline-flex; gap: 22px; border-radius: 999px; background: var(--ink); color: var(--white); }

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  padding: clamp(38px, 5vw, 74px) var(--pad) 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  grid-template-rows: 1fr auto;
  gap: clamp(30px, 5vw, 84px);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(49, 89, 232, .35), transparent 32%),
    linear-gradient(132deg, var(--night), #17223c 72%);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  left: -340px;
  bottom: -300px;
  border: 92px solid rgba(244, 119, 88, .18);
  border-radius: 50%;
}
.hero-copy { min-width: 0; align-self: center; padding: 28px 0 58px; position: relative; z-index: 2; }
.overline { margin: 0 0 clamp(38px, 7vh, 82px); display: flex; justify-content: space-between; gap: 20px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.hero h1, .brand-story h2, .principles h2, .models h2, .spin h2, .engineering h2, .quality h2, .origin h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(54px, 6.3vw, 108px);
  font-weight: 820;
  letter-spacing: -.062em;
  line-height: .88;
}
.hero h1 span { color: var(--coral); font-style: italic; font-weight: 520; }
.hero-lead { max-width: 560px; margin: clamp(30px, 5vh, 58px) 0 0; color: #d8dfef; font-size: clamp(17px, 1.3vw, 22px); }
.primary-cta {
  width: fit-content;
  min-height: 58px;
  margin-top: 30px;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease;
}
.primary-cta:hover { transform: translateY(-4px); background: #ff9377; }

.hero-product {
  position: relative;
  min-width: 0;
  min-height: 590px;
  align-self: stretch;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  isolation: isolate;
}
.hero-product::after { content: ""; position: absolute; inset: auto 0 0; height: 34%; background: linear-gradient(to top, rgba(17, 26, 49, .08), transparent); z-index: -1; }
.hero-product img { position: relative; z-index: 3; width: min(94%, 900px); height: auto; mix-blend-mode: multiply; transition: transform .2s ease-out; }
.orbit { position: absolute; border-radius: 50%; border: clamp(54px, 6vw, 92px) solid; }
.orbit--one { width: min(40vw, 610px); aspect-ratio: 1; top: -18%; right: -13%; border-color: var(--blue); opacity: .95; }
.orbit--two { width: min(23vw, 340px); aspect-ratio: 1; left: -8%; bottom: -8%; border-color: var(--peach); opacity: .9; }
.hero-product-index { position: absolute; z-index: 4; top: 26px; left: 28px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; font-weight: 700; }
.hero-model { position: absolute; z-index: 4; left: 28px; bottom: 26px; display: flex; flex-direction: column; gap: 3px; }
.hero-model b { font-size: clamp(22px, 2vw, 32px); letter-spacing: -.04em; }
.hero-model small { color: var(--muted); font-weight: 650; }
.hero-arrow { position: absolute; z-index: 4; right: 25px; bottom: 25px; width: 54px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 21px; transition: transform .3s ease; }
.hero-product:hover .hero-arrow { transform: rotate(45deg); }
.hero-facts { grid-column: 1 / -1; margin: 0 calc(var(--pad) * -1); display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(255, 255, 255, .075); border-top: 1px solid rgba(255, 255, 255, .16); }
.hero-facts div { min-height: 100px; padding: 20px var(--pad); display: flex; align-items: center; gap: 20px; border-right: 1px solid rgba(255, 255, 255, .16); }
.hero-facts div:last-child { border-right: 0; }
.hero-facts dt { min-width: 82px; color: var(--coral); font-size: clamp(27px, 2.5vw, 43px); font-weight: 800; letter-spacing: -.055em; line-height: 1; white-space: nowrap; }
.hero-facts dd { margin: 0; color: #e0e5ef; font-size: 11px; font-weight: 700; letter-spacing: .065em; line-height: 1.25; text-transform: uppercase; }

.route-strip { position: relative; height: clamp(180px, 20vw, 300px); overflow: hidden; background: var(--coral); }
.route-line { position: absolute; inset: 16% -3% 0; }
.route-line svg { width: 106%; height: 100%; }
.route-line path { fill: none; stroke: var(--ink); stroke-width: 2; stroke-dasharray: 6 8; vector-effect: non-scaling-stroke; }
.route-point { position: absolute; display: flex; align-items: center; gap: 12px; }
.route-point::before { content: ""; width: 15px; aspect-ratio: 1; border: 4px solid var(--coral); border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 2px var(--ink); }
.route-point span { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.route-point b { font-size: clamp(18px, 1.6vw, 26px); letter-spacing: -.03em; }
.route-point--one { left: 9%; top: 43%; }
.route-point--two { left: 43%; top: 30%; }
.route-point--three { right: 8%; top: 48%; }

.section-shell { padding: clamp(90px, 11vw, 170px) var(--pad); }
.section-label { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 11px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.section-label span { width: 34px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(16, 23, 39, .28); border-radius: 50%; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.section-label--light { color: #b8c2d6; }
.section-label--light span { border-color: rgba(255, 255, 255, .28); }
.brand-story { position: relative; overflow: hidden; background: var(--white); }
.brand-story-orbit { position: absolute; width: min(44vw, 670px); aspect-ratio: 1; right: -25vw; top: -18vw; border: clamp(60px, 8vw, 120px) solid var(--peach); border-radius: 50%; opacity: .7; }
.brand-story > *:not(.brand-story-orbit) { position: relative; z-index: 1; }
.brand-story-layout { margin-top: clamp(48px, 7vw, 96px); display: grid; grid-template-columns: 1fr .9fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.brand-story h2 { max-width: 900px; font-size: clamp(54px, 6.2vw, 103px); }
.brand-story h2 em { color: var(--blue); font-style: italic; font-weight: 520; }
.brand-story-copy { max-width: 690px; display: grid; gap: 24px; }
.brand-story-copy p { margin: 0; color: #4f596d; font-size: 17px; }
.brand-story-copy .brand-story-lead { color: var(--ink); font-size: clamp(20px, 1.65vw, 27px); line-height: 1.35; }
.brand-story-facts { margin: clamp(70px, 9vw, 125px) 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(16, 23, 39, .18); border-bottom: 1px solid rgba(16, 23, 39, .18); }
.brand-story-facts div { min-height: 170px; padding: 25px clamp(18px, 2.6vw, 38px); display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(16, 23, 39, .18); }
.brand-story-facts div:first-child { padding-left: 0; }
.brand-story-facts div:last-child { padding-right: 0; border-right: 0; }
.brand-story-facts dt { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.brand-story-facts dd { max-width: 360px; margin: 36px 0 0; font-size: clamp(20px, 1.7vw, 28px); font-weight: 760; letter-spacing: -.035em; line-height: 1.12; }
.principles { background: var(--paper); }
.principles-head { margin-top: clamp(48px, 7vw, 100px); display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(45px, 8vw, 130px); align-items: end; }
.principles h2 { font-size: clamp(52px, 6.6vw, 110px); }
.principles h2 em, .models h2 em, .spin h2 em, .engineering h2 em, .quality h2 em, .origin h2 em, .final-cta h2 em { color: var(--blue); font-style: italic; font-weight: 520; }
.principles-head > p { max-width: 610px; margin: 0 0 10px auto; font-size: clamp(18px, 1.6vw, 25px); line-height: 1.36; }
.principles-grid { margin-top: clamp(70px, 9vw, 130px); display: grid; grid-template-columns: 1.05fr .95fr 1.05fr; gap: clamp(14px, 2vw, 28px); align-items: start; }
.principle-card { position: relative; min-height: 420px; padding: clamp(25px, 3vw, 42px); display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius); }
.principle-card--blue { background: var(--blue); color: var(--white); }
.principle-card--paper { margin-top: 70px; background: var(--white); box-shadow: 0 22px 70px rgba(17, 26, 49, .08); }
.principle-card--peach { background: var(--peach); }
.principle-card > span { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.principle-card h3 { max-width: 390px; margin: auto 0 18px; font-size: clamp(28px, 2.6vw, 46px); letter-spacing: -.052em; line-height: 1; }
.principle-card p { position: relative; z-index: 2; max-width: 430px; margin: 0; }
.principle-card i { position: absolute; right: -18px; top: -46px; color: rgba(255, 255, 255, .16); font-size: clamp(150px, 19vw, 300px); font-style: normal; font-weight: 800; line-height: 1; }
.principle-card--paper i { color: rgba(49, 89, 232, .1); }
.principle-card--peach i { color: rgba(16, 23, 39, .08); }

.models { padding-bottom: clamp(100px, 11vw, 170px); overflow: hidden; background: #e8edf8; }
.models-head { padding-bottom: 0; }
.models-title-row { margin-top: clamp(44px, 7vw, 90px); display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.models h2 { font-size: clamp(58px, 7.5vw, 124px); }
.models-note { width: clamp(180px, 20vw, 280px); aspect-ratio: 1; padding: 32px; display: flex; flex-direction: column; justify-content: center; border-radius: 50%; background: var(--coral); }
.models-note strong { font-size: clamp(62px, 7vw, 102px); letter-spacing: -.08em; line-height: .8; }
.models-note p { margin: 15px 0 0; font-size: 11px; font-weight: 760; letter-spacing: .07em; line-height: 1.2; text-transform: uppercase; }
.gallery-intro { margin-top: 52px; display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.gallery-intro p { max-width: 610px; margin: 0; color: #465169; font-size: 18px; }
.gallery-intro span { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.mobile-gallery-hint { display: none; }
.model-gallery { margin-top: clamp(48px, 6vw, 86px); padding: 0 var(--pad) 30px; display: flex; gap: clamp(16px, 2vw, 28px); overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-color: var(--blue) rgba(16, 23, 39, .12); scrollbar-width: thin; }
.model-gallery::-webkit-scrollbar { height: 8px; }
.model-gallery::-webkit-scrollbar-track { background: rgba(16, 23, 39, .1); border-radius: 999px; }
.model-gallery::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 999px; }
.model-card { flex: 0 0 min(540px, 78vw); min-width: 0; scroll-snap-align: start; display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius); color: var(--ink); text-decoration: none; box-shadow: 0 18px 50px rgba(17, 26, 49, .1); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.model-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(17, 26, 49, .16); }
.model-card--sand { background: var(--sand); }
.model-card--ice { background: var(--ice); }
.model-card--lilac { background: var(--lilac); }
.model-card--rose { background: #efccd0; }
.model-card--blue { background: #cbd8ff; }
.model-card--sun { background: var(--sun); }
.model-card--coral { background: #f6ae92; }
.model-card--mist { background: #d7e2df; }
.model-meta { padding: 25px 28px 0; display: flex; justify-content: space-between; gap: 20px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.model-image { position: relative; height: clamp(320px, 34vw, 470px); margin: 12px 20px 0; overflow: hidden; border-radius: calc(var(--radius) * .72); background: rgba(255, 253, 248, .72); }
.model-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.model-card:hover .model-image img { transform: scale(1.035); }
.model-info { min-height: 270px; margin-top: 18px; padding: 24px 28px 28px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr auto; gap: 22px; background: rgba(255, 253, 248, .88); }
.model-title { min-width: 0; }
.model-title h3 { margin: 0; font-size: clamp(38px, 3.5vw, 58px); letter-spacing: -.06em; line-height: .92; }
.model-title p { margin: 8px 0 0; color: var(--muted); }
.model-info dl { grid-column: 1 / -1; align-self: end; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.model-info dt { color: var(--muted); font-size: 9px; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.model-info dd { margin: 5px 0 0; overflow-wrap: anywhere; font-size: 14px; font-weight: 760; }
.model-link { align-self: start; padding: 10px 13px; border: 1px solid rgba(16, 23, 39, .2); border-radius: 999px; font-size: 10px; font-weight: 780; text-transform: uppercase; }

.spin { overflow: hidden; background: var(--paper); }
.spin-head { margin-top: clamp(48px, 7vw, 96px); display: grid; grid-template-columns: 1fr minmax(260px, .38fr); gap: clamp(50px, 8vw, 130px); align-items: end; }
.spin h2 { font-size: clamp(58px, 7.4vw, 122px); }
.spin-head > div > p { max-width: 660px; margin: clamp(30px, 4vw, 52px) 0 0; color: #4f596d; font-size: clamp(18px, 1.55vw, 24px); }
.spin-select { display: flex; flex-direction: column; gap: 10px; }
.spin-select > span { color: var(--muted); font-size: 10px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.spin-select select {
  width: 100%;
  min-height: 62px;
  padding: 0 48px 0 20px;
  appearance: none;
  border: 1px solid rgba(16, 23, 39, .2);
  border-radius: 999px;
  background-color: var(--white);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 23px) 27px, calc(100% - 17px) 27px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  color: var(--ink);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}
.spin-select select:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.spin-viewer { margin-top: clamp(55px, 8vw, 110px); overflow: hidden; border-radius: var(--radius); background: #ded8cc; box-shadow: 0 30px 90px rgba(17, 26, 49, .12); }
.spin-stage { position: relative; height: clamp(500px, 56vw, 780px); display: grid; place-items: center; overflow: hidden; background: var(--white); cursor: grab; touch-action: pan-y; user-select: none; outline: none; }
.spin-stage::before { content: ""; position: absolute; width: min(55vw, 780px); aspect-ratio: 1; right: -17%; top: -42%; border: clamp(75px, 9vw, 145px) solid var(--ice); border-radius: 50%; }
.spin-stage::after { content: ""; position: absolute; z-index: 4; width: 34px; aspect-ratio: 1; border: 3px solid rgba(16, 23, 39, .18); border-top-color: var(--coral); border-radius: 50%; opacity: 0; pointer-events: none; animation: spin-loader .75s linear infinite; }
.spin-stage.is-loading::after { opacity: 1; }
@keyframes spin-loader { to { transform: rotate(360deg); } }
.spin-stage.is-dragging { cursor: grabbing; }
.spin-stage:focus-visible { box-shadow: inset 0 0 0 4px var(--coral); }
.spin-stage img { position: relative; z-index: 2; width: min(90%, 1080px); height: 92%; object-fit: contain; mix-blend-mode: multiply; pointer-events: none; }
.spin-hint { position: absolute; z-index: 3; left: 50%; bottom: 25px; min-height: 42px; padding: 9px 17px; display: flex; align-items: center; gap: 12px; transform: translateX(-50%); border-radius: 999px; background: rgba(16, 23, 39, .9); color: var(--white); font-size: 10px; font-weight: 760; letter-spacing: .06em; text-transform: uppercase; transition: opacity .2s ease; }
.spin-stage.is-dragging .spin-hint { opacity: 0; }
.spin-badge { position: absolute; z-index: 3; top: 26px; left: 28px; width: 76px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--coral); font-size: 20px; font-weight: 820; letter-spacing: -.04em; }
.spin-footer { min-height: 112px; padding: 24px 28px; display: grid; grid-template-columns: minmax(210px, .6fr) 1fr auto; gap: 32px; align-items: center; background: var(--night); color: var(--white); }
.spin-footer > strong { font-size: clamp(24px, 2.3vw, 36px); letter-spacing: -.04em; }
.spin-footer > a { padding: 12px 16px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px; color: var(--white); font-size: 10px; font-weight: 760; letter-spacing: .045em; text-decoration: none; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.spin-footer > a:hover { background: var(--white); color: var(--ink); }
.spin-counter { display: grid; grid-template-columns: 28px 1fr 28px; gap: 10px; align-items: center; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.spin-counter i { height: 3px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, .2); }
.spin-counter b { display: block; width: 3.33%; height: 100%; border-radius: inherit; background: var(--coral); transition: width .12s ease; }
.spin-noscript { margin: 0; padding: 16px 28px; background: var(--white); }

.engineering { position: relative; overflow: hidden; background: var(--night); color: var(--white); }
.engineering::before { content: ""; position: absolute; width: 720px; aspect-ratio: 1; left: -330px; top: 13%; border: 120px solid rgba(49, 89, 232, .16); border-radius: 50%; }
.engineering-head { position: relative; margin-top: clamp(48px, 7vw, 94px); display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.engineering h2 { font-size: clamp(58px, 7.5vw, 124px); }
.engineering h2 em { color: var(--coral); }
.engineering-head p { max-width: 580px; margin: 0 0 12px auto; color: #c4cddd; font-size: clamp(18px, 1.6vw, 25px); }
.spec-orbits { position: relative; margin-top: clamp(80px, 10vw, 145px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.spec-orbit { min-height: 360px; padding: clamp(25px, 2.6vw, 38px); display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius); background: rgba(255, 255, 255, .055); backdrop-filter: blur(8px); }
.spec-orbit:nth-child(1) { background: rgba(49, 89, 232, .18); }
.spec-orbit:nth-child(3) { background: rgba(244, 119, 88, .09); }
.spec-orbit--offset { margin-top: 0; }
.spec-orbit strong { color: var(--coral); font-size: clamp(49px, 4.5vw, 78px); letter-spacing: -.07em; line-height: .92; white-space: nowrap; }
.spec-orbit h3 { margin: auto 0 14px; font-size: clamp(20px, 1.8vw, 29px); letter-spacing: -.035em; line-height: 1.05; }
.spec-orbit p { margin: 0; color: #b9c3d4; font-size: 14px; }

.quality { background: var(--coral); }
.quality-layout { margin-top: clamp(50px, 7vw, 100px); display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(45px, 8vw, 130px); align-items: start; }
.quality-copy { position: sticky; top: 125px; }
.quality h2 { font-size: clamp(53px, 6vw, 98px); }
.quality h2 em { color: var(--white); }
.quality-copy > p { max-width: 470px; margin: 38px 0 0; font-size: clamp(18px, 1.5vw, 23px); }
.quality-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.quality-card { min-height: 260px; padding: 26px; display: flex; flex-direction: column; border-radius: calc(var(--radius) * .75); background: rgba(255, 253, 248, .9); box-shadow: 0 15px 45px rgba(71, 29, 18, .08); }
.quality-card--wide { grid-column: 1 / -1; min-height: 230px; }
.quality-card > span { width: 34px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.quality-card h3 { margin: auto 0 14px; font-size: clamp(22px, 2vw, 33px); letter-spacing: -.04em; line-height: 1.05; }
.quality-card p { margin: 0; color: #596173; }

.origin { position: relative; overflow: hidden; background: var(--blue); color: var(--white); isolation: isolate; }
.origin-art { position: absolute; inset: 0; z-index: -1; opacity: .2; }
.origin-art span { position: absolute; border: 1px solid var(--white); border-radius: 50%; }
.origin-art span:nth-child(1) { width: 52vw; aspect-ratio: 1; right: -16vw; top: -22vw; }
.origin-art span:nth-child(2) { width: 32vw; aspect-ratio: 1; left: -10vw; bottom: -13vw; }
.origin-art span:nth-child(3) { width: 15vw; aspect-ratio: 1; right: 31vw; bottom: 7vw; background: var(--coral); border: 0; }
.origin-main { margin-top: clamp(54px, 8vw, 112px); display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.origin-copy, .origin-list, .origin-list article > div { min-width: 0; }
.origin h2 { max-width: 930px; font-size: clamp(54px, 6.2vw, 103px); line-height: .95; }
.origin h2 span, .origin h2 em { display: block; }
.origin h2 em { margin-top: .13em; color: var(--white); font-weight: 500; }
.origin-copy > p { max-width: 690px; margin: clamp(35px, 5vw, 68px) 0 0; color: #e0e6ff; font-size: clamp(18px, 1.55vw, 24px); }
.origin-list { border-top: 1px solid rgba(255, 255, 255, .4); }
.origin-list article { padding: 26px 0; display: grid; grid-template-columns: 110px 1fr; gap: 25px; border-bottom: 1px solid rgba(255, 255, 255, .4); }
.origin-list article > span { padding-top: 5px; color: #dbe2ff; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; font-weight: 700; }
.origin-list h3 { margin: 0; font-size: clamp(24px, 2.1vw, 35px); letter-spacing: -.04em; }
.origin-list p { margin: 8px 0 0; color: #dbe2ff; }

.final-cta { position: relative; min-height: 88svh; padding: clamp(90px, 11vw, 170px) var(--pad); display: flex; flex-direction: column; justify-content: center; overflow: hidden; background: var(--paper); }
.final-orbit { position: absolute; width: min(58vw, 900px); aspect-ratio: 1; right: -12vw; top: 50%; transform: translateY(-50%); border: clamp(75px, 10vw, 160px) solid var(--peach); border-radius: 50%; }
.final-cta > *:not(.final-orbit) { position: relative; z-index: 2; }
.final-cta .overline { max-width: 960px; margin-bottom: clamp(46px, 7vw, 86px); }
.final-cta h2 { font-size: clamp(70px, 11vw, 176px); }
.final-cta h2 em { color: var(--blue); }
.final-lead { max-width: 620px; margin: 40px 0 0; font-size: clamp(18px, 1.6vw, 25px); }
.primary-cta--light { background: var(--ink); color: var(--white); }
.primary-cta--light:hover { background: var(--blue); }

.site-footer { padding: 38px var(--pad); display: grid; grid-template-columns: minmax(210px, 300px) minmax(0, 1fr); justify-content: space-between; gap: 42px; align-items: end; border-top: 1px solid rgba(16, 23, 39, .16); }
.footer-brand img { display: block; width: min(230px, 100%); height: auto; }
.footer-brand p { margin: 15px 0 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 13px 20px; align-items: center; }
.site-footer a, .site-footer .cookie-settings { color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .035em; text-decoration: none; text-transform: uppercase; }
.site-footer .cookie-settings { min-height: 0; padding: 0; border: 0; background: transparent; }

.primary-cta:focus-visible, .hero-product:focus-visible, .model-card:focus-visible, .header-cta:focus-visible, .main-nav a:focus-visible, .site-footer a:focus-visible, .site-footer button:focus-visible { outline: 3px solid #ffcf43; outline-offset: 4px; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 190px 1fr auto; }
  .main-nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto minmax(520px, 64vh) auto; }
  .hero-copy { padding-bottom: 12px; }
  .hero h1 { max-width: 820px; }
  .hero-product { min-height: 520px; }
  .hero-product img { width: min(88%, 780px); }
  .orbit--one { width: 65vw; }
  .orbit--two { width: 34vw; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .principle-card--peach { grid-column: 1 / -1; }
  .principle-card--paper { margin-top: 45px; }
  .spec-orbits { grid-template-columns: repeat(2, 1fr); }
  .spec-orbit--offset { margin-top: 45px; }
  .brand-story-layout, .quality-layout, .origin-main { grid-template-columns: 1fr; }
  .brand-story-copy { max-width: 760px; }
  .quality-copy { position: static; }
  .origin-list { max-width: 720px; }
}

@media (max-width: 760px) {
  :root { --pad: 18px; --radius: 24px; }
  .site-header { min-height: 62px; grid-template-columns: 135px 1fr; gap: 14px; }
  .header-cta { justify-self: end; padding: 9px 12px; gap: 12px; font-size: 10px; }
  .hero { min-height: auto; padding-top: 38px; grid-template-rows: auto minmax(390px, 53vh) auto; gap: 34px; }
  .overline { margin-bottom: 36px; font-size: 9px; }
  .hero h1 { font-size: clamp(48px, 14.2vw, 64px); line-height: .91; }
  .hero-lead { margin-top: 28px; font-size: 17px; }
  .primary-cta { width: 100%; min-height: 54px; padding: 14px 17px; }
  .hero-product { min-height: 390px; border-radius: 24px 24px 0 0; }
  .hero-product img { width: 100%; max-width: 100%; }
  .orbit--one { width: 94vw; top: -15%; right: -29%; border-width: 52px; }
  .orbit--two { width: 50vw; left: -17%; bottom: 3%; border-width: 38px; }
  .hero-model { left: 18px; bottom: 17px; }
  .hero-model b { font-size: 21px; }
  .hero-model small { max-width: 210px; font-size: 10px; }
  .hero-arrow { right: 17px; bottom: 17px; width: 45px; }
  .hero-product-index { top: 18px; left: 18px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div { min-height: 76px; padding: 15px 18px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
  .hero-facts div:last-child { border-bottom: 0; }
  .hero-facts dt { min-width: 92px; font-size: 30px; }
  .route-strip { height: auto; padding: 24px 18px; display: grid; gap: 10px; }
  .route-line { display: none; }
  .route-point, .route-point--one, .route-point--two, .route-point--three {
    position: static;
    min-height: 58px;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 18px 26px 1fr;
    gap: 9px;
    align-items: center;
    border: 1px solid rgba(16, 23, 39, .28);
    border-radius: 999px;
    background: rgba(255, 253, 248, .14);
  }
  .route-point::before { width: 13px; border-width: 3px; }
  .route-point b { font-size: 15px; }
  .section-shell { padding-top: 88px; padding-bottom: 88px; }
  .models-head { padding-bottom: 0; }
  .principles-head, .engineering-head { grid-template-columns: 1fr; gap: 34px; }
  .brand-story h2, .principles h2, .models h2, .spin h2, .engineering h2, .quality h2, .origin h2 { font-size: clamp(49px, 14vw, 67px); line-height: .91; }
  .brand-story-orbit { width: 110vw; right: -72vw; top: -18vw; border-width: 70px; }
  .brand-story-layout { gap: 42px; }
  .brand-story-copy { gap: 20px; }
  .brand-story-copy p { font-size: 16px; }
  .brand-story-copy .brand-story-lead { font-size: 20px; }
  .brand-story-facts { margin-top: 58px; grid-template-columns: 1fr; }
  .brand-story-facts div, .brand-story-facts div:first-child, .brand-story-facts div:last-child { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid rgba(16, 23, 39, .18); }
  .brand-story-facts div:last-child { border-bottom: 0; }
  .brand-story-facts dd { margin-top: 12px; font-size: 22px; }
  .principles-head > p, .engineering-head p { margin-left: 0; font-size: 18px; }
  .principles-grid { grid-template-columns: 1fr; gap: 14px; }
  .principle-card, .principle-card--paper { min-height: 340px; margin-top: 0; }
  .principle-card--peach { grid-column: auto; }
  .models-title-row { align-items: flex-start; gap: 10px; }
  .models h2 { font-size: clamp(42px, 12vw, 58px); }
  .models-note { width: 100px; flex: 0 0 100px; padding: 16px; }
  .models-note strong { font-size: 48px; }
  .models-note p { font-size: 8px; }
  .gallery-intro { align-items: start; flex-direction: column; gap: 22px; }
  .gallery-intro p { font-size: 16px; }
  .desktop-gallery-hint { display: none; }
  .mobile-gallery-hint {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(16, 23, 39, .2);
    border-radius: 999px;
    color: var(--ink);
  }
  .model-gallery {
    margin-top: 28px;
    padding: 0 18px 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    overflow: visible;
    scroll-snap-type: none;
  }
  .model-gallery .model-card { width: 100%; }
  .model-card { flex-basis: auto; border-radius: 22px; box-shadow: 0 10px 28px rgba(17, 26, 49, .08); }
  .model-card:hover { transform: none; box-shadow: 0 10px 28px rgba(17, 26, 49, .08); }
  .model-meta { padding: 16px 18px 0; }
  .model-image { height: clamp(194px, 54vw, 250px); margin: 8px 10px 0; border-radius: 16px; }
  .model-info {
    min-height: 0;
    margin-top: 10px;
    padding: 16px 18px 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 14px 10px;
  }
  .model-title { grid-column: 1; grid-row: 1; }
  .model-title h3 { font-size: 31px; }
  .model-title p { margin-top: 6px; font-size: 14px; }
  .model-info dl { grid-column: 1 / -1; grid-row: 2; padding-top: 14px; gap: 7px; border-top: 1px solid rgba(16, 23, 39, .13); }
  .model-info dd { font-size: 12px; }
  .model-link { grid-column: 2; grid-row: 1; justify-self: end; padding: 9px 11px; background: var(--ink); color: var(--white); font-size: 8px; }
  .spin-head { grid-template-columns: 1fr; gap: 42px; }
  .spin-head > div > p { font-size: 17px; }
  .spin-select select { min-height: 56px; }
  .spin-stage { height: 390px; }
  .spin-stage::before { width: 115vw; right: -58%; top: -56%; border-width: 72px; }
  .spin-stage img { width: 112%; max-width: none; height: 88%; }
  .spin-badge { top: 16px; left: 16px; width: 60px; font-size: 16px; }
  .spin-hint { bottom: 15px; white-space: nowrap; }
  .spin-footer { min-height: 170px; padding: 21px 18px; grid-template-columns: 1fr auto; gap: 18px; }
  .spin-counter { grid-column: 1 / -1; grid-row: 1; }
  .spin-footer > strong { grid-column: 1; grid-row: 2; }
  .spin-footer > a { grid-column: 2; grid-row: 2; max-width: 150px; text-align: center; }
  .spec-orbits { grid-template-columns: 1fr; gap: 14px; }
  .spec-orbit, .spec-orbit--offset { min-height: 280px; margin-top: 0; border-radius: 24px; }
  .spec-orbit strong { font-size: 54px; }
  .quality-layout { gap: 52px; }
  .quality-cards { grid-template-columns: 1fr; }
  .quality-card, .quality-card--wide { grid-column: auto; min-height: 230px; }
  .origin-main { gap: 55px; }
  .origin h2 { font-size: clamp(40px, 11.2vw, 52px); line-height: .96; letter-spacing: -.055em; }
  .origin h2 em { margin-top: .2em; font-size: .74em; line-height: 1.04; letter-spacing: -.04em; }
  .origin-copy > p { font-size: 18px; }
  .origin-list article { grid-template-columns: 82px 1fr; gap: 16px; }
  .final-cta { min-height: 78svh; }
  .final-orbit { width: 110vw; right: -58vw; border-width: 82px; }
  .final-cta h2 { font-size: clamp(66px, 20vw, 96px); }
  .final-lead { font-size: 18px; }
  .site-footer { padding: 32px 18px; grid-template-columns: 1fr; gap: 28px; }
  .footer-brand img { width: 170px; }
  .footer-links { justify-content: flex-start; gap: 16px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
