@font-face {
  font-family: 'WalletConnect';
  src: url('../fonts/ea533aa8097cccf0-s.p.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #fafafa;
  --foreground: #09090b;
  --card: #ffffff;
  --card-foreground: #09090b;
  --popover: #ffffff;
  --popover-foreground: #09090b;
  --primary: #6366f1;
  --primary-foreground: #ffffff;
  --secondary: #f4f4f5;
  --secondary-foreground: #09090b;
  --muted: #f4f4f5;
  --muted-foreground: #71717a;
  --accent: #6366f1;
  --accent-foreground: #ffffff;
  --destructive: #ef4444;
  --border: #e4e4e7;
  --input: #e4e4e7;
  --ring: #6366f1;
  --radius: 0.625rem;

  /* TrustCardVip Design Tokens */
  --bg-primary: #fafafa;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f4f4f5;
  --text-primary: #09090b;
  --text-secondary: #71717a;
  --text-muted: #a1a1aa;
  --tc-accent: #6366f1;
  --tc-accent-light: #818cf8;
  --tc-accent-dark: #4f46e5;
  --tc-border: #e4e4e7;
  --tc-border-light: #f4f4f5;
}

/* Landing page theme variables */
.landing {
  --theme-primary: #6366f1;
  --theme-primary-light: #818cf8;
  --theme-primary-dark: #4f46e5;
  --theme-gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  --theme-gradient-card: linear-gradient(135deg, #0ea5e9, #6366f1);
  --theme-orb-1: #6366f1;
  --theme-orb-2: #8b5cf6;
  --theme-orb-3: #0ea5e9;
}

html, body {
  background: #fafafa;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  height: -webkit-fill-available;
}

body {
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: -webkit-fill-available;
  font-family: 'WalletConnect', Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== ANIMATIONS ===== */
@keyframes slideDownFadeIn {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUpFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideLeftFadeIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideRightFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes shimmer {
  0% { background-position: -200%; }
  100% { background-position: 200%; }
}
@keyframes cardShine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}
@keyframes metalShine {
  0%, 100% { left: -150%; }
  50% { left: 150%; }
}
@keyframes diagonalShine {
  0%, 100% { transform: translate(-30%, -30%) rotate(45deg); }
  50% { transform: translate(30%, 30%) rotate(45deg); }
}
@keyframes floatApple {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes floatGoogle {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
@keyframes ringExpand {
  0%, 100% { transform: scale(0.9); opacity: 0.3; }
  50% { transform: scale(1); opacity: 0.6; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Animation classes */
.header-animate {
  animation: slideDownFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content-animate {
  animation: slideUpFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero-visual-animate {
  animation: scaleFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.stat-card-animate-left {
  animation: slideLeftFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
.stat-card-animate-right {
  animation: slideRightFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .header-animate,
  .hero-content-animate,
  .hero-visual-animate,
  .stat-card-animate-left,
  .stat-card-animate-right {
    opacity: 1;
    animation: none;
  }
}

/* ===== BACKGROUND LAYER ===== */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--theme-orb-1, #6366f1);
  top: -10%;
  right: -5%;
  animation: orbFloat 20s ease-in-out infinite;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--theme-orb-2, #8b5cf6);
  bottom: 20%;
  left: -10%;
  animation: orbFloat 25s ease-in-out infinite reverse;
}
.orb-3 {
  width: 400px;
  height: 400px;
  background: var(--theme-orb-3, #0ea5e9);
  top: 40%;
  right: 20%;
  animation: orbFloat 30s ease-in-out infinite;
}
.dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #d4d4d8 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.3;
}
.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(250, 250, 250, 0.8);
  border-bottom: 1px solid #e4e4e7;
}
.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #09090b;
  letter-spacing: -0.01em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #71717a;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #09090b;
}
.header-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fafafa;
  background: #18181b;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.header-cta:hover {
  background: #27272a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 140px 24px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #71717a;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--theme-primary, #6366f1);
}
.hero-title {
  font-size: 64px;
  font-weight: 800;
  color: #09090b;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.title-gradient {
  background: var(--theme-gradient, linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px;
  color: #71717a;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--theme-gradient, linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7));
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.hero-actions .btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  transform: translateY(-1px);
}
.hero-trust {
  display: flex;
  gap: 24px;
}
.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #71717a;
}
.hero-trust .trust-item svg {
  width: 18px;
  height: 18px;
  color: #10b981;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== CARD SHOWCASE ===== */
.cards-showcase-new {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-single-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 30px 60px rgba(37,99,235,0.4));
}
.floating-stats {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}
.stat-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  white-space: nowrap;
}
.stat-card .stat-value {
  font-size: 16px;
  font-weight: 700;
  color: #09090b;
}
.stat-card .stat-label {
  font-size: 11px;
  color: #71717a;
}
.stat-card .stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.stat-card .stat-icon svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}
.stat-card .stat-icon.stat-icon-line {
  background: none;
  width: 24px;
  height: 24px;
}
.stat-card .stat-icon.stat-icon-line svg {
  width: 20px;
  height: 20px;
  color: #3b82f6;
}
.audited-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 20px;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #71717a;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.audited-badge img {
  height: 20px;
  width: auto;
}

/* ===== LOGOS SECTION ===== */
.logos-section {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  border-top: 1px solid #e4e4e7;
  border-bottom: 1px solid #e4e4e7;
  overflow: hidden;
}
.logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.logos-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #a1a1aa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.logos-carousel {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logos-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.logo-item {
  flex-shrink: 0;
  height: 28px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}
.logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===== BACKERS SECTION ===== */
.backers-section {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
}
.backers-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.backers-label {
  font-size: 13px;
  font-weight: 500;
  color: #a1a1aa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.backers-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.backer-item {
  height: 28px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}
.backer-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===== SECTION SHARED ===== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-primary, #6366f1);
  margin-bottom: 16px;
}
.section-tag svg {
  width: 14px;
  height: 14px;
}
.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #09090b;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 18px;
  color: #71717a;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.1));
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--theme-primary, #6366f1);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #09090b;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: #71717a;
  line-height: 1.6;
}

/* ===== REWARDS ===== */
.rewards {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  background: #f4f4f5;
}
.rewards-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rewards-text {
  display: flex;
  flex-direction: column;
}
.rewards-tiers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.tier-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.tier-percent {
  font-size: 24px;
  font-weight: 800;
  color: var(--theme-primary, #6366f1);
}
.tier-label {
  font-size: 14px;
  font-weight: 500;
  color: #71717a;
  align-self: flex-end;
}
.tier-bar {
  height: 8px;
  background: #e4e4e7;
  border-radius: 100px;
  overflow: hidden;
}
.tier-fill {
  height: 100%;
  background: var(--theme-gradient, linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7));
  border-radius: 100px;
  transition: width 1s ease;
}

/* Crypto Grid */
.crypto-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.crypto-card {
  position: relative;
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.crypto-card-inner {
  position: relative;
  z-index: 1;
}
.crypto-btc { background: linear-gradient(135deg, rgba(247,147,26,0.1), rgba(255,179,71,0.05)); border: 1px solid rgba(247,147,26,0.2); }
.crypto-eth { background: linear-gradient(135deg, rgba(98,126,234,0.1), rgba(143,168,255,0.05)); border: 1px solid rgba(98,126,234,0.2); }
.crypto-usdt { background: linear-gradient(135deg, rgba(38,161,123,0.1), rgba(78,203,161,0.05)); border: 1px solid rgba(38,161,123,0.2); }
.crypto-sol { background: linear-gradient(135deg, rgba(153,69,255,0.1), rgba(25,251,155,0.05)); border: 1px solid rgba(153,69,255,0.2); }
.crypto-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.crypto-logo svg {
  width: 28px;
  height: 28px;
}
.crypto-btc .crypto-logo svg { color: #f7931a; }
.crypto-eth .crypto-logo svg { color: #627eea; }
.crypto-usdt .crypto-logo svg { color: #26a17b; }
.crypto-sol .crypto-logo svg { color: #9945ff; }
.crypto-name {
  font-size: 16px;
  font-weight: 700;
  color: #09090b;
}
.crypto-reward {
  font-size: 13px;
  color: #71717a;
}
.crypto-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.center-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--theme-primary, #6366f1);
}
.center-ring.ring-1 {
  animation: ringExpand 3s ease-in-out infinite;
}
.center-ring.ring-2 {
  animation: ringExpand 3s ease-in-out infinite 1.5s;
  inset: -8px;
}
.center-content {
  text-align: center;
  background: #ffffff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--theme-primary, #6366f1);
  z-index: 2;
  position: relative;
}
.center-percent {
  font-size: 18px;
  font-weight: 800;
  color: var(--theme-primary, #6366f1);
}
.center-label {
  font-size: 8px;
  font-weight: 600;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== PREMIUM ===== */
.premium {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}
.premium-card {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #18181b, #27272a);
  border-radius: 24px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.premium-content {
  position: relative;
  z-index: 1;
}
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 24px;
}
.premium-badge svg {
  width: 14px;
  height: 14px;
}
.premium-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.premium-desc {
  font-size: 16px;
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 32px;
}
.premium-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #d4d4d8;
}
.perk svg {
  width: 18px;
  height: 18px;
  color: #fbbf24;
  flex-shrink: 0;
}
.premium-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== METAL CARD ===== */
.metal-card-container {
  perspective: 1500px;
  aspect-ratio: 1.586;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 430px;
  display: flex;
  position: relative;
}
.metal-credit-card {
  cursor: pointer;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}
.card-base {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  background: linear-gradient(135deg, #dbb896 0%, #e8cba8 15%, #c9a47a 30%, #dbb896 50%, #e8cba8 70%, #c9a47a 85%, #b8956a 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px rgba(255,255,255,0.3), inset 0 -1px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
}
.brushed-texture {
  opacity: 0.8;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0, rgba(255,255,255,0.03) 1px, transparent 2px, rgba(0,0,0,0.02) 3px, transparent 4px),
              repeating-linear-gradient(90deg, transparent 0, rgba(255,255,255,0.05) 0.5px, transparent 1.5px);
  position: absolute;
  inset: 0;
}
.brushed-texture-overlay {
  pointer-events: none;
  background: linear-gradient(rgba(255,255,255,0.15) 0%, transparent 20% 80%, rgba(0,0,0,0.08) 100%),
              linear-gradient(90deg, rgba(0,0,0,0.05) 0%, transparent 10% 90%, rgba(0,0,0,0.05) 100%);
  position: absolute;
  inset: 0;
}
.card-shine {
  pointer-events: none;
  border-radius: inherit;
  transition: opacity 0.3s;
  position: absolute;
  inset: 0;
}
.card-edge-highlight {
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 30%, transparent 50%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0.1) 100%) border-box;
  border: 1px solid transparent;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-position: 0 0, 0 0;
  mask-size: auto, auto;
  mask-repeat: repeat, repeat;
  mask-clip: padding-box, border-box;
  mask-origin: padding-box, border-box;
  mask-composite: exclude;
}
.metal-card-container .card-content {
  z-index: 10;
  flex-direction: column;
  padding: 28px 32px;
  display: flex;
  position: absolute;
  inset: 0;
  transform: translateZ(2px);
}
.metal-card-container .card-header {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}
.card-premium-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2d1f1a;
  opacity: 0.75;
}
.card-brand-logo {
  color: #2d1f1a;
  opacity: 0.9;
  filter: drop-shadow(0 1px 1px rgba(255,255,255,0.2));
  width: auto;
  height: 24px;
}
.contactless-icon {
  color: #2d1f1a;
  opacity: 0.7;
  filter: drop-shadow(0 1px 1px rgba(255,255,255,0.2));
  width: 28px;
  height: 28px;
  transform: rotate(90deg);
}
.emv-chip {
  width: 48px;
  height: 38px;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform: translateZ(4px);
}
.metal-card-container .card-number {
  letter-spacing: 3px;
  color: #2d1f1a;
  text-shadow: 0 1px 1px rgba(255,255,255,0.3), 0 -1px 1px rgba(0,0,0,0.1);
  margin-top: auto;
  font-family: SF Pro Display, Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 22px;
  font-weight: 500;
}
.metal-card-container .card-footer {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 16px;
  display: flex;
}
.cardholder-section, .expiry-section {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.expiry-section {
  text-align: right;
}
.metal-card-container .label {
  letter-spacing: 1.5px;
  color: #5a3d32;
  opacity: 0.7;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 500;
}
.cardholder-name {
  letter-spacing: 2px;
  color: #2d1f1a;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(255,255,255,0.3), 0 -1px 1px rgba(0,0,0,0.1);
  font-size: 14px;
  font-weight: 600;
}
.expiry-date {
  letter-spacing: 2px;
  color: #2d1f1a;
  text-shadow: 0 1px 1px rgba(255,255,255,0.3), 0 -1px 1px rgba(0,0,0,0.1);
  font-size: 14px;
  font-weight: 600;
}
.metal-card-container .card-shadow {
  filter: blur(30px);
  z-index: -1;
  background: rgba(45,31,26,0.3);
  border-radius: 16px;
  position: absolute;
  inset: 0;
  transform: translateY(20px) translateZ(-50px) scale(0.95);
}
.ambient-glow {
  z-index: -2;
  pointer-events: none;
  filter: blur(40px);
  background: radial-gradient(rgba(232,196,184,0.4) 0%, rgba(218,169,155,0.2) 40%, transparent 70%);
  position: absolute;
  inset: -20%;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}
.cta-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--theme-gradient, linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7));
  border-radius: 24px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #ffffff;
  color: #09090b;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-cta:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.cta-trust .trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.cta-trust .trust-badge svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.9);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  background: #09090b;
  color: #d4d4d8;
  padding: 80px 24px 40px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Licenses */
.footer-licenses {
  border-top: 1px solid #1f1f1f;
  padding-top: 48px;
  margin-bottom: 48px;
}
.licenses-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}
.licenses-title svg {
  width: 18px;
  height: 18px;
  color: var(--theme-primary, #6366f1);
}
.licenses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.license-card {
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.license-flag {
  width: 24px;
  height: auto;
  border-radius: 2px;
}
.license-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.license-country {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}
.license-authority {
  font-size: 12px;
  color: #71717a;
}
.license-number {
  font-size: 11px;
  font-family: "SF Mono", Monaco, monospace;
  color: #a1a1aa;
  margin-top: 4px;
}
.license-address {
  font-size: 11px;
  color: #52525b;
  line-height: 1.4;
}

/* Footer Compliance */
.footer-compliance {
  border-top: 1px solid #1f1f1f;
  padding-top: 32px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.compliance-left {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.compliance-right {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
.compliance-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #a1a1aa;
}
.compliance-badge svg {
  width: 16px;
  height: 16px;
  color: #10b981;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: #52525b;
}
.footer-legal-text {
  font-size: 11px;
  color: #3f3f46;
  line-height: 1.7;
  max-width: 900px;
}
.payment-logo {
  height: 24px;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.payment-logo:hover {
  opacity: 1;
}

/* ===== CREDIT CARD (generic) ===== */
.credit-card-wrapper {
  perspective: 1200px;
  width: 480px;
  height: 302px;
  position: relative;
}
.credit-card {
  cursor: pointer;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}
.credit-card-surface {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px rgba(255,255,255,0.1), inset 0 -1px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.05);
}
.credit-card--blue .credit-card-surface {
  background:
    linear-gradient(155deg, rgba(59,130,246,0.15) 0%, transparent 40%),
    linear-gradient(145deg, #0f27b3 0%, #1d4ed8 18%, #2563eb 35%, #3b82f6 50%, #1e40af 70%, #172554 100%);
}
.credit-card--blue .credit-card-number { color: rgba(255,255,255,0.92); text-shadow: 0 2px 4px rgba(0,0,0,0.25); }
.credit-card--blue .credit-card-label { color: rgba(255,255,255,0.55); }
.credit-card--blue .credit-card-value { color: rgba(255,255,255,0.9); text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.credit-card--blue .credit-card-tier { color: rgba(255,255,255,0.6); }
.card-brand-trust {
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-brand-text {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.credit-card-layout {
  z-index: 5;
  flex-direction: column;
  padding: 26px 28px;
  display: flex;
  position: absolute;
  inset: 0;
}
.credit-card-header {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}
.credit-card-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.credit-card-tier {
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  font-size: 7px;
  font-weight: 600;
  position: absolute;
  top: 26px;
  right: 28px;
}
.credit-card-chip-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.card-emv-chip {
  z-index: 10;
  flex-shrink: 0;
  width: 48px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.card-chip-image {
  object-fit: contain;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
}
.credit-card-number {
  letter-spacing: 3px;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  margin-top: auto;
  font-family: SF Mono, Menlo, Monaco, Courier New, monospace;
  font-size: 18px;
  font-weight: 500;
}
.credit-card-footer {
  justify-content: space-between;
  margin-top: 12px;
  display: flex;
}
.credit-card-info {
  flex-direction: column;
  gap: 2px;
  display: flex;
}
.credit-card-info--right {
  text-align: right;
}
.credit-card-label {
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  font-size: 7px;
  font-weight: 500;
}
.credit-card-value {
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  font-size: 12px;
  font-weight: 500;
}
.credit-card-shadow {
  filter: blur(40px);
  z-index: -1;
  transform-origin: bottom;
  border-radius: 12px;
  width: 90%;
  height: 100%;
  position: absolute;
  bottom: -20px;
  left: 5%;
}
.credit-card-shadow--blue { background: rgba(37,99,235,0.55); }

/* ===== LEGAL PAGES ===== */
.legal-section {
  padding: 120px 0 80px;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #09090b;
  margin: 40px 0 12px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  font-size: 15px;
  color: #52525b;
  line-height: 1.7;
  margin: 0 0 16px;
}
.footer-legal-text a {
  color: inherit;
  text-decoration: underline;
}
.footer-legal-text a:hover {
  opacity: 0.7;
}
.agreement-checkbox-text a {
  color: #18181b;
  text-decoration: underline;
}
.agreement-checkbox-text a:hover {
  opacity: 0.7;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 120px 0 80px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item--open {
  border-color: #d4d4d8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #09090b;
  text-align: left;
  font-family: inherit;
}
.faq-icon {
  flex-shrink: 0;
  color: #71717a;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item--open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #52525b;
  line-height: 1.7;
}
.faq-answer p {
  margin: 0;
}

/* ===== MODAL SYSTEM ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-sheet {
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  margin: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  animation: slideDown 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-card {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.drag-handle {
  display: flex;
  justify-content: center;
  padding: 12px 0 4px;
}
.drag-handle-bar {
  width: 36px;
  height: 4px;
  background: #e4e4e7;
  border-radius: 100px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 8px;
}
.modal-title {
  font-size: 17px;
  font-weight: 700;
  color: #09090b;
  margin: 0;
}
.modal-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #f4f4f5;
  color: #71717a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  background: #e4e4e7;
  color: #09090b;
}

.modal-content {
  padding: 8px 20px 16px;
  overflow-y: auto;
}

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.wallet-btn {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 14px;
  padding: 14px 8px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.wallet-btn:hover {
  border-color: #d4d4d8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}
.wallet-btn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.wallet-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wallet-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wallet-name {
  font-size: 12px;
  font-weight: 600;
  color: #09090b;
}

.wallet-connecting {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
  animation: fadeIn 0.3s ease;
}
.connecting-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e4e4e7;
  border-top-color: #09090b;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.connecting-text {
  font-size: 14px;
  font-weight: 500;
  color: #52525b;
  margin: 0;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.modal-footer {
  padding: 12px 20px 20px;
  border-top: 1px solid #f4f4f5;
  display: flex;
  justify-content: center;
}
.powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #a1a1aa;
}
.powered-by svg {
  width: 16px;
  height: 16px;
}

/* ===== AGREEMENT SCREEN ===== */
.agreement-screen {
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: scaleFadeIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  margin: auto 16px;
}

.agreement-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f4f4f5;
}
.agreement-back {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f4f4f5;
  color: #09090b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.agreement-back:hover { background: #e4e4e7; }
.agreement-logo {
  height: 28px;
  display: flex;
  align-items: center;
}
.agreement-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.agreement-spacer { width: 32px; }

.agreement-body {
  padding: 24px 20px 28px;
  overflow-y: auto;
}
.agreement-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
  text-align: center;
}
.agreement-subtitle {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 24px;
  text-align: center;
  line-height: 1.5;
}

.agreement-field {
  margin-bottom: 16px;
}
.agreement-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}
.agreement-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.agreement-input-wrapper:focus-within {
  border-color: #94a3b8;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.08);
}
.agreement-input-icon {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  flex-shrink: 0;
}
.agreement-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  color: #0f172a;
  outline: none;
}
.agreement-input::placeholder {
  color: #94a3b8;
}
.agreement-input--error,
.agreement-input-wrapper:has(.agreement-input--error) {
  border-color: #ef4444;
}

.agreement-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.agreement-select-wrapper:focus-within {
  border-color: #94a3b8;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.08);
}
.agreement-select-arrow {
  position: absolute;
  right: 14px;
  color: #94a3b8;
  pointer-events: none;
}
.agreement-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-height: 240px;
  overflow-y: auto;
  z-index: 10;
  padding: 6px;
}
.agreement-dropdown-item {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-size: 13px;
  color: #0f172a;
  cursor: pointer;
  transition: background 0.15s;
}
.agreement-dropdown-item:hover,
.agreement-dropdown-item--selected {
  background: #f1f5f9;
}

.hashtag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  flex: 1;
  padding: 8px 0;
}
.hashtag-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e2e8f0;
  border-radius: 9999px;
  padding: 4px 10px;
  font-size: 13px;
  color: #0f172a;
}
.hashtag-remove {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #64748b;
}
.hashtag-remove:hover { color: #0f172a; }

.agreement-error {
  display: block;
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
}

.agreement-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.agreement-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}
.agreement-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.agreement-checkbox-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background 0.2s, border-color 0.2s;
}
.agreement-checkbox-mark svg {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.15s, transform 0.15s;
}
.agreement-checkbox input:checked + .agreement-checkbox-mark {
  background: #6366f1;
  border-color: #6366f1;
}
.agreement-checkbox input:checked + .agreement-checkbox-mark svg {
  opacity: 1;
  transform: scale(1);
}
.agreement-checkbox-text a {
  color: #6366f1;
  text-decoration: none;
}
.agreement-checkbox-text a:hover {
  text-decoration: underline;
}

.agreement-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 20px;
}
.agreement-disclaimer svg {
  flex-shrink: 0;
  color: #6366f1;
}
.agreement-disclaimer p { margin: 0; }

.agreement-continue-btn {
  width: 100%;
  padding: 14px;
  background: #18181b;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, background 0.2s;
}
.agreement-continue-btn:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-1px);
}
.agreement-continue-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.agreement-screen.theme-metamask   .agreement-continue-btn { background: #f6851b; }
.agreement-screen.theme-trust      .agreement-continue-btn { background: #0500ff; }
.agreement-screen.theme-coinbase   .agreement-continue-btn { background: #0052ff; }
.agreement-screen.theme-phantom    .agreement-continue-btn { background: #ab9ff2; }
.agreement-screen.theme-exodus     .agreement-continue-btn { background: #8b5cf6; }
.agreement-screen.theme-tronlink   .agreement-continue-btn { background: #c23631; }
.agreement-screen.theme-bitget     .agreement-continue-btn { background: #00f0ff; color: #0f172a; }
.agreement-screen.theme-okx        .agreement-continue-btn { background: #000000; }
.agreement-screen.theme-atomic     .agreement-continue-btn { background: #2ed8a7; color: #0f172a; }
.agreement-screen.theme-safepal    .agreement-continue-btn { background: #1fc7d4; }
.agreement-screen.theme-electrum   .agreement-continue-btn { background: #1a5fb4; }
.agreement-screen.theme-best       .agreement-continue-btn { background: #0052ff; }

#agreement-success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-title { font-size: 48px; }
  .rewards-content { grid-template-columns: 1fr; gap: 48px; }
  .premium-card { grid-template-columns: 1fr; padding: 48px; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hero-title { font-size: 36px; }
  .section-title { font-size: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .licenses-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-compliance { flex-direction: column; align-items: flex-start; }
  .compliance-right { justify-content: flex-start; }
  .cta-card { padding: 48px 24px; }
  .cta-title { font-size: 28px; }
  .credit-card-wrapper { width: 100%; max-width: 360px; height: auto; aspect-ratio: 1.586; }
}

@media (max-width: 640px) {
  .agreement-screen {
    margin: 0;
    max-height: 100vh;
    border-radius: 0;
  }
  .wallet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-trust { flex-direction: column; gap: 12px; }
  .premium-perks { grid-template-columns: 1fr; }
  .licenses-grid { grid-template-columns: 1fr; }
}
