/* ═══════════════════════════════════════════════
   CROW TRADER — cyberpunk desk
   ═══════════════════════════════════════════════ */
:root {
  --bg: #07080a;
  --bg-2: #0b0d11;
  --panel: #0e1116;
  --line: rgba(88, 255, 231, 0.14);
  --line-hard: rgba(88, 255, 231, 0.35);
  --cyan: #58ffe7;
  --yellow: #f4e327;
  --magenta: #ff2d78;
  --red: #ff3b30;
  --text: #cfd8d6;
  --text-dim: #6d7a78;
  --mono: 'Share Tech Mono', monospace;
  --ui: 'Chakra Petch', sans-serif;
  --display: 'Sedgwick Ave Display', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ui);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--magenta); color: #000; }

/* ── global overlays ── */
.scanlines {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.22) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply; opacity: .5;
}
.noise {
  position: fixed; inset: -50%; z-index: 61; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  animation: grain 6s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 25% { transform: translate(-2%,3%); }
  50% { transform: translate(3%,-2%); } 75% { transform: translate(-3%,-3%); }
}

/* ── HUD frame ── */
.hud-frame { position: fixed; inset: 0; z-index: 55; pointer-events: none; }
.hud-corner { position: absolute; width: 26px; height: 26px; border: 1px solid var(--line-hard); }
.hud-corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.hud-corner.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.hud-corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.hud-corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.hud-side {
  position: absolute; top: 50%; font-family: var(--mono); font-size: 9px;
  letter-spacing: 3px; color: var(--text-dim); opacity: .55; white-space: nowrap;
}
.hud-side.left { left: 18px; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl; }
.hud-side.right { right: 18px; transform: translateY(-50%); writing-mode: vertical-rl; }

/* ── nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px;
  background: linear-gradient(180deg, rgba(7,8,10,.92), rgba(7,8,10,0));
  backdrop-filter: blur(2px);
}
.nav-logo {
  font-family: var(--ui); font-weight: 700; font-size: 17px; letter-spacing: 2px;
  color: var(--text); text-decoration: none;
}
.nav-logo b { color: var(--cyan); font-weight: 700; }
.nav-logo-mark { color: var(--yellow); margin-right: 6px; }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 3px;
  color: var(--text-dim); text-decoration: none; position: relative; transition: color .2s;
}
.nav-links a:hover { color: var(--cyan); text-shadow: 0 0 12px var(--cyan); }
.nav-cta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  color: var(--yellow); text-decoration: none; border: 1px solid var(--yellow);
  padding: 8px 18px; clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all .2s;
}
.nav-cta:hover { background: var(--yellow); color: #000; box-shadow: 0 0 24px rgba(244,227,39,.5); }

/* ── hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 110px 56px 90px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; background: var(--bg); }
.hero-crow {
  position: absolute; right: 0; top: 0; height: 100%; width: 68%;
  object-fit: cover; object-position: center right;
  filter: saturate(1.1) contrast(1.06);
  animation: crowFloat 9s ease-in-out infinite;
}
@keyframes crowFloat {
  0%,100% { transform: translateY(0) scale(1.02); }
  50% { transform: translateY(-10px) scale(1.035); }
}
.hero-crow.glitching { animation: crowFloat 9s ease-in-out infinite, rgbSplit .28s steps(2) 2; }
@keyframes rgbSplit {
  0% { filter: saturate(1.1) contrast(1.06) drop-shadow(-6px 0 0 rgba(255,45,120,.7)) drop-shadow(6px 0 0 rgba(88,255,231,.7)); transform: translateX(3px); }
  50% { filter: saturate(1.1) contrast(1.06) drop-shadow(5px 0 0 rgba(255,45,120,.7)) drop-shadow(-5px 0 0 rgba(88,255,231,.7)); transform: translateX(-3px); }
  100% { filter: saturate(1.1) contrast(1.06); }
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 26%, rgba(7,8,10,.72) 46%, rgba(7,8,10,0) 68%),
    linear-gradient(0deg, var(--bg) 2%, rgba(7,8,10,0) 30%),
    linear-gradient(180deg, rgba(7,8,10,.85) 0%, rgba(7,8,10,0) 22%);
}
.hero-fx { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-content { position: relative; z-index: 5; max-width: 720px; }

.hero-meta { display: flex; gap: 22px; align-items: center; margin-bottom: 18px; }
.warn-tick {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--red);
  animation: blink 2.4s steps(2) infinite;
}
@keyframes blink { 50% { opacity: .25; } }
.meta-mono { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--text-dim); }
.meta-mono em { color: var(--cyan); font-style: normal; }

.hero-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(64px, 11vw, 148px);
  line-height: .92; margin: 0 0 18px -6px;
}
.hero-title .line { display: block; color: var(--yellow);
  text-shadow: 0 0 18px rgba(244,227,39,.55), 0 0 60px rgba(244,227,39,.25);
}
.hero-title .line2 { color: var(--cyan); margin-left: .8em;
  text-shadow: 0 0 18px rgba(88,255,231,.55), 0 0 60px rgba(88,255,231,.25);
}

/* glitch effect */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; inset: 0; opacity: 0; pointer-events: none;
}
.glitch::before { color: var(--magenta); z-index: -1; animation: glitchA 5s steps(1) infinite; }
.glitch::after  { color: var(--cyan);    z-index: -2; animation: glitchB 5s steps(1) infinite; }
@keyframes glitchA {
  0%, 92.9%, 96%, 100% { opacity: 0; transform: none; clip-path: none; }
  93% { opacity: .85; transform: translate(-5px, 2px); clip-path: inset(12% 0 55% 0); }
  94.5% { opacity: .85; transform: translate(4px, -2px); clip-path: inset(60% 0 8% 0); }
}
@keyframes glitchB {
  0%, 92.9%, 96.5%, 100% { opacity: 0; transform: none; clip-path: none; }
  93.5% { opacity: .85; transform: translate(5px, 1px); clip-path: inset(40% 0 30% 0); }
  95% { opacity: .85; transform: translate(-4px, -1px); clip-path: inset(5% 0 70% 0); }
}

.hero-sub {
  font-family: var(--mono); font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 6px; color: var(--magenta); margin-bottom: 22px;
  text-shadow: 0 0 14px rgba(255,45,120,.6);
}
.hero-copy { max-width: 520px; font-size: 15.5px; color: var(--text); margin-bottom: 34px; }

