:root {
  color-scheme: dark;
  --ink: #071424;
  --ink-2: #0b1a2d;
  --ink-3: #12263d;
  --paper: #f2efe6;
  --paper-2: #e8e1d3;
  --white: #f8fbff;
  --mist: #9fb3cc;
  --muted: #7189a6;
  --line: rgba(145, 182, 216, 0.18);
  --cyan: #14aceb;
  --cyan-soft: #77d5fa;
  --cyan-dark: #08658d;
  --orange: #e75a31;
  --green: #10a97a;
  --violet: #a857c5;
  --blue: #287bd8;
  --shell: min(1240px, calc(100vw - 64px));
  --header: 82px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  font-family: "Segoe UI Variable", "Aptos", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ink);
  color: var(--white);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 22% -4%, rgba(29, 132, 185, .16), transparent 33rem),
    radial-gradient(circle at 93% 10%, rgba(80, 98, 172, .12), transparent 28rem),
    var(--ink);
  color: var(--white);
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

button {
  border: 0;
}

a {
  text-decoration: none;
}

img,
video,
svg {
  display: block;
}

img,
video {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--cyan-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 99px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(32px, calc((100vw - 1360px) / 2));
  border-bottom: 1px solid transparent;
  transition:
    height .45s var(--ease),
    background .45s var(--ease),
    border-color .45s var(--ease),
    backdrop-filter .45s var(--ease);
}

.site-header.is-scrolled {
  height: 68px;
  border-color: rgba(142, 176, 208, .13);
  background: rgba(7, 20, 36, .78);
  backdrop-filter: blur(22px) saturate(1.25);
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.brand img {
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .13), 0 9px 28px rgba(0, 0, 0, .25);
}

.primary-nav,
.legal-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a,
.legal-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--mist);
  font-size: .77rem;
  font-weight: 650;
}

.primary-nav a::after,
.legal-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.primary-nav a:hover::after,
.legal-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-end {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(142, 176, 208, .15);
  border-radius: 999px;
  background: rgba(15, 34, 54, .72);
}

.language-switch button {
  min-width: 36px;
  padding: 6px 8px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .67rem;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
  background: var(--paper);
  color: var(--ink);
}

