:root {
  --bg: #f5f7fb;
  --paper: #ffffff;
  --ink: #100b18;
  --muted: #626674;
  --line: rgba(48, 37, 58, 0.13);
  --dark: #2f253a;
  --dark-2: #1d1525;
  --blue: #64c8ff;
  --blue-soft: #e4f6ff;
  --orange: #ff5b16;
  --yellow: #ffc833;
  --green: #25c194;
  --shadow: 0 28px 80px rgba(19, 28, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(100, 200, 255, 0.20), transparent 30%),
    radial-gradient(circle at 100% 12%, rgba(255, 200, 51, 0.16), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, #eef4f8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--dark);
  border-radius: 999px;
}

.skip:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0;
  background: rgba(245, 247, 251, 0.80);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.header-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.logo-mark {
  position: relative;
  width: 34px;
  height: 42px;
  display: inline-block;
  border-radius: 10px;
  background:
    linear-gradient(135deg, var(--dark) 0 38%, var(--blue) 38% 66%, var(--orange) 66% 100%);
  clip-path: polygon(50% 0, 96% 15%, 94% 63%, 50% 100%, 6% 63%, 4% 15%);
  box-shadow: 0 12px 24px rgba(47, 37, 58, 0.18);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px 10px;
  background: white;
  opacity: 0.86;
  clip-path: polygon(50% 0, 96% 15%, 94% 63%, 50% 100%, 6% 63%, 4% 15%);
}

.top-nav,
.lang-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}

.top-nav a,
.lang-nav a,
.root-link {
  text-decoration: none;
  border: 1px solid transparent;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 780;
}

.top-nav a:hover,
.lang-nav a:hover {
  border-color: var(--line);
}

.top-nav a[aria-current="page"],
.lang-nav a[aria-current="page"] {
  color: var(--dark);
  background: var(--blue-soft);
  border-color: rgba(100, 200, 255, 0.68);
}

.root-link {
  color: var(--dark);
  border-color: var(--line);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--dark);
  text-decoration: none;
  border-radius: 13px;
  padding: 10px 17px;
  font-weight: 900;
  white-space: nowrap;
}

.mode-pills {
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  border-radius: 13px;
  background: #e9eef4;
  color: var(--dark);
  font-size: 14px;
}

.mode-pills span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: white;
  border-radius: 10px;
}

.breadcrumbs {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  text-decoration: none;
}

.hero {
  padding: 26px 0 70px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: center;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(230, 238, 245, 0.96)),
    radial-gradient(circle at 80% 10%, rgba(255, 200, 51, 0.24), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 36px;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -80px;
  top: -110px;
  background: rgba(100, 200, 255, 0.22);
  border-radius: 999px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 13px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255, 91, 22, 0.16);
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.078em;
}

