/* ===== Crypto Pulse — theme ===== */
:root {
  --bg: #070b16;
  --bg-2: #0b1120;
  --panel: #0f1729;
  --panel-2: #131c33;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #eaf0ff;
  --muted: #9aa7c7;
  --muted-2: #6b7797;
  --teal: #22d3ee;
  --teal-2: #2dd4bf;
  --violet: #8b5cf6;
  --violet-2: #a855f7;
  --green: #34d399;
  --red: #f87171;
  --grad: linear-gradient(100deg, #22d3ee 0%, #6366f1 55%, #a855f7 100%);
  --grad-soft: linear-gradient(100deg, rgba(34,211,238,.18), rgba(168,85,247,.18));
  --radius: 16px;
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px -10px rgba(99, 102, 241, 0.5);
  --maxw: 1180px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Sora", var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
/* Author display rules (e.g. .btn { display: inline-flex }) otherwise override [hidden]. */
[hidden] { display: none !important; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 11px 20px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn--lg { padding: 15px 28px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--grad); color: #05070d; box-shadow: 0 10px 30px -8px rgba(99,102,241,.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(99,102,241,.8); }
.btn--ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }

.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: #bfe9f5; background: rgba(34,211,238,.08); border: 1px solid rgba(34,211,238,.25);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-2); box-shadow: 0 0 0 0 rgba(45,212,191,.7); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(45,212,191,.6);} 70% { box-shadow: 0 0 0 10px rgba(45,212,191,0);} 100% { box-shadow: 0 0 0 0 rgba(45,212,191,0);} }

.eyebrow { display: inline-block; font-family: var(--display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: 14px; }

/* ===== Nav ===== */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); background: rgba(7,11,22,.72); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
.nav.scrolled { border-bottom-color: var(--line); background: rgba(7,11,22,.9); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 34px; height: 34px; border-radius: 9px; }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 19px; letter-spacing: .2px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; gap: 12px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ===== Hero ===== */
.hero { position: relative; padding: 70px 0 0; overflow: hidden; }
.hero__bg {
  position: absolute; inset: -20% -10% auto -10%; height: 780px; z-index: 0;
  background:
    radial-gradient(60% 60% at 78% 18%, rgba(139,92,246,.28), transparent 60%),
    radial-gradient(55% 55% at 12% 8%, rgba(34,211,238,.22), transparent 60%);
  filter: blur(10px);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-bottom: 40px; }
.hero__title { font-family: var(--display); font-weight: 800; font-size: clamp(38px, 5.4vw, 66px); line-height: 1.03; letter-spacing: -1px; }
.hero__sub { color: var(--muted); font-size: 18px; margin: 22px 0 30px; max-width: 560px; }
.hero__sub strong { color: var(--text); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 34px; margin-top: 38px; }
.hero__trust strong { display: block; font-family: var(--display); font-size: 26px; }
.hero__trust span { color: var(--muted-2); font-size: 13px; }
.hero__art { position: relative; }
.hero__art img { border-radius: 20px; border: 1px solid var(--line); box-shadow: var(--shadow), var(--shadow-glow); }

/* ticker */
.ticker { position: relative; z-index: 1; margin-top: 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(15,23,41,.5); overflow: hidden; }
.ticker__track { display: flex; gap: 40px; white-space: nowrap; padding: 12px 0; width: max-content; animation: scroll-x 42s linear infinite; }
.ticker__item { font-size: 14px; font-weight: 600; color: var(--muted); display: inline-flex; gap: 8px; align-items: center; }
.ticker__item b { color: var(--text); }
.up { color: var(--green); } .down { color: var(--red); }
@keyframes scroll-x { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ===== Value strip ===== */
.strip { border-bottom: 1px solid var(--line); background: var(--bg-2); }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 34px 24px; }
.strip__grid strong { display: block; font-family: var(--display); font-size: 20px; }
.strip__grid span { color: var(--muted); font-size: 14px; }

/* ===== Sections ===== */
.section { padding: 92px 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section__head h2 { font-family: var(--display); font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1; letter-spacing: -.5px; }
.section__head p { color: var(--muted); font-size: 17px; margin-top: 14px; }

/* ===== Feature cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card h3 { font-family: var(--display); font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.card__icon { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px; background: var(--grad-soft); border: 1px solid var(--line-strong); position: relative; }
.card__icon::after { content: ""; position: absolute; inset: 0; background-repeat: no-repeat; background-position: center; background-size: 26px; }
.icon--scan::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E"); }
.icon--ai::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3 3 3 0 0 0-3 3v1a3 3 0 0 0 0 6v1a3 3 0 0 0 3 3 3 3 0 0 0 6 0 3 3 0 0 0 3-3v-1a3 3 0 0 0 0-6V8a3 3 0 0 0-3-3 3 3 0 0 0-3-3Z'/%3E%3C/svg%3E"); }
.icon--timing::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232dd4bf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='m7 14 3-3 3 3 4-5'/%3E%3C/svg%3E"); }
.icon--live::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E"); }
.icon--radar::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19.07 4.93A10 10 0 0 0 6.99 3.34'/%3E%3Cpath d='M4 6h.01'/%3E%3Cpath d='M2.29 9.62A10 10 0 1 0 21.31 8.35'/%3E%3Cpath d='M16.24 7.76A6 6 0 1 0 8.23 16.67'/%3E%3Cpath d='M12 18h.01'/%3E%3Cpath d='M17.99 11.66A6 6 0 0 1 15.77 16.67'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E"); }
.icon--bell::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9'/%3E%3Cpath d='M10.3 21a1.94 1.94 0 0 0 3.4 0'/%3E%3C/svg%3E"); }

/* ===== Why us / edge ===== */
.edge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.edge__card {
  background: linear-gradient(180deg, var(--panel), var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.edge__card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.edge__label {
  display: inline-block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: 14px;
}
.edge__card h3 {
  font-family: var(--display);
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.25;
}
.edge__card p { color: var(--muted); font-size: 15px; }
.edge__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(120deg, rgba(34,211,238,.1), rgba(99,102,241,.12) 45%, rgba(168,85,247,.1));
}
.edge__banner strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  margin-bottom: 6px;
}
.edge__banner span { color: var(--muted); font-size: 15px; }
.edge__banner .btn { flex-shrink: 0; }

/* ===== Showcase ===== */
.showcase { padding: 92px 0; overflow: hidden; }
.showcase__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.showcase__copy h2 { font-family: var(--display); font-size: clamp(28px,3.4vw,40px); line-height: 1.1; letter-spacing: -.5px; margin-bottom: 16px; }
.showcase__copy > p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.ticks { list-style: none; margin-bottom: 28px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; color: var(--text); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 6px; background: var(--grad-soft); border: 1px solid rgba(45,212,191,.4); }
.ticks li::after { content: ""; position: absolute; left: 6px; top: 8px; width: 8px; height: 4px; border-left: 2px solid var(--teal-2); border-bottom: 2px solid var(--teal-2); transform: rotate(-45deg); }
.showcase__art { position: relative; }
.showcase__art img { border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; z-index: 1; }
.showcase__glow { position: absolute; inset: -12%; background: radial-gradient(50% 50% at 50% 50%, rgba(99,102,241,.35), transparent 70%); filter: blur(30px); z-index: 0; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 8px; }
.step { text-align: center; padding: 12px; }
.step__num { width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 16px; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 22px; color: #05070d; background: var(--grad); box-shadow: 0 10px 30px -8px rgba(99,102,241,.6); }
.step h3 { font-family: var(--display); font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }
.step__line { height: 2px; align-self: center; margin-top: 26px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.how__note { margin-top: 46px; text-align: center; color: var(--muted); font-size: 15px; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px 24px; }

/* ===== Pricing ===== */
.demo-banner { max-width: 720px; margin: 0 auto 26px; text-align: center; color: #ffe6a3; background: rgba(255,196,0,.08); border: 1px solid rgba(255,196,0,.3); padding: 12px 18px; border-radius: 12px; font-size: 14px; }
.signal-brief { max-width: 860px; margin: 0 auto 32px; padding: 28px 30px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; background: linear-gradient(135deg, rgba(34,211,238,.09), rgba(168,85,247,.08)); border: 1px solid var(--line-strong); border-radius: 18px; }
.signal-brief .eyebrow { margin-bottom: 8px; }
.signal-brief h3 { font-family: var(--display); font-size: 22px; margin-bottom: 8px; }
.signal-brief p { color: var(--muted); font-size: 15px; }
.signal-brief ul { list-style: none; display: grid; gap: 11px; }
.signal-brief li { color: var(--muted); font-size: 14px; padding-left: 22px; position: relative; }
.signal-brief li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.signal-brief strong { color: var(--text); }
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
.plan {
  position: relative; background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px; display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-4px); }
.plan--featured { border-color: rgba(139,92,246,.55); box-shadow: 0 0 0 1px rgba(139,92,246,.3), var(--shadow), var(--shadow-glow); }
.plan--featured::before { content: "Best value"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #05070d; font-size: 12px; font-weight: 800; letter-spacing: .04em; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; }
.plan__name { font-family: var(--display); font-size: 20px; font-weight: 700; }
.plan__tag { color: var(--muted); font-size: 14px; margin-top: 4px; min-height: 40px; }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin: 20px 0 6px; }
.plan__price b { font-family: var(--display); font-size: 46px; line-height: 1; }
.plan__price span { color: var(--muted); font-size: 15px; }
.plan__features { list-style: none; margin: 20px 0 26px; display: grid; gap: 11px; }
.plan__features li { position: relative; padding-left: 28px; color: var(--text); font-size: 15px; }
.plan__features li::before { content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 5px; background: var(--grad-soft); }
.plan__features li::after { content: ""; position: absolute; left: 5px; top: 6px; width: 7px; height: 4px; border-left: 2px solid var(--teal-2); border-bottom: 2px solid var(--teal-2); transform: rotate(-45deg); }
.plan .btn { margin-top: auto; }
.plans__fine { text-align: center; color: var(--muted-2); font-size: 13px; max-width: 640px; margin: 30px auto 0; }
.plans__fine a { color: var(--teal); }

/* ===== FAQ ===== */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 4px 20px; transition: border-color .2s; }
.faq details[open] { border-color: var(--line-strong); }
.faq summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--teal); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 18px; font-size: 15px; }
.faq a { color: var(--teal); }

/* ===== Disclaimer band ===== */
.disclaimer { background: var(--bg-2); border-top: 1px solid var(--line); }
.disclaimer .container { padding: 26px 24px; color: var(--muted); font-size: 13.5px; line-height: 1.7; }
.disclaimer strong { color: var(--text); }
.disclaimer a { color: var(--teal); }

/* ===== Final CTA ===== */
.finalcta { padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.finalcta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 50% 0%, rgba(99,102,241,.25), transparent 60%); }
.finalcta__inner { position: relative; }
.finalcta h2 { font-family: var(--display); font-size: clamp(30px,4vw,48px); letter-spacing: -.5px; }
.finalcta p { color: var(--muted); font-size: 18px; margin: 12px 0 28px; }

/* ===== Footer ===== */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 56px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; padding-bottom: 40px; }
.footer__brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols h4 { font-family: var(--display); font-size: 14px; margin-bottom: 14px; }
.footer__cols a { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; transition: color .2s; }
.footer__cols a:hover { color: var(--text); }
.footer__bar { border-top: 1px solid var(--line); padding: 20px 0; }
.footer__bar .container { display: flex; justify-content: space-between; gap: 16px; color: var(--muted-2); font-size: 13px; flex-wrap: wrap; }

