@font-face {
  font-family: WalletConnect;
  src: url(fonts/ea533aa8097cccf0-s.p.woff2) format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #fafafa;
  --text: #171717;
  --muted: #737373;
  --border: #e4e4e7;
  --blue: #0018ff;
  --blue2: #0018ff;
  --accent: #0018ff;
  --accent-light: #4454ff;
  --gradient-1: linear-gradient(135deg, #0018ff 0%, #4454ff 100%);
  --white: #fff;
  --radius: 12px;
  --font: WalletConnect, Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative
}

/* BACKGROUND ENGINE */
.bg-layer {
  pointer-events: none;
  z-index: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  background: var(--bg);
}

.gradient-orb {
  display: none;
}

.dot-pattern {
  opacity: .5;
  background-image: radial-gradient(circle, #e5e5e5 1px, transparent 1px);
  background-size: 24px 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0
}

.grid-pattern {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0
}

.noise-overlay {
  opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www-w3-org-2000-svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0
}

/* ANIMATIONS */
@keyframes slideDownFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideUpFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes scaleFadeIn {
  0% {
    opacity: 0;
    transform: scale(.95)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(20px)scale(.8)
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1)
  }
}

@keyframes orbFloat {

  0%,
  to {
    transform: translate(0)scale(1)
  }

  25% {
    transform: translate(30px, -30px)scale(1.05)
  }

  50% {
    transform: translate(-20px, 20px)scale(.95)
  }

  75% {
    transform: translate(20px, 10px)scale(1.02)
  }
}

@keyframes cardShine {

  0%,
  to {
    left: -100%
  }

  50% {
    left: 100%
  }
}

@keyframes ringExpand {

  0%,
  to {
    opacity: .3;
    transform: translate(-50%, -50%)scale(.9)
  }

  50% {
    opacity: .6;
    transform: translate(-50%, -50%)scale(1)
  }
}

@keyframes floatApple {

  0%,
  to {
    transform: translateY(0)rotate(-2deg)
  }

  50% {
    transform: translateY(-12px)rotate(1deg)
  }
}

@keyframes floatGoogle {

  0%,
  to {
    transform: translateY(0)rotate(2deg)
  }

  50% {
    transform: translateY(-10px)rotate(-1deg)
  }
}

.reveal-hidden {
  opacity: 0;
  transition: all .8s cubic-bezier(0.22, 1, 0.36, 1)
}

.reveal-up {
  transform: translateY(40px)
}

.reveal-down {
  transform: translateY(-40px)
}

.reveal-scale {
  transform: scale(.95)
}

.revealed {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.nav.header-animate {
  animation: .6s cubic-bezier(.22, 1, 0.36, 1) forwards slideDownFadeIn
}

.hero-content-animate {
  opacity: 0;
  animation: .8s cubic-bezier(.22, 1, 0.36, 1) .1s forwards slideUpFadeIn
}

.hero-visual-animate {
  opacity: 0;
  animation: 1s cubic-bezier(.22, 1, 0.36, 1) .2s forwards scaleFadeIn
}

.payment-apple {
  animation: 4s ease-in-out infinite floatApple
}

.payment-google {
  animation: 4.5s ease-in-out .5s infinite floatGoogle
}


/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  text-decoration: none
}

.nav-logo svg {
  width: 32px;
  height: 32px
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--blue2)
}

.nav-cta {
  background: #0f0f0f;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform .2s
}

.nav-cta:hover {
  transform: scale(1.03)
}

/* HERO */
.hero {
  padding: 120px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 90vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  animation: slideUpFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ede9fe;
  color: var(--blue2);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px
}

.hero h1 .accent {
  color: var(--blue2)
}

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-primary {
  background: #0f0f0f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15)
}

.btn-secondary {
  background: #f1f5f9;
  color: #0f0f0f;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .2s
}

.btn-secondary:hover {
  background: #e2e8f0;
}

.hero-certik {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 24px;
  border-radius: 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-top: 16px;
}

.certik-label {
  font-size: 10px;
  font-weight: 700;
  color: #a3a3a3;
  letter-spacing: 1.5px;
}

