:root {
  --ink: #0e0f0d;
  --graphite: #151713;
  --panel: #1c1e19;
  --line: rgba(238, 242, 228, 0.22);
  --line-strong: rgba(238, 242, 228, 0.46);
  --paper: #eef2e4;
  --muted: #a9ae9f;
  --acid: #d9ff43;
  --acid-dark: #a9c82a;
  --header-height: 76px;
  --page-pad: clamp(20px, 4vw, 64px);
  --radius: 2px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

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

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 11% 8%, rgba(217, 255, 67, 0.045), transparent 25%),
    var(--ink);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.drawer-open { overflow: hidden; }

section[id] { scroll-margin-top: calc(var(--header-height) + 18px); }

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--acid);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(14, 15, 13, 0.78);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 64px;
  background: rgba(14, 15, 13, 0.94);
}

.brand {
  justify-self: start;
  display: grid;
  grid-template-columns: 31px auto;
  grid-template-rows: 21px 15px;
  column-gap: 10px;
  align-items: center;
}

.brand-mark {
  grid-row: 1 / 3;
  position: relative;
  width: 29px;
  height: 29px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  transition: transform 300ms ease;
}

.brand:hover .brand-mark { transform: rotate(30deg); }
.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--acid);
}
.brand-mark::before { left: -2px; top: 13px; }
.brand-mark::after { right: 4px; top: 3px; }
.brand-mark i:nth-child(1) { left: 10px; top: 11px; width: 7px; height: 7px; }
.brand-mark i:nth-child(2) { right: 2px; bottom: 5px; background: var(--paper); }
.brand-mark i:nth-child(3) { left: 5px; bottom: 3px; background: var(--paper); }
.brand-name { font-size: 15px; font-weight: 900; letter-spacing: 0.14em; line-height: 1; }
.brand-sub { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; line-height: 1; }

