:root {
  --primary: #cc00ff;
  --accent: #eb9cff;
  --accent-mid: #713e7e;
  --background: #000000;
  --background-alt: #0e0e0e;
  --surface: #141414;
  --card: #181818;
  --card-alt: #1c1c1e;
  --border: #252525;
  --border-active: #434243;
  --text: #ffffff;
  --text-secondary: #a5a5a5;
  --text-muted: #d9d9d9;
  --text-gray: #8b8b8b;
  --success: #4ade80;
  --error: #ff4b4b;
  --radius-card: 20px;
  --radius-button: 16px;
  --radius-input: 14px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(0, 0, 0, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 105px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 14px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.main-nav a:hover {
  color: var(--text);
  background: var(--card-alt);
  transform: translateY(-1px);
}

.main-nav .nav-pill {
  color: #191919;
  background: #f4f4f4;
}

.menu-button {
  display: none;
  border: 0;
  color: var(--text);
  background: var(--card-alt);
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 800;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .58fr);
  gap: 36px;
  align-items: center;
  padding: 64px 0 76px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 24px rgba(204, 0, 255, .85);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: .96;
  margin-bottom: 22px;
  font-weight: 950;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
  margin-bottom: 14px;
  font-weight: 950;
}

h3 {
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 10px;
}

p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.hero-copy p {
  font-size: 18px;
  max-width: 520px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-button);
  font-size: 15px;
  font-weight: 900;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

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

.button.primary {
  color: #191919;
  background: #f4f4f4;
}

.button.secondary {
  color: var(--text);
  background: var(--card-alt);
  border: 1px solid var(--border-active);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-row span {
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-summary {
  display: grid;
  gap: 12px;
}

.hero-summary article {
  padding: 22px;
  border-radius: var(--radius-card);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 18px 58px rgba(0, 0, 0, .28);
}

.hero-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  font-weight: 950;
}

.hero-summary span {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.section-title {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.feature-card {
  min-height: 250px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  background: var(--card-alt);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 20px;
  background: var(--card-alt);
  color: var(--accent);
  font-size: 22px;
}

.marketplace-section,
.security,
.cta {
  padding-top: 96px;
}

.marketplace-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.marketplace-strip span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  color: var(--text-muted);
  font-weight: 900;
}

.marketplace-strip img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: contain;
}

.security {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

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

.compliance-list a {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: var(--radius-card);
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .25s ease;
}

.compliance-list a:hover {
  transform: translateX(4px);
  border-color: var(--accent-mid);
}

.compliance-list span {
  color: var(--text-secondary);
  line-height: 1.5;
}

.cta {
  text-align: center;
  padding-bottom: 100px;
}

.cta h2,
.cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--border);
  color: var(--text-gray);
  font-size: 13px;
}

.site-footer img {
  width: 88px;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.site-footer a {
  color: var(--text-secondary);
  font-weight: 700;
}

.legal-main {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

.legal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 42px);
}

.legal-card h1 {
  font-size: clamp(34px, 5vw, 54px);
}

.legal-card h2 {
  font-size: 24px;
  margin-top: 34px;
}

.legal-card ul {
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 22px;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-meta {
  color: var(--text-gray);
  font-weight: 800;
  margin-bottom: 28px;
}

.contact-box {
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--card-alt);
  border: 1px solid var(--border);
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(.99);
  transition: opacity .42s ease, transform .42s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
  .hero,
  .security {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .marketplace-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
  }

  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 20px;
    background: var(--card);
    border: 1px solid var(--border);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero {
    padding-top: 42px;
  }

  .feature-grid,
  .marketplace-strip {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
