/* Memehound — premium dark theme */
:root {
  --bg: #06080c;
  --bg-2: #0b0f15;
  --surface: rgba(18, 25, 35, 0.72);
  --surface-solid: #111822;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --text: #eaf0f6;
  --muted: #8b99aa;
  --faint: #5d6b7c;
  --mint: #3dff9a;
  --cyan: #22d3ee;
  --amber: #ffb547;
  --red: #ff5d6c;
  --grad: linear-gradient(120deg, #3dff9a 0%, #22d3ee 100%);
  --grad-warm: linear-gradient(120deg, #ffb547 0%, #ff7a59 100%);
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(900px 520px at 85% -8%, rgba(61, 255, 154, 0.10), transparent 60%),
    radial-gradient(760px 480px at 5% 12%, rgba(34, 211, 238, 0.07), transparent 60%),
    radial-gradient(900px 600px at 50% 110%, rgba(255, 181, 71, 0.05), transparent 60%),
    var(--bg);
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  z-index: 0;
}
body > * { position: relative; z-index: 1; }
a { color: var(--mint); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; margin: 0 0 0.5em; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.5rem, 5.2vw, 4.3rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }
.mono { font-family: var(--font-mono); font-size: 0.88em; }
.ok { color: var(--mint); }
.bad { color: var(--red); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.wrap { width: min(1180px, 100% - 32px); margin: 0 auto; }
section { padding: 96px 0; }
.section-head { max-width: 700px; margin-bottom: 44px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mint); margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--mint); }

/* ticker */
.ticker { border-bottom: 1px solid var(--line); background: rgba(6, 8, 12, 0.85); overflow: hidden; white-space: nowrap; font-family: var(--font-mono);
  font-size: 0.78rem; color: var(--muted); height: 34px; display: flex; align-items: center; }
.ticker-track { display: inline-flex; gap: 42px; padding-left: 42px; animation: ticker 60s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker b { color: var(--text); font-weight: 600; }
.ticker .up { color: var(--mint); }
.ticker .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 10px var(--mint); margin-right: 8px; vertical-align: middle; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* nav */
.nav { position: sticky; top: 0; z-index: 60; backdrop-filter: saturate(160%) blur(18px); background: rgba(6, 8, 12, 0.66); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--text); font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; }
.brand:hover { text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 11px; box-shadow: 0 0 0 1px var(--line-2), 0 8px 24px rgba(61, 255, 154, 0.18); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 0.94rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-links a.btn, .nav-links a.btn:hover { color: #03130a; }
.nav-links a.btn-ghost, .nav-links a.btn-ghost:hover { color: var(--text); }
@media (max-width: 860px) { .nav-links .hide-sm { display: none; } }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 22px; border-radius: 14px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.96rem; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  font-family: var(--font-body); color: var(--text); background: none; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary { background: var(--grad); color: #03130a; box-shadow: 0 10px 30px rgba(61, 255, 154, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
.btn-primary:hover { box-shadow: 0 14px 40px rgba(61, 255, 154, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
.btn-ghost { border-color: var(--line-2); background: rgba(255, 255, 255, 0.02); }
.btn-ghost:hover { border-color: rgba(61, 255, 154, 0.5); background: rgba(61, 255, 154, 0.05); }
.btn-amber { background: var(--grad-warm); color: #1a0f00; box-shadow: 0 10px 30px rgba(255, 181, 71, 0.2); }
.btn-sm { padding: 9px 15px; font-size: 0.86rem; border-radius: 11px; }
.btn-block { width: 100%; }

/* glass card */
.glass { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.card { padding: 28px; }
.card p { color: var(--muted); margin: 0; }
.gborder { position: relative; }
.gborder::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(61, 255, 154, 0.55), rgba(34, 211, 238, 0.15) 40%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }

/* pills & chips */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 3px 11px; border-radius: 999px; font-size: 0.76rem; font-weight: 600; letter-spacing: .01em; }
.pill.mint { background: rgba(61, 255, 154, 0.12); color: var(--mint); }
.pill.amber { background: rgba(255, 181, 71, 0.14); color: var(--amber); }
.pill.cyan { background: rgba(34, 211, 238, 0.12); color: var(--cyan); }
.pill.grey { background: rgba(139, 153, 170, 0.12); color: var(--muted); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 0 rgba(61, 255, 154, .6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(61, 255, 154, .55); } 70% { box-shadow: 0 0 0 9px rgba(61, 255, 154, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 255, 154, 0); } }

/* hero */
.hero { padding: 72px 0 56px; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 980px) { .hero .wrap { grid-template-columns: 1fr; } }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 10px; border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03); font-size: 0.84rem; color: var(--muted); margin-bottom: 26px; }
.hero-badge b { color: var(--text); font-weight: 600; }
.hero p.lead { font-size: 1.2rem; color: var(--muted); max-width: 560px; margin: 22px 0 0; }
.hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; font-size: 0.86rem; color: var(--faint); }
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust span::before { content: ""; width: 14px; height: 7px; border-left: 2px solid var(--mint); border-bottom: 2px solid var(--mint); transform: rotate(-45deg) translateY(-3px); }

.radar-wrap { position: relative; }
.radar { position: relative; width: 100%; max-width: 520px; aspect-ratio: 1; margin: 0 auto; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(61, 255, 154, 0.06), rgba(6, 8, 12, 0.2) 70%), var(--bg-2);
  border: 1px solid var(--line-2); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.015), 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 0 90px rgba(0, 0, 0, 0.7); overflow: hidden; }
.radar canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.radar .core { position: absolute; left: 50%; top: 50%; width: 30%; transform: translate(-50%, -50%); border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-2), 0 0 60px rgba(61, 255, 154, 0.35); z-index: 2; }
.float-alert { position: absolute; left: -6%; bottom: 6%; width: min(330px, 78%); padding: 16px 18px; z-index: 3; font-size: 0.86rem; }
.float-alert .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.float-alert .name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.float-alert .score { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; }
@media (max-width: 980px) { .float-alert { left: 2%; } }