.header-status {
  padding: 10px 15px;
  border: 1px solid rgba(122, 211, 247, .34);
  border-radius: 999px;
  color: var(--cyan-soft);
  font-size: .72rem;
  font-weight: 720;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  grid-template-columns: minmax(380px, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(24px, 4vw, 80px);
  padding-top: calc(var(--header) + 48px);
  padding-bottom: 68px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 20%;
  left: -38vw;
  width: 78vw;
  height: 78vw;
  border: 1px solid rgba(39, 125, 168, .12);
  border-radius: 50%;
  content: "";
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan-soft);
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.widget-copy h2,
.looks-copy h2,
.closing h2,
.legal-main h1,
.not-found h1 {
  margin: 0;
  font-size: clamp(3.4rem, 6.25vw, 6.9rem);
  font-weight: 530;
  letter-spacing: -.07em;
  line-height: .89;
}

.hero h1 em {
  color: var(--cyan-soft);
  font-style: normal;
}

.hero-lede {
  max-width: 570px;
  margin: 32px 0 0;
  color: #b1c1d3;
  font-size: clamp(1.02rem, 1.4vw, 1.24rem);
  line-height: 1.68;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 760;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.button svg {
  width: 18px;
}

.button-primary {
  background: var(--cyan);
  color: #041321;
  box-shadow: 0 15px 48px rgba(20, 172, 235, .18);
}

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

.button-primary:hover {
  box-shadow: 0 19px 58px rgba(20, 172, 235, .28);
}

.availability {
  color: var(--muted);
  font-size: .72rem;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mist);
  font-size: .68rem;
}

.hero-signals i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.hero-signals b {
  font-weight: 620;
}

.hero-system {
  position: relative;
  min-height: 690px;
  transform-style: preserve-3d;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

.hero-aura {
  position: absolute;
  top: 48%;
  left: 52%;
  width: min(65vw, 670px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(24, 176, 236, .13), rgba(16, 69, 107, .09) 32%, transparent 68%);
  filter: blur(4px);
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(115, 192, 228, .17);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(20, 172, 235, .85);
}

.orbit::before {
  top: 12%;
  left: 16%;
}

.orbit::after {
  right: 6%;
  bottom: 28%;
  background: #e9c27b;
  box-shadow: 0 0 22px rgba(233, 194, 123, .6);
}

.orbit-one {
  width: 590px;
  animation: orbit-breathe 8s ease-in-out infinite;
}

.orbit-two {
  width: 470px;
  border-style: dashed;
  opacity: .66;
  transform: translate(-50%, -50%) rotate(18deg);
  animation: orbit-turn 42s linear infinite;
}

.orbit-three {
  width: 345px;
  opacity: .48;
  transform: translate(-50%, -50%) rotate(-33deg);
  animation: orbit-turn-reverse 34s linear infinite;
}

.orbit-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border: 1px solid rgba(140, 186, 218, .18);
  border-radius: 15px;
  background: rgba(10, 27, 45, .8);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
  transform: translateZ(22px);
}

.orbit-label > i {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background: rgba(20, 172, 235, .11);
  color: var(--cyan-soft);
  font-size: 1.1rem;
  font-style: normal;
}

.orbit-label > i svg {
  width: 19px;
}

.orbit-label span {
  display: grid;
  gap: 2px;
}

.orbit-label b {
  color: var(--white);
  font-size: .61rem;
  letter-spacing: .14em;
}

.orbit-label small {
  color: var(--muted);
  font-size: .63rem;
}

.orbit-flow {
  top: 9%;
  left: 7%;
}

.orbit-views {
  top: 20%;
  right: -2%;
}

.orbit-canvas {
  bottom: 16%;
  left: 0;
}

.orbit-focus {
  right: 1%;
  bottom: 9%;
}

.phone {
  margin: 0;
}

.phone-shell {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 7px;
  border: 1px solid rgba(213, 232, 246, .2);
  border-radius: 43px;
  background: linear-gradient(145deg, #43566b, #111b29 18%, #050b13 72%, #3b5267);
  box-shadow:
    0 36px 80px rgba(0, 0, 0, .44),
    0 0 0 1px rgba(255, 255, 255, .04) inset;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: var(--ink);
}

.phone-screen img,
.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 50%;
  width: 34%;
  height: 18px;
  border-radius: 999px;
  background: #03070c;
  transform: translateX(-50%);
}

.hero-phone {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 52%;
  width: 308px;
  height: 668px;
  transform:
    translate(-50%, -50%)
    rotateY(var(--tilt-y))
    rotateX(var(--tilt-x))
    rotate(-1.8deg);
  transition: transform .24s ease-out;
}

.hero-now {
  position: absolute;
  z-index: 6;
  top: 54%;
  right: 6%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .15em;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
}

.hero-now i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(20, 172, 235, .15);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: .67rem;
}

.scroll-cue i {
  position: relative;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(143, 180, 211, .18);
}

.scroll-cue i::after {
  position: absolute;
  width: 18px;
  height: 1px;
  content: "";
  background: var(--cyan);
  animation: cue 2s var(--ease) infinite;
}

.flow-section {
  position: relative;
  padding: 150px 0 160px;
  background:
    linear-gradient(180deg, rgba(7, 20, 36, 0), rgba(8, 25, 42, .94) 7%, rgba(8, 25, 42, .94) 90%, var(--ink));
}

.flow-section::before {
  position: absolute;
  z-index: 0;
  top: 18%;
  right: -18vw;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(39, 125, 168, .11);
  border-radius: 50%;
  content: "";
}

.section-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 70px 1.15fr .85fr;
  align-items: end;
  gap: 34px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}

.section-index {
  align-self: start;
  margin: 1px 0 0;
  color: var(--cyan);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .18em;
}

.section-intro h2,
.widget-copy h2,
.looks-copy h2,
.closing h2 {
  font-size: clamp(3rem, 5.5vw, 6rem);
}

.section-intro > p:last-child {
  max-width: 460px;
  margin: 0 0 4px;
  color: var(--mist);
  font-size: 1rem;
  line-height: 1.72;
}

.flow-story {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(46px, 7vw, 100px);
  padding-top: 110px;
}

.flow-product {
  position: sticky;
  top: 105px;
  align-self: start;
  min-height: 720px;
  display: grid;
  place-items: center;
}

.flow-product::before {
  position: absolute;
  width: 640px;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(19, 151, 209, .12), transparent 67%);
}

.flow-phone {
  position: relative;
  z-index: 2;
  width: 324px;
  height: 704px;
  transform: rotate(-1.2deg);
}

.product-axis-label {
  position: absolute;
  z-index: 4;
  top: 50%;
  padding: 8px 10px;
  border: 1px solid rgba(119, 213, 250, .23);
  border-radius: 999px;
  background: rgba(7, 20, 36, .84);
  color: var(--cyan-soft);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .15em;
  backdrop-filter: blur(12px);
}