.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.btn {
  position: relative; overflow: hidden;
  font-family: var(--mono); font-size: 12px; letter-spacing: 2px;
  padding: 15px 30px; text-decoration: none; cursor: pointer;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: transform .15s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: #000; font-weight: 700; }
.btn-primary:hover { box-shadow: 0 0 34px rgba(244,227,39,.55); }
.btn-ghost { border: 1px solid var(--cyan); color: var(--cyan); background: rgba(88,255,231,.04); }
.btn-ghost:hover { background: rgba(88,255,231,.12); box-shadow: 0 0 24px rgba(88,255,231,.3); }
.btn-glint {
  position: absolute; top: 0; left: -80%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  animation: glint 3.4s ease-in-out infinite;
}
@keyframes glint { 0%, 60%, 100% { left: -80%; } 40% { left: 130%; } }

.hero-badges { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-badges span { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--text-dim); }

.hero-hudbar {
  position: absolute; left: 56px; right: 56px; bottom: 26px; z-index: 6;
  display: flex; align-items: center; gap: 20px;
  border-top: 1px solid var(--line); padding-top: 12px;
}
.hud-chip { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--cyan); white-space: nowrap; }
.hud-page { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--text-dim); white-space: nowrap; }
.hud-page i { color: var(--yellow); font-style: normal; animation: blink 1.6s steps(2) infinite; }
.ticker-wrap { flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker { display: inline-flex; gap: 44px; white-space: nowrap; animation: tick 36s linear infinite; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; }
@keyframes tick { to { transform: translateX(-50%); } }
.ticker .up { color: var(--cyan); } .ticker .dn { color: var(--magenta); }
.ticker .sym { color: var(--text-dim); }

/* ── load reveal ── */
.reveal { opacity: 0; transform: translateY(22px); animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards; }
.r1 { animation-delay: .15s; } .r2 { animation-delay: .3s; } .r3 { animation-delay: .45s; }
.r4 { animation-delay: .65s; } .r5 { animation-delay: .8s; } .r6 { animation-delay: .95s; }
.r7 { animation-delay: 1.15s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ── strip ── */
.strip { border-block: 1px solid var(--line); background: var(--bg-2); }
.strip-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  max-width: 1280px; margin: 0 auto;
}
.strip-item {
  padding: 30px 34px; font-size: 13.5px; color: var(--text-dim);
  border-left: 1px solid var(--line);
}
.strip-item:first-child { border-left: 0; }
.strip-item b { display: block; color: var(--yellow); font-family: var(--mono); letter-spacing: 2px; font-size: 12px; margin-bottom: 6px; }

/* ── sections ── */
.section { padding: 110px 56px; max-width: 1360px; margin: 0 auto; }
.sec-alt { position: relative; }
.sec-alt::before {
  content: ""; position: absolute; inset: 0 -100vw;
  background: var(--bg-2); z-index: -1;
  border-block: 1px solid var(--line);
}
.sec-head { margin-bottom: 60px; }
.sec-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 4px; color: var(--magenta); display: block; margin-bottom: 12px; }
.sec-title {
  font-family: var(--display); font-weight: 400; font-size: clamp(38px, 6vw, 72px);
  color: var(--text); line-height: 1;
  text-shadow: 0 0 30px rgba(88,255,231,.18);
}
.glitch-h { position: relative; display: inline-block; }
.glitch-h::before, .glitch-h::after {
  content: attr(data-text); position: absolute; inset: 0; opacity: 0; pointer-events: none;
}
.glitch-h:hover::before { color: var(--magenta); opacity: .8; transform: translate(-4px,2px); clip-path: inset(10% 0 55% 0); }
.glitch-h:hover::after { color: var(--cyan); opacity: .8; transform: translate(4px,-2px); clip-path: inset(55% 0 10% 0); }
.sec-sub { margin-top: 14px; color: var(--text-dim); font-size: 14px; }

/* ── features ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  padding: 30px 26px 24px;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.feat:hover {
  border-color: var(--line-hard); transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,.5), 0 0 30px rgba(88,255,231,.08);
}
.feat-num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--mono); font-size: 11px; color: var(--text-dim); letter-spacing: 2px;
}
.feat h3 { font-size: 17px; letter-spacing: 2px; color: var(--cyan); margin-bottom: 12px; font-weight: 600; }
.feat p { font-size: 13.5px; color: var(--text-dim); margin-bottom: 18px; }
.feat-foot { font-family: var(--mono); font-size: 9.5px; letter-spacing: 2px; color: var(--yellow); opacity: .75; }
.lock { font-style: normal; font-size: 10px; color: var(--red); font-family: var(--mono); letter-spacing: 1px; vertical-align: middle; margin-left: 6px; }
.soon {
  font-style: normal; font-size: 9px; font-family: var(--mono); letter-spacing: 1px;
  color: var(--magenta); border: 1px solid var(--magenta); padding: 2px 7px; margin-left: 8px;
  vertical-align: middle; animation: blink 3s steps(2) infinite;
}
.feat-live { border-color: rgba(244,227,39,.28); }
.feat-live h3 { color: var(--yellow); }

/* ── app screenshots ── */
.shots-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
}
.shot { margin: 0; position: relative; cursor: zoom-in; }
.shot-main { grid-column: 1 / -1; }
.shot img {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--line-hard);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: transform .3s, box-shadow .3s, filter .3s;
  filter: saturate(1.02);
}
.shot:hover img {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,.6), 0 0 40px rgba(88,255,231,.14);
}
.shot::before {
  content: ""; position: absolute; inset: -1px; pointer-events: none; z-index: 2;
  background:
    linear-gradient(var(--cyan), var(--cyan)) top left / 22px 1px,
    linear-gradient(var(--cyan), var(--cyan)) top left / 1px 22px,
    linear-gradient(var(--magenta), var(--magenta)) bottom right / 22px 1px,
    linear-gradient(var(--magenta), var(--magenta)) bottom right / 1px 22px;
  background-repeat: no-repeat; opacity: .9;
}
.shot figcaption {
  margin-top: 10px; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 1.5px; color: var(--text-dim);
}
.shot figcaption b { color: var(--cyan); margin-right: 8px; letter-spacing: 2px; }