/* stats */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(11, 15, 21, 0.6); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .stats .wrap { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 28px 22px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat b { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; }
.stat span { color: var(--muted); font-size: 0.86rem; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 30px; }
.step .num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--mint); letter-spacing: .12em; margin-bottom: 18px; }
.step h3 { font-size: 1.35rem; }
.step p { color: var(--muted); }
.step .demo { margin-top: 22px; padding: 14px 16px; border-radius: 14px; background: rgba(6, 8, 12, 0.6); border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 0.78rem; color: #b9c7d6; line-height: 1.7; }
.step .demo .hl { color: var(--mint); }
.step .demo .am { color: var(--amber); }

/* calls grid */
.calls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .calls { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .calls { grid-template-columns: 1fr; } }
.call-card { padding: 22px; display: flex; flex-direction: column; gap: 12px; transition: transform .2s ease, border-color .2s ease; }
.call-card:hover { transform: translateY(-3px); border-color: rgba(61, 255, 154, 0.3); }
.call-card .row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.call-card .title { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; line-height: 1.2; }
.call-card .ticker-sym { color: var(--muted); font-weight: 500; }
.call-card .story { color: #c3cfdc; font-size: 0.92rem; }
.call-card .meta { color: var(--faint); font-size: 0.8rem; font-family: var(--font-mono); }
.ring { --p: 90; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: conic-gradient(var(--mint) calc(var(--p) * 1%), rgba(255, 255, 255, 0.07) 0); }
.ring span { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-solid);
  font-family: var(--font-head); font-weight: 700; font-size: 0.98rem; }
.coin-line { font-size: 0.86rem; padding-top: 10px; border-top: 1px dashed var(--line-2); }

/* pricing */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 1080px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } }
.plan { padding: 28px 24px; display: flex; flex-direction: column; }
.plan.featured { background: linear-gradient(180deg, rgba(61, 255, 154, 0.08), rgba(18, 25, 35, 0.75) 45%); }
.plan .tier { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.plan .tier h3 { margin: 0; font-size: 1.3rem; }
.plan .price { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; letter-spacing: -0.03em; }
.plan .price small { font-size: 0.95rem; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.plan .sol { color: var(--faint); font-size: 0.82rem; font-family: var(--font-mono); margin-bottom: 18px; min-height: 1.3em; }
.plan .desc { color: var(--muted); font-size: 0.92rem; min-height: 3em; }
.checks { list-style: none; padding: 0; margin: 18px 0 26px; flex: 1; }
.checks li { position: relative; padding-left: 26px; margin-bottom: 11px; font-size: 0.92rem; color: #d3dde8; }
.checks li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 12px; height: 6px; border-left: 2px solid var(--mint); border-bottom: 2px solid var(--mint); transform: rotate(-45deg); }
.checks li.no { color: var(--faint); }
.checks li.no::before { border-color: var(--faint); width: 10px; height: 0; border-left: none; transform: none; top: 12px; }

.compare { margin-top: 40px; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(11, 15, 21, 0.7); }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--faint); font-weight: 600; font-size: 0.74rem; text-transform: uppercase; letter-spacing: .1em; background: rgba(18, 25, 35, 0.7); white-space: nowrap; }
tr:last-child td { border-bottom: none; }
td.c, th.c { text-align: center; }
.yes { color: var(--mint); font-weight: 700; }
.nope { color: var(--faint); }
.record td { white-space: nowrap; }
.record td.story { white-space: normal; min-width: 280px; }
.empty { padding: 40px; text-align: center; color: var(--muted); }