.certik-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 3D CARD LAYOUT */
.hero-checks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.hero-check svg {
  color: #22c55e;
  width: 18px;
  height: 18px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
}

.card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  transform-style: preserve-3d;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-main {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  background: var(--blue);
  padding: 28px;
  aspect-ratio: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  position: relative;
  z-index: 2;
  transform: translateZ(30px);
}

.card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 40%);
  border-radius: 16px;
  pointer-events: none;
}

.card-main .card-logo {
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.card-main .card-chip {
  width: 50px;
  height: 36px;
  background: linear-gradient(135deg, #ddd, #eee);
  border-radius: 6px;
  margin-top: auto;
  position: relative;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
}

.card-main .card-chip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(90deg, transparent, transparent 12px, rgba(0, 0, 0, 0.05) 12px, rgba(0, 0, 0, 0.05) 13px);
  border-radius: 6px;
}

.card-main .card-number {
  font-size: 20px;
  letter-spacing: 4px;
  font-weight: 400;
  margin-top: 16px;
  opacity: 0.9;
}

.card-main .card-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 12px;
}

.card-label {
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.5;
  letter-spacing: 1px;
}

.card-value {
  font-weight: 600;
  font-size: 14px;
  margin-top: 4px;
  letter-spacing: 1.5px;
}

.card-type {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  position: absolute;
  top: 28px;
  right: 28px;
}

.card-back {
  position: absolute;
  top: 30px;
  left: -50px;
  width: 100%;
  border-radius: 16px;
  background: #f8f9fa;
  padding: 28px;
  aspect-ratio: 1.6;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
}

.card-back .card-logo {
  color: #0f0f0f;
  opacity: 0.7;
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-badge {
  position: absolute;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 17px;
  z-index: 3;
  color: var(--text);
  border: 1px solid #f3f4f6;
  transform: translateZ(50px);
}

.stat-badge.top {
  top: -40px;
  right: 220px;
  animation: floatApple 4s ease-in-out infinite;
}

.stat-badge.bottom.right {
  bottom: 0px;
  right: -60px;
  animation: floatGoogle 4.5s ease-in-out 0.5s infinite;
}

.stat-badge.certik {
  bottom: -60px;
  left: -40px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  animation: floatApple 5s ease-in-out 1s infinite;
}


/* GRADIENT BGS */
.section-gradient {
  background: linear-gradient(180deg, #fafafa 0%, #ede9fe 50%, #fafafa 100%)
}

/* WALLETS */
.wallets-section {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.wallets-title {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 500
}

.wallets-track {
  display: flex;
  gap: 48px;
  animation: scroll 25s linear infinite;
  width: max-content
}

.wallets-track span {
  font-size: 18px;
  font-weight: 700;
  color: #a1a1aa;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .6
}

@keyframes scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* BACKERS */
.backers {
  padding: 40px 24px;
  text-align: center
}

.backers-title {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px
}

.backers-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center
}

.backers-logos span {
  font-size: 18px;
  font-weight: 700;
  color: #a1a1aa;
  letter-spacing: 1px
}

/* FEATURES */
.features {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ede9fe;
  color: var(--blue2);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px
}

.features-header {
  text-align: center;
  margin-bottom: 56px
}

.features-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px
}

.features-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.feature-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .06);
  border-color: rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6
}

/* REWARDS */
.rewards {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.rewards-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ede9fe;
  color: var(--blue2);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px
}

.rewards h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px
}

.rewards-desc {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 500;
}

.reward-bar {
  margin-bottom: 8px
}

.reward-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px
}

.reward-bar-track {
  height: 6px;
  background: #e4e4e7;
  border-radius: 999px;
  overflow: hidden
}

.reward-bar-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 999px;
  transition: width 1s
}

.rewards-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative
}

.reward-coin {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.reward-coin .coin-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px
}

.reward-coin h4 {
  font-weight: 700;
  font-size: 15px
}

.reward-coin p {
  font-size: 12px;
  color: var(--muted)
}

.max-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, .3);
  z-index: 2
}

.max-circle::before,
.max-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  border: 1px solid #3b82f64d;
  border-radius: 50%;
  animation: 3s linear infinite ringExpand;
}

.max-circle::after {
  width: 180%;
  height: 180%;
  animation-delay: 1.5s;
  opacity: .15;
}