/* ── strategies ── */
.strat-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 46%); gap: 40px; align-items: start; }
.strat-viewer { position: sticky; top: 90px; cursor: zoom-in; }
.strat-viewer img { animation: shotIn .35s ease; }
@keyframes shotIn {
  0% { opacity: 0; filter: saturate(1.02) drop-shadow(-5px 0 0 rgba(255,45,120,.6)) drop-shadow(5px 0 0 rgba(88,255,231,.6)); transform: translateX(4px); }
  100% { opacity: 1; filter: saturate(1.02); transform: none; }
}
.strat-list { display: flex; flex-direction: column; }
.strat {
  background: none; border: 0; text-align: left; cursor: pointer;
  font-family: var(--ui); color: inherit;
}
.strat.active { background: rgba(88,255,231,.05); }
.strat.active h3 { color: var(--cyan); text-shadow: 0 0 16px rgba(88,255,231,.4); }
.strat.active .strat-idx { color: var(--yellow); }
.strat {
  display: flex; align-items: center; gap: 26px;
  padding: 26px 10px; border-bottom: 1px solid var(--line);
  transition: background .2s, padding-left .25s;
}
.strat:first-child { border-top: 1px solid var(--line); }
.strat:hover { background: rgba(88,255,231,.035); padding-left: 26px; }
.strat:hover h3 { color: var(--yellow); text-shadow: 0 0 16px rgba(244,227,39,.5); }
.strat-idx { font-family: var(--mono); font-size: 11px; color: var(--magenta); letter-spacing: 2px; }
.strat h3 { font-size: clamp(16px, 2.4vw, 26px); letter-spacing: 3px; font-weight: 600; color: var(--text); transition: color .2s, text-shadow .2s; }
.strat-line { flex: 1; height: 1px; background: var(--line); }
.strat-type { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--text-dim); white-space: nowrap; }

/* ── exchanges ── */
.exch-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.exch {
  flex: 1 1 150px; text-align: center; padding: 26px 14px;
  border: 1px solid var(--line); background: var(--panel);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.exch:hover { border-color: var(--line-hard); transform: translateY(-3px); box-shadow: 0 0 24px rgba(88,255,231,.1); }
.exch b { display: block; font-size: 15px; letter-spacing: 2px; color: var(--text); margin-bottom: 6px; }
.exch span { font-family: var(--mono); font-size: 9px; letter-spacing: 1.5px; color: var(--text-dim); }
.exch-hot { border-color: rgba(244,227,39,.4); }
.exch-hot b { color: var(--yellow); }
.exch-hot span { color: var(--yellow); opacity: .7; }

/* ── pricing ── */
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(280px, 480px)); gap: 26px; justify-content: center; }
.price {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  padding: 40px 36px 30px;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}
.price-full { border-color: rgba(255,45,120,.45); box-shadow: 0 0 44px rgba(255,45,120,.08); }
.price-tag {
  position: absolute; top: 20px; right: 26px; font-family: var(--mono);
  font-size: 10px; letter-spacing: 3px; color: var(--cyan); border: 1px solid var(--cyan); padding: 3px 10px;
}
.tag-hot { color: var(--magenta); border-color: var(--magenta); }
.price h3 { font-size: 20px; letter-spacing: 3px; color: var(--text); margin-bottom: 8px; }
.price-amt { font-family: var(--display); font-size: 54px; color: var(--yellow); text-shadow: 0 0 20px rgba(244,227,39,.4); margin-bottom: 22px; }
.price-full .price-amt { color: var(--magenta); text-shadow: 0 0 20px rgba(255,45,120,.4); }
.price-amt span { font-family: var(--mono); font-size: 12px; color: var(--text-dim); letter-spacing: 1px; text-shadow: none; }
.price ul { list-style: none; margin-bottom: 28px; }
.price li { font-size: 13.5px; color: var(--text-dim); padding: 7px 0 7px 22px; position: relative; }
.price li::before { content: "▸"; position: absolute; left: 0; color: var(--cyan); }
.price-full li::before { color: var(--magenta); }
.btn-wide { display: block; text-align: center; }
.price-foot { display: block; text-align: center; margin-top: 14px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 2px; color: var(--text-dim); }

