/* DASH public website — shared styles for all pages. */
:root {
  --bg: #08080b; --panel: #101014; --line: rgba(255,255,255,0.08);
  --text: #f5f5f5; --muted: rgba(255,255,255,0.55); --faint: rgba(255,255,255,0.32);
  --accent: #FF3B00; --accent-dark: #CC2F00; --green: #27AE60; --blue: #2980B9;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 850; letter-spacing: -0.02em; line-height: 1.15; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--accent); }
.lead { color: var(--muted); font-size: 17px; max-width: 640px; margin-top: 14px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 12px; font-weight: 700; font-size: 15px; transition: all .2s; cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; box-shadow: 0 8px 30px rgba(255,59,0,.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,59,0,.4); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.03); }
.btn-ghost:hover { border-color: rgba(255,255,255,.25); }

/* Announcement banner (controlled from the Admin Console) */
#site-banner { display: none; background: linear-gradient(90deg, var(--accent-dark), var(--accent)); color: #fff; text-align: center; font-size: 13px; font-weight: 600; padding: 9px 20px; }

/* Top bar: contact + social icons */
.topbar { background: #0b0b0f; border-bottom: 1px solid var(--line); font-size: 12.5px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; }
.topbar-contact { display: flex; gap: 20px; color: var(--muted); flex-wrap: wrap; }
.topbar-contact a { display: inline-flex; gap: 7px; align-items: center; }
.topbar-contact a:hover { color: #fff; }
.topbar-contact svg { opacity: .7; }
.topbar .socials { margin: 0; gap: 4px; }
.topbar .socials a { width: 28px; height: 28px; border: none; background: none; color: var(--muted); }
.topbar .socials a:hover { color: var(--accent); transform: none; }
@media (max-width: 640px) { .topbar-contact a span.label { display: none; } }

/* Main nav */
nav.site-nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); background: rgba(8,8,11,.85); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.nav-links { display: flex; gap: 26px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; font-weight: 650; box-shadow: inset 0 -2px 0 var(--accent); padding-bottom: 3px; }
.nav-logo img { height: 34px; display: block; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.btn-nav { padding: 10px 20px; font-size: 14px; }
.nav-burger { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 40px; height: 40px; cursor: pointer; color: var(--text); align-items: center; justify-content: center; }
@media (max-width: 980px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #0b0b0f; flex-direction: column; gap: 0; padding: 10px 24px 18px; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 15px; }
  .nav-links a.active { box-shadow: none; color: var(--accent); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-burger { display: flex; }
}

/* Page hero (inner pages) */
.page-hero { padding: 76px 0 60px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: var(--accent); filter: blur(170px); opacity: .08; top: -260px; right: -120px; pointer-events: none; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.06; }

/* Home hero */
.hero { padding: 96px 0 84px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 720px; height: 720px; border-radius: 50%; background: var(--accent); filter: blur(180px); opacity: .09; top: -220px; right: -160px; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(42px, 6vw, 68px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.02; }
.hero h1 span { background: linear-gradient(90deg, var(--accent), #ff7a45, var(--accent)); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 5s linear infinite; }
.store-badges { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); background: rgba(255,255,255,.04); border-radius: 12px; padding: 10px 18px; transition: all .2s; }
.badge:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,59,0,.15); }
.badge small { display: block; font-size: 10px; color: var(--faint); line-height: 1.2; }
.badge strong { font-size: 15px; }
.avail { margin-top: 16px; font-size: 12px; color: var(--faint); display: flex; align-items: center; gap: 8px; }
.avail .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }

/* Animations */
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes shimmer { to { background-position: 200% center; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes progress { 0% { width: 14%; } 50% { width: 82%; } 100% { width: 14%; } }
.anim { opacity: 0; animation: rise .8s cubic-bezier(.22, 1, .36, 1) forwards; }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .18s; } .d3 { animation-delay: .32s; } .d4 { animation-delay: .46s; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Phone mockup */
.phone { width: 290px; margin: 0 auto; border: 1px solid rgba(255,255,255,.14); border-radius: 38px; padding: 14px; background: linear-gradient(160deg, #17171c, #0c0c10); box-shadow: 0 40px 90px rgba(0,0,0,.6); opacity: 0; animation: rise .8s cubic-bezier(.22, 1, .36, 1) .3s forwards, floaty 7s ease-in-out 1.3s infinite; }
.screen { border-radius: 26px; background: #0e0e13; padding: 20px 16px; min-height: 480px; display: flex; flex-direction: column; gap: 12px; }
.chip { background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; font-size: 12px; color: var(--muted); }
.chip b { color: #fff; display: block; font-size: 13px; margin-bottom: 2px; }
.route-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; }
.track { background: linear-gradient(135deg, rgba(255,59,0,.16), rgba(255,59,0,.05)); border: 1px solid rgba(255,59,0,.3); border-radius: 14px; padding: 14px; }
.track .bar { height: 5px; background: rgba(255,255,255,.1); border-radius: 3px; margin-top: 10px; overflow: hidden; }
.track .bar i { display: block; height: 100%; width: 68%; background: var(--accent); border-radius: 3px; animation: progress 6s ease-in-out infinite; }
.live-dot { animation: pulse 2s ease-in-out infinite; }

/* Stats strip */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0; background: rgba(255,255,255,.015); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 720px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat b { font-size: 26px; font-weight: 850; display: block; }
.stat span { font-size: 12px; color: var(--faint); text-transform: uppercase; letter-spacing: .1em; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 880px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 28px; transition: transform .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(255,59,0,.35); }
.card .num { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; background: rgba(255,59,0,.12); color: var(--accent); border: 1px solid rgba(255,59,0,.25); margin-bottom: 18px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14px; }
.card .more { display: inline-block; margin-top: 14px; color: var(--accent); font-size: 13px; font-weight: 700; }
.icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: rgba(255,255,255,.05); border: 1px solid var(--line); font-size: 20px; }

/* Split sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.check-list { list-style: none; margin-top: 24px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; color: var(--muted); font-size: 15px; }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 800; }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 34px; }
.earn-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.earn-row:last-child { border-bottom: none; }
.earn-row b.green { color: var(--green); }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 880px) { .news-grid { grid-template-columns: 1fr; } }
.news-card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, border-color .25s ease; }
.news-card:hover { transform: translateY(-4px); border-color: rgba(255,59,0,.35); }
.news-cover { height: 160px; background: linear-gradient(135deg, rgba(255,59,0,.25), rgba(255,59,0,.05)); background-size: cover; background-position: center; }
.news-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-meta { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--faint); }
.news-tag { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.news-card h3 { font-size: 17px; line-height: 1.35; }
.news-card p { color: var(--muted); font-size: 13.5px; flex: 1; }
.news-more { color: var(--accent); font-size: 13px; font-weight: 700; }
.news-empty { text-align: center; color: var(--faint); padding: 60px 0; }

/* FAQ */
details { border: 1px solid var(--line); border-radius: 14px; background: var(--panel); margin-bottom: 12px; }
summary { cursor: pointer; padding: 18px 22px; font-weight: 650; font-size: 15px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
summary::after { content: "+"; color: var(--accent); font-size: 20px; font-weight: 400; }
details[open] summary::after { content: "–"; }
details p { padding: 0 22px 18px; color: var(--muted); font-size: 14px; }

/* Investors */
.invest { background: linear-gradient(160deg, rgba(255,59,0,.07), transparent 55%); }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
@media (max-width: 720px) { .metrics { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { text-align: center; padding: 80px 0; border-top: 1px solid var(--line); background: linear-gradient(160deg, rgba(255,59,0,.1), transparent 60%); }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }

/* Contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 28px; text-align: center; transition: transform .25s ease, border-color .25s ease; }
.contact-card:hover { transform: translateY(-4px); border-color: rgba(255,59,0,.35); }
.contact-card .icon { margin: 0 auto 16px; }
.contact-card h3 { font-size: 16px; margin-bottom: 6px; }
.contact-card a.big { color: var(--accent); font-weight: 700; font-size: 15px; }
.contact-card p { color: var(--faint); font-size: 13px; margin-top: 6px; }

/* Legal / article pages */
.article-wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.article { padding: 64px 0 96px; line-height: 1.75; }
.article h1 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.08; }
.article .updated { color: var(--faint); font-size: 13px; margin-top: 14px; }
.article h2 { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; margin: 44px 0 12px; }
.article p, .article li { color: var(--muted); font-size: 15px; }
.article p { margin-bottom: 14px; }
.article ul { list-style: none; margin: 0 0 14px; display: grid; gap: 10px; }
.article ul li { display: flex; gap: 12px; }
.article ul li::before { content: "•"; color: var(--accent); font-weight: 800; }
.article strong { color: #fff; }
.article .callout { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 20px 24px; margin: 28px 0; }
.article .callout p { margin: 0; font-size: 14px; }
.article a.inline { color: var(--accent); }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 56px 0 40px; font-size: 13px; color: var(--faint); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid h4 { color: #fff; font-size: 13px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em; }
.foot-grid a { display: block; color: var(--faint); margin-bottom: 9px; }
.foot-grid a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .2s; }
.socials a:hover { color: #fff; border-color: var(--accent); transform: translateY(-2px); }
.legal { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 24px; }
.credit a { color: var(--muted); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.2); }
.credit a:hover { color: #fff; border-color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .anim, .reveal, .phone { opacity: 1 !important; transform: none !important; }
}