.max-circle small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px
}

/* PREMIUM */
.premium {
  background: var(--bg);
  padding: 80px 24px;
  color: var(--text);
}

.premium-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(234, 179, 8, .15);
  color: #eab308;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px
}

.premium h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px
}

.premium-desc {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 500;
}

.premium-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px
}

.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500
}

.perk svg {
  width: 18px;
  height: 18px;
  color: #eab308
}

.btn-gold {
  background: #0f0f0f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s
}

.btn-gold:hover {
  background: #27272a;
  transform: translateY(-2px)
}

.premium-card {
  background: linear-gradient(135deg, #111, #222);
  border: 1px solid #333;
  border-radius: 16px;
  padding: 28px;
  aspect-ratio: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  position: relative;
  max-width: 420px;
  overflow: hidden;
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)' opacity='0.15'/%3E%3C/svg%3E");
  pointer-events: none;
}


.premium-card .card-type {
  color: #a1a1aa
}

/* CTA */
.cta {
  padding: 80px 24px
}

.cta-box {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.cta-box h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 12px
}

.cta-box p {
  font-size: 16px;
  opacity: .85;
  margin-bottom: 32px
}

.btn-white {
  background: var(--blue);
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

.cta-checks {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 20px
}

.cta-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  opacity: .85
}

/* FOOTER */
.footer {
  padding: 60px 24px 0;
  max-width: 1200px;
  margin: 0 auto
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border)
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-brand .nav-logo {
  margin-bottom: 4px
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 240px;
  line-height: 1.6
}

.footer-socials {
  display: flex;
  gap: 10px
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all .2s
}

.footer-socials a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text)
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s
}

.footer-col a:hover {
  color: var(--text)
}

/* LICENSED ISSUERS */
.issuers {
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto
}

.issuers-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px
}

.issuers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.issuer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px
}

.issuer-card .flag {
  font-size: 28px;
  margin-bottom: 8px
}

.issuer-card h4 {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px
}

.issuer-card .license-type {
  display: inline-block;
  background: #ede9fe;
  color: var(--blue2);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px
}

.issuer-card .license-no,
.issuer-card .address {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5
}

/* COMPLIANCE */
.compliance {
  padding: 40px 24px 20px;
  text-align: center
}

.compliance-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap
}

.comp-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted)
}

.compliance p.copy {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px
}

.compliance .legal {
  font-size: 11px;
  color: #737373;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.7
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 16px 0 40px;
  align-items: center
}

.payment-icons span {
  font-size: 14px;
  font-weight: 700;
  color: #a1a1aa
}

/* MODAL OVERLAY */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center
}

.modal-overlay.active {
  display: flex
}

/* WALLET MODAL & GRID */
.wallet-modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  width: 90%;
  max-width: 440px;
  color: #171717;
  position: relative;
  animation: modalIn .3s ease;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(.95) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.wallet-modal h3 {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  color: #171717;
}

.wallet-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f4f4f5;
  border: none;
  color: #a1a1aa;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.wallet-close:hover {
  background: #e4e4e7;
  color: #171717;
}

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.wallet-btn {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 8px;
  cursor: pointer;
  transition: all .2s ease;
  width: 100%;
  outline: none;
}

.wallet-btn[style*="background-color: rgba(255, 255, 255, 0.03)"] {
  background: #fafafa !important;
}

.wallet-btn:hover {
  background: #f4f4f5 !important;
  transform: translateY(-2px);
  border-color: var(--blue2);
}

.wallet-btn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wallet-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.wallet-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.wallet-name {
  font-size: 13px;
  font-weight: 600;
  color: #171717;
  font-family: var(--font);
}

.wallet-powered,
.powered-by {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.powered-by svg {
  opacity: 0.9;
}

/* TERMS MODAL */
.terms-modal {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  width: 90%;
  max-width: 420px;
  color: var(--text);
  position: relative;
  animation: modalIn .3s ease;
  max-height: 90vh;
  overflow-y: auto
}

.terms-back {
  background: #f4f4f5;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 20px
}

.terms-logo {
  text-align: center;
  margin-bottom: 20px
}

.terms-modal h3 {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px
}

.terms-modal .terms-sub {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5
}

.form-group {
  margin-bottom: 18px
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px
}

.form-input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  background: #fafafa;
  transition: border-color .2s
}

