:root {
  --ink: #050a12;
  --ink-soft: #09111d;
  --panel: #0b1522;
  --panel-2: #0e1a29;
  --mist: #b7c3cc;
  --muted: #758593;
  --line: rgba(180, 220, 228, 0.16);
  --line-strong: rgba(180, 220, 228, 0.28);
  --cyan: #44f4ee;
  --cyan-bright: #7bfff9;
  --cyan-deep: #08b9be;
  --white: #eef6f7;
  --orange: #ff7456;
  --serif: "Songti SC", "STSong", "SimSun", serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --max: 1240px;
  --header: 78px;
  --ease: cubic-bezier(.22, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 22px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: .16;
  background-image: radial-gradient(circle, rgba(182, 235, 237, .3) .55px, transparent .7px);
  background-size: 5px 5px;
  mask-image: linear-gradient(to bottom, black, transparent 32%, transparent 70%, black);
}

body.modal-open { overflow: hidden; }

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

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

button, input { font: inherit; }

button { color: inherit; }

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

::selection { background: var(--cyan); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--cyan);
  color: var(--ink);
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 10, 18, .72);
  backdrop-filter: blur(18px);
  transition: height .28s ease, background .28s ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(5, 10, 18, .94);
}

.brand { display: inline-flex; align-items: center; gap: 12px; justify-self: start; }

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(68, 244, 238, .65);
  clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%);
  box-shadow: inset 0 0 18px rgba(68, 244, 238, .08);
}

.brand-mark::before, .brand-mark::after {
  position: absolute;
  content: "";
  background: var(--cyan);
}

.brand-mark::before { width: 15px; height: 2px; left: 9px; top: 10px; box-shadow: 0 11px 0 var(--cyan); }
.brand-mark::after { width: 2px; height: 13px; left: 16px; top: 10px; transform: skew(-28deg); }
.brand-mark i:first-child { position: absolute; width: 5px; height: 5px; right: 2px; top: 2px; background: var(--cyan); }

.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: 16px; letter-spacing: .18em; }
.brand-copy small { color: var(--muted); font-size: 9px; letter-spacing: .04em; white-space: nowrap; }

.desktop-nav { display: flex; height: 100%; align-items: center; gap: clamp(24px, 3vw, 48px); }
.desktop-nav a { position: relative; color: #aebbc5; font-size: 13px; letter-spacing: .08em; transition: color .2s ease; }
.desktop-nav a::after { position: absolute; left: 0; right: 100%; bottom: -10px; height: 1px; content: ""; background: var(--cyan); transition: right .25s var(--ease); }
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="true"]::after { right: 0; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 9px; }
.icon-button, .cart-button, .menu-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.icon-button { width: 39px; height: 39px; display: grid; place-items: center; }
.icon-button svg, .cart-button svg { fill: none; stroke: currentColor; stroke-width: 1.6; width: 18px; }
.icon-button:hover, .cart-button:hover { border-color: rgba(68, 244, 238, .6); color: var(--cyan); }
.cart-button { height: 39px; padding: 0 8px 0 12px; display: flex; align-items: center; gap: 8px; font-size: 12px; }
.cart-button b { display: grid; place-items: center; min-width: 21px; height: 21px; padding: 0 5px; background: var(--cyan); color: var(--ink); font-size: 10px; }
.menu-button { display: none; width: 40px; height: 39px; padding: 0 10px; }
.menu-button span { display: block; height: 1px; background: currentColor; margin: 6px 0; transition: transform .25s ease; }
.menu-button.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 14px 24px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 10, 18, .98);
}
.mobile-nav a { display: flex; gap: 24px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 25px; }
.mobile-nav a span { color: var(--cyan); font-family: var(--sans); font-size: 10px; }

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  padding: calc(var(--header) + 90px) max(7vw, calc((100vw - var(--max)) / 2)) 90px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: 20px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(68, 244, 238, .5), transparent);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(102, 164, 176, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(102, 164, 176, .07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 20%, rgba(0, 0, 0, .45) 78%, transparent);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(112deg, transparent 0 100px, rgba(68, 244, 238, .055) 101px 102px, transparent 103px 204px);
}

.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-a { width: 610px; height: 610px; right: 3%; top: 16%; background: radial-gradient(circle, rgba(18, 194, 198, .19), rgba(12, 49, 66, .08) 43%, transparent 68%); }
.hero-glow-b { width: 420px; height: 420px; left: -14%; top: 4%; background: radial-gradient(circle, rgba(68, 244, 238, .07), transparent 70%); }

