:root {
  --bg: #040405;
  --bg-soft: #0a0b0d;
  --panel: #111216;
  --panel-strong: #18191f;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f4ef;
  --muted: #b8b4ad;
  --orange: #ff7a18;
  --orange-strong: #ff5a00;
  --amber: #ffba3d;
  --teal: #35d0ba;
  --shadow: rgba(0, 0, 0, 0.4);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    linear-gradient(180deg, #050505 0%, #08090b 42%, #050505 100%);
  color: var(--text);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.02rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--orange);
  background: #120d09;
  border: 1px solid rgba(255, 122, 24, 0.5);
  border-radius: var(--radius);
}

.brand-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  color: #111 !important;
  background: linear-gradient(180deg, #ff9b42, var(--orange));
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(255, 90, 0, 0.24);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.section-shell {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(86svh - 72px);
  overflow: hidden;
  padding: 74px 0 58px;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 4, 5, 0.98) 0%, rgba(4, 4, 5, 0.9) 28%, rgba(4, 4, 5, 0.36) 58%, rgba(4, 4, 5, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 4, 5, 0.45) 0%, transparent 52%, rgba(4, 4, 5, 0.72) 100%);
}

.hero-inner {
  display: grid;
  gap: 42px;
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 730px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(53, 208, 186, 0.12);
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.1rem, 8.4vw, 8rem);
  line-height: 0.9;
  font-weight: 800;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.62);
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: #ddd7cc;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

.hero-note {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #120804;
  background: linear-gradient(180deg, #ff9b42, var(--orange-strong));
  border-color: rgba(255, 190, 120, 0.48);
  box-shadow: 0 16px 32px rgba(255, 90, 0, 0.24);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
  backdrop-filter: blur(12px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 730px;
  margin: 0;
}

.hero-stats div {
  padding: 15px;
  background: rgba(10, 10, 10, 0.62);
  border: 1px solid rgba(255, 122, 24, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 8px 0 0;
  font-weight: 800;
}

.interactive-band,
.asset-band,
.status-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
}

p {
  line-height: 1.65;
}

.section-heading p,
.security-copy p,
.faq-grid p,
.feature-card p {
  color: var(--muted);
}

.product-grid,
.product-section,
.add-coin-section,
.security-section,
.faq-section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.faq-grid article,
.method-card,
.status-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  border-top: 2px solid rgba(255, 122, 24, 0.3);
}

.feature-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  color: var(--orange);
}

.interactive-band {
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.08), transparent 42%),
    #090a0c;
}

.interactive-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
  padding: 78px 0;
}

.chain-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.chain-tab {
  min-height: 42px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
}

.chain-tab.active {
  color: #15100c;
  background: var(--orange);
  border-color: var(--orange);
}

.chain-panel {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.08), transparent 38%),
    var(--panel-strong);
  border: 1px solid rgba(255, 122, 24, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px var(--shadow);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.network-pill {
  color: #130804;
  background: var(--orange);
  border-radius: 999px;
  padding: 7px 11px;
}

.chain-panel h3 {
  margin-top: 24px;
  font-size: 1.45rem;
}

.chain-panel p {
  color: var(--muted);
}

.wallet-screen {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.screen-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 0 14px;
  background: #0c0d10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.screen-row span {
  color: var(--muted);
}

.screen-row strong {
  text-align: right;
}

.security-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.security-copy {
  position: sticky;
  top: 108px;
}

.security-list {
  display: grid;
  gap: 12px;
}

.security-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.security-list span {
  color: var(--orange);
  font-weight: 800;
}

.security-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.asset-band {
  background:
    linear-gradient(90deg, rgba(255, 122, 24, 0.07), transparent 50%),
    #0a0a0a;
}

.asset-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 66px 0;
}

.asset-layout p {
  color: var(--muted);
}

.asset-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.asset-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.asset-cloud span:nth-child(3n + 1) {
  border-color: rgba(255, 122, 24, 0.45);
}

.asset-cloud span:nth-child(3n + 2) {
  border-color: rgba(53, 208, 186, 0.35);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.method-card {
  min-height: 242px;
  padding: 24px;
  border-top: 2px solid rgba(255, 122, 24, 0.28);
}

.method-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
}

.method-card p {
  color: var(--muted);
}

.method-card.muted {
  background: #0d0d0f;
  border-style: dashed;
}

.status-band {
  background:
    linear-gradient(180deg, #0a0a0a, #060606);
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding: 70px 0;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.status-grid article {
  display: grid;
  gap: 10px;
  min-height: 112px;
  padding: 18px;
}

.status-grid strong {
  color: var(--orange);
}

.status-grid span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid article {
  padding: 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 34px 0;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  min-width: 240px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
}

.download-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px 0;
}

.download-panel {
  display: grid;
  gap: 22px;
}

.download-panel h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.95;
}

.download-panel p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #090909;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .interactive-layout,
  .security-section,
  .asset-layout,
  .status-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .security-copy {
    position: static;
  }

  .feature-grid,
  .method-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .section-shell,
  .footer-inner {
    width: min(100% - 32px, var(--max-width));
  }

  .hero {
    padding: 34px 0 32px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13.5vw, 4.4rem);
  }

  .hero-stats,
  .feature-grid,
  .method-grid,
  .status-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 78px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-grid,
  .product-section,
  .add-coin-section,
  .security-section,
  .faq-section {
    padding: 70px 0;
  }

  .chain-panel {
    padding: 20px;
  }

  .screen-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px 14px;
  }

  .screen-row strong {
    text-align: left;
  }

  .security-list article {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}
