/* ============================================================================
   SNEAKERPERPS — urban graffiti stylesheet
   Neon spray-paint on dark concrete. Sticker chips, marker headers, tape feeds.
   One sheet drives both the landing page and the trading terminal.
============================================================================ */
:root {
  --wall:      #131019;
  --wall2:     #1b1726;
  --panel:     #1a1723;
  --panel2:    #211c2e;
  --ink:       #0c0b12;
  --paper:     #f6f3ec;
  --muted:     #a99fc0;

  --green:     #2fe36b;   /* LONG */
  --red:       #ff3b5c;   /* SHORT */
  --cyan:      #22e3d0;
  --pink:      #ff2e9a;
  --yellow:    #ffd23f;
  --purple:    #9b5cff;
  --orange:    #ff7a1a;

  --outline: 3px solid var(--ink);
  --sticker-shadow: 4px 4px 0 var(--ink);
  --sans: "Arial Black", "Archivo Black", "Segoe UI", system-ui, sans-serif;
  --mono: "Courier New", ui-monospace, monospace;
  --display: "Impact", "Haettenschweiler", "Arial Black", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--paper);
  background:
    radial-gradient(1100px 500px at 12% -8%, rgba(155,92,255,.20), transparent 60%),
    radial-gradient(900px 500px at 92% 0%, rgba(34,227,208,.16), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.035) 1px, transparent 1.4px) 0 0 / 22px 22px,
    linear-gradient(180deg, rgba(27,23,38,.82), rgba(19,16,25,.92)),
    url("../assets/ui/wall.png") center / cover fixed;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: var(--sans); cursor: pointer; }