.hero-number { position: absolute; right: -1vw; top: 70px; z-index: -1; color: transparent; -webkit-text-stroke: 1px rgba(164, 211, 217, .055); font: 620px/.85 Arial, sans-serif; letter-spacing: -.12em; }
.hero-copy { position: relative; z-index: 2; padding-top: 15px; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 10px; color: var(--cyan); font-size: 11px; font-weight: 650; letter-spacing: .2em; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; box-shadow: 6px 3px 0 -0.2px currentColor; }
.hero h1, .section-heading h2, .campaign h2, .story-copy h2, .dispatch h2 {
  font-family: var(--serif);
  font-weight: 600;
}
.hero h1 { margin: 0; font-size: clamp(66px, 7.1vw, 116px); line-height: .93; letter-spacing: -.065em; }
.hero h1 em { color: var(--cyan); font-style: normal; text-shadow: 0 0 34px rgba(68, 244, 238, .24); }
.hero-lead { max-width: 530px; margin: 31px 0 0; color: #9cabb6; font-size: 16px; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.primary-button, .dark-button { position: relative; min-height: 52px; display: inline-flex; align-items: center; gap: 34px; padding: 0 20px 0 23px; overflow: hidden; background: var(--cyan); color: var(--ink); font-size: 13px; font-weight: 750; letter-spacing: .05em; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)); }
.primary-button::before, .dark-button::before { position: absolute; inset: 0; content: ""; transform: translateX(-102%); background: var(--white); transition: transform .32s var(--ease); }
.primary-button span, .primary-button svg, .dark-button svg { position: relative; z-index: 1; }
.primary-button svg, .dark-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.primary-button:hover::before, .dark-button:hover::before { transform: translateX(0); }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line-strong); color: #c2cdd4; font-size: 13px; }
.text-link span { color: var(--cyan); }
.hero-specs { display: flex; gap: 0; margin: 52px 0 0; }
.hero-specs > div { min-width: 122px; padding: 0 24px; border-left: 1px solid var(--line); }
.hero-specs > div:first-child { padding-left: 0; border-left: 0; }
.hero-specs dt { color: var(--white); font: 24px/1 var(--serif); }
.hero-specs dd { margin: 8px 0 0; color: var(--muted); font-size: 10px; letter-spacing: .12em; }