.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.site-nav a {
  position: relative;
  color: #d8dccf;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }

.orbit-button {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 14px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease;
}
.orbit-button:hover { border-color: var(--acid); background: rgba(217, 255, 67, 0.05); }
.orbit-button strong {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 5px;
  color: var(--ink);
  background: var(--acid);
  font-size: 11px;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  height: max(820px, 100svh);
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
  padding: calc(var(--header-height) + 50px) var(--page-pad) 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: var(--header-height) 0 0 43%;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(rgba(238, 242, 228, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 242, 228, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 86%, transparent);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.17'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-copy { position: relative; z-index: 2; max-width: 680px; padding-right: clamp(30px, 5vw, 86px); }
.eyebrow {
  margin: 0 0 28px;
  color: #c5cabd;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
}
.eyebrow span { display: inline-block; width: 26px; height: 1px; margin: 0 10px 3px 0; background: var(--acid); }

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(55px, 6.5vw, 102px);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.94;
}
.hero h1 em { color: var(--acid); font-style: normal; }
.hero-intro { max-width: 535px; margin: 36px 0 0; color: var(--muted); font-size: 15px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--accent { color: var(--ink); border-color: var(--acid); background: var(--acid); }
.button--accent:hover { background: #e5ff72; }
.button--ghost { background: transparent; }
.button--ghost:hover { border-color: var(--paper); background: rgba(255,255,255,0.04); }

.hero-map { position: relative; z-index: 2; width: 100%; height: min(68vw, 650px); max-height: 650px; min-height: 560px; }
.hero-lines { position: absolute; inset: 2% 0 0 3%; width: 96%; height: 96%; overflow: visible; }
.hero-lines path { fill: none; stroke: rgba(238, 242, 228, 0.26); stroke-width: 1; stroke-dasharray: 3 7; }
.hero-lines circle { fill: var(--paper); }
.map-coordinate { position: absolute; top: 0; right: 0; color: #7f8478; font-size: 9px; font-weight: 800; letter-spacing: 0.18em; writing-mode: vertical-rl; }
.map-hint { position: absolute; right: 3%; bottom: 3%; margin: 0; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; }
.map-hint span { color: var(--acid); }

.galaxy-link { position: absolute; width: 138px; height: 138px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.galaxy-link--jewel { left: 38%; top: 18%; }
.galaxy-link--scent { right: 2%; top: 34%; }
.galaxy-link--design { left: 5%; bottom: 1%; }
.galaxy-link__orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(238, 242, 228, 0.38);
  border-radius: 50%;
  transition: transform 450ms cubic-bezier(.2,.7,.2,1), border-color 250ms ease;
}
.galaxy-link__orbit::before,
.galaxy-link__orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.galaxy-link__orbit::before { inset: 12px; }
.galaxy-link__orbit::after { inset: -13px 24px; transform: rotate(55deg); }
.galaxy-link__star { position: absolute; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 20px var(--acid); }
.galaxy-link small { position: relative; margin-bottom: 6px; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: 0.18em; }
.galaxy-link strong { position: relative; font-size: 25px; font-weight: 950; letter-spacing: -0.06em; }
.galaxy-link > span:last-child { position: relative; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 0.13em; }
.galaxy-link:hover .galaxy-link__orbit { border-color: var(--acid); transform: scale(1.09) rotate(15deg); }
.galaxy-link:hover strong { color: var(--acid); }
.galaxy-link--scent { transform: scale(0.9); }
.galaxy-link--design { transform: scale(0.8); }
.hero-index { position: absolute; z-index: 2; right: var(--page-pad); bottom: 30px; left: var(--page-pad); display: flex; align-items: center; gap: 12px; color: #757a6f; font-size: 9px; font-weight: 900; letter-spacing: 0.12em; }
.hero-index i { flex: 1; height: 1px; background: var(--line); }

.signal-strip {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.4vw, 58px);
  padding: 13px var(--page-pad);
  color: var(--ink);
  background: var(--acid);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.signal-strip i { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }

.section-shell { padding: clamp(90px, 11vw, 170px) var(--page-pad); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.55fr); gap: 9vw; align-items: end; margin-bottom: clamp(50px, 6vw, 92px); }
.section-heading h2, .principles h2, .service h2 {
  margin: 0;
  font-size: clamp(40px, 5.1vw, 78px);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 1.04;
}
.section-heading > p { max-width: 470px; margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 1.95; }
.section-heading--compact { grid-template-columns: minmax(0, 1fr); }

.atlas { background: #121310; }
.atlas-toolbar {
  min-height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.filter-group { display: flex; align-self: stretch; }
.filter-button {
  min-width: 142px;
  padding: 0 22px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}
.filter-button span { margin-left: 12px; color: #71766a; font-size: 9px; }
.filter-button:hover { color: var(--paper); background: rgba(255,255,255,0.025); }
.filter-button.is-active { color: var(--ink); background: var(--acid); }
.filter-button.is-active span { color: var(--ink); }
.atlas-toolbar > p { display: flex; align-items: center; margin: 0 20px 0 0; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 0.12em; white-space: nowrap; }
.atlas-toolbar > p i { width: 5px; height: 5px; margin-right: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); }

.atlas-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.75fr); min-height: 720px; border-bottom: 1px solid var(--line); }
.atlas-canvas { position: relative; min-width: 0; overflow: hidden; border-right: 1px solid var(--line); background: #0f100e; }
.atlas-grid { position: absolute; inset: 0; opacity: 0.35; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 10% 10%; mask-image: radial-gradient(circle, black, transparent 82%); }
.atlas-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.atlas-lines path, .atlas-lines circle { fill: none; stroke: rgba(238,242,228,0.25); stroke-width: 1; stroke-dasharray: 3 5; transition: opacity 250ms ease; }
.atlas-lines .line-faint { stroke: rgba(238,242,228,0.09); }
.atlas-lines g.is-muted { opacity: 0.1; }

.atlas-label { position: absolute; color: #71766b; font-size: 9px; font-weight: 900; letter-spacing: 0.17em; transition: opacity 200ms ease; }
.atlas-label span { color: var(--acid); margin-right: 7px; }
.atlas-label--jewel { left: 5%; top: 7%; }
.atlas-label--scent { right: 6%; top: 8%; }
.atlas-label--design { left: 7%; bottom: 9%; }
.atlas-label.is-muted { opacity: 0.18; }

.star-node {
  position: absolute;
  z-index: 3;
  left: var(--x);
  top: var(--y);
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease, transform 220ms ease;
}
.star-node > i {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(238,242,228,0.09), 0 0 12px rgba(238,242,228,0.35);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.star-node > i::after { content: ""; position: absolute; inset: -9px; border: 1px solid transparent; border-radius: 50%; }
.star-node > span { position: absolute; left: 20px; top: -2px; width: max-content; padding: 4px 7px; color: #d5d9cd; background: rgba(15,16,14,0.68); font-size: 10px; font-weight: 800; line-height: 1.25; text-align: left; white-space: nowrap; }
.star-node > span small { display: block; margin-top: 3px; color: #74796e; font-size: 8px; font-weight: 800; letter-spacing: 0.08em; }
.star-node:hover { transform: translate(-50%, -50%) scale(1.08); }
.star-node:hover > i, .star-node.is-selected > i { background: var(--acid); box-shadow: 0 0 0 5px rgba(217,255,67,0.12), 0 0 22px rgba(217,255,67,0.65); transform: scale(1.35); }
.star-node.is-selected > i::after { border-color: rgba(217,255,67,0.48); animation: starPulse 2.4s ease-in-out infinite; }
.star-node.is-muted { opacity: 0.08; pointer-events: none; }

.canvas-coordinate { position: absolute; color: #5c6058; font-size: 8px; font-weight: 800; letter-spacing: 0.13em; }
.canvas-coordinate--a { left: 13px; bottom: 20px; writing-mode: vertical-rl; transform: rotate(180deg); }
.canvas-coordinate--b { right: 16px; bottom: 10px; }

.product-focus { display: flex; min-width: 0; flex-direction: column; background: rgba(27,29,24,0.7); backdrop-filter: blur(12px); }
.focus-meta { min-height: 49px; display: flex; align-items: center; gap: 10px; padding: 0 22px; border-bottom: 1px solid var(--line); color: #74796d; font-size: 8px; font-weight: 900; letter-spacing: 0.13em; }
.focus-meta i { flex: 1; height: 1px; background: var(--line); }
.focus-visual { position: relative; min-height: 292px; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle, rgba(217,255,67,0.06), transparent 55%); }
.focus-visual::before, .focus-visual::after { content: ""; position: absolute; width: 55%; aspect-ratio: 1; border: 1px solid rgba(238,242,228,0.12); border-radius: 50%; }
.focus-visual::after { width: 34%; }
.focus-visual small { position: absolute; right: 18px; bottom: 13px; color: #60655a; font-size: 9px; font-weight: 900; letter-spacing: 0.13em; }
.visual-orbit { position: absolute; z-index: 1; width: 190px; height: 70px; border: 1px solid rgba(217,255,67,0.48); border-radius: 50%; transform: rotate(-22deg); transition: transform 400ms ease; }
.visual-object { position: relative; z-index: 2; display: block; transition: all 300ms ease; }
.visual--ring .visual-object { width: 88px; height: 88px; border: 13px solid #bec3b6; border-radius: 50%; box-shadow: inset -9px -7px 0 #7d8278, 8px 10px 24px rgba(0,0,0,0.45); }
.visual--ring .visual-object::before { content: ""; position: absolute; width: 43px; height: 43px; left: 10px; top: -38px; background: linear-gradient(135deg, #f1f4e8, #91968c 43%, #d9ff43 45%, #5a5d56); clip-path: polygon(50% 0, 100% 42%, 78% 100%, 22% 100%, 0 42%); }
.visual--necklace .visual-object { width: 138px; height: 116px; border: 5px solid #aeb3a7; border-top: 0; border-radius: 0 0 60% 60%; transform: rotate(-7deg); }
.visual--necklace .visual-object::after { content: ""; position: absolute; left: 50%; bottom: -20px; width: 36px; height: 36px; background: var(--acid); clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.visual--earring .visual-object { width: 52px; height: 125px; border-left: 4px solid #aeb3a7; border-right: 4px solid #aeb3a7; }
.visual--earring .visual-object::before, .visual--earring .visual-object::after { content: ""; position: absolute; bottom: -12px; width: 38px; height: 38px; border-radius: 50%; background: radial-gradient(circle at 30% 25%, #fff, #aaaE9f 65%, #6d7169); }
.visual--earring .visual-object::before { left: -22px; }
.visual--earring .visual-object::after { right: -22px; }
.visual--bottle .visual-object { width: 86px; height: 126px; border: 2px solid #bec3b7; background: linear-gradient(150deg, rgba(217,255,67,0.2), rgba(238,242,228,0.03)); box-shadow: 12px 14px 0 rgba(217,255,67,0.08); }
.visual--bottle .visual-object::before { content: ""; position: absolute; width: 41px; height: 24px; left: 20px; top: -27px; background: #93988d; }
.visual--bottle .visual-object::after { content: ""; position: absolute; inset: 47px 19px; border: 1px solid var(--acid); }
.visual--balm .visual-object { width: 125px; height: 55px; border: 2px solid #b6baaf; border-radius: 50%; background: #4a4d46; box-shadow: 0 16px 0 #252721, 0 18px 0 #aeb3a7; }
.visual--lamp .visual-object { width: 7px; height: 125px; background: #b8bdb1; transform: rotate(-17deg); transform-origin: bottom; box-shadow: 0 72px 0 0 #b8bdb1; }
.visual--lamp .visual-object::before { content: ""; position: absolute; left: -55px; top: -24px; width: 118px; height: 54px; background: var(--acid); clip-path: polygon(20% 0, 100% 0, 79% 100%, 0 100%); }
.visual--lamp .visual-object::after { content: ""; position: absolute; left: -57px; bottom: -8px; width: 120px; height: 9px; background: #8e9388; }
.visual--tray .visual-object { width: 156px; height: 90px; border: 6px solid #aeb3a7; background: #31332d; transform: skew(-9deg) rotate(-8deg); box-shadow: 13px 16px 0 rgba(217,255,67,0.25); }
.visual--vase .visual-object { width: 84px; height: 133px; background: linear-gradient(90deg, #5c6058, #d6dacd 48%, #74786f 52%, #343630); clip-path: polygon(29% 0, 71% 0, 89% 100%, 11% 100%); }
.visual--vase .visual-object::after { content: ""; position: absolute; left: 30%; top: 20%; width: 50%; height: 4px; background: var(--acid); transform: rotate(-25deg); }

.focus-content { display: flex; flex: 1; flex-direction: column; padding: 30px clamp(22px, 3vw, 42px); }
.focus-category { margin: 0 0 8px; color: var(--acid); font-size: 9px; font-weight: 900; letter-spacing: 0.16em; }
.focus-content h3 { margin: 0; font-size: clamp(28px, 2.5vw, 40px); font-weight: 950; letter-spacing: -0.055em; line-height: 1.2; }
.focus-description { margin: 18px 0 24px; color: var(--muted); font-size: 12px; line-height: 1.9; }
.focus-specs { margin: 0; border-top: 1px solid var(--line); }
.focus-specs div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 10px; }
.focus-specs dt { color: #74796d; }
.focus-specs dd { margin: 0; color: #c8ccbf; text-align: right; }
.focus-buy { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-top: auto; padding-top: 28px; }
.focus-buy > strong { font-size: 23px; font-weight: 950; letter-spacing: -0.04em; white-space: nowrap; }
.focus-buy .button { padding-inline: 17px; font-size: 11px; }

.galaxies { overflow: hidden; background: #181a16; }
.galaxy-blocks { border-top: 1px solid var(--line); }
.galaxy-block {
  position: relative;
  min-height: 410px;
  display: grid;
  grid-template-columns: 9% minmax(300px, 1.1fr) minmax(300px, 0.9fr);
  align-items: stretch;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  overflow: hidden;
}
.block-number { display: flex; align-items: flex-start; justify-content: center; padding-top: 28px; border-right: 1px solid var(--line); color: #73786d; font-size: 10px; font-weight: 900; letter-spacing: 0.16em; }
.block-art { position: relative; min-height: 350px; border-right: 1px solid var(--line); overflow: hidden; background: #11120f; }
.block-art::before { content: ""; position: absolute; width: 320px; height: 320px; left: 50%; top: 50%; border: 1px solid var(--line); border-radius: 50%; transform: translate(-50%,-50%); }
.block-art::after { content: ""; position: absolute; width: 240px; height: 90px; left: 50%; top: 50%; border: 1px solid var(--acid); border-radius: 50%; transform: translate(-50%,-50%) rotate(-24deg); }
.block-art i { position: absolute; z-index: 1; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.block-art--jewel i:nth-child(1) { width: 125px; height: 125px; border: 18px solid #9a9e94; border-radius: 50%; }
.block-art--jewel i:nth-child(2) { width: 62px; height: 62px; margin: -68px 0 0 18px; background: var(--acid); clip-path: polygon(50% 0,100% 38%,80% 100%,20% 100%,0 38%); }
.block-art--jewel i:nth-child(3) { width: 7px; height: 7px; margin: 86px 0 0 -100px; border-radius: 50%; background: var(--paper); box-shadow: 0 0 18px var(--paper); }
.block-art--scent i:nth-child(1) { width: 120px; height: 180px; border: 2px solid #afb4a8; background: linear-gradient(145deg, rgba(217,255,67,0.16), transparent); }
.block-art--scent i:nth-child(2) { width: 56px; height: 36px; margin-top: -107px; background: #73776e; }
.block-art--scent i:nth-child(3) { width: 48px; height: 64px; border: 1px solid var(--acid); }
.block-art--design i:nth-child(1) { width: 8px; height: 172px; background: #afb4a8; transform: translate(-50%,-40%) rotate(-18deg); }
.block-art--design i:nth-child(2) { width: 140px; height: 70px; margin: -85px 0 0 -32px; background: var(--acid); clip-path: polygon(18% 0,100% 0,82% 100%,0 100%); }
.block-art--design i:nth-child(3) { width: 160px; height: 8px; margin-top: 95px; background: #797d74; }
.block-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 5vw, 76px); }
.block-content > p:first-child { margin: 0 0 9px; color: var(--acid); font-size: 9px; font-weight: 900; letter-spacing: 0.16em; }
.block-content h3 { margin: 0; font-size: clamp(34px, 4vw, 60px); font-weight: 950; letter-spacing: -0.06em; }
.block-content h3 + p { max-width: 460px; margin: 22px 0 34px; color: var(--muted); font-size: 13px; line-height: 1.9; }
.block-content a { align-self: flex-start; padding-bottom: 7px; border-bottom: 1px solid var(--line-strong); font-size: 11px; font-weight: 900; transition: color 180ms ease, border-color 180ms ease; }
.block-content a span { margin-left: 17px; color: var(--acid); }
.block-content a:hover { color: var(--acid); border-color: var(--acid); }
.galaxy-block:hover .block-art::after { transform: translate(-50%,-50%) rotate(12deg) scale(1.08); transition: transform 550ms cubic-bezier(.2,.7,.2,1); }

.selection { background: #10110f; }
.selection-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 12px; }
.feature-card { position: relative; min-height: 660px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); }
.feature-card--lime { color: var(--ink); background: var(--acid); }
.feature-card--dark { background: #22241f; }
.feature-meta { display: flex; justify-content: space-between; padding: 18px 21px; border-bottom: 1px solid currentColor; font-size: 9px; font-weight: 900; letter-spacing: 0.13em; opacity: 0.74; }
.feature-art { position: relative; flex: 1; min-height: 380px; overflow: hidden; }
.feature-art::before { content: ""; position: absolute; width: 330px; height: 330px; top: 50%; left: 50%; border: 1px solid currentColor; border-radius: 50%; opacity: 0.25; transform: translate(-50%,-50%); }
.feature-art::after { content: ""; position: absolute; width: 470px; height: 120px; top: 50%; left: 50%; border: 1px solid currentColor; border-radius: 50%; opacity: 0.3; transform: translate(-50%,-50%) rotate(-20deg); }
.feature-ring { position: absolute; z-index: 1; left: 35%; top: 50%; width: 112px; height: 112px; border: 17px solid var(--ink); border-radius: 50%; transform: translate(-50%,-50%) rotate(-15deg); }
.feature-ring::before { content: ""; position: absolute; width: 53px; height: 53px; top: -47px; left: 14px; background: var(--paper); clip-path: polygon(50% 0,100% 40%,80% 100%,20% 100%,0 40%); }
.feature-bottle { position: absolute; z-index: 2; left: 62%; top: 53%; width: 100px; height: 140px; border: 3px solid var(--ink); background: rgba(14,15,13,0.08); transform: translate(-50%,-50%) rotate(8deg); }
.feature-bottle::before { content: ""; position: absolute; width: 45px; height: 26px; left: 25px; top: -29px; background: var(--ink); }
.feature-lamp { position: absolute; z-index: 1; left: 37%; top: 57%; width: 7px; height: 180px; background: var(--paper); transform: translate(-50%,-50%) rotate(-19deg); }
.feature-lamp::before { content: ""; position: absolute; left: -70px; top: -34px; width: 152px; height: 74px; background: var(--acid); clip-path: polygon(20% 0,100% 0,80% 100%,0 100%); }
.feature-lamp::after { content: ""; position: absolute; left: -69px; bottom: -5px; width: 146px; height: 9px; background: #8b9085; }
.feature-vessel { position: absolute; z-index: 2; left: 66%; top: 61%; width: 82px; height: 133px; background: linear-gradient(90deg, #5c6058, #d6dacd 48%, #74786f 52%, #343630); clip-path: polygon(29% 0,71% 0,90% 100%,10% 100%); transform: translate(-50%,-50%); }
.feature-vessel::after { content: ""; position: absolute; width: 70%; height: 4px; top: 28%; left: 18%; background: var(--acid); transform: rotate(-25deg); }
.feature-copy { min-height: 210px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; padding: 30px; border-top: 1px solid currentColor; }
.feature-copy p { margin: 0 0 10px; font-size: 9px; font-weight: 900; letter-spacing: 0.1em; opacity: 0.65; }
.feature-copy h3 { margin: 0; font-size: clamp(29px, 3vw, 45px); font-weight: 950; letter-spacing: -0.055em; line-height: 1.09; }
.feature-copy button { width: 108px; height: 108px; padding: 14px; border: 1px solid currentColor; border-radius: 50%; color: inherit; background: transparent; cursor: pointer; font-size: 10px; font-weight: 900; line-height: 1.4; transition: transform 250ms ease, background 180ms ease, color 180ms ease; }
.feature-copy button:hover { transform: rotate(-8deg) scale(1.06); }
.feature-card--dark .feature-copy button:hover { color: var(--ink); background: var(--acid); }
.feature-card--lime .feature-copy button:hover { color: var(--acid); background: var(--ink); }

.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; background: #181a16; }
.principles-intro { position: sticky; top: 120px; align-self: start; }
.principles h2 { font-size: clamp(38px, 4.8vw, 70px); }
.principle-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.principle-list li { display: grid; grid-template-columns: 50px 0.7fr 1fr; gap: 28px; align-items: start; padding: 31px 0; border-bottom: 1px solid var(--line); }
.principle-list li > span { color: var(--acid); font-size: 9px; font-weight: 900; letter-spacing: 0.14em; }
.principle-list strong { font-size: 19px; font-weight: 950; }
.principle-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.85; }

.service { padding-bottom: 70px; background: #0f100e; }
.service-panel { display: grid; grid-template-columns: 1fr 1.35fr; min-height: 530px; border: 1px solid var(--line); background: rgba(29,31,26,0.68); backdrop-filter: blur(12px); }
.service-heading { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(35px, 5vw, 75px); border-right: 1px solid var(--line); }
.service-heading h2 { font-size: clamp(39px, 4.7vw, 68px); }
.service-items { display: grid; grid-template-columns: repeat(3,1fr); }
.service-items article { display: flex; flex-direction: column; padding: 34px 26px; border-right: 1px solid var(--line); }
.service-items article:last-child { border: 0; }
.service-items span { color: var(--acid); font-size: 9px; font-weight: 900; }
.service-items h3 { margin: auto 0 12px; font-size: 19px; font-weight: 950; }
.service-items p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.85; }
.closing-mark { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 70px 20px 10px; text-align: center; }
.closing-orbit { position: relative; width: 73px; height: 73px; margin-bottom: 28px; border: 1px solid var(--line-strong); border-radius: 50%; }
.closing-orbit::after { content: ""; position: absolute; inset: 9px -13px; border: 1px solid var(--line); border-radius: 50%; transform: rotate(48deg); }
.closing-orbit i { position: absolute; z-index: 1; top: -3px; left: 31px; width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 15px var(--acid); }
.closing-mark p { margin: 0 0 16px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: 0.14em; }
.closing-mark strong { font-size: clamp(35px, 4.5vw, 63px); font-weight: 950; letter-spacing: -0.06em; line-height: 1.12; }
.closing-mark a { margin-top: 32px; padding-bottom: 7px; border-bottom: 1px solid var(--line-strong); font-size: 11px; font-weight: 900; }
.closing-mark a span { margin-left: 16px; color: var(--acid); }

.drawer-backdrop { position: fixed; z-index: 149; inset: 0; background: rgba(0,0,0,0.66); backdrop-filter: blur(3px); opacity: 0; transition: opacity 240ms ease; }
.drawer-backdrop.is-visible { opacity: 1; }
.orbit-drawer { position: fixed; z-index: 150; inset: 0 0 0 auto; width: min(480px, 100%); display: flex; flex-direction: column; color: var(--paper); background: #171915; border-left: 1px solid var(--line-strong); transform: translateX(102%); visibility: hidden; transition: transform 280ms cubic-bezier(.2,.7,.2,1), visibility 280ms; }
.orbit-drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer-header { min-height: 100px; display: flex; justify-content: space-between; align-items: center; padding: 20px 26px; border-bottom: 1px solid var(--line); }
.drawer-header p { margin: 0; color: var(--acid); font-size: 8px; font-weight: 900; letter-spacing: 0.17em; }
.drawer-header h2 { margin: 2px 0 0; font-size: 30px; font-weight: 950; letter-spacing: -0.05em; }
.drawer-header button { width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 29px; line-height: 1; }
.drawer-body { flex: 1; padding: 0 26px; overflow-y: auto; }
.drawer-empty { min-height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; text-align: center; }
.drawer-empty > span { width: 95px; height: 95px; margin-bottom: 24px; border: 1px dashed var(--line-strong); border-radius: 50%; position: relative; }
.drawer-empty > span::after { content: ""; position: absolute; width: 7px; height: 7px; left: 43px; top: -4px; border-radius: 50%; background: var(--acid); }
.drawer-empty h3 { margin: 0; font-size: 22px; }
.drawer-empty p { max-width: 270px; margin: 11px 0 25px; color: var(--muted); font-size: 12px; }
.drawer-empty button { padding: 10px 15px; border: 1px solid var(--line-strong); background: transparent; cursor: pointer; font-size: 11px; font-weight: 900; }
.drawer-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 15px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.drawer-item__visual { width: 72px; height: 72px; display: grid; place-items: center; color: var(--ink); background: var(--acid); font-size: 23px; font-weight: 950; }
.drawer-item h3 { margin: 0; font-size: 14px; }
.drawer-item p { margin: 3px 0 0; color: var(--muted); font-size: 10px; }
.drawer-item button { width: 31px; height: 31px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 18px; }
.drawer-summary { padding: 23px 26px 27px; border-top: 1px solid var(--line-strong); }
.drawer-summary > div { display: flex; justify-content: space-between; align-items: center; }
.drawer-summary > div span { color: var(--muted); font-size: 11px; }
.drawer-summary > div strong { font-size: 24px; }
.drawer-summary p { margin: 9px 0 18px; color: #757a6f; font-size: 10px; }
.drawer-summary .button { width: 100%; }
.toast { position: fixed; z-index: 180; left: 50%; bottom: 26px; min-width: 220px; padding: 13px 18px; color: var(--ink); background: var(--acid); font-size: 11px; font-weight: 900; text-align: center; transform: translate(-50%, 150%); opacity: 0; transition: transform 220ms ease, opacity 220ms ease; }
.toast.is-visible { transform: translate(-50%,0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes starPulse { 0%,100% { transform: scale(0.75); opacity: 0; } 45% { opacity: 1; } 80% { transform: scale(1.55); opacity: 0; } }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 210px 1fr auto; }
  .site-nav { justify-self: center; gap: 22px; }
  .hero { grid-template-columns: 48% 52%; }
  .hero::before { left: 48%; }
  .hero-map { transform: scale(0.92); transform-origin: center right; }
  .atlas-layout { grid-template-columns: minmax(0, 1.45fr) 340px; }
  .filter-button { min-width: auto; padding-inline: 16px; }
  .focus-buy { align-items: stretch; flex-direction: column; }
  .feature-copy { grid-template-columns: 1fr; }
  .feature-copy button { width: auto; height: 46px; border-radius: 0; }
  .service-panel { grid-template-columns: 0.8fr 1.3fr; }
  .service-items { grid-template-columns: 1fr; }
  .service-items article { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-items h3 { margin-top: 22px; }
}

@media (max-width: 860px) {
  :root { --header-height: 66px; }
  .site-header { grid-template-columns: 1fr auto auto; padding-inline: 20px; }
  .brand-sub { display: none; }
  .brand { grid-template-rows: 30px; grid-template-columns: 31px auto; }
  .brand-mark { grid-row: auto; }
  .menu-toggle { display: flex; align-items: center; gap: 9px; margin-right: 12px; padding: 8px 11px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 10px; font-weight: 900; }
  .menu-toggle i, .menu-toggle i::before { display: block; width: 12px; height: 1px; background: var(--paper); transition: transform 180ms ease; }
  .menu-toggle i { position: relative; margin-top: -4px; }
  .menu-toggle i::before { content: ""; position: absolute; top: 5px; }
  .menu-toggle[aria-expanded="true"] i { transform: translateY(2px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(-90deg); }
  .site-nav { position: absolute; inset: var(--header-height) 0 auto; display: grid; gap: 0; padding: 10px 20px 22px; border-bottom: 1px solid var(--line); background: rgba(14,15,13,0.98); transform: translateY(-120%); visibility: hidden; opacity: 0; transition: transform 220ms ease, opacity 180ms ease, visibility 220ms; }
  .site-nav.is-open { transform: translateY(0); visibility: visible; opacity: 1; }
  .site-nav a { padding: 15px 5px; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .orbit-button span { display: none; }
  .orbit-button { padding: 5px; border: 0; }
  .hero { height: auto; min-height: 100svh; grid-template-columns: 1fr; padding: 130px 20px 50px; }
  .hero::before { inset: 50% 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero-copy { padding: 0; }
  .hero h1 { font-size: clamp(54px, 13.7vw, 82px); }
  .hero-intro { max-width: 590px; }
  .hero-map { height: 590px; min-height: 590px; margin-top: 30px; transform: none; }
  .galaxy-link--jewel { left: 39%; top: 18%; }
  .hero-index { left: 20px; right: 20px; }
  .signal-strip { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .signal-strip span:nth-of-type(4), .signal-strip i:nth-of-type(3) { display: none; }
  .section-shell { padding-inline: 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .section-heading > p { max-width: 600px; }
  .atlas-toolbar { align-items: stretch; flex-direction: column; gap: 0; border-bottom: 0; }
  .filter-group { overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: thin; }
  .filter-button { min-width: 140px; min-height: 54px; }
  .atlas-toolbar > p { min-height: 42px; margin: 0; padding: 0 16px; border-bottom: 1px solid var(--line); }
  .atlas-layout { grid-template-columns: 1fr; }
  .atlas-canvas { height: 680px; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-focus { display: grid; grid-template-columns: 0.85fr 1.15fr; }
  .focus-meta { grid-column: 1 / 3; }
  .focus-visual { min-height: 360px; border-right: 1px solid var(--line); border-bottom: 0; }
  .focus-content { min-height: 360px; }
  .galaxy-block { grid-template-columns: 54px 1fr; }
  .block-number { grid-row: 1 / 3; }
  .block-art { grid-column: 2; min-height: 330px; border-right: 0; border-bottom: 1px solid var(--line); }
  .block-content { grid-column: 2; }
  .selection-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 620px; }
  .principles { grid-template-columns: 1fr; }
  .principles-intro { position: static; }
  .service-panel { grid-template-columns: 1fr; }
  .service-heading { min-height: 370px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-items { grid-template-columns: repeat(3,1fr); }
  .service-items article { min-height: 250px; border-right: 1px solid var(--line); border-bottom: 0; }
}

@media (max-width: 600px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .brand-name { font-size: 13px; }
  .menu-toggle { padding: 8px; }
  .menu-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .hero { padding-top: 110px; }
  .hero h1 { font-size: clamp(48px, 14.8vw, 68px); line-height: 0.98; }
  .hero-intro { font-size: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-map { height: 520px; min-height: 520px; margin-left: -8px; width: calc(100% + 8px); }
  .hero-lines { inset: 0; width: 100%; }
  .galaxy-link { width: 118px; height: 118px; }
  .galaxy-link strong { font-size: 22px; }
  .galaxy-link--jewel { left: 35%; top: 19%; }
  .galaxy-link--scent { right: -5%; top: 37%; }
  .galaxy-link--design { left: -1%; bottom: 3%; }
  .map-hint { bottom: 1%; }
  .signal-strip { gap: 15px; }
  .signal-strip span:nth-of-type(3), .signal-strip i:nth-of-type(2) { display: none; }
  .section-shell { padding-top: 88px; padding-bottom: 88px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2, .principles h2, .service h2 { font-size: clamp(37px, 11.4vw, 53px); }
  .atlas { padding-inline: 0; }
  .atlas > .section-heading { padding-inline: 20px; }
  .atlas-toolbar { margin-inline: 20px; }
  .atlas-layout { border-top: 1px solid var(--line); }
  .atlas-canvas { height: 620px; }
  .star-node > span { font-size: 9px; }
  .star-node > span small { font-size: 7px; }
  .star-node:nth-of-type(3n) > span { left: auto; right: 20px; text-align: right; }
  .star-node[data-id="scent-2"] > span { left: auto; right: 20px; text-align: right; }
  .product-focus { display: flex; }
  .focus-meta { order: 0; }
  .focus-visual { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--line); }
  .focus-content { min-height: 410px; }
  .focus-buy { flex-direction: row; align-items: center; }
  .galaxy-blocks { margin-inline: -20px; }
  .galaxy-block { grid-template-columns: 42px 1fr; border-right: 0; border-left: 0; }
  .block-art { min-height: 290px; }
  .block-art::before { width: 260px; height: 260px; }
  .block-content { padding: 36px 25px 45px; }
  .feature-card { min-height: 570px; }
  .feature-art { min-height: 330px; }
  .feature-art::before { width: 260px; height: 260px; }
  .feature-art::after { width: 360px; }
  .feature-ring { left: 32%; transform: translate(-50%,-50%) scale(0.8); }
  .feature-bottle { left: 67%; transform: translate(-50%,-50%) scale(0.82) rotate(8deg); }
  .feature-copy { min-height: 210px; padding: 24px; }
  .principle-list li { grid-template-columns: 34px 1fr; gap: 18px; }
  .principle-list li p { grid-column: 2; }
  .service { padding-inline: 0; padding-bottom: 35px; }
  .service-panel { border-right: 0; border-left: 0; }
  .service-heading { min-height: 350px; padding: 38px 20px; }
  .service-items { grid-template-columns: 1fr; }
  .service-items article { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 20px; }
  .closing-mark { padding-inline: 20px; }
  .closing-mark strong { font-size: 40px; }
}

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