.axis-blocks {
  left: 3%;
  transform: translateY(-50%) rotate(-90deg);
}

.axis-actions {
  right: 3%;
  transform: translateY(-50%) rotate(90deg);
}

.flow-orbit-line {
  position: absolute;
  width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(119, 213, 250, .15);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.flow-orbit-line i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.flow-orbit-line i:nth-child(1) {
  top: 5%;
  left: 27%;
}

.flow-orbit-line i:nth-child(2) {
  right: 1%;
  bottom: 42%;
  background: var(--orange);
}

.flow-orbit-line i:nth-child(3) {
  bottom: 4%;
  left: 33%;
  background: var(--green);
}

.flow-copy {
  padding: 70px 0 120px;
}

.flow-point {
  position: relative;
  min-height: 310px;
  padding: 12px 0 75px 70px;
  border-left: 1px solid var(--line);
}

.flow-point::before {
  position: absolute;
  top: 17px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(20, 172, 235, .08);
}

.flow-point > span {
  color: var(--cyan);
  font-size: .64rem;
  font-weight: 840;
  letter-spacing: .16em;
}

.flow-point h3,
.day-shift h3,
.principle h3 {
  max-width: 500px;
  margin: 24px 0 20px;
  font-size: clamp(2rem, 3.3vw, 3.65rem);
  font-weight: 530;
  letter-spacing: -.05em;
  line-height: 1.03;
}

.flow-point p {
  max-width: 495px;
  margin: 0;
  color: var(--mist);
  font-size: 1rem;
  line-height: 1.75;
}

.day-shift {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  padding: 42px;
  border: 1px solid rgba(138, 181, 216, .16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 95% 8%, rgba(25, 160, 218, .13), transparent 45%),
    rgba(9, 28, 46, .72);
  overflow: hidden;
}

.day-shift h3 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.day-shift-copy > p:last-of-type {
  max-width: 430px;
  color: var(--mist);
  line-height: 1.7;
}

.shift-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.shift-controls button {
  padding: 10px 14px;
  border: 1px solid rgba(133, 174, 207, .18);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .7rem;
  font-weight: 760;
  transition: .3s var(--ease);
}

.shift-controls button.is-active {
  border-color: rgba(119, 213, 250, .42);
  background: rgba(20, 172, 235, .11);
  color: var(--cyan-soft);
}

.shift-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: center;
  padding: 46px 30px;
  overflow: hidden;
}

.shift-orbit {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(119, 213, 250, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.shift-timeline,
.shift-actions {
  position: relative;
  z-index: 2;
}

.shift-timeline {
  height: 430px;
  padding: 26px 0;
  border-left: 1px solid rgba(129, 169, 201, .25);
  transition: opacity .4s var(--ease);
}

.shift-time {
  position: absolute;
  top: 0;
  left: -9px;
  color: var(--muted);
  font-size: .62rem;
  transform: translateX(-100%);
}

.shift-time-end {
  top: auto;
  bottom: 0;
}

.shift-block {
  position: absolute;
  right: 0;
  left: 18px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 13px 15px;
  border: 1px solid rgba(129, 169, 201, .2);
  border-radius: 17px;
  background: rgba(17, 40, 63, .92);
  transition:
    top .65s var(--ease),
    height .65s var(--ease),
    opacity .4s var(--ease),
    transform .65s var(--ease);
}

.shift-block::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  content: "";
  background: var(--cyan);
}

.shift-block b {
  font-size: .76rem;
  font-weight: 720;
}

.shift-block small {
  color: var(--muted);
  font-size: .62rem;
}

.block-morning {
  top: 38px;
  height: 82px;
}

.block-focus {
  top: 142px;
  height: 148px;
}

.block-close {
  top: 312px;
  height: 76px;
}

.shift-actions {
  display: grid;
  gap: 11px;
}

.shift-actions span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid rgba(129, 169, 201, .18);
  border-radius: 17px;
  background: rgba(17, 40, 63, .75);
  color: #b8c9da;
  transition: transform .55s var(--ease), opacity .4s var(--ease);
}

.shift-actions i {
  width: 13px;
  height: 13px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
}

.shift-actions b {
  font-size: .74rem;
  font-weight: 650;
  line-height: 1.35;
}

.shift-status {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .61rem;
}

.shift-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  transition: background .3s ease;
}

[data-shift-visual="late"] .block-morning {
  top: 72px;
  height: 66px;
}

[data-shift-visual="late"] .block-focus {
  top: 161px;
  height: 176px;
}

