:root {
  color-scheme: dark;
  --bg0: #070816;
  --bg1: #0c1230;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.085);
  --a: #ff7a18;
  --b: #af63ff;
  --c: #36e2ff;
  --good: #7cffa8;
  --r: 18px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(
      1200px 700px at 20% 10%,
      rgba(175, 99, 255, 0.22),
      transparent 55%
    ),
    radial-gradient(
      900px 700px at 85% 25%,
      rgba(54, 226, 255, 0.14),
      transparent 60%
    ),
    radial-gradient(
      1000px 900px at 45% 95%,
      rgba(255, 122, 24, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px 86px;
}

/* Nav */
.nav {
  position: sticky;
  top: 14px;
  z-index: 10;
}
.navInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 10px 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 6px;
  font-weight: 760;
  letter-spacing: -0.01em;
}
.logo {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.35), rgba(175, 99, 255, 0.28), rgba(54, 226, 255, 0.18));
  box-shadow: 0 0 0 7px rgba(175, 99, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo .logo-svg { width: 28px; height: 28px; display: block; }
.links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.links a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid transparent;
  transition: transform 180ms var(--ease), background 180ms var(--ease),
    border-color 180ms var(--ease), color 180ms var(--ease);
}
.links a:hover,
.links a[aria-current="page"] {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}
.btn {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 680;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease),
    background 180ms var(--ease), box-shadow 180ms var(--ease);
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(54, 226, 255, 0.25);
  background: rgba(54, 226, 255, 0.08);
}
.btn.primary {
  border-color: rgba(175, 99, 255, 0.34);
  background: linear-gradient(
    135deg,
    rgba(255, 122, 24, 0.14),
    rgba(175, 99, 255, 0.16),
    rgba(54, 226, 255, 0.12)
  );
  box-shadow: 0 18px 55px rgba(175, 99, 255, 0.14);
}

/* Hero */
header.hero {
  padding: 62px 0 20px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 980px) {
  header.hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
}
.tag {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  width: fit-content;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--good), var(--c));
  box-shadow: 0 0 0 6px rgba(54, 226, 255, 0.08);
}
h1 {
  margin: 14px 0 10px;
  font-size: clamp(2.1rem, 4.8vw, 4.1rem);
  letter-spacing: -0.03em;
  line-height: 1.03;
}
.lead {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.12rem;
  max-width: 62ch;
}
.heroCtas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card {
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card), var(--card2));
  padding: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.5);
}

/* 3D tilt surface */
.tilt {
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(
    520px 260px at 18% 10%,
    rgba(175, 99, 255, 0.18),
    transparent 62%
  );
  opacity: 0.9;
  pointer-events: none;
}
.tilt .layer {
  transform: translateZ(22px);
}
.tilt .layer2 {
  transform: translateZ(10px);
}
.art {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
}

.h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.sub {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.two {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 900px) {
  .two {
    grid-template-columns: 1fr;
  }
}

.list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
}
.ico {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(175, 99, 255, 0.22);
  background: rgba(175, 99, 255, 0.10);
  box-shadow: 0 0 0 6px rgba(175, 99, 255, 0.06);
}
.ico .ico-svg { width: 22px; height: 22px; color: rgba(255, 255, 255, 0.95); }
.two--swap .card:first-child { order: 2; }
.two--swap .card:last-child { order: 1; }
.row h3 {
  margin: 0;
  font-size: 1.03rem;
  letter-spacing: -0.01em;
}
.row p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 0.95rem;
}

.legal {
  margin-top: 14px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  padding: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

footer {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.5;
}
.footRow {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footRow a {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.footRow a:hover {
  border-color: rgba(54, 226, 255, 0.24);
}

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; padding: 16px 20px; background: rgba(12, 8, 24, 0.98); border-top: 1px solid rgba(175, 99, 255, 0.25); box-shadow: 0 -4px 24px rgba(0,0,0,0.4); backdrop-filter: blur(12px); }
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner { max-width: 1140px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: space-between; }
.cookie-banner-text { margin: 0; color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.5; flex: 1 1 280px; }
.cookie-banner-text a { color: #36e2ff; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 10px 16px; border-radius: 999px; font-weight: 600; cursor: pointer; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; font-size: 0.9rem; }
.cookie-btn-accept { background: linear-gradient(135deg, rgba(175,99,255,0.4), rgba(54,226,255,0.2)); border-color: rgba(175,99,255,0.5); }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