a { color: var(--cyan); text-decoration: none; }
kbd { background:#000; border:1px solid #444; border-radius:4px; padding:0 5px; font-family:var(--mono); font-size:11px; }

/* ---------- Ticker ---------- */
.ticker {
  background: repeating-linear-gradient(45deg, var(--ink) 0 16px, #17151f 16px 32px);
  color: var(--yellow);
  border-bottom: 3px solid var(--pink);
  overflow: hidden; white-space: nowrap;
  font-size: 13px; font-weight: 900; letter-spacing: .4px;
}
.ticker span { display: inline-block; padding: 7px 0; animation: slide 40s linear infinite; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
header {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #221a33, #171320);
  border-bottom: 4px solid var(--green);
  position: sticky; top: 0; z-index: 40;
  flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 12px; }
.mark {
  font-family: var(--display); font-size: 26px; font-weight: 900;
  color: var(--ink); background: var(--green);
  width: 46px; height: 46px; display: grid; place-items: center;
  border: var(--outline); border-radius: 10px;
  transform: rotate(-6deg); box-shadow: var(--sticker-shadow);
  overflow: hidden; padding: 0;
}
.mark img { width: 100%; height: 100%; object-fit: cover; }
.brand b { display: block; font-size: 21px; letter-spacing: -.5px; color: #fff; line-height: 1; }
.brand b span { color: var(--pink); }
.brand small { color: var(--cyan); font-weight: 800; font-size: 10px; letter-spacing: 2px; }
.nav { display: flex; gap: 4px; }
.nav a { color: var(--paper); font-weight: 800; font-size: 13px; padding: 8px 12px; border-radius: 8px; letter-spacing: .5px; }
.nav a.active, .nav a:hover { background: rgba(255,255,255,.08); color: var(--yellow); }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.icon-btn { background: rgba(0,0,0,.35); border: 2px solid rgba(255,255,255,.2); border-radius: 8px; padding: 7px 9px; font-size: 14px; }
.net-pill {
  background: rgba(0,0,0,.35); color: #fff; border: 2px solid var(--cyan);
  border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 800; white-space: nowrap;
}
.net-pill.ok { border-color: var(--green); color: var(--green); }
.net-pill.bad { border-color: var(--red); color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  border: var(--outline); border-radius: 10px; padding: 11px 18px;
  font-weight: 900; font-size: 14px; letter-spacing: .4px; color: var(--ink);
  box-shadow: var(--sticker-shadow); transition: transform .05s ease, filter .12s ease;
}
.btn:active { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-spray { background: var(--yellow); }
.btn-spray:hover { filter: brightness(1.06); }
.btn-cyan { background: var(--cyan); }
.btn-pink { background: var(--pink); color:#fff; }
.btn-green { background: var(--green); }
.btn-big { font-size: 17px; padding: 15px 22px; width: 100%; }
.btn:disabled { filter: grayscale(.5) brightness(.8); cursor: not-allowed; }
.mini-btn { background: rgba(255,255,255,.07); border: 2px solid rgba(255,255,255,.18); color: var(--paper); font-weight: 800; font-size: 11px; border-radius: 7px; padding: 6px 9px; }
.mini-btn:hover { background: rgba(255,255,255,.14); }

/* ============================================================
   MARKET STRIP
============================================================ */
.strip-wrap { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 2px dashed rgba(255,255,255,.12); }
.strip-label { font-family: var(--display); font-size: 13px; letter-spacing: 2px; color: var(--muted); transform: rotate(-90deg); }
.market-strip { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 8px; scrollbar-width: thin; flex: 1; }
.market-strip::-webkit-scrollbar { height: 7px; }
.market-strip::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 4px; }
.chip {
  flex: 0 0 auto; min-width: 118px; text-align: left;
  background: var(--panel); border: var(--outline); border-left: 6px solid var(--accent);
  border-radius: 10px; padding: 8px 12px; color: var(--paper);
  display: flex; flex-direction: column; gap: 2px; box-shadow: 3px 3px 0 rgba(0,0,0,.5);
}
.chip:hover { transform: translateY(-2px); }
.chip.on { outline: 3px solid var(--accent); background: var(--panel2); }
.chip-sym { font-size: 13px; font-weight: 900; letter-spacing: .3px; }
.chip-px { font-family: var(--mono); font-size: 13px; font-weight: 700; color: #fff; }
.chip-ch { font-size: 11px; font-weight: 900; }
.chip-ch.up, .up { color: var(--green); }
.chip-ch.dn, .dn { color: var(--red); }

/* ============================================================
   TERMINAL LAYOUT
============================================================ */
.terminal { max-width: 1200px; margin: 0 auto; padding: 18px 16px 60px; display: grid; grid-template-columns: 1.35fr 1fr; gap: 18px; align-items: start; }
@media (max-width: 940px) { .terminal { grid-template-columns: 1fr; } }
.col-main, .col-side { display: flex; flex-direction: column; gap: 18px; }

.panel {
  background: var(--panel);
  border: var(--outline); border-radius: 16px; padding: 16px;
  box-shadow: 6px 6px 0 rgba(0,0,0,.5);
  position: relative;
}
.panel-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--display); letter-spacing: 1.5px; font-size: 15px; color: var(--cyan); margin-bottom: 10px; }
.dot-live { color: var(--green); font-size: 11px; font-weight: 800; animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .35; } }

/* ---------- Market panel ---------- */
.market-panel { border-top: 6px solid var(--pink); }
.mk-head { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; }
.mk-art { width: 120px; height: 78px; background: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 8px, transparent 8px 16px); border: 2px solid rgba(255,255,255,.12); border-radius: 12px; display: grid; place-items: center; padding: 6px; box-shadow: inset 0 0 22px var(--accent, transparent); }
.kick-svg, .kick-fallback, .kick-img { width: 100%; height: auto; filter: drop-shadow(2px 3px 0 rgba(0,0,0,.5)); }
.mk-symbol { font-size: 22px; font-weight: 900; color: var(--yellow); letter-spacing: .5px; }
.mk-name { font-size: 14px; color: #fff; font-weight: 800; }
.mk-brand { font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.mk-quote { text-align: right; }
.mk-price { font-family: var(--mono); font-size: 30px; font-weight: 800; color: #fff; text-shadow: 0 0 14px rgba(255,255,255,.25); }
.big-change { display: inline-block; font-size: 14px; font-weight: 900; padding: 2px 8px; border-radius: 6px; margin-top: 4px; }
.big-change.up { background: rgba(47,227,107,.16); color: var(--green); }
.big-change.dn { background: rgba(255,59,92,.16); color: var(--red); }
.mk-spark { margin: 12px 0 6px; height: 130px; }
.spark { width: 100%; height: 130px; display: block; }
.mk-tag { font-size: 12px; color: var(--muted); font-weight: 700; border-left: 3px solid var(--pink); padding-left: 10px; }

/* ---------- Trade panel ---------- */
.trade-panel { border-top: 6px solid var(--green); }
.side-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.side-btn { border: var(--outline); border-radius: 12px; padding: 12px; font-weight: 900; font-size: 16px; color: var(--paper); background: var(--panel2); display: flex; flex-direction: column; gap: 2px; box-shadow: 3px 3px 0 rgba(0,0,0,.5); }
.side-btn small { font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: .5px; }
.side-btn.long.on { background: var(--green); color: var(--ink); }
.side-btn.short.on { background: var(--red); color: #fff; }
.side-btn.long.on small, .side-btn.short.on small { color: rgba(0,0,0,.55); }
.side-btn.short.on small { color: rgba(255,255,255,.7); }

.field-lbl { display: block; font-size: 12px; font-weight: 800; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin: 8px 0 6px; }
.margin-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.margin-input { flex: 1; min-width: 120px; background: #0f0d15; border: var(--outline); border-radius: 10px; color: #fff; font-family: var(--mono); font-size: 22px; font-weight: 700; padding: 12px 14px; }
.margin-input:focus { outline: none; border-color: var(--yellow); }
.quicks { display: flex; gap: 6px; }
.quick { background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.18); color: var(--paper); font-weight: 800; font-size: 11px; border-radius: 7px; padding: 8px 10px; }
.quick:hover { background: var(--purple); border-color: var(--purple); }

.lev-val { color: var(--yellow); font-family: var(--mono); }
.lev-slider { width: 100%; -webkit-appearance: none; appearance: none; height: 10px; border-radius: 6px; background: linear-gradient(90deg, var(--green), var(--yellow), var(--red)); border: 2px solid var(--ink); }
.lev-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 3px solid var(--ink); box-shadow: 2px 2px 0 rgba(0,0,0,.5); cursor: pointer; }
.lev-slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--ink); cursor: pointer; }
.lev-scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); font-weight: 800; margin-top: 4px; }

.calc { background: #0f0d15; border: 2px solid rgba(255,255,255,.12); border-radius: 12px; padding: 12px 14px; margin: 14px 0; }
.calc-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 13px; }
.calc-row span { color: var(--muted); font-weight: 700; }
.calc-row b { font-family: var(--mono); color: #fff; }
.calc-row b.liq { color: var(--orange); }

.open-btn { width: 100%; font-size: 19px; padding: 16px; border-radius: 12px; }
.open-btn.long { background: var(--green); color: var(--ink); }
.open-btn.short { background: var(--red); color: #fff; }
.ticket-note { font-size: 11px; color: var(--muted); margin: 10px 2px 0; line-height: 1.5; }

/* ---------- Account ---------- */
.acct-panel { border-top: 6px solid var(--cyan); }
.acct-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.acct-mode { font-family: var(--display); font-size: 13px; letter-spacing: 1.5px; color: var(--yellow); background: rgba(255,210,63,.12); padding: 4px 10px; border-radius: 6px; }
.acct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.acct-stat { background: #0f0d15; border: 2px solid rgba(255,255,255,.1); border-radius: 12px; padding: 12px; }
.acct-stat.wide { grid-column: 1 / -1; }
.acct-stat b { display: block; font-family: var(--mono); font-size: 18px; color: #fff; }
.acct-stat span { font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: .5px; }
.live-controls { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }

/* ---------- Positions table ---------- */
.pos-panel { border-top: 6px solid var(--purple); }
.pos-count { background: var(--purple); color: #fff; border-radius: 999px; padding: 1px 10px; font-size: 13px; }
.pos-scroll { overflow-x: auto; }
.pos-table { width: 100%; border-collapse: collapse; font-size: 12px; min-width: 480px; }
.pos-table th { text-align: left; color: var(--muted); font-size: 10px; letter-spacing: .5px; padding: 4px 6px; border-bottom: 2px solid rgba(255,255,255,.12); }
.pos-table td { padding: 8px 6px; border-bottom: 1px solid rgba(255,255,255,.06); font-family: var(--mono); }
.pos-sym { font-weight: 900; font-family: var(--sans); border-left: 4px solid var(--accent); padding-left: 6px; }
.side-tag { font-weight: 900; font-family: var(--sans); padding: 2px 7px; border-radius: 5px; font-size: 10px; }
.side-tag.l { background: rgba(47,227,107,.18); color: var(--green); }
.side-tag.s { background: rgba(255,59,92,.18); color: var(--red); }
.pos-table td.liq { color: var(--orange); }
.btn-close { background: #fff; color: var(--ink); border: 2px solid var(--ink); border-radius: 6px; font-weight: 900; font-size: 11px; padding: 5px 9px; }
.btn-close:hover { background: var(--red); color: #fff; }
.pos-empty { text-align: center; color: var(--muted); font-weight: 700; font-size: 13px; padding: 22px 8px; }

/* ---------- Tape ---------- */
.tape-panel { border-top: 6px solid var(--orange); }
.tape-feed { display: flex; flex-direction: column; gap: 4px; max-height: 260px; overflow: hidden; }
.tape-row { display: grid; grid-template-columns: 22px 1fr auto auto auto; gap: 8px; align-items: center; font-size: 12px; padding: 5px 8px; border-radius: 7px; background: rgba(255,255,255,.03); animation: pop .25s ease; }
.tape-row.l { border-left: 3px solid var(--green); }
.tape-row.s { border-left: 3px solid var(--red); }
.cndl { width: 18px; height: 18px; }
.tw { color: var(--paper); font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tside { font-weight: 900; font-size: 10px; }
.tside.l { color: var(--green); } .tside.s { color: var(--red); }
.tsym { font-family: var(--mono); color: var(--yellow); }
.tsz { font-family: var(--mono); color: var(--muted); font-size: 11px; }
@keyframes pop { from { transform: translateY(-6px); opacity: 0; } }

/* ---------- Toasts ---------- */
#toasts { position: fixed; right: 16px; bottom: 16px; display: flex; flex-direction: column; gap: 8px; z-index: 90; max-width: 340px; }
.toast { background: #17141f; border: var(--outline); border-left: 6px solid var(--cyan); border-radius: 10px; padding: 11px 14px; font-weight: 800; font-size: 13px; color: #fff; box-shadow: var(--sticker-shadow); transition: opacity .3s, transform .3s; }
.toast.win { border-left-color: var(--green); }
.toast.warn { border-left-color: var(--yellow); }
.toast.err { border-left-color: var(--red); }

/* ---------- Modals ---------- */
.modal { position: fixed; inset: 0; background: rgba(8,7,12,.72); display: none; place-items: center; z-index: 100; padding: 20px; backdrop-filter: blur(3px); }
.modal.show { display: grid; }
.sheet { background: var(--panel); border: var(--outline); border-radius: 18px; padding: 24px; max-width: 440px; width: 100%; box-shadow: 8px 8px 0 var(--ink); position: relative; animation: rise .2s ease; }
@keyframes rise { from { transform: translateY(14px); opacity: 0; } }
.sheet h3 { font-family: var(--display); letter-spacing: 1px; margin: 0 0 10px; color: var(--yellow); font-size: 22px; }
.sheet p { color: var(--muted); line-height: 1.55; }
.close { position: absolute; top: 12px; right: 12px; background: none; border: none; color: var(--muted); font-size: 20px; }

/* result modal */
.res-head { text-align: center; border-radius: 14px; padding: 18px; margin-bottom: 14px; border: var(--outline); }
.res-head.win { background: linear-gradient(180deg, rgba(47,227,107,.25), rgba(47,227,107,.08)); }
.res-head.loss { background: linear-gradient(180deg, rgba(255,59,92,.25), rgba(255,59,92,.08)); }
.res-badge { display: block; font-family: var(--display); letter-spacing: 2px; font-size: 15px; }
.res-pnl { display: block; font-family: var(--mono); font-size: 34px; font-weight: 800; color: #fff; margin: 4px 0; }
.res-roi { font-weight: 900; color: var(--paper); }
.res-line { display: flex; justify-content: space-between; font-weight: 800; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 12px 0; }
.res-grid > div { background: #0f0d15; border-radius: 10px; padding: 8px 10px; }
.res-grid b { display: block; font-family: var(--mono); color: #fff; }
.res-grid span { font-size: 11px; color: var(--muted); }
.res-quote { text-align: center; font-style: italic; color: var(--cyan); font-weight: 700; margin-top: 6px; }

/* shake */
.shake { animation: shake .35s; }
@keyframes shake { 0%,100%{transform:translateX(0);} 20%{transform:translateX(-7px);} 40%{transform:translateX(7px);} 60%{transform:translateX(-5px);} 80%{transform:translateX(5px);} }

/* ============================================================
   LANDING PAGE
============================================================ */
main.land { max-width: 1120px; margin: 0 auto; padding: 26px 16px 70px; }
.hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: center; padding: 22px 0 34px; }
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; } }
.hero .tag { display: inline-block; background: var(--pink); color: #fff; font-weight: 900; font-size: 12px; letter-spacing: 1px; padding: 5px 13px; border: var(--outline); border-radius: 999px; transform: rotate(-2deg); box-shadow: 3px 3px 0 var(--ink); }
.hero h1 { font-family: var(--display); font-size: clamp(38px, 7vw, 76px); line-height: .92; margin: 14px 0; color: #fff; text-transform: uppercase; letter-spacing: 1px; text-shadow: 4px 4px 0 var(--purple), 7px 7px 0 rgba(0,0,0,.4); }
.hero h1 .g { color: var(--green); } .hero h1 .r { color: var(--red); }
.hero p.sub { color: #e7e0f2; font-size: 16px; font-weight: 700; line-height: 1.55; max-width: 540px; }
.hero .cta-row { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.hero-art { position: relative; display: grid; place-items: center; min-height: 300px; }
.hero-art .halo { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,46,154,.4), transparent 65%); filter: blur(6px); }
.hero-kick { position: relative; width: 100%; max-width: 420px; transform: rotate(-8deg); filter: drop-shadow(8px 10px 0 rgba(0,0,0,.5)); }
.spray-word { position: absolute; font-family: var(--display); font-size: 30px; color: var(--yellow); transform: rotate(-12deg); text-shadow: 2px 2px 0 var(--ink); }

.sec-title { font-family: var(--display); font-size: clamp(26px, 4vw, 40px); text-transform: uppercase; letter-spacing: 1px; color: #fff; margin: 40px 0 6px; }
.sec-title .u { color: var(--cyan); }
.lead { color: var(--muted); font-weight: 700; font-size: 15px; margin: 0 0 20px; max-width: 640px; }

/* market wall (20 sneakers) */
.market-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.wall-card { background: var(--panel); border: var(--outline); border-top: 6px solid var(--accent); border-radius: 14px; padding: 12px; box-shadow: 5px 5px 0 rgba(0,0,0,.5); transition: transform .08s; }
.wall-card:hover { transform: translateY(-4px) rotate(-1deg); }
.wall-art { height: 92px; display: grid; place-items: center; background: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 8px, transparent 8px 16px); border-radius: 10px; margin-bottom: 10px; box-shadow: inset 0 0 24px var(--accent); }
.wall-art .kick-svg, .wall-art .kick-img, .wall-art .kick-fallback { max-height: 78px; width: auto; }
.wall-sym { font-weight: 900; color: var(--yellow); font-size: 15px; }
.wall-name { font-size: 11px; color: var(--muted); font-weight: 700; height: 28px; overflow: hidden; }
.wall-row { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.wall-px { font-family: var(--mono); color: #fff; font-weight: 700; }
.wall-ls { display: flex; gap: 4px; }
.wall-ls span { font-size: 9px; font-weight: 900; padding: 2px 6px; border-radius: 4px; }
.wall-ls .l { background: rgba(47,227,107,.2); color: var(--green); }
.wall-ls .s { background: rgba(255,59,92,.2); color: var(--red); }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr 1fr; } }
.step { background: var(--panel); border: var(--outline); border-radius: 14px; padding: 16px; box-shadow: 5px 5px 0 rgba(0,0,0,.5); position: relative; }
.step .n { position: absolute; top: -14px; left: -12px; width: 34px; height: 34px; background: var(--green); color: var(--ink); border: var(--outline); border-radius: 50%; display: grid; place-items: center; font-weight: 900; transform: rotate(-8deg); }
.step .ico { font-size: 30px; margin-bottom: 8px; }
.step b { display: block; color: var(--yellow); font-size: 16px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0; }

/* feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } }
.feature { background: var(--panel); border: var(--outline); border-radius: 14px; padding: 16px; box-shadow: 5px 5px 0 rgba(0,0,0,.5); }
.feature b { color: var(--cyan); font-size: 15px; }
.feature p { color: var(--muted); font-size: 13px; line-height: 1.55; }

/* cta band */
.cta-band { text-align: center; margin-top: 46px; background: linear-gradient(135deg, var(--purple), var(--pink)); border: var(--outline); border-radius: 20px; padding: 40px 20px; box-shadow: 8px 8px 0 var(--ink); }
.cta-band h2 { font-family: var(--display); font-size: clamp(28px, 5vw, 48px); text-transform: uppercase; margin: 0 0 8px; color: #fff; text-shadow: 3px 3px 0 var(--ink); }
.cta-band p { color: rgba(255,255,255,.9); font-weight: 700; margin: 0 0 18px; }

/* how-panel on terminal */
footer { max-width: 1120px; margin: 30px auto 0; padding: 22px 16px 40px; border-top: 2px dashed rgba(255,255,255,.14); text-align: center; color: var(--muted); font-size: 13px; }
footer b { color: var(--paper); }
.disclaimer { margin-top: 10px; font-size: 11px; color: #6f6685; line-height: 1.6; max-width: 780px; margin-left: auto; margin-right: auto; }