.h-highlight {
  display: inline-block;
  padding: 0 10px 6px;
  background: var(--blue);
  border-radius: 10px;
  letter-spacing: -0.066em;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #282338;
  font-size: clamp(18px, 2vw, 22px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: white;
  text-decoration: none;
  font-weight: 900;
}

.btn-primary {
  color: white;
  background: var(--dark);
  border-color: var(--dark);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.disclosure {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.device-wrap {
  position: relative;
  z-index: 2;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.device-orbit {
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border: 1px dashed rgba(47, 37, 58, 0.18);
  border-radius: 999px;
}

.reference-board {
  position: relative;
  z-index: 4;
  width: min(420px, 100%);
  border-radius: 30px;
  background:
    linear-gradient(180deg, #342743, #1b1424);
  color: white;
  padding: 20px;
  box-shadow: 0 32px 90px rgba(18, 18, 30, 0.30);
}

.board-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.board-title {
  font-weight: 950;
  letter-spacing: -0.04em;
}

.board-pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(100, 200, 255, 0.18);
  color: #b9edff;
  font-size: 12px;
  font-weight: 850;
}

.wallet-card {
  border-radius: 22px;
  padding: 18px;
  color: white;
  background:
    radial-gradient(circle at 88% 44%, rgba(255, 255, 255, 0.18), transparent 29%),
    linear-gradient(135deg, #ff6b1a, #ef3e08);
}

.wallet-card small {
  display: block;
  opacity: 0.86;
  font-weight: 760;
}

.wallet-card strong {
  display: block;
  margin-top: 7px;
  font-size: 28px;
  letter-spacing: -0.06em;
}

.check-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.check-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
}

.check-row b {
  color: #b9edff;
}

.float-token {
  position: absolute;
  z-index: 3;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  color: white;
  font-weight: 950;
  box-shadow: 0 20px 44px rgba(18, 18, 30, 0.18);
}

.token-left {
  left: 8%;
  top: 17%;
  background: linear-gradient(135deg, #64c8ff, #247cc7);
}

.token-right {
  right: 5%;
  bottom: 18%;
  background: linear-gradient(135deg, #ffc833, #b97800);
}

.token-bottom {
  left: 18%;
  bottom: 13%;
  background: linear-gradient(135deg, #ff5b16, #bd3000);
}

.section {
  padding: 66px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(32, 23, 43, 0.07);
  border-bottom: 1px solid rgba(32, 23, 43, 0.07);
}

.section-head {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.066em;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.asset-row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 18px;
  align-items: center;
  justify-items: center;
  margin-top: 34px;
}

.asset-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 19px;
  font-weight: 950;
  letter-spacing: -0.06em;
  box-shadow: 0 16px 34px rgba(20, 24, 40, 0.14);
}

.asset-icon:nth-child(1) { background: linear-gradient(135deg, #f7931a, #df6100); }
.asset-icon:nth-child(2) { background: linear-gradient(135deg, #ff6b1a, #c93808); }
.asset-icon:nth-child(3) { background: linear-gradient(135deg, #345dff, #173bb6); }
.asset-icon:nth-child(4) { background: linear-gradient(135deg, #7466ff, #3c2ad4); }
.asset-icon:nth-child(5) { background: linear-gradient(135deg, #00dda8, #6236ff); }
.asset-icon:nth-child(6) { background: linear-gradient(135deg, #26a17b, #0d7457); }
.asset-icon:nth-child(7) { background: linear-gradient(135deg, #f4b728, #ad7412); }
.asset-icon:nth-child(8) { background: linear-gradient(135deg, #c2a633, #695018); }
.asset-icon:nth-child(9) { background: linear-gradient(135deg, #14b8ff, #2551d7); }
.asset-icon:nth-child(10) { background: linear-gradient(135deg, #1f66ff, #0c2e9b); }

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

.info-card,
.intent-card,
.faq-item,
.page-link,
.cta-panel,
.safety-list li,
.keyword-line {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(35, 40, 60, 0.06);
}

.info-card,
.intent-card,
.faq-item {
  padding: 24px;
}

.info-card h3,
.intent-card h3,
.faq-item h3 {
  margin: 0 0 9px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.info-card p,
.intent-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--dark);
  font-weight: 900;
  text-decoration: none;
}

.keyword-line {
  margin-top: 24px;
  padding: 18px 20px;
  color: var(--muted);
  border-left: 5px solid var(--blue);
}

.cta-panel {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.safety-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.safety-list li {
  padding: 15px 17px;
}

.safety-list li::before {
  content: "✓";
  color: #0c98df;
  font-weight: 950;
  margin-right: 10px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.page-link {
  display: block;
  padding: 17px;
  text-decoration: none;
}

.page-link strong {
  display: block;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.page-link span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.page-link[aria-current="page"] {
  background: var(--blue-soft);
  border-color: rgba(100, 200, 255, 0.68);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.site-footer {
  padding: 40px 0 54px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 8px;
}

.small {
  font-size: 13px;
}

@media (max-width: 1100px) {
  .header-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .device-wrap {
    min-height: 430px;
  }

  .asset-row {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-3,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .hero-card {
    padding: 24px;
  }

  .device-wrap {
    min-height: 390px;
  }

  .float-token {
    display: none;
  }

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

  .page-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    letter-spacing: -0.056em;
  }

  .h-highlight {
    margin-top: 7px;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-cta {
    width: 100%;
  }
}