:root {
  --bg: #f7f8fb;
  --panel: #ffffff;
  --soft: #e9eef4;
  --soft-2: #eef6ff;
  --text: #08060d;
  --muted: #5e6271;
  --line: rgba(32, 23, 43, 0.12);
  --dark: #302538;
  --dark-2: #201827;
  --blue: #63c7ff;
  --orange: #ff5a12;
  --yellow: #ffc328;
  --radius: 28px;
  --shadow: 0 26px 70px rgba(26, 32, 44, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(99, 199, 255, 0.17), transparent 32%),
    radial-gradient(circle at 90% 22%, rgba(255, 195, 40, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 34%, #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(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.skip:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0 10px;
  backdrop-filter: blur(16px);
  background: rgba(247, 248, 251, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.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;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.logo-mark {
  width: 32px;
  height: 40px;
  position: relative;
  display: inline-block;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--dark) 0 42%, var(--blue) 42% 68%, var(--orange) 68%);
  clip-path: polygon(50% 0, 95% 14%, 95% 62%, 50% 100%, 5% 62%, 5% 14%);
  box-shadow: 0 10px 20px rgba(48, 37, 56, 0.16);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px 9px 8px 9px;
  background: white;
  clip-path: polygon(50% 0, 95% 14%, 95% 62%, 50% 100%, 5% 62%, 5% 14%);
  opacity: 0.85;
}

.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.58);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
}

.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: #dff4ff;
  border-color: rgba(99, 199, 255, 0.65);
}

.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;
  border-radius: 9px;
  padding: 10px 17px;
  color: white;
  background: var(--dark);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

.breadcrumbs a {
  text-decoration: none;
}

.hero {
  padding: 24px 0 66px;
}

.hero-panel {
  overflow: hidden;
  border-radius: 26px;
  background: #e6ebf0;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.phone-stage {
  position: relative;
  min-height: 382px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 52px;
}

.geo {
  position: absolute;
  bottom: -46px;
  width: 260px;
  height: 190px;
  opacity: 0.95;
}

.geo-left {
  left: 15%;
  background: var(--blue);
  clip-path: polygon(20% 0, 100% 0, 76% 100%, 0 72%);
}

.geo-right {
  right: 15%;
  background: var(--yellow);
  clip-path: polygon(0 0, 78% 0, 100% 72%, 24% 100%);
}

.phone {
  position: relative;
  z-index: 2;
  width: 214px;
  min-height: 392px;
  border: 9px solid #111;
  border-radius: 42px;
  background: #f6f6ff;
  box-shadow: 0 28px 65px rgba(16, 20, 28, 0.24);
  overflow: hidden;
}

.phone-main {
  width: 238px;
  min-height: 430px;
  margin: 0 -8px;
  z-index: 4;
}

.phone-side {
  transform: translateY(36px) scale(0.94);
  opacity: 0.95;
}

.phone-top {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: #333142;
  font-size: 12px;
  font-weight: 850;
}

.notch {
  width: 76px;
  height: 22px;
  background: #050505;
  border-radius: 999px;
}

.wallet-card {
  margin: 10px 16px;
  min-height: 132px;
  border-radius: 18px;
  padding: 18px;
  color: white;
  background:
    radial-gradient(circle at 86% 44%, rgba(255, 255, 255, 0.18), transparent 29%),
    linear-gradient(135deg, #ff6b1a, #f0440b);
}

.wallet-card small {
  display: block;
  opacity: 0.85;
  font-weight: 700;
}

.wallet-card strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: -0.05em;
}

.wallet-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 16px;
}

.wallet-actions span {
  height: 42px;
  border-radius: 999px;
  background: white;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 950;
}

.wallet-list {
  margin: 14px 16px;
  display: grid;
  gap: 10px;
}

.wallet-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  border-radius: 12px;
  padding: 0 12px;
  background: white;
  color: #343145;
  font-size: 13px;
  font-weight: 800;
}

.swap-box {
  margin: 16px;
  display: grid;
  gap: 12px;
}

.swap-box span {
  min-height: 76px;
  border-radius: 17px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  color: #343145;
  font-weight: 850;
}

.hero-copy {
  position: relative;
  z-index: 8;
  margin-top: -1px;
  padding: 28px 24px 32px;
  text-align: center;
  background: #e6ebf0;
}

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

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(99, 199, 255, 0.22);
}

h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

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

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

.cta-row {
  margin-top: 26px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: center;
}

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

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

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

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

.section {
  padding: 66px 0;
}

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

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

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

.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;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  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, #e06100);
}

.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,
.faq-item,
.page-link,
.cta-panel,
.safety-list li,
.keyword-line {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(35, 40, 60, 0.06);
}

.info-card {
  padding: 24px;
}

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

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

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

.cta-panel {
  padding: 28px;
  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;
}

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

.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: #dff4ff;
  border-color: rgba(99, 199, 255, 0.65);
}

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

.faq-item {
  padding: 24px;
}

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

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

.small {
  font-size: 13px;
}

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

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

  .phone-stage {
    min-height: 330px;
  }

  .phone {
    width: 178px;
    min-height: 330px;
  }

  .phone-main {
    width: 198px;
    min-height: 360px;
  }

  .geo-left {
    left: 4%;
  }

  .geo-right {
    right: 4%;
  }

  .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: 620px) {
  .hero {
    padding-top: 12px;
  }

  .phone-stage {
    min-height: 260px;
  }

  .phone-side {
    display: none;
  }

  .phone-main {
    width: 184px;
    min-height: 330px;
  }

  .geo {
    width: 170px;
    height: 130px;
  }

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

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

  h1 {
    letter-spacing: -0.055em;
  }

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

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

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