.hero-visual { position: relative; z-index: 1; min-height: 590px; display: grid; place-items: center; perspective: 900px; }
.hero-visual::before { position: absolute; width: 72%; height: 72%; content: ""; border: 1px solid rgba(68, 244, 238, .11); transform: rotate(45deg); background: rgba(24, 76, 84, .025); box-shadow: 0 0 90px rgba(23, 215, 212, .05), inset 0 0 80px rgba(23, 215, 212, .025); }
.hero-visual::after { position: absolute; width: 48%; height: 58%; content: ""; border-left: 1px solid rgba(68, 244, 238, .17); border-right: 1px solid rgba(68, 244, 238, .17); transform: skew(-12deg); }
.hero-visual > img { position: relative; z-index: 3; width: min(94%, 640px); transform: rotate(-8deg) translateY(-10px); filter: drop-shadow(0 42px 24px rgba(0, 0, 0, .42)) drop-shadow(0 0 28px rgba(68, 244, 238, .18)); transition: transform .25s ease-out; }
.orbit { position: absolute; border: 1px solid rgba(68, 244, 238, .21); border-radius: 50%; }
.orbit::before { position: absolute; top: 50%; left: -3px; width: 6px; height: 6px; content: ""; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); border-radius: 50%; }
.orbit-one { width: 540px; height: 310px; transform: rotate(-24deg); animation: orbit-pulse 4s ease-in-out infinite; }
.orbit-two { width: 370px; height: 500px; transform: rotate(58deg); opacity: .42; }
.visual-index { position: absolute; right: 8%; top: 12%; color: rgba(201, 233, 235, .12); font: 92px/1 var(--serif); }
.hud-label { position: absolute; z-index: 4; color: #91a8b1; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.hud-label-top { top: 12%; left: 12%; display: flex; align-items: center; gap: 8px; }
.hud-label-top span { width: 5px; height: 5px; border: 1px solid var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.hud-label-bottom { right: 5%; bottom: 15%; display: flex; align-items: center; gap: 8px; }
.hud-label-bottom i { width: 40px; height: 1px; background: var(--line-strong); }
.product-float-card { position: absolute; z-index: 5; left: 2%; bottom: 7%; width: 260px; padding: 17px 18px; border: 1px solid rgba(68, 244, 238, .36); background: rgba(6, 15, 25, .82); backdrop-filter: blur(14px); clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); }
.product-float-card::before { position: absolute; left: 0; top: 0; width: 68px; height: 2px; content: ""; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.product-float-card > span { color: var(--cyan); font-size: 9px; letter-spacing: .16em; }
.product-float-card strong { display: block; margin: 8px 0 13px; font: 17px/1.4 var(--serif); }
.product-float-card > div { display: flex; justify-content: space-between; align-items: center; }
.product-float-card b { font-size: 16px; }
.product-float-card button, .quick-button { display: grid; place-items: center; border: 0; background: var(--cyan); color: var(--ink); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.product-float-card button { width: 31px; height: 31px; }
.product-float-card button:hover, .quick-button:hover { transform: rotate(90deg); background: var(--white); }
.hero-side-note { position: absolute; right: clamp(18px, 3vw, 46px); top: 50%; writing-mode: vertical-rl; color: #526672; font-size: 8px; letter-spacing: .35em; }

.signal-strip { position: relative; z-index: 2; height: 44px; overflow: hidden; border-bottom: 1px solid rgba(68, 244, 238, .32); background: var(--cyan); color: var(--ink); }
.signal-track { width: max-content; height: 100%; display: flex; align-items: center; gap: 36px; animation: ticker 25s linear infinite; }
.signal-track span { font-size: 11px; font-weight: 750; letter-spacing: .18em; white-space: nowrap; }
.signal-track i { width: 5px; height: 5px; background: var(--ink); transform: rotate(45deg); }

.section-shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.product-section, .collections { padding-top: 132px; padding-bottom: 132px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section-heading .eyebrow { margin-bottom: 15px; }
.section-heading h2 { margin: 0; font-size: clamp(43px, 5.5vw, 72px); line-height: 1; letter-spacing: -.045em; }
.section-heading > p { max-width: 370px; margin: 0 0 5px; color: #7f909c; font-size: 14px; line-height: 1.8; }

.filter-bar { display: flex; gap: 10px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter-button { flex: 0 0 auto; padding: 9px 15px; border: 1px solid var(--line); background: transparent; color: #8797a2; font-size: 11px; cursor: pointer; transition: .2s ease; }
.filter-button:hover { color: var(--white); border-color: var(--line-strong); }
.filter-button.is-active { border-color: var(--cyan); background: rgba(68, 244, 238, .08); color: var(--cyan); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px 18px; }
.product-card { min-width: 0; transition: opacity .25s ease, transform .25s ease; }
.product-card[hidden] { display: none; }
.product-art { position: relative; aspect-ratio: 1.22; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, #0d1825, #081019); }
.product-art::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(164, 217, 223, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(164, 217, 223, .055) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(145deg, black, transparent 70%); }
.product-art::after { position: absolute; width: 58%; height: 58%; content: ""; border: 1px solid rgba(68, 244, 238, .12); transform: rotate(45deg); transition: transform .6s var(--ease); }
.product-card:hover .product-art::after { transform: rotate(56deg) scale(1.1); }
.product-art img { position: relative; z-index: 2; width: 88%; height: 82%; object-fit: contain; filter: drop-shadow(0 24px 18px rgba(0, 0, 0, .45)); transition: transform .45s var(--ease), filter .45s ease; }
.product-card:hover .product-art img { transform: translateY(-8px) scale(1.035); filter: drop-shadow(0 30px 20px rgba(0, 0, 0, .5)) drop-shadow(0 0 16px rgba(68, 244, 238, .15)); }
.product-badge { position: absolute; z-index: 4; left: 14px; top: 14px; padding: 5px 9px; background: var(--cyan); color: var(--ink); font-size: 9px; font-weight: 750; letter-spacing: .12em; }
.product-badge-hot { background: var(--orange); color: #111; }
.product-code { position: absolute; z-index: 3; right: 12px; top: 16px; color: #6d7f8a; font-size: 8px; letter-spacing: .12em; }
.quick-button { position: absolute; z-index: 4; right: 14px; bottom: 14px; width: 38px; height: 38px; font-size: 20px; }
.product-info { padding: 17px 4px 0; }
.product-info > p { margin: 0 0 7px; color: var(--cyan-deep); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.product-info h3 { margin: 0 0 17px; font: 20px/1.35 var(--serif); }
.product-info > div { display: flex; align-items: center; justify-content: space-between; padding-top: 13px; border-top: 1px solid var(--line); }
.product-info strong { font-size: 16px; }
.product-info span { color: #71818c; font-size: 10px; }

.campaign { padding-bottom: 132px; }
.campaign-panel { position: relative; min-height: 560px; display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; background: var(--cyan); color: var(--ink); clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%); }
.campaign-panel::before { position: absolute; left: 45%; top: 0; bottom: 0; width: 1px; content: ""; background: rgba(5, 10, 18, .24); }
.campaign-lines { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(5, 10, 18, .25) 1px, transparent 1px), linear-gradient(90deg, rgba(5, 10, 18, .25) 1px, transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(110deg, black, transparent 70%); }
.campaign-copy { position: relative; z-index: 3; padding: 68px clamp(35px, 5vw, 75px); align-self: center; }
.eyebrow-dark { color: var(--ink); }
.campaign h2 { margin: 0; font-size: clamp(68px, 7.5vw, 110px); line-height: .88; letter-spacing: -.075em; }
.campaign-copy > p:not(.eyebrow) { max-width: 410px; margin: 30px 0; font-size: 14px; line-height: 1.85; }
.dark-button { background: var(--ink); color: var(--white); }
.dark-button::before { background: #162431; }
.campaign-art { position: relative; min-height: 560px; overflow: hidden; }
.campaign-art::before { position: absolute; width: 620px; height: 620px; right: -45px; top: -24px; content: ""; border: 1px solid rgba(5, 10, 18, .3); border-radius: 50%; box-shadow: 0 0 0 60px rgba(5, 10, 18, .045), 0 0 0 120px rgba(5, 10, 18, .035); }
.desk-screen { position: absolute; z-index: 2; left: 19%; top: 17%; width: 58%; aspect-ratio: 1.5; padding: 13px; transform: perspective(900px) rotateY(-8deg) rotateX(2deg); background: #09121d; box-shadow: 35px 40px 50px rgba(3, 15, 20, .28); clip-path: polygon(0 4%, 4% 0, 96% 0, 100% 4%, 100% 96%, 96% 100%, 4% 100%, 0 96%); }
.desk-screen::after { position: absolute; left: 45%; top: 100%; width: 10%; height: 68px; content: ""; background: #0b1721; clip-path: polygon(35% 0, 65% 0, 75% 83%, 100% 100%, 0 100%, 25% 83%); }
.desk-screen i { display: block; width: 100%; height: 100%; background: radial-gradient(circle at 65% 30%, rgba(68, 244, 238, .36), transparent 25%), linear-gradient(145deg, #0c2331, #07111b); }
.desk-screen i::before, .desk-screen i::after { position: absolute; content: ""; border: 1px solid rgba(68, 244, 238, .45); }
.desk-screen i::before { width: 42%; height: 42%; left: 27%; top: 24%; transform: rotate(45deg); }
.desk-screen i::after { width: 20%; height: 20%; left: 38%; top: 35%; transform: rotate(45deg); box-shadow: 0 0 20px rgba(68, 244, 238, .22); }
.desk-keyboard { position: absolute; z-index: 4; left: 19%; bottom: 14%; width: 51%; height: 14%; transform: skewX(-14deg) rotate(-4deg); background: repeating-linear-gradient(90deg, transparent 0 6%, rgba(68, 244, 238, .38) 6.4% 6.8%), linear-gradient(#0a1720, #061019); border: 2px solid #14232e; box-shadow: 18px 20px 30px rgba(5, 10, 18, .35); }
.desk-mouse { position: absolute; z-index: 4; right: 16%; bottom: 15%; width: 10%; height: 16%; border-radius: 45% 45% 38% 38%; transform: rotate(15deg); background: linear-gradient(100deg, #0c1b25, #061019); box-shadow: 10px 16px 25px rgba(5, 10, 18, .4), inset 2px 0 var(--cyan); }
.desk-light { position: absolute; right: 10%; top: 10%; width: 8px; height: 310px; background: #0a171f; box-shadow: 0 0 0 1px rgba(5, 10, 18, .5); transform: rotate(7deg); }
.desk-light::before { position: absolute; right: -12px; top: 0; width: 80px; height: 9px; content: ""; background: #08121a; box-shadow: 0 7px 18px rgba(5, 10, 18, .25); }
.radar { position: absolute; z-index: 3; right: 9%; bottom: 7%; width: 118px; height: 118px; border: 1px solid rgba(5, 10, 18, .3); border-radius: 50%; animation: spin 15s linear infinite; }
.radar i { position: absolute; border: 1px solid rgba(5, 10, 18, .24); border-radius: 50%; inset: 17px; }
.radar i:nth-child(2) { inset: 35px; }
.radar i:nth-child(3) { width: 4px; height: 4px; inset: 12px auto auto 55px; border: 0; background: var(--ink); box-shadow: 0 0 0 3px rgba(5, 10, 18, .12); }
.campaign-meta { position: absolute; z-index: 5; left: 48%; right: 24px; bottom: 18px; display: flex; justify-content: space-between; padding-top: 10px; border-top: 1px solid rgba(5, 10, 18, .3); font-size: 8px; letter-spacing: .16em; }

.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.collection-card { position: relative; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; overflow: hidden; border-right: 1px solid var(--line); background: #08111c; transition: background .3s ease; }
.collection-card:last-child { border-right: 0; }
.collection-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(5, 10, 18, .98) 3%, rgba(5, 10, 18, .35) 60%, transparent); }
.collection-card:hover { background: #0b1b27; }
.collection-index { position: absolute; z-index: 3; left: 20px; top: 20px; color: var(--cyan); font-size: 9px; }
.collection-card > div:last-of-type { position: relative; z-index: 3; }
.collection-card p { margin: 0 0 8px; color: var(--cyan-deep); font-size: 9px; letter-spacing: .18em; }
.collection-card h3 { margin: 0 0 10px; font: 35px/1 var(--serif); }
.collection-card div > span { color: #71818c; font-size: 11px; }
.collection-card > b { position: absolute; z-index: 4; right: 24px; bottom: 30px; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line-strong); color: var(--cyan); font-weight: 400; transition: background .2s, color .2s; }
.collection-card:hover > b { background: var(--cyan); color: var(--ink); }
.collection-icon { position: absolute; z-index: 1; left: 50%; top: 42%; width: 190px; height: 150px; transform: translate(-50%, -50%); border: 2px solid #172d3b; border-radius: 40% 40% 35% 35%; box-shadow: inset 0 0 45px #05090f, 0 35px 40px rgba(0, 0, 0, .42); }
.collection-icon::before { position: absolute; left: 50%; top: -35px; width: 170px; height: 110px; transform: translateX(-50%); content: ""; border: 9px solid #132734; border-bottom: 0; border-radius: 90px 90px 0 0; box-shadow: 0 -1px var(--cyan); }
.collection-icon i { position: absolute; width: 48px; height: 48px; top: 47px; border: 1px solid rgba(68, 244, 238, .45); border-radius: 50%; box-shadow: inset 0 0 16px rgba(68, 244, 238, .12); }
.collection-icon i:first-child { left: 18px; }
.collection-icon i:last-child { right: 18px; }
.collection-icon-desk { width: 210px; height: 130px; border-radius: 3px; }
.collection-icon-desk::before { left: 16px; right: 16px; top: 16px; width: auto; height: 75px; transform: none; border: 1px solid rgba(68, 244, 238, .4); border-radius: 0; background: linear-gradient(135deg, transparent, rgba(68, 244, 238, .11)); }
.collection-icon-desk i:first-child { width: 10px; height: 62px; left: 100px; top: 130px; border: 0; border-radius: 0; background: #162b38; }
.collection-icon-desk i:last-child { width: 100px; height: 8px; right: 51px; top: 185px; border: 0; border-radius: 0; background: #162b38; }
.collection-icon-mobile { width: 128px; height: 188px; border-radius: 18px; transform: translate(-50%, -50%) rotate(10deg); }
.collection-icon-mobile::before { width: 48px; height: 5px; left: 50%; top: 9px; border: 0; border-radius: 4px; background: #162d3a; }
.collection-icon-mobile i:first-child { inset: 20px 9px 10px; width: auto; height: auto; border-radius: 10px; background: radial-gradient(circle at 60% 35%, rgba(68, 244, 238, .28), transparent 23%), #09131d; }
.collection-icon-mobile i:last-child { display: none; }

.system-story { padding: 20px 0 150px; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px, 8vw, 120px); align-items: center; }
.story-visual { position: relative; min-height: 600px; display: grid; place-items: center; border: 1px solid var(--line); overflow: hidden; background: radial-gradient(circle, rgba(20, 132, 142, .1), transparent 55%), #07101a; }
.story-visual::before, .story-visual::after { position: absolute; content: ""; background: rgba(68, 244, 238, .22); }
.story-visual::before { left: 50%; top: 0; width: 1px; height: 100%; }
.story-visual::after { left: 0; top: 50%; width: 100%; height: 1px; }
.story-ring { position: absolute; border: 1px solid rgba(68, 244, 238, .23); border-radius: 50%; }
.ring-a { width: 380px; height: 380px; }
.ring-b { width: 270px; height: 270px; border-style: dashed; animation: spin 28s linear infinite reverse; }
.ring-c { width: 152px; height: 152px; box-shadow: 0 0 50px rgba(68, 244, 238, .07); }
.story-core { position: relative; z-index: 3; width: 75px; height: 130px; border-radius: 45% 45% 38% 38%; background: linear-gradient(90deg, #09131e, #142631 48%, #071019 50%); transform: rotate(18deg); box-shadow: 18px 25px 25px rgba(0, 0, 0, .4); }
.story-core::before { position: absolute; width: 1px; height: 75%; top: 12%; left: 50%; content: ""; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.story-core span { position: absolute; width: 120px; height: 70px; left: -22px; top: 24px; border: 1px solid rgba(68, 244, 238, .25); border-radius: 50%; transform: rotate(-18deg); }
.story-visual > p { position: absolute; top: 28px; left: 30px; margin: 0; color: #687b87; font-size: 9px; letter-spacing: .2em; }
.story-visual dl { position: absolute; left: 30px; right: 30px; bottom: 25px; display: flex; gap: 42px; margin: 0; }
.story-visual dl div { padding-left: 13px; border-left: 1px solid var(--cyan); }
.story-visual dt { font: 25px/1 var(--serif); }
.story-visual dd { margin: 6px 0 0; color: #6e818b; font-size: 9px; }
.story-copy h2 { margin: 0; font-size: clamp(48px, 5.7vw, 76px); line-height: 1.02; letter-spacing: -.055em; }
.story-copy > p:not(.eyebrow) { max-width: 550px; margin: 28px 0 35px; color: #84949e; font-size: 14px; line-height: 1.95; }
.story-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.story-list li { display: grid; grid-template-columns: 45px 1fr; gap: 13px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.story-list li > span { color: var(--cyan); font-size: 9px; }
.story-list strong { font: 18px/1 var(--serif); }
.story-list p { margin: 7px 0 0; color: #71828d; font-size: 12px; line-height: 1.6; }

.service-section { padding: 130px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #08111b; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.service-card { position: relative; min-height: 260px; padding: 28px; border-right: 1px solid var(--line); overflow: hidden; }
.service-card:last-child { border-right: 0; }
.service-card > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(68, 244, 238, .35); color: var(--cyan); font-size: 22px; }
.service-card h3 { margin: 58px 0 11px; font: 22px/1 var(--serif); }
.service-card p { margin: 0; color: #778994; font-size: 12px; line-height: 1.75; }
.service-card b { position: absolute; right: -6px; top: -16px; color: rgba(178, 218, 222, .035); font: 100px/1 Arial; }

.dispatch { padding: 110px 0 135px; }
.dispatch-inner { position: relative; display: grid; grid-template-columns: 1fr .85fr; gap: 90px; align-items: end; padding: 55px 62px; border: 1px solid rgba(68, 244, 238, .33); background: linear-gradient(110deg, rgba(18, 58, 70, .16), transparent 55%); clip-path: polygon(0 0, calc(100% - 17px) 0, 100% 17px, 100% 100%, 0 100%); }
.dispatch-inner::before, .dispatch-inner::after { position: absolute; content: ""; background: var(--cyan); }
.dispatch-inner::before { width: 96px; height: 2px; top: -1px; left: 0; box-shadow: 0 0 15px var(--cyan); }
.dispatch-inner::after { width: 5px; height: 5px; right: 28px; bottom: 22px; box-shadow: 0 0 10px var(--cyan); }
.dispatch h2 { margin: 0 0 16px; font-size: clamp(37px, 4vw, 55px); line-height: 1.08; letter-spacing: -.04em; }
.dispatch-inner > div > p:last-child { max-width: 520px; margin: 0; color: #7f909a; font-size: 13px; line-height: 1.7; }
.dispatch-form label { display: block; margin-bottom: 10px; color: #84959f; font-size: 10px; letter-spacing: .14em; }
.dispatch-form > div { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid rgba(68, 244, 238, .48); }
.dispatch-form input { width: 100%; min-width: 0; padding: 15px 8px 15px 0; border: 0; outline: 0; background: transparent; color: var(--white); }
.dispatch-form input::placeholder { color: #50616d; }
.dispatch-form button { padding: 0 7px 0 20px; border: 0; background: transparent; color: var(--cyan); font-weight: 650; cursor: pointer; }
.dispatch-form button span { margin-left: 10px; }
.dispatch-form small { display: block; margin-top: 11px; color: #52636e; font-size: 9px; }

.modal-backdrop { position: fixed; inset: 0; z-index: 300; background: rgba(2, 5, 9, .76); backdrop-filter: blur(8px); opacity: 0; transition: opacity .25s ease; }
.modal-backdrop.is-visible { opacity: 1; }
.modal-panel { position: fixed; z-index: 310; background: #07111b; }
.search-panel { inset: 0; padding: clamp(20px, 4vw, 60px); opacity: 0; transform: translateY(-24px); transition: opacity .25s ease, transform .35s var(--ease); }
.search-panel.is-visible { opacity: 1; transform: translateY(0); }
.modal-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: #72838e; font-size: 10px; letter-spacing: .15em; }
.modal-topline button { padding: 8px 0 8px 20px; border: 0; background: transparent; color: var(--cyan); cursor: pointer; }
.search-inner { width: min(100%, 900px); margin: clamp(90px, 18vh, 190px) auto 0; }
.search-inner > p { margin: 0 0 15px; color: var(--cyan); font-size: 10px; letter-spacing: .18em; }
.search-inner > label { display: block; margin-bottom: 25px; font: clamp(40px, 6vw, 80px)/1.1 var(--serif); }
.search-field { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(68, 244, 238, .5); }
.search-field svg { width: 24px; fill: none; stroke: var(--cyan); stroke-width: 1.5; }
.search-field input { border: 0; outline: 0; background: transparent; color: var(--white); font-size: 19px; }
.search-field input::placeholder { color: #4f616c; }
.search-suggestions { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.search-suggestions > span { margin-right: 10px; color: #667985; font-size: 10px; }
.search-suggestions button { padding: 9px 13px; border: 1px solid var(--line); background: transparent; color: #9aabb4; font-size: 11px; cursor: pointer; }
.search-suggestions button:hover { border-color: var(--cyan); color: var(--cyan); }
.search-empty { color: #8d9ba5; font-size: 13px; }

.cart-panel { top: 0; right: 0; bottom: 0; width: min(470px, 100%); display: flex; flex-direction: column; border-left: 1px solid rgba(68, 244, 238, .28); transform: translateX(102%); transition: transform .35s var(--ease); }
.cart-panel.is-visible { transform: translateX(0); }
.cart-head { display: flex; align-items: flex-start; justify-content: space-between; padding: 28px 28px 25px; border-bottom: 1px solid var(--line); }
.cart-head span { color: var(--cyan); font-size: 9px; letter-spacing: .15em; }
.cart-head h2 { margin: 6px 0 0; font: 28px/1 var(--serif); }
.cart-head button { width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; color: #a4b2bb; font-size: 25px; line-height: 1; cursor: pointer; }
.cart-items { flex: 1; overflow: auto; padding: 20px 28px; }
.empty-cart { min-height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.empty-cart > span { display: grid; place-items: center; width: 70px; height: 70px; margin-bottom: 21px; border: 1px solid var(--line); color: var(--cyan); font-size: 27px; }
.empty-cart strong { font: 23px/1.2 var(--serif); }
.empty-cart p { max-width: 260px; margin: 13px 0 24px; color: #71838e; font-size: 12px; line-height: 1.65; }
.empty-cart a { padding-bottom: 5px; border-bottom: 1px solid var(--cyan); color: var(--cyan); font-size: 12px; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item span { display: block; margin-bottom: 7px; color: #72838e; font-size: 9px; }
.cart-item strong { font: 17px/1.4 var(--serif); }
.cart-item p { margin: 8px 0 0; color: var(--cyan); font-size: 13px; }
.cart-item button { align-self: center; width: 32px; height: 32px; border: 1px solid var(--line); background: transparent; color: #8898a2; cursor: pointer; }
.cart-summary { padding: 23px 28px 28px; border-top: 1px solid var(--line); background: #091522; }
.cart-summary > div { display: flex; justify-content: space-between; align-items: center; }
.cart-summary span { color: #8a9aa4; font-size: 12px; }
.cart-summary strong { font: 25px/1 var(--serif); }
.cart-summary p { margin: 13px 0 19px; color: #586b77; font-size: 10px; }
.cart-summary button { width: 100%; min-height: 50px; border: 0; background: var(--cyan); color: var(--ink); font-weight: 750; cursor: pointer; }

.toast { position: fixed; z-index: 400; left: 50%; bottom: 28px; min-width: 240px; max-width: calc(100% - 40px); padding: 13px 18px; border: 1px solid rgba(68, 244, 238, .5); background: rgba(8, 21, 33, .96); color: var(--white); font-size: 12px; text-align: center; opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: opacity .2s ease, transform .3s var(--ease); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.noscript { position: fixed; z-index: 500; left: 12px; right: 12px; bottom: 12px; margin: 0; padding: 12px; background: var(--orange); color: #111; text-align: center; font-size: 12px; }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .product-card.reveal:nth-child(2), .js .collection-card.reveal:nth-child(2), .js .service-card.reveal:nth-child(2) { transition-delay: .08s; }
.js .product-card.reveal:nth-child(3), .js .collection-card.reveal:nth-child(3), .js .service-card.reveal:nth-child(3) { transition-delay: .16s; }
.js .product-card.reveal:nth-child(5), .js .service-card.reveal:nth-child(4) { transition-delay: .08s; }
.js .product-card.reveal:nth-child(6) { transition-delay: .16s; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbit-pulse { 0%, 100% { opacity: .45; transform: rotate(-24deg) scale(.98); } 50% { opacity: .9; transform: rotate(-20deg) scale(1.03); } }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { grid-template-columns: .9fr 1.1fr; padding-left: 5vw; padding-right: 5vw; }
  .hero h1 { font-size: clamp(60px, 7vw, 86px); }
  .hero-visual { min-height: 530px; }
  .product-float-card { left: -2%; }
  .service-card { padding: 23px; }
  .dispatch-inner { gap: 55px; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 160px 30px 80px; }
  .hero-copy { max-width: 680px; }
  .hero h1 { font-size: clamp(67px, 12vw, 102px); }
  .hero-lead { max-width: 580px; }
  .hero-visual { width: min(100%, 680px); min-height: 590px; justify-self: center; margin-top: 20px; }
  .hero-side-note { display: none; }
  .hero-number { top: 23%; font-size: 520px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .campaign-panel { grid-template-columns: 1fr; }
  .campaign-panel::before { left: 0; right: 0; top: 45%; width: auto; height: 1px; }
  .campaign-copy { padding-bottom: 35px; }
  .campaign-art { min-height: 480px; }
  .campaign-meta { left: 24px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card { min-height: 360px; border-right: 0; border-bottom: 1px solid var(--line); }
  .collection-card:last-child { border-bottom: 0; }
  .system-story { grid-template-columns: 1fr; }
  .story-visual { min-height: 540px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .dispatch-inner { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --header: 66px; }
  .site-header { padding: 0 16px; }
  .brand-copy small, .cart-button > span, .icon-button { display: none; }
  .brand-copy strong { font-size: 14px; }
  .cart-button { padding-left: 10px; }
  .mobile-nav { padding-left: 18px; padding-right: 18px; }
  .hero { padding: 130px 20px 65px; }
  .hero h1 { font-size: clamp(54px, 17.5vw, 78px); line-height: .96; }
  .hero-lead { margin-top: 24px; font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 27px; }
  .hero-specs { margin-top: 42px; justify-content: space-between; }
  .hero-specs > div { min-width: 0; flex: 1; padding: 0 13px; }
  .hero-specs dt { font-size: 19px; }
  .hero-specs dd { font-size: 8px; }
  .hero-visual { min-height: 420px; margin-top: 30px; }
  .hero-visual > img { width: 100%; }
  .hero-visual::before { width: 75%; height: 68%; }
  .orbit-one { width: 100%; height: 230px; }
  .orbit-two { width: 70%; height: 340px; }
  .visual-index { top: 6%; font-size: 60px; }
  .hud-label-top { top: 4%; left: 3%; }
  .hud-label-bottom { right: 2%; bottom: 3%; }
  .product-float-card { width: 225px; left: 0; bottom: -3%; }
  .product-float-card strong { font-size: 15px; }
  .signal-strip { height: 39px; }
  .section-shell { width: min(calc(100% - 32px), var(--max)); }
  .product-section, .collections { padding-top: 92px; padding-bottom: 95px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading h2 { font-size: 45px; }
  .section-heading > p { margin-top: 18px; font-size: 13px; }
  .product-grid { grid-template-columns: 1fr; gap: 34px; }
  .product-art { aspect-ratio: 1.28; }
  .campaign { width: 100%; padding-bottom: 95px; }
  .campaign-panel { min-height: 760px; border-left: 0; border-right: 0; clip-path: none; }
  .campaign-copy { padding: 50px 23px 25px; }
  .campaign h2 { font-size: 70px; }
  .campaign-art { min-height: 390px; }
  .campaign-art::before { width: 420px; height: 420px; right: -100px; }
  .desk-screen { left: 10%; width: 68%; }
  .desk-keyboard { left: 11%; width: 58%; }
  .desk-mouse { right: 12%; }
  .campaign-meta { left: 20px; right: 20px; }
  .collection-card { min-height: 350px; padding: 24px; }
  .collection-card > b { bottom: 24px; }
  .system-story { padding-bottom: 95px; gap: 65px; }
  .story-visual { min-height: 450px; }
  .ring-a { width: 300px; height: 300px; }
  .ring-b { width: 220px; height: 220px; }
  .ring-c { width: 130px; height: 130px; }
  .story-visual dl { left: 20px; bottom: 18px; }
  .story-copy h2 { font-size: 47px; }
  .service-section { padding: 90px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-card h3 { margin-top: 45px; }
  .dispatch { padding: 80px 0 95px; }
  .dispatch-inner { padding: 38px 22px; gap: 42px; }
  .dispatch-form > div { grid-template-columns: 1fr; }
  .dispatch-form button { justify-self: start; padding: 12px 0; }
  .search-panel { padding: 20px; }
  .search-inner { margin-top: 100px; }
  .search-inner > label { font-size: 42px; }
  .search-field input { font-size: 16px; }
  .cart-head, .cart-items { padding-left: 20px; padding-right: 20px; }
  .cart-summary { padding-left: 20px; padding-right: 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; }
  .signal-track { transform: none; }
  .js .reveal { opacity: 1; transform: none; }
}