/* ── desk ── */
.desk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.desk-item { background: var(--bg); padding: 30px 28px; font-size: 13px; color: var(--text-dim); transition: background .2s; }
.desk-item:hover { background: var(--panel); }
.desk-item b { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--cyan); margin-bottom: 8px; }

/* ── footer ── */
.footer { border-top: 1px solid var(--line); padding: 70px 56px 40px; text-align: center; background: var(--bg-2); }
.footer-logo {
  font-family: var(--display); font-size: clamp(34px, 5vw, 54px); color: var(--yellow);
  text-shadow: 0 0 22px rgba(244,227,39,.45); display: inline-block;
}
.footer-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 4px; color: var(--magenta); margin: 12px 0 34px; }
.footer-legal { max-width: 640px; margin: 0 auto; }
.footer-legal p { font-size: 12px; color: var(--text-dim); margin-bottom: 14px; }
.footer-fine { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; opacity: .6; }

/* ── lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center;
  background: rgba(4,5,6,.92); backdrop-filter: blur(6px);
  padding: 4vh 4vw; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  border: 1px solid var(--line-hard);
  box-shadow: 0 0 80px rgba(88,255,231,.18);
  animation: shotIn .3s ease;
}
.lightbox-close {
  position: absolute; top: 22px; right: 26px; z-index: 101;
  background: none; border: 1px solid var(--magenta); color: var(--magenta);
  font-family: var(--mono); font-size: 16px; padding: 8px 13px; cursor: pointer;
  transition: all .2s;
}
.lightbox-close:hover { background: var(--magenta); color: #000; box-shadow: 0 0 24px rgba(255,45,120,.5); }

/* ── responsive ── */
@media (max-width: 980px) {
  .nav { padding: 14px 22px; }
  .nav-links { display: none; }
  .hero { padding: 100px 22px 110px; }
  .hero-crow { width: 100%; opacity: .5; }
  .hero-vignette { background: linear-gradient(90deg, var(--bg) 4%, rgba(7,8,10,.66) 60%, rgba(7,8,10,.3) 100%), linear-gradient(0deg, var(--bg) 2%, rgba(7,8,10,0) 30%); }
  .hero-hudbar { left: 22px; right: 22px; }
  .section { padding: 80px 22px; }
  .feat-grid, .desk-grid, .strip-inner { grid-template-columns: 1fr; }
  .strip-item { border-left: 0; border-top: 1px solid var(--line); }
  .strip-item:first-child { border-top: 0; }
  .price-grid { grid-template-columns: 1fr; }
  .hud-side { display: none; }
  .strat { flex-wrap: wrap; gap: 12px; }
  .strat-line { display: none; }
  .shots-grid { grid-template-columns: 1fr; }
  .strat-wrap { grid-template-columns: 1fr; }
  .strat-viewer { position: static; }
}

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