[data-shift-visual="late"] .block-close {
  top: 356px;
  height: 58px;
}

[data-shift-visual="late"] .shift-actions span:nth-child(1) {
  transform: translateY(24px);
}

[data-shift-visual="late"] .shift-actions span:nth-child(2) {
  transform: translateY(8px);
}

[data-shift-visual="off"] .shift-block,
[data-shift-visual="off"] .shift-actions span {
  opacity: .34;
  transform: scale(.98);
}

[data-shift-visual="off"] .shift-block::after {
  position: absolute;
  inset: 50% 10px auto;
  height: 1px;
  content: "";
  background: rgba(172, 197, 218, .45);
}

[data-shift-visual="off"] .shift-status i {
  background: #e9c27b;
}

.surfaces-section {
  padding: 150px 0;
  background: var(--paper);
  color: #171a20;
}

.surfaces-section .eyebrow,
.looks-section .eyebrow {
  color: #276d88;
}

.surfaces-section .section-index,
.looks-section .section-index {
  color: #2783a7;
}

.surfaces-section .section-intro {
  border-color: rgba(31, 46, 58, .14);
}

.surfaces-section .section-intro > p:last-child {
  color: #66675f;
}

.surface-stage {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  min-height: 760px;
  padding-top: 88px;
}

.surface-tabs {
  display: grid;
  align-content: start;
}

.surface-tabs button {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 28px 20px 28px 34px;
  border-top: 1px solid rgba(31, 46, 58, .14);
  background: transparent;
  color: #8d8b82;
  cursor: pointer;
  text-align: left;
  transition: color .3s ease, padding-left .3s var(--ease);
}

.surface-tabs button:last-child {
  border-bottom: 1px solid rgba(31, 46, 58, .14);
}

.surface-tabs button::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: transparent;
  transform: translateY(-50%);
  transition: .3s ease;
}

.surface-tabs button[aria-selected="true"] {
  padding-left: 42px;
  color: #181b20;
}

.surface-tabs button[aria-selected="true"]::before {
  background: #1699cd;
  box-shadow: 0 0 0 8px rgba(22, 153, 205, .12);
}

.surface-tabs span {
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.surface-tabs small {
  font-size: .84rem;
  line-height: 1.4;
}

.surface-media {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 44%, rgba(34, 151, 202, .16), transparent 37%),
    #0a1929;
  box-shadow: 0 32px 80px rgba(35, 31, 23, .16);
}

.surface-media::before {
  position: absolute;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(116, 202, 238, .15);
  border-radius: 50%;
  content: "";
}

.surface-shot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 1;
  transition: opacity .35s ease, transform .55s var(--ease);
}

.surface-shot[hidden] {
  display: grid;
  visibility: hidden;
  opacity: 0;
  transform: translateY(18px) scale(.98);
}

.surface-phone {
  position: relative;
  z-index: 2;
  width: 292px;
  height: 635px;
}

.surface-caption {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 27px;
  left: 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.surface-caption span {
  color: var(--cyan-soft);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.surface-caption i {
  height: 1px;
  background: rgba(152, 190, 220, .18);
}

.surface-caption b {
  max-width: 260px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 620;
  text-align: right;
}

.canvas-orbit-demo {
  position: relative;
  width: min(90%, 800px);
  height: min(78%, 620px);
  overflow: hidden;
  border: 1px solid rgba(118, 176, 210, .13);
  border-radius: 28px;
  background: #071424;
}

.canvas-grid {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: radial-gradient(circle, rgba(117, 162, 196, .55) 1px, transparent 1px);
  background-size: 25px 25px;
}

.canvas-frame {
  position: absolute;
  top: 17%;
  left: 15%;
  width: 66%;
  height: 66%;
  padding: 22px;
  border: 1px solid rgba(119, 213, 250, .38);
  border-radius: 25px;
  box-shadow: 0 0 0 1px rgba(119, 213, 250, .07) inset;
}

.canvas-frame span,
.canvas-node small {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan-soft);
  font-size: .54rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.canvas-frame b {
  color: var(--white);
  font-size: 1.1rem;
}

.canvas-node {
  position: absolute;
  z-index: 3;
  display: grid;
  align-content: center;
  min-height: 102px;
  padding: 16px 18px;
  border: 1px solid rgba(133, 178, 210, .24);
  border-radius: 18px;
  background: #12263d;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .2);
  animation: canvas-float 6s ease-in-out infinite;
}

.canvas-node b {
  max-width: 170px;
  font-size: .78rem;
}

.canvas-node-note {
  top: 27%;
  left: 8%;
}

.canvas-node-list {
  top: 42%;
  right: 7%;
  animation-delay: -2s;
}

.canvas-node-choice {
  bottom: 11%;
  left: 31%;
  animation-delay: -4s;
}

.canvas-links {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.canvas-links path {
  fill: none;
  stroke: rgba(119, 213, 250, .46);
  stroke-dasharray: 4 8;
  stroke-linecap: round;
  stroke-width: 2;
  animation: link-dash 12s linear infinite;
}

.canvas-pulse {
  position: absolute;
  z-index: 4;
  right: 22%;
  bottom: 25%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  animation: canvas-pulse 2.8s ease-out infinite;
}

.widget-section {
  padding: 170px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 46%, rgba(34, 153, 203, .14), transparent 30rem),
    var(--ink);
}

.widget-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 70px;
}

.widget-copy h2 {
  margin: 12px 0 28px;
}

.widget-copy > p:not(.section-index):not(.eyebrow):not(.widget-list) {
  max-width: 490px;
  color: var(--mist);
  line-height: 1.75;
}

.widget-copy .section-index {
  margin-bottom: 42px;
}

.widget-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--line);
}