/* token */
.token { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 44px; }
@media (max-width: 900px) { .token { grid-template-columns: 1fr; padding: 30px; } }
.token .big { font-family: var(--font-head); font-size: clamp(3rem, 8vw, 5.6rem); font-weight: 700; line-height: 1; }

/* faq */
details { border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; margin-bottom: 12px; background: rgba(11, 15, 21, 0.6); }
summary { cursor: pointer; font-weight: 600; list-style: none; font-size: 1.02rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--mint); font-weight: 700; font-size: 1.2rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 12px 0 0; }

/* cta band */
.cta-band { padding: 60px 48px; text-align: center; background: radial-gradient(600px 240px at 50% 0%, rgba(61, 255, 154, 0.14), transparent 70%), var(--surface); }
.cta-band h2 { margin-bottom: 12px; }

footer { border-top: 1px solid var(--line); padding: 40px 0 56px; color: var(--faint); font-size: 0.88rem; }
footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
footer a { color: var(--muted); }
footer .links { display: flex; gap: 20px; flex-wrap: wrap; }

/* modal */
.modal { position: fixed; inset: 0; background: rgba(3, 5, 8, 0.7); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; z-index: 100; padding: 16px; }
.modal.open { display: flex; }
.modal .box { width: min(440px, 100%); padding: 28px; }
label { display: block; font-size: 0.84rem; color: var(--muted); margin-bottom: 7px; }
input[type="text"] { width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(6, 8, 12, 0.8); color: var(--text); font-family: var(--font-body); font-size: 0.95rem; }
input:focus { outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px rgba(61, 255, 154, 0.15); }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); padding: 13px 20px; border-radius: 14px; background: var(--surface-solid);
  border: 1px solid var(--line-2); box-shadow: var(--shadow); font-size: 0.92rem; z-index: 120; display: none; }

