:root {
  --bg: #000000;
  --bg-soft: #080808;
  --surface: rgba(15, 15, 15, 0.6);
  --surface-strong: rgba(20, 20, 20, 0.8);
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a0a0a0;
  --accent-1: #00ff88;
  --accent-2: #0088ff;
  --accent-3: #9900ff;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1200px;
}

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  z-index: 0;
}

.page-shell {
  position: relative;
  overflow: clip;
  z-index: 1;
}

.ambient {
  position: absolute;
  inset: auto;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
  animation: float 20s infinite ease-in-out alternate;
  z-index: -1;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 10%) scale(1.1); }
  100% { transform: translate(-5%, -5%) scale(0.95); }
}

.ambient.top {
  top: -10vw;
  right: -10vw;
  background: var(--accent-1);
}

.ambient.middle {
  top: 40vh;
  left: -15vw;
  background: var(--accent-2);
  animation-delay: -5s;
}

.ambient.bottom {
  bottom: 0;
  right: 10vw;
  background: var(--accent-3);
  animation-delay: -10s;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  position: relative;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-mark:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 0 30px rgba(0, 136, 255, 0.6);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  background: var(--bg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
}

.brand-copy strong {
  display: block;
  font-family: "Clash Display", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff, #a0a0a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.button {
  color: #000;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 255, 136, 0.4);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 10px var(--accent-1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.hero {
  padding: 100px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 24px 0;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-copy p,
.page-hero p,
.section-head p,
.legal-card p,
.contact-card p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 36px 0 42px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

.metric:hover {
  background: rgba(255, 255, 255, 0.05);
}

.metric strong {
  display: block;
  font-family: "Clash Display", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-panel,
.glass-card,
.legal-card,
.contact-card,
.feature-card,
.faq-item,
.token-card,
.stats-strip {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero-panel:hover,
.glass-card:hover,
.contact-card:hover,
.feature-card:hover,
.token-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-panel {
  padding: 32px;
  border-radius: var(--radius-xl);
}

.terminal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.dots span:nth-child(1) {
  background: #ff8b8b;
}

.dots span:nth-child(2) {
  background: #ffd166;
}

.dots span:nth-child(3) {
  background: #4ef0b2;
}

.panel-label {
  color: var(--muted);
  font-size: 0.84rem;
}

.market-board {
  display: grid;
  gap: 14px;
}

.board-row,
.insight-row {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.7fr;
  gap: 12px;
  align-items: center;
}

.board-row {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.token-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.token-pulse {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btc {
  background: rgba(243, 197, 108, 0.14);
  color: var(--gold);
}

.eth {
  background: rgba(89, 225, 255, 0.12);
  color: var(--cyan);
}

.sol {
  background: rgba(78, 240, 178, 0.12);
  color: var(--emerald);
}

.bnb {
  background: rgba(243, 197, 108, 0.14);
  color: #ffd166;
}

.xrp {
  background: rgba(213, 224, 241, 0.12);
  color: #d5e0f1;
}

.value {
  font-weight: 700;
}

.trend {
  font-weight: 700;
  text-align: right;
}

.trend.positive {
  color: var(--accent-1);
}

.trend.negative {
  color: #ff3366;
}

.placeholder {
  opacity: 0.5;
  animation: placeholderPulse 1.5s infinite ease-in-out;
}

@keyframes placeholderPulse {
  0% { opacity: 0.3; }
  50% { opacity: 0.6; }
  100% { opacity: 0.3; }
}

.insight-row {
  margin-top: 16px;
}

.insight-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(5, 16, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.insight-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.insight-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 36px 0 84px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 28px;
}

.section-head h2,
.trust-copy h2,
.legal-card h2,
.contact-card h2 {
  margin: 0 0 16px;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.section-note {
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.tokens-grid,
.features-grid,
.contact-grid,
.policy-grid,
.trust-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.tokens-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.token-card {
  padding: 24px;
  border-radius: 24px;
}

.token-card h3,
.feature-card h3,
.contact-method h3,
.faq-question span {
  margin: 16px 0 8px;
  font-family: "Clash Display", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}

.token-card p,
.feature-card p,
.contact-method p,
.legal-card li,
.legal-card strong,
.legal-card span {
  color: var(--muted);
}

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 24px;
  border-radius: 24px;
}

.icon-chip {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(89, 225, 255, 0.16), rgba(78, 240, 178, 0.12));
  border: 1px solid rgba(89, 225, 255, 0.16);
}

.stats-strip {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stats-strip div {
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-strip div:last-child {
  border-right: 0;
}

.stats-strip strong {
  display: block;
  font-size: 1.14rem;
}

.stats-strip span {
  color: var(--muted);
}

.trust-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.trust-copy ul {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.trust-copy li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
}

.trust-copy li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--emerald));
}

.trust-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.trust-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-unit {
  min-height: 130px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-unit strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.trust-unit span {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-answer p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.cta-band {
  padding: 32px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(89, 225, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(89, 225, 255, 0.1), rgba(78, 240, 178, 0.08)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.cta-band h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  padding: 84px 0 36px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
}

.contact-card,
.legal-card {
  padding: 28px;
  border-radius: 30px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-method {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-method a {
  color: var(--text);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #dbe5f5;
  font-size: 0.94rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-hint,
.form-status,
.legal-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  min-height: 24px;
}

.form-status.error {
  color: var(--danger);
}

.form-status.success {
  color: var(--emerald);
}

.policy-grid {
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 108px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
}

.policy-nav strong {
  display: block;
  margin-bottom: 14px;
}

.policy-nav a {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 14px;
  transition: background 160ms ease, color 160ms ease;
}

.policy-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.legal-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.site-footer {
  padding: 18px 0 36px;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.footer-title {
  margin-bottom: 16px;
  color: #fff;
  font-family: "Clash Display", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .trust-grid,
  .contact-grid,
  .policy-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tokens-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-nav {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-meta,
  .stats-strip,
  .field-grid,
  .trust-stack,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .board-row,
  .insight-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .trend {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 20px));
  }

  .tokens-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    letter-spacing: -0.06em;
  }

  .hero-panel,
  .contact-card,
  .legal-card,
  .footer-grid,
  .cta-band {
    padding: 22px;
  }
}