.widget-facts span {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 13px;
  background: var(--ink);
}

.widget-facts b {
  color: var(--white);
  font-size: 1.06rem;
}

.widget-facts small {
  color: var(--muted);
  font-size: .61rem;
  line-height: 1.35;
}

.widget-list {
  margin-top: 24px;
  color: var(--cyan-soft);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.widget-orbit-stage {
  position: relative;
  min-height: 760px;
}

.widget-ring {
  position: absolute;
  top: 50%;
  left: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(119, 213, 250, .14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 680px;
}

.ring-b {
  width: 510px;
  border-style: dashed;
  animation: orbit-turn 48s linear infinite;
}

.widget-card {
  position: absolute;
  z-index: 2;
  margin: 0;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, .35));
  transition: transform .45s var(--ease);
}

.widget-card:hover {
  z-index: 5;
  transform: translateY(-7px) rotate(0);
}

.widget-card img {
  width: 100%;
  border: 1px solid rgba(112, 177, 216, .22);
  border-radius: 25px;
}

.widget-card figcaption {
  width: max-content;
  margin: 9px 0 0 12px;
  color: var(--muted);
  font-size: .59rem;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.widget-routines {
  top: 7%;
  left: 3%;
  width: 59%;
  transform: rotate(-2deg);
}

.widget-today {
  top: 36%;
  right: -2%;
  width: 57%;
  transform: rotate(2.4deg);
}

.widget-notes {
  bottom: 5%;
  left: 4%;
  width: 57%;
  transform: rotate(1deg);
}

.widget-dial {
  right: 1%;
  bottom: 5%;
  width: 28%;
  transform: rotate(-2.8deg);
}

.looks-section {
  --look-bg: #071424;
  --look-fg: #f4f8fc;
  --look-muted: #8fa2b4;
  --look-accent: #19aae5;
  --look-accent-2: #2b6d92;
  --look-panel: #0c1d31;
  --look-panel-2: #112941;
  --look-line: rgba(94, 179, 221, .2);
  padding: 145px 0;
  background:
    radial-gradient(circle at 76% 50%, color-mix(in srgb, var(--look-accent) 14%, transparent), transparent 24rem),
    radial-gradient(circle at 88% 20%, color-mix(in srgb, var(--look-accent-2) 10%, transparent), transparent 28rem),
    var(--look-bg);
  color: var(--look-fg);
  transition: background-color .65s var(--ease), color .45s ease;
}

.looks-section[data-active-look="dune"] {
  --look-bg: #2b241b;
  --look-fg: #f4e9cf;
  --look-muted: #baa986;
  --look-accent: #d7bf8c;
  --look-accent-2: #806a43;
  --look-panel: #3b3021;
  --look-panel-2: #4a3b27;
  --look-line: rgba(225, 195, 135, .22);
}

.looks-section[data-active-look="meadow"] {
  --look-bg: #eaf2e5;
  --look-fg: #1e3125;
  --look-muted: #687b6a;
  --look-accent: #6d9f71;
  --look-accent-2: #a5c39a;
  --look-panel: #f4f8f0;
  --look-panel-2: #dcead5;
  --look-line: rgba(65, 112, 70, .2);
}

.looks-section[data-active-look="clay"] {
  --look-bg: #f0e1d4;
  --look-fg: #3d261f;
  --look-muted: #86675c;
  --look-accent: #b56048;
  --look-accent-2: #d39b7d;
  --look-panel: #f7ebe1;
  --look-panel-2: #e5c8b5;
  --look-line: rgba(126, 67, 49, .2);
}

.looks-section[data-active-look="abyss"] {
  --look-bg: #15111f;
  --look-fg: #f0e9ff;
  --look-muted: #a79ab9;
  --look-accent: #b399e8;
  --look-accent-2: #5f4a7d;
  --look-panel: #21192f;
  --look-panel-2: #2e2240;
  --look-line: rgba(193, 165, 239, .2);
}

.looks-section[data-active-look="paper"] {
  --look-bg: #f2efe6;
  --look-fg: #22201b;
  --look-muted: #716d64;
  --look-accent: #22201b;
  --look-accent-2: #9e9788;
  --look-panel: #fbf9f2;
  --look-panel-2: #e6e1d5;
  --look-line: rgba(34, 32, 27, .16);
}

.looks-shell {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 90px;
}

.looks-copy .section-index {
  margin-bottom: 44px;
}

.looks-copy h2 {
  margin-bottom: 28px;
}

.looks-copy > p:last-child {
  max-width: 520px;
  color: var(--look-muted);
  line-height: 1.75;
}

.look-orbits {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.look-ring {
  position: absolute;
  width: 470px;
  aspect-ratio: 1;
  border: 1px solid var(--look-line);
  border-radius: 50%;
  box-shadow: 0 0 100px color-mix(in srgb, var(--look-accent) 8%, transparent);
  transition: border-color .45s ease, box-shadow .55s ease;
}

.look-ring::after {
  position: absolute;
  inset: 17%;
  border: 1px dashed var(--look-line);
  border-radius: inherit;
  content: "";
}

.look-core {
  position: relative;
  z-index: 2;
  width: 220px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 7px;
  overflow: hidden;
  border: 1px solid var(--look-line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--look-panel) 92%, transparent);
  text-align: center;
  box-shadow:
    0 26px 70px color-mix(in srgb, var(--look-accent) 13%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--look-fg) 10%, transparent);
  transition: background-color .5s ease, border-color .5s ease, box-shadow .5s ease;
}