/* documents */
.doc { max-width: 780px; padding: 64px 0 80px; }
.doc h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.doc h2 { font-size: 1.35rem; margin-top: 38px; }
.doc p { color: #c9d4e0; }

/* app */
.app-shell { display: grid; grid-template-columns: 360px 1fr; gap: 24px; padding: 32px 0 72px; }
@media (max-width: 1000px) { .app-shell { grid-template-columns: 1fr; } }
.stack > * + * { margin-top: 18px; }
.kv { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line-2); font-size: 0.93rem; }
.kv:last-of-type { border-bottom: none; }
.kv span:first-child { color: var(--muted); }
.plan-badge { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: .12em; text-transform: uppercase; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 20px; }
.chip { padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.02); color: var(--muted); font-size: 0.84rem; cursor: pointer; font-family: var(--font-body); }
.chip.active { color: #03130a; background: var(--grad); border-color: transparent; font-weight: 600; }
.feed { display: flex; flex-direction: column; gap: 12px; }
.feed .call-card { box-shadow: none; }
.upgrade-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px dashed var(--line-2); }
.upgrade-row:last-child { border-bottom: none; }
.upgrade-row b { font-family: var(--font-head); }

@media (prefers-reduced-motion: reduce) {
  .ticker-track, .live-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== tier themes: each plan has its own look, on the pricing cards, the showcase and the app ===== */
[data-tier="free"]   { --accent: #aab4c0; --accent-2: #dfe5ec; --accent-glow: rgba(170, 180, 192, 0.16); --accent-ink: #0b0f15; }
[data-tier="scout"]  { --accent: #3dff9a; --accent-2: #22d3ee; --accent-glow: rgba(61, 255, 154, 0.25); --accent-ink: #03130a; }
[data-tier="hunter"] { --accent: #ff9f1c; --accent-2: #ff5d3a; --accent-glow: rgba(255, 159, 28, 0.28); --accent-ink: #1a0b00; }
[data-tier="alpha"]  { --accent: #f5c451; --accent-2: #b794ff; --accent-glow: rgba(245, 196, 81, 0.30); --accent-ink: #120c00; }
.t-accent { color: var(--accent); }
.t-grad { background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.t-btn { background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: var(--accent-ink); box-shadow: 0 10px 30px var(--accent-glow); }
.t-btn:hover { box-shadow: 0 14px 40px var(--accent-glow); }

/* FREE: calm, flat, monochrome */
.plan[data-tier="free"] { background: rgba(14, 19, 26, 0.6); box-shadow: none; }
.plan[data-tier="free"] .price { color: #dfe5ec; }
.plan[data-tier="free"] .checks li::before { border-color: #aab4c0; }

/* SCOUT: the brand, glowing radar green */
.plan[data-tier="scout"] { background: linear-gradient(180deg, rgba(61, 255, 154, 0.10), rgba(18, 25, 35, 0.8) 50%); border-color: rgba(61, 255, 154, 0.35);
  box-shadow: 0 0 0 1px rgba(61, 255, 154, 0.12), 0 24px 70px rgba(61, 255, 154, 0.12); }
.plan[data-tier="scout"] .price { background: linear-gradient(120deg, #3dff9a, #22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* HUNTER: tactical, carbon, sharp corners, HUD brackets */
.hud { position: relative; }
.hud::before, .hud::after { content: ""; position: absolute; width: 18px; height: 18px; border-color: var(--accent); border-style: solid; pointer-events: none; }
.hud::before { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.hud::after { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }
.carbon { background-color: #0d0a07; background-image: repeating-linear-gradient(135deg, rgba(255, 159, 28, 0.045) 0 2px, transparent 2px 9px),
  linear-gradient(180deg, rgba(255, 159, 28, 0.10), rgba(10, 8, 6, 0.95) 55%); }
.plan[data-tier="hunter"] { border-radius: 8px; border-color: rgba(255, 159, 28, 0.35); }
.plan[data-tier="hunter"] .tier h3 { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.18em; font-size: 1.05rem; color: var(--accent); }
.plan[data-tier="hunter"] .price { color: #ffcf8a; font-family: var(--font-mono); letter-spacing: -0.04em; }
.plan[data-tier="hunter"] .checks li::before { border-color: var(--accent); }
.plan[data-tier="hunter"] .btn { border-radius: 6px; }

/* ALPHA: black and gold, holographic border, aurora, serif. The most different one. */
.serif { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.holo { position: relative; background: radial-gradient(420px 220px at 20% 0%, rgba(183, 148, 255, 0.18), transparent 70%),
  radial-gradient(420px 260px at 90% 100%, rgba(245, 196, 81, 0.16), transparent 70%), #07060a; border-color: transparent !important; overflow: hidden; }
.holo::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: conic-gradient(from var(--ang, 0deg), #f5c451, #ff8fd1, #b794ff, #5ee7ff, #f5c451);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: spin-ang 6s linear infinite; pointer-events: none; }
.holo::after { content: ""; position: absolute; inset: -40%; background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.07) 50%, transparent 60%);
  animation: shimmer 5s ease-in-out infinite; pointer-events: none; }
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes spin-ang { to { --ang: 360deg; } }
@keyframes shimmer { 0%, 100% { transform: translateX(-30%); } 50% { transform: translateX(30%); } }
.plan[data-tier="alpha"] { border-radius: 26px; }
.plan[data-tier="alpha"] > * { position: relative; z-index: 1; }
.plan[data-tier="alpha"] .tier h3 { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: 1.9rem; letter-spacing: 0;
  background: linear-gradient(120deg, #f5c451, #ffe7a8 40%, #b794ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan[data-tier="alpha"] .price { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: 3.2rem;
  background: linear-gradient(120deg, #f5c451, #fff1c7 45%, #b794ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan[data-tier="alpha"] .checks li::before { border-color: #f5c451; }
.plan[data-tier="alpha"] .btn { border-radius: 999px; }

.soon { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--line-2); color: var(--muted); }
.now { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
  background: rgba(61, 255, 154, 0.14); color: var(--mint); }

/* showcase: one mock dashboard, re-themed per tier */
.tabs { display: inline-flex; gap: 6px; padding: 6px; border-radius: 16px; border: 1px solid var(--line-2); background: rgba(11, 15, 21, 0.7); margin-bottom: 26px; flex-wrap: wrap; }
.tab { padding: 10px 18px; border-radius: 11px; border: none; background: none; color: var(--muted); font-weight: 600; cursor: pointer; font-family: var(--font-body); font-size: 0.92rem; }
.tab.active { color: var(--accent-ink); background: linear-gradient(120deg, var(--accent), var(--accent-2)); }
.mock { border-radius: 22px; border: 1px solid var(--line-2); overflow: hidden; transition: background .4s ease; }
.mock-bar { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.mock-body { display: grid; grid-template-columns: 1fr 260px; gap: 18px; padding: 22px; }
@media (max-width: 820px) { .mock-body { grid-template-columns: 1fr; } }
.mock-alert { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 14px 16px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); margin-bottom: 10px; }
.mock-alert .sc { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700;
  background: var(--accent-glow); color: var(--accent); }
.mock-alert .nm { font-weight: 700; }
.mock-alert .sub { color: var(--muted); font-size: 0.82rem; }
.mock-side { border: 1px solid var(--line); border-radius: 14px; padding: 16px; background: rgba(255, 255, 255, 0.02); }
.mock-side .k { color: var(--faint); font-size: 0.78rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; }
.mock-side .v { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.mock[data-tier="free"] { background: #0c1016; }
.mock[data-tier="free"] .mock-alert.locked { filter: blur(3px); opacity: .6; }
.mock[data-tier="scout"] { background: linear-gradient(180deg, rgba(61, 255, 154, 0.06), #0b0f15 40%); }
.mock[data-tier="hunter"] { border-radius: 8px; }
.mock[data-tier="hunter"] .mock-alert { border-radius: 6px; border-color: rgba(255, 159, 28, 0.22); }
.mock[data-tier="hunter"] .mock-alert .sc { border-radius: 4px; font-family: var(--font-mono); }
.mock[data-tier="alpha"] .mock-alert { border-radius: 18px; border-color: rgba(245, 196, 81, 0.2); background: rgba(245, 196, 81, 0.03); }
.mock[data-tier="alpha"] .mock-alert .sc { border-radius: 50%; background: radial-gradient(circle, rgba(245, 196, 81, 0.35), rgba(183, 148, 255, 0.2)); color: #ffe7a8; }
.mock[data-tier="alpha"] .nm { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: 1.2rem; }
.flag { font-family: var(--font-mono); font-size: 0.72rem; padding: 3px 8px; border-radius: 6px; }
.flag.ok { background: rgba(61, 255, 154, 0.12); color: var(--mint); }
.flag.warn { background: rgba(255, 93, 108, 0.14); color: var(--red); }
.consensus { display: flex; gap: 6px; }
.consensus span { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 0.66rem; font-weight: 700; font-family: var(--font-mono);
  background: rgba(245, 196, 81, 0.16); color: #ffe7a8; border: 1px solid rgba(245, 196, 81, 0.35); }

/* app themes */
body[data-tier="free"] .app-card { box-shadow: none; }
body[data-tier="hunter"]::before { background-image: repeating-linear-gradient(135deg, rgba(255, 159, 28, 0.035) 0 2px, transparent 2px 10px); mask-image: none; }
body[data-tier="hunter"] .app-card { border-radius: 8px; border-color: rgba(255, 159, 28, 0.22); }
body[data-tier="hunter"] .brand img { box-shadow: 0 0 0 1px rgba(255, 159, 28, 0.6), 0 8px 24px rgba(255, 159, 28, 0.25); }
body[data-tier="alpha"] { background: radial-gradient(900px 600px at 80% -10%, rgba(183, 148, 255, 0.16), transparent 60%),
  radial-gradient(800px 500px at 0% 30%, rgba(245, 196, 81, 0.10), transparent 60%), #050409; }
body[data-tier="alpha"] .app-card { border-radius: 24px; border-color: rgba(245, 196, 81, 0.18); }
body[data-tier="alpha"] h3 { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: 1.5rem; }

/* ===== app: every tier really looks different ===== */
body[data-tier] .ring { background: conic-gradient(var(--accent) calc(var(--p) * 1%), rgba(255, 255, 255, 0.07) 0); }
body[data-tier] .chip.active { background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: var(--accent-ink); }
body[data-tier] .pill.mint { background: var(--accent-glow); color: var(--accent); }
.tier-hero { margin-top: 22px; padding: 26px 28px; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.tier-hero .big { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; }
.tier-hero .stats-row { display: flex; gap: 28px; flex-wrap: wrap; }
.tier-hero .stats-row div b { display: block; font-family: var(--font-head); font-size: 1.5rem; }
.tier-hero .stats-row div span { color: var(--muted); font-size: 0.8rem; }

/* FREE: grey, flat, an upgrade strip on top */
body[data-tier="free"] .call-card { background: rgba(14, 19, 26, 0.55); box-shadow: none; }
body[data-tier="free"] .ring { filter: grayscale(1); opacity: .8; }
body[data-tier="free"] .tier-hero { background: rgba(14, 19, 26, 0.7); border: 1px dashed var(--line-2); border-radius: 18px; }

/* SCOUT: the brand radar green */
body[data-tier="scout"] .tier-hero { background: linear-gradient(120deg, rgba(61, 255, 154, 0.12), rgba(34, 211, 238, 0.06)); border: 1px solid rgba(61, 255, 154, 0.25); border-radius: 20px; }

/* HUNTER: tactical HUD, carbon, sharp corners, mono type */
body[data-tier="hunter"] .glass { border-radius: 8px; }
body[data-tier="hunter"] h3 { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .16em; font-size: 0.95rem; color: var(--accent); font-weight: 600; }
body[data-tier="hunter"] .call-card { border-radius: 6px; border-color: rgba(255, 159, 28, 0.18); border-left: 3px solid var(--accent);
  background: repeating-linear-gradient(135deg, rgba(255, 159, 28, 0.035) 0 2px, transparent 2px 9px), #0e0b08; }
body[data-tier="hunter"] .call-card .title { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .05em; font-size: 0.98rem; }
body[data-tier="hunter"] .ring { border-radius: 6px; }
body[data-tier="hunter"] .ring span { border-radius: 4px; font-family: var(--font-mono); background: #0e0b08; }
body[data-tier="hunter"] .chip { border-radius: 4px; font-family: var(--font-mono); text-transform: uppercase; font-size: 0.74rem; letter-spacing: .08em; }
body[data-tier="hunter"] .btn { border-radius: 6px; }
body[data-tier="hunter"] .tier-hero { background: linear-gradient(90deg, rgba(255, 159, 28, 0.14), rgba(14, 11, 8, 0.9)), #0e0b08; border: 1px solid rgba(255, 159, 28, 0.35);
  border-radius: 6px; font-family: var(--font-mono); }
body[data-tier="hunter"] .tier-hero .big { font-family: var(--font-mono); letter-spacing: .2em; font-size: 1.1rem; color: var(--accent); }
body[data-tier="hunter"] .tier-hero .stats-row div b { font-family: var(--font-mono); color: #ffcf8a; }

/* ALPHA: black gold, aurora, serif, big soft cards: the most different one */
body[data-tier="alpha"]::after { content: ""; position: fixed; inset: -20%; pointer-events: none; z-index: 0;
  background: conic-gradient(from 0deg at 70% 20%, rgba(183, 148, 255, 0.10), rgba(245, 196, 81, 0.08), rgba(94, 231, 255, 0.06), rgba(183, 148, 255, 0.10));
  filter: blur(80px); animation: aurora 18s linear infinite; }
@keyframes aurora { to { transform: rotate(360deg); } }
body[data-tier="alpha"] .glass { border-radius: 26px; border-color: rgba(245, 196, 81, 0.16); background: rgba(10, 8, 14, 0.72); }
body[data-tier="alpha"] .call-card { border-radius: 26px; padding: 26px;
  background: radial-gradient(320px 140px at 0% 0%, rgba(183, 148, 255, 0.14), transparent 70%), radial-gradient(320px 160px at 100% 100%, rgba(245, 196, 81, 0.12), transparent 70%), #08070c; }
body[data-tier="alpha"] .call-card .title { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: 1.7rem; letter-spacing: 0; }
body[data-tier="alpha"] .call-card .story { font-size: 1rem; color: #e6dcc6; }
body[data-tier="alpha"] .ring { background: conic-gradient(#f5c451 calc(var(--p) * 1%), rgba(183, 148, 255, 0.25) 0); }
body[data-tier="alpha"] .ring span { color: #ffe7a8; font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: 1.15rem; }
body[data-tier="alpha"] .chip { border-color: rgba(245, 196, 81, 0.25); }
body[data-tier="alpha"] .tier-hero { position: relative; overflow: hidden; border-radius: 28px; padding: 36px 34px;
  background: radial-gradient(500px 220px at 15% 0%, rgba(183, 148, 255, 0.22), transparent 70%), radial-gradient(500px 240px at 95% 100%, rgba(245, 196, 81, 0.2), transparent 70%), #07060a; }
body[data-tier="alpha"] .tier-hero::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: conic-gradient(from var(--ang, 0deg), #f5c451, #ff8fd1, #b794ff, #5ee7ff, #f5c451);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: spin-ang 6s linear infinite; pointer-events: none; }
body[data-tier="alpha"] .tier-hero .big { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: 3rem;
  background: linear-gradient(120deg, #f5c451, #fff1c7 45%, #b794ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
body[data-tier="alpha"] .tier-hero .stats-row div b { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: 2rem; color: #ffe7a8; }
@media (prefers-reduced-motion: reduce) { body[data-tier="alpha"]::after { animation: none; } }
