:root {
  --bg: #07070a;
  --panel: #0e0e14;
  --panel-2: #13131b;
  --text: #f8f7fb;
  --muted: #aaa7b4;
  --line: rgba(255,255,255,.10);
  --pink: #ff2ebd;
  --violet: #875cff;
  --lime: #b7ff3c;
  --orange: #ff8b3d;
  --cyan: #59e7ff;
  --shell: min(1180px, calc(100vw - 40px));
  --radius: 24px;
  --shadow: 0 30px 100px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 0%, rgba(135,92,255,.12), transparent 28%),
    radial-gradient(circle at 22% 20%, rgba(255,46,189,.09), transparent 25%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .025;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
  opacity: .16;
}
.orb-a { width: 440px; height: 440px; background: var(--pink); top: 18%; left: -260px; }
.orb-b { width: 520px; height: 520px; background: var(--violet); right: -300px; top: 46%; }

.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 40;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-glyph {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #08080b;
  background: linear-gradient(135deg, var(--lime), #ebffbd);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: -.04em;
  box-shadow: 0 0 30px rgba(183,255,60,.08);
}
.brand-word { font-size: .98rem; font-weight: 920; letter-spacing: .09em; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: #b9b6c3; font-size: .86rem; font-weight: 650; transition: color .2s ease, transform .2s ease; }
.site-nav a:hover { color: #fff; transform: translateY(-1px); }
.site-nav .nav-pill {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.nav-toggle { display: none; }

.hero {
  min-height: 780px;
  padding: 74px 0 88px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 62px;
  align-items: center;
}
.eyebrow, .kicker {
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .68rem;
  font-weight: 900;
  color: #c6c0d2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(183,255,60,.08), 0 0 16px rgba(183,255,60,.35);
}
.hero h1 {
  margin: 24px 0 22px;
  max-width: 780px;
  font-size: clamp(3.7rem, 7vw, 7rem);
  line-height: .91;
  letter-spacing: -.075em;
  font-weight: 900;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #fff 0%, #da72ff 42%, #ff52bd 74%, #ffae52 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-lede { max-width: 680px; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 49px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 820;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: #08080b;
  background: linear-gradient(135deg, var(--lime), #ddff9d);
  box-shadow: 0 14px 36px rgba(183,255,60,.10);
}
.button.ghost { border-color: var(--line); color: #ddd9e5; background: rgba(255,255,255,.025); }
.hero-metrics { display: flex; gap: 30px; margin-top: 58px; }
.hero-metrics div { padding-right: 28px; border-right: 1px solid var(--line); }
.hero-metrics div:last-child { border-right: 0; }
.hero-metrics strong { display: block; color: #7f7b89; font-size: .69rem; letter-spacing: .15em; }
.hero-metrics span { display: block; margin-top: 6px; color: #c1bdc9; font-size: .78rem; }

.hero-stage {
  min-height: 620px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 25%, rgba(255,46,189,.18), transparent 32%),
    linear-gradient(160deg, rgba(28,23,42,.94), rgba(11,11,16,.95));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.025), transparent 70%);
  pointer-events: none;
}
.stage-topline { display: flex; justify-content: space-between; align-items: center; color: #777180; font-size: .64rem; font-weight: 850; letter-spacing: .14em; }
.stage-status { color: var(--lime); }
.shoe-art { height: 330px; position: relative; display: flex; align-items: center; justify-content: center; }
.shoe-glow {
  width: 280px;
  height: 130px;
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,42,186,.30), rgba(128,76,255,.08) 60%, transparent 70%);
  filter: blur(25px);
  transform: rotate(-11deg);
}
.shoe-upper {
  width: 270px;
  height: 115px;
  position: absolute;
  border-radius: 38% 48% 21% 20% / 68% 68% 26% 30%;
  transform: rotate(-9deg) skewX(-7deg);
  background: linear-gradient(145deg, #f8f4ff 0%, #bba7ff 36%, #7656d9 62%, #322953 100%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), 0 25px 60px rgba(0,0,0,.34);
}
.shoe-upper::before {
  content: "";
  position: absolute;
  width: 96px;
  height: 76px;
  top: -42px;
  left: 28px;
  border-radius: 25px 35px 10px 18px;
  background: linear-gradient(155deg, #e7e0ff, #8f75e6 62%, #3d315f);
  transform: skewX(9deg);
}
.shoe-upper::after {
  content: "UH";
  position: absolute;
  right: 58px;
  top: 40px;
  color: rgba(255,255,255,.88);
  font-weight: 950;
  letter-spacing: -.07em;
  transform: skewX(7deg);
}
.shoe-sole {
  width: 290px;
  height: 34px;
  position: absolute;
  top: 220px;
  border-radius: 15px 26px 29px 18px;
  transform: rotate(-6deg);
  background: linear-gradient(180deg, #fbfbff, #bbb9ca);
  box-shadow: 0 18px 30px rgba(0,0,0,.25);
}
.shoe-lace { width: 72px; height: 3px; position: absolute; background: rgba(255,255,255,.95); border-radius: 999px; transform: rotate(-22deg); z-index: 4; }
.shoe-lace.l1 { top: 145px; left: 122px; }
.shoe-lace.l2 { top: 158px; left: 126px; }
.shoe-lace.l3 { top: 171px; left: 131px; }
.stage-copy { border-top: 1px solid var(--line); padding-top: 24px; }
.micro { color: #cfc9d6; font-size: .67rem; font-weight: 900; letter-spacing: .17em; }
.stage-copy h2 { margin: 7px 0 10px; max-width: 420px; font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.02; letter-spacing: -.055em; }
.stage-copy p { margin: 0; color: #9994a4; font-size: .88rem; max-width: 470px; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 18px; color: #fff; font-size: .82rem; font-weight: 800; }
.text-link span { color: var(--lime); }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.02); }
.ticker-track { width: max-content; min-height: 64px; display: flex; align-items: center; gap: 24px; color: #706b79; font-size: .65rem; font-weight: 900; letter-spacing: .17em; animation: ticker 34s linear infinite; }
.ticker-track i { color: #514d58; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section-head { margin-bottom: 50px; }
.split-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; }
.section-head h2, .ebay-copy h2, .sell-card h2, .closing h2 {
  margin: 10px 0 0;
  font-size: clamp(2.6rem, 5.5vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.split-head > p, .centered > p { margin: 0; color: var(--muted); font-size: 1.04rem; }

.drop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.drop-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg, rgba(20,20,28,.82), rgba(10,10,14,.88)); box-shadow: 0 20px 70px rgba(0,0,0,.14); }
.drop-card.flagship { grid-column: span 2; display: grid; grid-template-columns: 1.05fr .95fr; }
.drop-visual { min-height: 330px; position: relative; overflow: hidden; }
.drop-card.flagship .drop-visual { min-height: 410px; }
.drop-visual.violet { background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.11), transparent 25%), linear-gradient(135deg, #38216b, #a62c8e 62%, #f77855); }
.drop-visual.lime { background: radial-gradient(circle at 48% 40%, rgba(255,255,255,.12), transparent 24%), linear-gradient(145deg, #182a1d, #3d7734 55%, #a0d746); }
.drop-visual.orange { background: radial-gradient(circle at 48% 42%, rgba(255,255,255,.10), transparent 25%), linear-gradient(145deg, #3e1b14, #984222 60%, #f49d3d); }
.drop-number { position: absolute; top: 22px; left: 24px; z-index: 2; color: rgba(255,255,255,.62); font-size: .67rem; font-weight: 900; letter-spacing: .13em; }
.drop-tag { position: absolute; right: 22px; bottom: 22px; padding: 8px 11px; border-radius: 999px; background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px); color: #fff; font-size: .6rem; font-weight: 900; letter-spacing: .12em; }
.mini-shoe { position: absolute; inset: 0; display: grid; place-items: center; transform: rotate(-8deg); }
.mini-shoe::before { content: ""; width: 310px; height: 120px; border-radius: 40% 48% 20% 24%; background: linear-gradient(150deg, #fff, #cbbef5 45%, #5e3ba0 75%); box-shadow: 0 32px 70px rgba(0,0,0,.25); }
.mini-shoe::after { content: ""; width: 330px; height: 30px; position: absolute; top: 61%; border-radius: 14px 25px 24px 16px; background: #f0edf7; }
.mini-shoe span { position: absolute; width: 92px; height: 80px; left: 31%; top: 31%; border-radius: 24px 30px 9px 15px; background: #d7cdf4; transform: rotate(5deg); }
.agent-orbit { position: absolute; inset: 0; display: grid; place-items: center; }
.agent-orbit::before, .agent-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; }
.agent-orbit::before { width: 170px; height: 170px; }
.agent-orbit::after { width: 240px; height: 110px; transform: rotate(28deg); }
.agent-orbit span { width: 16px; height: 16px; position: absolute; border-radius: 50%; background: #eaffbf; box-shadow: 0 0 32px rgba(183,255,60,.45); }
.agent-orbit span:nth-child(1) { transform: translate(80px,-40px); }
.agent-orbit span:nth-child(2) { transform: translate(-74px,48px); }
.agent-orbit span:nth-child(3) { width: 54px; height: 54px; background: linear-gradient(135deg,#fff,#b7ff3c); box-shadow: 0 0 50px rgba(183,255,60,.30); }
.hack-grid { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(2, 68px); grid-template-rows: repeat(2,68px); gap: 12px; place-content: center; transform: rotate(8deg); }
.hack-grid span { border: 1px solid rgba(255,255,255,.25); border-radius: 16px; background: rgba(255,255,255,.07); box-shadow: inset 0 0 20px rgba(255,255,255,.03); }
.hack-grid span:nth-child(2), .hack-grid span:nth-child(3) { background: rgba(255,224,160,.15); }
.drop-body { padding: 28px; }
.flagship .drop-body { display: flex; flex-direction: column; justify-content: center; padding: 44px; }
.drop-meta { display: flex; justify-content: space-between; gap: 18px; color: #736e7c; font-size: .61rem; font-weight: 900; letter-spacing: .12em; }
.drop-body h3 { margin: 18px 0 10px; font-size: clamp(1.7rem, 3vw, 2.6rem); letter-spacing: -.05em; }
.drop-body p { margin: 0; color: #9b97a4; font-size: .9rem; }
.inline-action { padding: 0; margin-top: 24px; border: 0; background: none; cursor: pointer; display: inline-flex; gap: 9px; align-items: center; color: #fff; font-size: .82rem; font-weight: 850; text-align: left; }
.inline-action span { color: var(--lime); }

.network-section { border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.006)); }
.centered { max-width: 820px; margin-inline: auto; text-align: center; }
.centered > p { margin: 18px auto 0; max-width: 680px; }
.network-map { height: 470px; position: relative; margin-top: 60px; }
.network-lines { position: absolute; inset: 20px 0; width: 100%; height: 430px; overflow: visible; }
.network-lines path { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 1.5; stroke-dasharray: 6 7; animation: dash 22s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -200; } }
.network-core, .network-node { position: absolute; z-index: 2; border: 1px solid var(--line); background: rgba(13,13,19,.94); box-shadow: 0 16px 60px rgba(0,0,0,.20); }
.network-core { width: 210px; height: 210px; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; border-color: rgba(183,255,60,.25); }
.network-core > span { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 19px; background: var(--lime); color: #09090c; font-size: 1.2rem; font-weight: 950; }
.network-core strong { margin-top: 15px; font-size: .92rem; letter-spacing: .10em; }
.network-core small { margin-top: 6px; color: #6f6a78; font-size: .52rem; letter-spacing: .10em; }
.network-node { width: 190px; min-height: 92px; padding: 18px; border-radius: 17px; }
.network-node small { display: block; color: #6e6977; font-size: .55rem; font-weight: 900; letter-spacing: .11em; }
.network-node strong { display: block; margin-top: 7px; font-size: .98rem; }
.network-node.source::after, .network-node.dest::before { content: ""; width: 7px; height: 7px; position: absolute; top: 50%; border-radius: 50%; background: var(--lime); box-shadow: 0 0 14px rgba(183,255,60,.35); }
.network-node.source::after { right: -4px; }
.network-node.dest::before { left: -4px; }
.n1 { left: 0; top: 26px; }.n2 { left: 0; top: 189px; }.n3 { left: 0; top: 352px; }
.n4 { right: 0; top: 26px; }.n5 { right: 0; top: 189px; }.n6 { right: 0; top: 352px; }

.ebay-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ebay-copy > p { max-width: 570px; color: var(--muted); }
.capability-list { margin-top: 34px; border-top: 1px solid var(--line); }
.capability-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.capability-list span { color: var(--lime); font-size: .65rem; font-weight: 900; padding-top: 3px; }
.capability-list p { margin: 0; color: #96919f; font-size: .86rem; }
.capability-list strong { color: #fff; }
.market-terminal { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: linear-gradient(180deg,#111119,#0b0b10); box-shadow: var(--shadow); }
.terminal-top { display: flex; justify-content: space-between; align-items: center; color: #77717f; font-size: .59rem; font-weight: 900; letter-spacing: .13em; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.terminal-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 15px rgba(255,139,61,.4); }
.terminal-status { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 23px 0; }
.terminal-status small { color: #6f6977; font-size: .59rem; letter-spacing: .12em; }
.terminal-status strong { font-size: 1rem; }
.status-chip { padding: 6px 9px; border: 1px solid rgba(255,139,61,.28); border-radius: 999px; background: rgba(255,139,61,.07); color: #ffc095; font-size: .56rem; font-weight: 900; letter-spacing: .10em; }
.market-terminal label { display: block; margin: 12px 0 10px; color: #9a95a2; font-size: .72rem; }
.search-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.search-row input { min-width: 0; height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 10px; outline: 0; color: #fff; background: rgba(255,255,255,.025); }
.search-row input:focus { border-color: rgba(183,255,60,.42); box-shadow: 0 0 0 3px rgba(183,255,60,.05); }
.search-row button { height: 48px; padding: 0 16px; border: 0; border-radius: 10px; cursor: pointer; background: var(--lime); color: #08080b; font-weight: 900; font-size: .76rem; }
.market-result { min-height: 115px; margin-top: 12px; padding: 17px; border: 1px solid var(--line); border-radius: 12px; background: #09090d; }
.market-result > span { color: #6d6875; font-size: .58rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.market-result p { margin: 8px 0 0; color: #9994a1; font-size: .79rem; }
.market-result.loading { opacity: .7; }
.market-result.active { border-color: rgba(183,255,60,.24); }
.terminal-foot { display: flex; justify-content: space-between; gap: 20px; margin-top: 18px; color: #5f5b66; font-size: .54rem; font-weight: 900; letter-spacing: .1em; }

.sell-section { padding-top: 60px; }
.sell-card { padding: 60px; border: 1px solid var(--line); border-radius: 28px; background: radial-gradient(circle at 80% 20%, rgba(183,255,60,.07), transparent 28%), linear-gradient(150deg,#121219,#0a0a0e); }
.sell-card > div:first-child { max-width: 780px; }
.sell-card p { color: var(--muted); max-width: 670px; }
.seller-flow { margin-top: 48px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: center; }
.seller-flow > div { min-height: 130px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.02); }
.seller-flow span { color: var(--lime); font-size: .6rem; font-weight: 900; }
.seller-flow strong { display: block; margin-top: 18px; font-size: .96rem; }
.seller-flow small { display: block; margin-top: 7px; color: #76717f; font-size: .7rem; }
.seller-flow > i { color: #5e5966; font-style: normal; }

.closing { padding: 80px 0 130px; }
.closing-inner { padding: 90px 40px; text-align: center; border: 1px solid rgba(255,255,255,.12); border-radius: 32px; background: radial-gradient(circle at 50% 15%, rgba(255,46,189,.12), transparent 38%), linear-gradient(180deg,#12121a,#09090d); box-shadow: var(--shadow); }
.closing h2 span { color: transparent; background: linear-gradient(90deg,#d17dff,#ff51bd,#ffb45e); background-clip: text; -webkit-background-clip: text; }
.closing p { max-width: 640px; margin: 20px auto 28px; color: var(--muted); }

.site-footer { min-height: 130px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: #6d6876; font-size: .73rem; }
.site-footer .brand-glyph { width: 31px; height: 31px; border-radius: 9px; font-size: .65rem; }
.site-footer .brand-word { color: #aca7b4; font-size: .78rem; }
.footer-status { display: inline-flex; align-items: center; gap: 7px; font-size: .57rem; font-weight: 900; letter-spacing: .12em; }
.footer-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px rgba(183,255,60,.35); }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 90; max-width: min(390px, calc(100vw - 48px)); padding: 14px 16px; border: 1px solid rgba(183,255,60,.25); border-radius: 12px; background: rgba(13,13,19,.95); color: #d8d4df; box-shadow: 0 18px 50px rgba(0,0,0,.35); backdrop-filter: blur(12px); font-size: .8rem; opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .22s ease, transform .22s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-nav { position: absolute; top: 72px; right: 0; width: min(320px, calc(100vw - 40px)); padding: 18px; flex-direction: column; align-items: stretch; gap: 4px; border: 1px solid var(--line); border-radius: 16px; background: rgba(10,10,15,.97); box-shadow: var(--shadow); opacity: 0; transform: translateY(-8px); pointer-events: none; transition: .2s ease; }
  .site-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 11px; }
  .nav-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.02); cursor: pointer; }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 1px; background: #c5c0cd; }
  .hero { grid-template-columns: 1fr; padding-top: 72px; }
  .hero-stage { min-height: 580px; }
  .split-head, .ebay-section { grid-template-columns: 1fr; gap: 42px; }
  .split-head { align-items: start; }
  .drop-card.flagship { grid-template-columns: 1fr; }
  .network-map { height: auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
  .network-core, .network-node { position: static; width: auto; transform: none; }
  .network-core { grid-column: span 2; height: 170px; border-radius: 24px; }
  .network-node { min-height: 100px; }
  .network-node.source::after, .network-node.dest::before, .network-lines { display: none; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .site-header { height: 72px; }
  .hero { min-height: 0; padding: 64px 0 68px; gap: 44px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-metrics { display: grid; gap: 0; margin-top: 44px; border-top: 1px solid var(--line); }
  .hero-metrics div { padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-stage { min-height: 540px; padding: 18px; border-radius: 22px; }
  .shoe-art { height: 290px; transform: scale(.82); }
  .section { padding: 86px 0; }
  .drop-grid { grid-template-columns: 1fr; }
  .drop-card.flagship { grid-column: span 1; }
  .drop-card.flagship .drop-visual, .drop-visual { min-height: 300px; }
  .flagship .drop-body, .drop-body { padding: 24px; }
  .drop-meta { flex-direction: column; gap: 5px; }
  .network-map { grid-template-columns: 1fr; }
  .network-core { grid-column: span 1; }
  .seller-flow { grid-template-columns: 1fr; }
  .seller-flow > i { transform: rotate(90deg); text-align: center; }
  .sell-card { padding: 32px 22px; }
  .closing-inner { padding: 65px 20px; }
  .site-footer { padding: 28px 0; flex-direction: column; text-align: center; }
  .ticker-track { animation-duration: 25s; }
}

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