.look-core::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 35%, color-mix(in srgb, var(--look-accent) 14%, transparent));
  content: "";
}

.look-mini {
  position: absolute;
  inset: 28px;
  z-index: 0;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 6px;
  opacity: .46;
  transform: rotate(-7deg) scale(.9);
}

.look-mini::before,
.look-mini::after,
.look-mini i {
  border: 1px solid var(--look-line);
  border-radius: 9px;
  background: var(--look-panel-2);
  content: "";
}

.look-mini::before {
  grid-row: 1 / span 3;
}

.look-mini::after {
  grid-column: 2;
  grid-row: 1;
}

.look-mini i {
  grid-column: 2;
}

.look-mini i:nth-child(1) {
  grid-row: 2;
}

.look-mini i:nth-child(2) {
  grid-row: 3;
}

.look-mini i:nth-child(3) {
  display: none;
}

.look-core span {
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
  font-weight: 650;
  letter-spacing: -.03em;
}

.look-core small {
  position: relative;
  z-index: 2;
  color: var(--look-muted);
  font-size: .59rem;
}

.look-swatch {
  position: absolute;
  z-index: 3;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--swatch) 34%, transparent);
  border-radius: 50%;
  background: var(--swatch-2);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(57, 48, 32, .12);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.look-swatch i {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--swatch);
}

.look-classic {
  --swatch: #13a8e4;
  --swatch-2: #071424;
}

.look-dune {
  --swatch: #d7bf8c;
  --swatch-2: #2b241b;
}

.look-meadow {
  --swatch: #6d9f71;
  --swatch-2: #ecf3e7;
}

.look-clay {
  --swatch: #b56048;
  --swatch-2: #f3e7da;
}

.look-abyss {
  --swatch: #d3c7ee;
  --swatch-2: #171322;
}

.look-paper {
  --swatch: #22201b;
  --swatch-2: #f2efe6;
}

.look-swatch:hover,
.look-swatch.is-active {
  transform: scale(1.12);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--swatch) 24%, transparent);
}

.look-swatch:nth-of-type(1) {
  top: 5%;
  left: 45%;
}

.look-swatch:nth-of-type(2) {
  top: 22%;
  right: 7%;
}

.look-swatch:nth-of-type(3) {
  right: 9%;
  bottom: 19%;
}

.look-swatch:nth-of-type(4) {
  bottom: 3%;
  left: 45%;
}

.look-swatch:nth-of-type(5) {
  bottom: 18%;
  left: 9%;
}