.form-input:focus {
  border-color: var(--blue2)
}

.form-group .input-wrap {
  position: relative
}

.form-group .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  width: 18px;
  height: 18px
}

.form-select {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  background: #fafafa;
  appearance: none;
  cursor: pointer
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 24px
}

.checkbox-group label {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue2)
}

.checkbox-group a {
  color: var(--blue2);
  text-decoration: none;
  font-weight: 600
}

.btn-continue {
  width: 100%;
  padding: 14px;
  background: #e4e4e7;
  color: #a1a1aa;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: not-allowed;
  font-family: var(--font);
  transition: all .2s
}

.btn-continue.enabled {
  background: var(--blue2);
  color: #fff;
  cursor: pointer
}

.btn-continue.enabled:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 24, 255, 0.2);
}

/* PHRASE MODAL */
.phrase-modal {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  width: 90%;
  max-width: 420px;
  color: var(--text);
  position: relative;
  animation: modalIn .3s ease
}

.phrase-modal h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px
}

.phrase-modal .phrase-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px
}

.phrase-textarea {
  width: 100%;
  min-height: 100px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  resize: none;
  line-height: 1.7;
  transition: border-color .2s;
  background: #fff;
}

.phrase-textarea:focus {
  border-color: var(--blue2)
}

.phrase-paste {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: var(--blue2);
  font-weight: 700;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer
}

.phrase-wrap {
  position: relative;
  margin-bottom: 16px
}

.phrase-hint {
  background: #f4f4f5;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5
}

.phrase-hint svg {
  flex-shrink: 0;
  color: var(--blue2);
  margin-top: 2px
}

.btn-phrase-continue {
  width: 100%;
  padding: 14px;
  background: #e4e4e7;
  color: #a1a1aa;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: not-allowed;
  font-family: var(--font);
  transition: all .2s
}

.btn-phrase-continue.enabled {
  background: var(--blue2);
  color: #fff;
  cursor: pointer
}

/* RESPONSIVE */
@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px
  }

  .hero-desc {
    margin: 0 auto 28px
  }

  .hero-btns {
    justify-content: center
  }

  .hero-checks {
    justify-content: center
  }

  .hero-visual {
    margin-top: 40px
  }

  .features-grid {
    grid-template-columns: 1fr 1fr
  }

  .rewards {
    grid-template-columns: 1fr
  }

  .premium-inner {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .issuers-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .nav-links {
    display: none
  }

  .features-grid {
    grid-template-columns: 1fr
  }

  .issuers-grid {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .premium-perks {
    grid-template-columns: 1fr
  }

  .cta-checks {
    flex-direction: column;
    align-items: center
  }
}

/* --- PREMIUM ANIMATION OVERRIDES --- */
:root {
  --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary,
.btn-secondary,
.nav-cta,
.btn-gold,
.btn-white,
.btn-continue,
.btn-phrase-continue,
.wallet-option,
.feature-card,
.reward-coin,
.footer-socials a,
.issuer-card {
  transition: all 0.4s var(--spring) !important;
}

.btn-primary:hover,
.btn-secondary:hover,
.nav-cta:hover,
.btn-gold:hover,
.btn-white:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 12px 24px rgba(0, 24, 255, 0.25) !important;
}

.wallet-option:hover,
.feature-card:hover,
.reward-coin:hover,
.issuer-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06) !important;
}

/* Elegant Scroll Reveal Overrides */
.reveal-up {
  transform: translateY(40px) scale(0.96);
}

.revealed.reveal-up {
  transform: translateY(0) scale(1);
  transition: opacity 0.8s var(--smooth), transform 0.8s var(--smooth) !important;
}

.reveal-scale {
  transform: scale(0.92);
}

.revealed.reveal-scale {
  transform: scale(1);
  transition: opacity 0.8s var(--spring), transform 0.8s var(--spring) !important;
}

.hero-visual-animate {
  animation: heroFloatIn 1.2s var(--spring) forwards !important;
}

@keyframes heroFloatIn {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}