/* ===== Modal ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(3,6,15,.72); backdrop-filter: blur(6px); }
.modal__card { position: relative; z-index: 1; width: 100%; max-width: 460px; background: var(--panel); border: 1px solid var(--line-strong); border-radius: 20px; padding: 30px; box-shadow: var(--shadow); animation: pop .22s ease; }
@keyframes pop { from { transform: translateY(12px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal__close { position: absolute; top: 14px; right: 16px; background: none; border: 0; color: var(--muted); font-size: 26px; cursor: pointer; line-height: 1; }
.modal__card h3 { font-family: var(--display); font-size: 22px; }
.modal__plan { color: var(--teal); font-weight: 600; margin: 6px 0 20px; }
.modal__discord { color: var(--muted); font-size: 14px; margin: -10px 0 20px; }
.modal__discord strong { color: var(--text); }
.field { display: block; margin-bottom: 18px; }
.field span { display: block; font-size: 14px; color: var(--muted); margin-bottom: 7px; }
.field small { color: var(--muted-2); }
.field input { width: 100%; background: var(--bg); border: 1px solid var(--line-strong); border-radius: 10px; padding: 12px 14px; color: var(--text); font-size: 15px; font-family: var(--font); }
.field input:focus { outline: none; border-color: var(--teal); }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--violet); flex: none; }
.check a { color: var(--teal); }
.modal__error { color: var(--red); font-size: 14px; margin-bottom: 14px; }
.modal__secure { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: 14px; }

/* ===== Legal / simple pages ===== */
.legal { padding: 60px 0 80px; }
.legal h1 { font-family: var(--display); font-size: clamp(30px,4vw,44px); margin-bottom: 8px; }
.legal .updated { color: var(--muted-2); font-size: 14px; margin-bottom: 30px; }
.legal h2 { font-family: var(--display); font-size: 22px; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; }
.legal ul { padding-left: 22px; margin: 10px 0; display: grid; gap: 6px; }
.legal a { color: var(--teal); }
.legal .callout { background: rgba(248,113,113,.07); border: 1px solid rgba(248,113,113,.28); border-radius: 14px; padding: 18px 22px; margin: 24px 0; color: #ffd9d9; }
.legal .callout strong { color: #fff; }

/* ===== Confirmation / status pages ===== */
.status { min-height: 78vh; display: grid; place-items: center; padding: 60px 0; }
.status__card { max-width: 560px; width: 100%; text-align: center; background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line-strong); border-radius: 22px; padding: 44px 38px; box-shadow: var(--shadow); }
.status__icon { width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line-strong); font-size: 34px; }
.status__card h1 { font-family: var(--display); font-size: 30px; margin-bottom: 8px; }
.status__card p { color: var(--muted); }
.codebox { margin: 26px 0 10px; }
.codebox__label { font-size: 13px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.codebox__value { display: flex; align-items: center; justify-content: center; gap: 12px; }
.codebox__code { font-family: "Sora", monospace; font-size: 26px; font-weight: 800; letter-spacing: 2px; background: var(--bg); border: 1px dashed var(--line-strong); border-radius: 12px; padding: 14px 22px; color: #fff; }
.copy-btn { background: rgba(255,255,255,.05); border: 1px solid var(--line-strong); color: var(--text); border-radius: 10px; padding: 12px 14px; cursor: pointer; font-size: 14px; }
.copy-btn:hover { background: rgba(255,255,255,.1); }
.status__steps { text-align: left; margin: 26px 0; display: grid; gap: 12px; }
.status__steps li { color: var(--muted); font-size: 15px; }
.status__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.spinner { width: 42px; height: 42px; border: 3px solid var(--line-strong); border-top-color: var(--teal); border-radius: 50%; margin: 0 auto 20px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 560px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .edge { grid-template-columns: 1fr; }
  .edge__banner { flex-direction: column; align-items: flex-start; }
  .showcase__inner { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .signal-brief { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step__line { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__links { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 16px; }
  .nav.open .nav__cta { display: flex; position: absolute; top: 236px; left: 0; right: 0; padding: 0 24px 18px; background: var(--bg-2); }
  .cards { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .hero__trust { gap: 22px; flex-wrap: wrap; }
}