.look-swatch:nth-of-type(6) {
  top: 21%;
  left: 7%;
}

.principles-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 130px;
  padding-bottom: 130px;
}

.principle {
  min-height: 330px;
  padding: 32px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle > span {
  color: var(--cyan);
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.principle h3 {
  margin-top: 78px;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
}

.principle p {
  max-width: 330px;
  margin: 0;
  color: var(--mist);
  font-size: .85rem;
  line-height: 1.7;
}

.closing {
  position: relative;
  min-height: 670px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 110px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 50%, rgba(22, 144, 197, .16), transparent 38%),
    #09192a;
  text-align: center;
}

.closing > div:last-child {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.closing h2 {
  font-size: clamp(3.2rem, 6vw, 6.5rem);
}

.closing p:not(.eyebrow) {
  max-width: 580px;
  margin: 28px auto 34px;
  color: var(--mist);
  line-height: 1.7;
}

.closing-orbit,
.closing-orbit::before,
.closing-orbit::after {
  position: absolute;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(119, 213, 250, .12);
  border-radius: 50%;
}

.closing-orbit::before,
.closing-orbit::after {
  inset: 14%;
  width: auto;
  content: "";
}

.closing-orbit::after {
  inset: 31%;
}

.closing-orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

.closing-orbit i:nth-child(1) {
  top: 7%;
  left: 29%;
}

.closing-orbit i:nth-child(2) {
  right: 8%;
  bottom: 35%;
  background: #e9c27b;
}

.closing-orbit i:nth-child(3) {
  bottom: 3%;
  left: 43%;
  background: var(--green);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
  min-height: 130px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: .67rem;
  text-align: center;
}

.site-footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer > div a {
  color: var(--muted);
  font-size: .65rem;
  transition: color .2s ease;
}

.site-footer > div a:hover {
  color: var(--white);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-awaiting-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

[data-reveal].is-awaiting-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  background:
    radial-gradient(circle at 84% 8%, rgba(20, 172, 235, .13), transparent 30rem),
    var(--ink);
}

.legal-page .site-header {
  position: relative;
}

.legal-main {
  padding-top: 100px;
  padding-bottom: 120px;
}

.legal-main h1 {
  max-width: 940px;
  font-size: clamp(3.3rem, 7vw, 7rem);
}

.legal-updated {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: .72rem;
}

.legal-lede {
  max-width: 760px;
  margin: 58px 0 90px;
  color: #bdc9d6;
  font-size: 1.16rem;
  line-height: 1.75;
}

.legal-sections {
  border-top: 1px solid var(--line);
}

.legal-sections section {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 26px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.legal-sections section > span {
  color: var(--cyan);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.legal-sections h2 {
  margin: 0 0 13px;
  font-size: 1.2rem;
  font-weight: 650;
}

.legal-sections p {
  max-width: 800px;
  margin: 0;
  color: var(--mist);
  line-height: 1.78;
}

.legal-sections a {
  color: var(--cyan-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found main {
  display: grid;
  justify-items: center;
}

.not-found h1 {
  margin-bottom: 40px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
}

@keyframes orbit-breathe {
  0%, 100% { transform: translate(-50%, -50%) rotate(-14deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(-11deg) scale(1.03); }
}

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

@keyframes orbit-turn-reverse {
  to { transform: translate(-50%, -50%) rotate(-393deg); }
}

@keyframes cue {
  0% { transform: translateX(-18px); }
  100% { transform: translateX(48px); }
}

@keyframes canvas-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes link-dash {
  to { stroke-dashoffset: -120; }
}

@keyframes canvas-pulse {
  0% { opacity: 0; transform: scale(.4); }
  35% { opacity: .9; }
  100% { opacity: 0; transform: scale(3); }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(940px, calc(100vw - 48px));
  }

  .site-header {
    padding-inline: 24px;
  }

  .hero {
    grid-template-columns: .9fr 1.1fr;
  }

  .hero-system {
    min-height: 620px;
    transform: scale(.88);
    transform-origin: center;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 6.9vw, 5.8rem);
  }

  .orbit-label {
    display: none;
  }

  .section-intro {
    grid-template-columns: 54px 1fr .75fr;
  }

  .flow-story {
    gap: 30px;
  }

  .day-shift {
    grid-template-columns: 1fr;
  }

  .shift-visual {
    min-height: 430px;
  }

  .surface-stage {
    grid-template-columns: 280px 1fr;
    gap: 34px;
  }

  .widget-grid,
  .looks-shell {
    gap: 36px;
  }

  .widget-orbit-stage {
    transform: scale(.88);
    transform-origin: center;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 36px);
    --header: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .primary-nav,
  .header-status {
    display: none;
  }

  .header-end {
    grid-column: 2;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 80px;
  }

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

  .hero h1,
  .section-intro h2,
  .widget-copy h2,
  .looks-copy h2,
  .closing h2 {
    font-size: clamp(3.1rem, 12vw, 5.7rem);
  }

  .hero-system {
    width: 100%;
    min-height: 660px;
    transform: none;
  }

  .hero-phone {
    width: 292px;
    height: 635px;
  }

  .orbit-one {
    width: min(120vw, 560px);
  }

  .orbit-two {
    width: min(96vw, 450px);
  }

  .orbit-three {
    width: min(76vw, 340px);
  }

  .hero-now {
    right: 0;
  }

  .scroll-cue {
    display: none;
  }

  .flow-section,
  .surfaces-section,
  .widget-section,
  .looks-section {
    padding-block: 100px;
  }

  .section-intro {
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 18px;
    padding-bottom: 50px;
  }

  .section-intro > p:last-child {
    grid-column: 2;
  }

  .flow-story {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .flow-product {
    position: relative;
    top: auto;
  }

  .flow-copy {
    padding: 10px 0 45px;
  }

  .flow-point {
    min-height: auto;
    padding: 20px 0 65px 34px;
  }

  .day-shift {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .shift-visual {
    min-height: 480px;
    grid-template-columns: .9fr 1.1fr;
    padding: 28px 5px 42px;
  }

  .surface-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
  }

  .surface-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .surface-tabs button,
  .surface-tabs button[aria-selected="true"] {
    min-height: 96px;
    padding: 18px 10px;
    border-right: 1px solid rgba(31, 46, 58, .14);
    text-align: center;
  }

  .surface-tabs button::before {
    top: 9px;
    left: 50%;
  }

  .surface-tabs small {
    display: none;
  }

  .surface-media {
    min-height: 700px;
  }

  .widget-grid,
  .looks-shell {
    grid-template-columns: 1fr;
  }

  .widget-orbit-stage {
    min-height: 720px;
    transform: none;
  }

  .looks-shell {
    gap: 30px;
  }

  .principles-section {
    grid-template-columns: 1fr;
    padding-block: 90px;
  }

  .principle {
    min-height: 250px;
    border-right: 0;
  }

  .principle h3 {
    margin-top: 48px;
  }

  .closing {
    min-height: 620px;
    padding-inline: 20px;
    border-radius: 30px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 38px 0;
  }

  .site-footer .brand {
    justify-self: center;
  }

  .site-footer > div {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 28px;
  }

  .flow-section {
    padding-top: 72px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-signals {
    gap: 9px 15px;
  }

  .hero-system {
    min-height: 600px;
  }

  .hero-phone {
    width: 264px;
    height: 573px;
  }

  .hero-now {
    top: 61%;
  }

  .flow-product {
    min-height: 660px;
  }

  .flow-phone {
    width: 286px;
    height: 622px;
  }

  .flow-orbit-line {
    width: 390px;
  }

  .product-axis-label {
    display: none;
  }

  .shift-visual {
    min-height: 430px;
    gap: 12px;
  }

  .shift-timeline {
    height: 380px;
  }

  .block-focus {
    height: 120px;
  }

  .block-close {
    top: 284px;
  }

  [data-shift-visual="late"] .block-focus {
    height: 145px;
  }

  [data-shift-visual="late"] .block-close {
    top: 330px;
  }

  .shift-actions span {
    min-height: 57px;
    padding: 9px;
  }

  .surface-media {
    min-height: 620px;
  }

  .surface-phone {
    width: 258px;
    height: 561px;
  }

  .surface-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .surface-caption b {
    display: none;
  }

  .canvas-orbit-demo {
    height: 520px;
  }

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

  .widget-facts span {
    min-height: 72px;
  }

  .widget-orbit-stage {
    min-height: 630px;
  }

  .ring-a {
    width: 520px;
  }

  .ring-b {
    width: 400px;
  }

  .widget-routines {
    width: 72%;
  }

  .widget-today {
    top: 34%;
    width: 71%;
  }

  .widget-notes {
    width: 70%;
  }

  .widget-dial {
    width: 34%;
  }

  .look-orbits {
    min-height: 460px;
    transform: scale(.82);
  }

  .closing-orbit {
    width: 500px;
  }

  .legal-main {
    padding-top: 70px;
  }

  .legal-sections section {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
