/* ─── RESET & BASE ─── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  background:#0a0a0a;
  color:#f5f5f5;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
::selection{background:rgba(201,169,110,0.3);color:#fff}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:#0a0a0a}
::-webkit-scrollbar-thumb{background:#333;border-radius:3px}
::-webkit-scrollbar-thumb:hover{background:#c9a96e}

/* ─── VARIABLES ─── */
:root{
  --gold:#c9a96e;
  --gold-light:#d4b87a;
  --gold-bright:#e8c76b;
  --gold-deep:#8a7349;
  --silver:#c0c0c0;
  --silver-muted:#a8a8a8;
  --silver-dark:#666;
  --black:#0a0a0a;
  --black-soft:#111;
  --charcoal:#1a1a1a;
  --white:#f5f5f5;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp{
  from{opacity:0;transform:translateY(40px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes fadeInScale{
  from{opacity:0;transform:scale(0.95)}
  to{opacity:1;transform:scale(1)}
}
@keyframes float{
  0%,100%{transform:translateY(0) rotateX(8deg) rotateY(-6deg)}
  50%{transform:translateY(-14px) rotateX(8deg) rotateY(-6deg)}
}
@keyframes shimmerSweep{
  0%{transform:translateX(-150%) skewX(-18deg)}
  100%{transform:translateX(150%) skewX(-18deg)}
}
@keyframes shimmerSlow{
  0%{transform:translateX(-150%) skewX(-18deg)}
  100%{transform:translateX(150%) skewX(-18deg)}
}
@keyframes pulseGlow{
  0%,100%{opacity:0.4;transform:scale(1)}
  50%{opacity:0.7;transform:scale(1.05)}
}
@keyframes particleFloat{
  0%{transform:translateY(100vh) translateX(0);opacity:0}
  10%{opacity:1}
  90%{opacity:1}
  100%{transform:translateY(-10vh) translateX(40px);opacity:0}
}
@keyframes rotateRing{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:opacity 0.9s cubic-bezier(0.16,1,0.3,1),transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
.stagger-1{transition-delay:0.1s}
.stagger-2{transition-delay:0.2s}
.stagger-3{transition-delay:0.3s}
.stagger-4{transition-delay:0.4s}
.stagger-5{transition-delay:0.5s}
.stagger-6{transition-delay:0.6s}

/* ─── BACKGROUND ─── */
.ambient-bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  overflow:hidden;
}
.gold-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(100px);
  pointer-events:none;
}
.orb-1{
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(201,169,110,0.10) 0%,transparent 70%);
  top:-10%;right:-5%;
}
.orb-2{
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(201,169,110,0.07) 0%,transparent 70%);
  bottom:10%;left:-10%;
}
.noise-overlay{
  position:absolute;
  inset:0;
  opacity:0.03;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat:repeat;
  background-size:256px;
}
.particle{
  position:absolute;
  width:2px;height:2px;
  background:var(--gold);
  border-radius:50%;
  opacity:0.4;
  animation:particleFloat linear infinite;
}
.particle:nth-child(3){left:10%;animation-duration:18s;animation-delay:0s}
.particle:nth-child(4){left:25%;animation-duration:14s;animation-delay:3s;width:3px;height:3px}
.particle:nth-child(5){left:45%;animation-duration:20s;animation-delay:1s}
.particle:nth-child(6){left:65%;animation-duration:16s;animation-delay:5s;width:2.5px;height:2.5px}
.particle:nth-child(7){left:80%;animation-duration:22s;animation-delay:2s}
.particle:nth-child(8){left:90%;animation-duration:15s;animation-delay:4s;width:3px;height:3px}

/* ─── HEADER ─── */
.header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  transition:background 0.4s ease,border-color 0.4s ease;
  border-bottom:1px solid transparent;
}
.header.scrolled{
  background:rgba(10,10,10,0.85);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom-color:rgba(201,169,110,0.12);
}
.header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  font-size:16px;
  letter-spacing:0.02em;
}

.brand-name-gold{color:var(--gold)}
.brand-name-silver{color:var(--silver-muted)}
.nav{
  display:flex;
  align-items:center;
  gap:32px;
}
.nav-link{
  font-size:13px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--silver-muted);
  position:relative;
  transition:color 0.3s ease;
}
.nav-link::after{
  content:'';
  position:absolute;
  bottom:-4px;left:0;
  width:0;height:1px;
  background:var(--gold);
  transition:width 0.3s ease;
}
.nav-link:hover{color:var(--gold)}
.nav-link:hover::after{width:100%}
.header-cta{
  padding:10px 24px;
  border:1px solid var(--gold);
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:var(--gold);
  background:transparent;
  transition:all 0.35s ease;
}
.header-cta:hover{
  background:var(--gold);
  color:var(--black);
  box-shadow:0 0 24px rgba(201,169,110,0.35);
}
.mobile-menu-btn{
  display:none;
  flex-direction:column;
  gap:5px;
  padding:8px;
  background:none;
  border:none;
}
.mobile-menu-btn span{
  display:block;
  width:22px;height:1.5px;
  background:var(--gold);
  transition:all 0.3s ease;
}

/* ─── SECTIONS COMMON ─── */
section{position:relative;z-index:1}
.section-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
.section-tag{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.15em;
  color:var(--gold);
  margin-bottom:20px;
}
.section-tag-line{
  display:block;
  width:60px;height:1px;
  background:var(--gold);
  opacity:0.5;
  flex-shrink:0;
}
.section-title{
  font-size:42px;
  font-weight:300;
  letter-spacing:-0.03em;
  line-height:1.1;
  color:var(--white);
  margin-bottom:16px;
}
.section-desc{
  font-size:17px;
  color:var(--silver-muted);
  max-width:520px;
  line-height:1.65;
}

/* ─── HERO ─── */
.hero{
  display:flex;
  align-items:flex-start;
  padding:100px 0 20px;
}
.hero-inner{
  max-width:720px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
}
.hero-logo-img{
  width:72px;
  height:auto;
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,0.4),0 0 0 1px rgba(201,169,110,0.08);
  margin-bottom:8px;
}
.hero-trust{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.trust-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 14px;
  background:var(--black-soft);
  border:1px solid var(--charcoal);
  border-radius:100px;
  font-size:12px;
  font-weight:500;
  color:var(--silver-muted);
  white-space:nowrap;
}
.trust-pill svg{
  width:14px;
  height:14px;
  color:var(--gold);
}

.hero-title{
  font-size:56px;
  font-weight:300;
  letter-spacing:-0.03em;
  line-height:1.08;
  margin-bottom:0;
}
.hero-desc{
  font-size:16px;
  color:var(--silver-muted);
  max-width:560px;
  line-height:1.65;
  margin-bottom:0;
}
.hero-assets{
  font-size:12px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--silver-dark);
  margin-bottom:0;
}
.hero-title .gold-text{
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-bright) 50%,var(--gold-light) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-actions{
  margin-bottom:0;
}
.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  background:var(--gold);
  color:var(--black);
  font-size:14px;
  font-weight:600;
  letter-spacing:0.04em;
  border-radius:10px;
  transition:all 0.35s ease;
}
.btn-primary:hover{
  background:var(--gold-light);
  box-shadow:0 8px 32px rgba(201,169,110,0.4);
  transform:translateY(-1px);
}
.btn-primary:hover .btn-arrow{transform:translateX(4px)}
.btn-arrow{transition:transform 0.3s ease}

.trust-item{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--silver-muted);
}
.trust-dot{
  width:3px;height:3px;
  background:var(--gold-deep);
  border-radius:50%;
}

.card-scene{
  position:relative;
  width:340px;height:220px;
  transform-style:preserve-3d;
}
.credit-card{
  position:relative;
  width:100%;height:100%;
  border-radius:18px;
  background:linear-gradient(135deg,#161616 0%,#0d0d0d 100%);
  border:1px solid rgba(201,169,110,0.12);
  overflow:hidden;
  animation:float 6s ease-in-out infinite;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(201,169,110,0.08),
    0 0 40px rgba(201,169,110,0.06);
}
.card-top-accent{
  position:absolute;
  top:0;left:0;right:0;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  opacity:0.5;
}
.card-shimmer{
  position:absolute;
  inset:0;
  background:linear-gradient(105deg,transparent 35%,rgba(232,199,107,0.07) 48%,rgba(232,199,107,0.12) 50%,rgba(232,199,107,0.07) 52%,transparent 65%);
  animation:shimmerSweep 5s ease-in-out infinite;
}
.card-content{
  position:relative;
  z-index:2;
  padding:24px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.card-header-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.card-header-logo{
  height:34px;width:auto;
  filter:drop-shadow(0 1px 1px rgba(0,0,0,0.15));
}
.card-header-brand-wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:2px;
}
.card-header-brand{
  font-size:14px;
  font-weight:700;
  color:#000;
  letter-spacing:0.12em;
  text-transform:uppercase;
}
.card-header-sub{
  font-size:9px;
  font-weight:600;
  color:#000;
  letter-spacing:0.15em;
  text-transform:uppercase;
  font-family:'Georgia','Times New Roman',serif;
  opacity:0.7;
}
.card-chip-row{
  margin-top:8px;
}
.card-chip-img{
  height:36px;width:auto;
  opacity:1;
  filter:drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.card-number{
  font-size:20px;
  font-weight:500;
  letter-spacing:0.12em;
  color:#000;
  font-family:'Courier New',monospace;
  margin-top:auto;
  margin-bottom:16px;
}
.card-footer-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}
.card-info-label{
  font-size:8px;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:#000;
  margin-bottom:2px;
}
.card-info-value{
  font-size:13px;
  font-weight:500;
  color:#000;
  letter-spacing:0.04em;
}
.card-glow{
  position:absolute;
  bottom:-30px;left:50%;
  transform:translateX(-50%);
  width:280px;height:40px;
  background:radial-gradient(ellipse,rgba(201,169,110,0.2) 0%,transparent 70%);
  filter:blur(20px);
  pointer-events:none;
}

/* ─── PRODUCTS / CARDS ─── */
.products{padding:32px 0}
.products-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  margin-top:24px;
}
.product-card{
  background:linear-gradient(145deg,var(--black-soft) 0%,var(--black) 100%);
  border:1px solid var(--charcoal);
  border-radius:24px;
  padding:48px 40px;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:all 0.4s ease;
}
.product-card:hover{
  border-color:rgba(201,169,110,0.2);
  transform:translateY(-6px);
  box-shadow:0 20px 60px rgba(0,0,0,0.5),0 0 0 1px rgba(201,169,110,0.06);
}
.product-card-visual{
  margin-bottom:36px;
  perspective:1000px;
}
.product-info{width:100%;text-align:center;display:flex;flex-direction:column;flex:1}
.product-name{
  font-size:28px;
  font-weight:300;
  letter-spacing:-0.02em;
  color:var(--white);
  margin-bottom:20px;
}
.silver-highlight{
  background:linear-gradient(135deg,#c0c0c0 0%,#e8e8e8 50%,#a8a8a8 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.gold-highlight{
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-bright) 50%,var(--gold-light) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.product-features{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:32px;
  text-align:left;
  padding:0 20px;
}
.product-features li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14.5px;
  color:var(--silver-muted);
}
.btn-silver{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding:14px 28px;
  background:transparent;
  color:#c0c0c0;
  font-size:14px;
  font-weight:600;
  margin-top:auto;
  letter-spacing:0.04em;
  border-radius:10px;
  border:1px solid #c0c0c0;
  transition:all 0.35s ease;
}
.btn-silver:hover{
  background:#c0c0c0;
  color:var(--black);
  box-shadow:0 8px 32px rgba(192,192,192,0.25);
  transform:translateY(-1px);
}
.btn-gold{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding:14px 28px;
  background:var(--gold);
  color:var(--black);
  font-size:14px;
  font-weight:600;
  margin-top:auto;
  letter-spacing:0.04em;
  border-radius:10px;
  border:none;
  transition:all 0.35s ease;
}
.btn-gold:hover{
  background:var(--gold-light);
  box-shadow:0 8px 32px rgba(201,169,110,0.4);
  transform:translateY(-1px);
}

/* Silver card variants */
.silver-accent{background:linear-gradient(90deg,transparent,rgba(255,255,255,0.7),transparent);opacity:0.6;height:1.5px}
.silver-shimmer{background:linear-gradient(105deg,transparent 35%,rgba(255,255,255,0.25) 48%,rgba(255,255,255,0.4) 50%,rgba(255,255,255,0.25) 52%,transparent 65%);animation:shimmerSweep 5s ease-in-out infinite}
.silver-card::after{
  content:'';position:absolute;inset:0;border-radius:18px;
  background:linear-gradient(135deg,rgba(255,255,255,0.25) 0%,transparent 40%,transparent 60%,rgba(0,0,0,0.06) 100%);
  pointer-events:none;z-index:2;
}

.silver-glow{background:radial-gradient(ellipse,rgba(192,192,192,0.15) 0%,transparent 70%)}
.silver-card{
  background:linear-gradient(145deg,#f5f5f5 0%,#e0e0e0 30%,#d0d0d0 50%,#c8c8c8 70%,#b8b8b8 100%);
  border:1px solid rgba(255,255,255,0.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 20px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(192,192,192,0.25);
}
.silver-card .card-number,
.silver-card .card-info-value{color:#000}
.silver-card .card-info-label{color:#000}

/* ─── FEATURES ─── */
.features{padding:60px 0}
.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:60px;
}
.feature-card{
  background:var(--black-soft);
  border:1px solid var(--charcoal);
  border-radius:18px;
  padding:40px 32px;
  transition:all 0.35s ease;
}
.feature-card:hover{
  border-color:rgba(201,169,110,0.35);
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(0,0,0,0.4),0 0 0 1px rgba(201,169,110,0.08);
}
.feature-icon-wrap{
  width:52px;height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(201,169,110,0.06);
  border:1px solid rgba(201,169,110,0.12);
  margin-bottom:24px;
  transition:all 0.35s ease;
}
.feature-card:hover .feature-icon-wrap{
  background:rgba(201,169,110,0.1);
  border-color:rgba(201,169,110,0.25);
}
.feature-icon-wrap svg{
  width:24px;height:24px;
  stroke:var(--gold);
  stroke-width:1.5;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.feature-card h3{
  font-size:18px;
  font-weight:500;
  color:var(--white);
  margin-bottom:10px;
  letter-spacing:-0.01em;
}
.feature-card p{
  font-size:14.5px;
  color:var(--silver-muted);
  line-height:1.65;
}

/* ─── REWARDS ─── */
.rewards{padding:60px 0}
.rewards-header{text-align:center;margin-bottom:40px}
.rewards-header .section-desc{margin:0 auto;max-width:500px}
.rewards-inner{display:grid;grid-template-columns:1fr 1.2fr;gap:80px;align-items:center}
.rewards-tiers{display:flex;flex-direction:column;gap:28px}
.tier-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.tier-percent{font-size:28px;font-weight:300;color:var(--gold);letter-spacing:-0.02em}
.tier-label{font-size:14px;color:var(--silver-muted);text-transform:uppercase;letter-spacing:0.08em}
.tier-track{width:100%;height:6px;background:var(--charcoal);border-radius:3px;overflow:hidden}
.tier-fill{height:100%;border-radius:3px;background:linear-gradient(90deg,var(--gold-deep),var(--gold),var(--gold-bright));position:relative}
.tier-fill::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.15),transparent);
}

.rewards-visual{position:relative}
.crypto-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  position:relative;
}
.crypto-card{
  background:var(--black-soft);
  border:1px solid var(--charcoal);
  border-radius:16px;
  padding:24px;
  display:flex;
  align-items:center;
  gap:14px;
  transition:all 0.35s ease;
}
.crypto-card:hover{
  border-color:rgba(201,169,110,0.3);
  transform:translateY(-2px);
}
.crypto-icon{
  width:40px;height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(255,255,255,0.03);
}
.crypto-icon svg{width:22px;height:22px;fill:var(--silver)}
.crypto-name{font-size:15px;font-weight:500;color:var(--white);margin-bottom:2px}
.crypto-reward{font-size:13px;color:var(--gold)}
.crypto-center{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:110px;height:110px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--black);
  border-radius:50%;
  border:1px solid rgba(201,169,110,0.2);
  z-index:2;
}
.center-ring{
  position:absolute;
  inset:-4px;
  border-radius:50%;
  border:1px solid transparent;
  border-top-color:var(--gold);
  border-right-color:rgba(201,169,110,0.3);
  animation:rotateRing 8s linear infinite;
}
.center-ring:nth-child(2){inset:-10px;animation-duration:12s;animation-direction:reverse;opacity:0.5}
.center-content{text-align:center}
.center-percent{font-size:32px;font-weight:300;color:var(--gold);line-height:1}
.center-label{font-size:10px;text-transform:uppercase;letter-spacing:0.15em;color:var(--silver-muted);margin-top:4px}

.metal-scene{position:relative;width:380px;height:240px;perspective:1000px}
.metal-card{
  position:relative;width:100%;height:100%;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(201,169,110,0.15);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.03);
  animation:float 7s ease-in-out infinite;
}
.metal-base{
  position:absolute;inset:0;
  background:linear-gradient(145deg,#b8941f 0%,#c9a96e 25%,#d4af37 45%,#e8c76b 60%,#b8941f 100%);
}
.metal-number,.metal-value{color:#000}
.metal-label{color:#000}
.metal-brush{
  position:absolute;inset:0;
  background:repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 2px,
    rgba(255,255,255,0.008) 2px,
    rgba(255,255,255,0.008) 4px
  );
}
.metal-shimmer{
  position:absolute;inset:0;
  background:linear-gradient(105deg,transparent 30%,rgba(255,255,255,0.15) 45%,rgba(255,255,255,0.3) 50%,rgba(255,255,255,0.15) 55%,transparent 70%);
  animation:shimmerSlow 6s ease-in-out infinite;
}
.metal-card::after{
  content:'';position:absolute;inset:0;border-radius:20px;
  background:linear-gradient(135deg,rgba(255,255,255,0.2) 0%,transparent 40%,transparent 60%,rgba(0,0,0,0.12) 100%);
  pointer-events:none;z-index:4;
}
.metal-edge{
  position:absolute;top:0;left:0;right:0;height:1.5px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.5),rgba(255,255,255,0.7),transparent);
  opacity:0.7;
}
.metal-content{
  position:relative;z-index:3;
  padding:28px;
  height:100%;
  display:flex;flex-direction:column;justify-content:space-between;
}
.metal-header{
  display:flex;justify-content:space-between;align-items:center;
}

.metal-chip-img{height:38px;width:auto;opacity:1;margin-top:4px;filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2))}
.metal-number{
  font-size:22px;
  font-weight:500;
  letter-spacing:0.12em;
  color:#000;
  font-family:'Courier New',monospace;
  margin-top:auto;
  margin-bottom:18px;
}
.metal-footer{
  display:flex;justify-content:space-between;align-items:flex-end;
}
.metal-label{font-size:8px;text-transform:uppercase;letter-spacing:0.12em;color:#000;margin-bottom:2px}
.metal-value{font-size:13px;font-weight:500;color:#000;letter-spacing:0.04em}
.metal-ambient{
  position:absolute;
  bottom:-40px;left:50%;
  transform:translateX(-50%);
  width:300px;height:50px;
  background:radial-gradient(ellipse,rgba(201,169,110,0.25) 0%,transparent 70%);
  filter:blur(25px);
  animation:pulseGlow 4s ease-in-out infinite;
  pointer-events:none;
}

/* ─── CTA ─── */
.faq{padding:60px 0}
.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 24px;
  margin-top:40px;
}
.faq-item{
  background:var(--black-soft);
  border:1px solid var(--charcoal);
  border-radius:12px;
  overflow:hidden;
  transition:border-color 0.3s ease;
}
.faq-item:hover{border-color:rgba(201,169,110,0.2)}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:16px 20px;
  background:none;
  border:none;
  cursor:pointer;
  font-size:14px;
  font-weight:500;
  color:var(--white);
  text-align:left;
  transition:color 0.3s ease;
}
.faq-question:hover{color:var(--gold)}
.faq-chevron{
  flex-shrink:0;
  color:var(--silver-muted);
  transition:transform 0.3s ease;
}
.faq-item--open .faq-chevron{transform:rotate(180deg)}
.faq-answer{
  padding:0 20px 16px;
  font-size:13.5px;
  line-height:1.6;
  color:var(--silver-muted);
}
.faq-answer p{margin:0}

.cta{padding:80px 0;text-align:center;position:relative}
.cta-orb{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:700px;height:400px;
  background:radial-gradient(ellipse,rgba(201,169,110,0.06) 0%,transparent 70%);
  pointer-events:none;
}
.cta-title{
  font-size:40px;
  font-weight:300;
  letter-spacing:-0.02em;
  line-height:1.2;
  max-width:640px;
  margin:0 auto 20px;
}
.cta-desc{
  font-size:17px;
  color:var(--silver-muted);
  max-width:480px;
  margin:0 auto 40px;
}
.btn-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:18px 40px;
  background:var(--gold);
  color:var(--black);
  font-size:15px;
  font-weight:600;
  letter-spacing:0.04em;
  border-radius:10px;
  transition:all 0.35s ease;
}
.btn-cta:hover{
  background:var(--gold-light);
  box-shadow:0 8px 40px rgba(201,169,110,0.45);
  transform:translateY(-2px) scale(1.02);
}
.btn-cta:hover .btn-arrow{transform:translateX(4px)}
.cta-trust{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  margin-top:40px;
  flex-wrap:wrap;
}

/* ─── FOOTER ─── */
.footer{
  position:relative;
  z-index:1;
  border-top:1px solid rgba(201,169,110,0.08);
  padding:60px 0 40px;
}
.footer-inner{max-width:1200px;margin:0 auto;padding:0 24px}

.footer-bottom{text-align:center}
.footer-copy{
  font-size:13px;
  color:var(--silver-muted);
  margin-bottom:20px;
}
.footer-legal{
  font-size:12px;
  color:var(--silver-dark);
  line-height:1.8;
  max-width:900px;
  margin:0 auto;
}
.footer-legal a{
  color:var(--silver-muted);
  border-bottom:1px solid transparent;
  transition:border-color 0.3s ease;
}
.footer-legal a:hover{border-bottom-color:var(--gold);color:var(--gold)}
.footer-legal-text { font-size: 12px; color: var(--silver-dark); line-height: 1.8; max-width: 900px; margin: 0 auto; }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
  .hero-inner{gap:18px}
  .hero-logo-img{width:64px}
  .hero-title{font-size:48px}
  .hero-desc{font-size:15px}
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .products-grid{grid-template-columns:1fr;gap:40px}
  .rewards-inner{grid-template-columns:1fr;gap:60px}
  .section-title{font-size:36px}
}
@media(max-width:768px){
  .nav{display:none}
  .mobile-menu-btn{display:flex}
  .header-cta{display:none}
  .hero-title{font-size:36px}
  .hero{padding:100px 0 20px}
  .hero-logo-img{width:56px}
  .features-grid{grid-template-columns:1fr}
  .products-grid{grid-template-columns:1fr}
  .faq-grid{grid-template-columns:1fr}
  .product-card{padding:36px 28px}
  .section-title{font-size:32px}
  .cta-title{font-size:28px}
  .metal-scene{transform:scale(0.9)}
  .card-scene{transform:scale(0.85)}
}
@media(max-width:480px){
  .hero-title{font-size:30px}
  .hero-desc{font-size:14px}
  .hero-assets{font-size:11px;letter-spacing:0.06em}
  .trust-pill{font-size:11px;padding:5px 10px}
  .section-title{font-size:28px}
  .card-scene{transform:scale(0.75)}
  .metal-scene{transform:scale(0.8)}
  .btn-primary,.btn-cta{width:100%;justify-content:center}
  .crypto-grid{grid-template-columns:1fr}
  .crypto-center{display:none}
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:0.01ms!important;animation-iteration-count:1!important;transition-duration:0.01ms!important}
  .credit-card,.metal-card{animation:none}
}

/* ===== MODAL SYSTEM ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  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: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  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: #2a2a2a;
  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: #ffffff;
  margin: 0;
}
.modal-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #1a1a1a;
  color: #a89f8f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  background: #2a2a2a;
  color: #ffffff;
}

.modal-content {
  padding: 8px 20px 16px;
  overflow-y: auto;
}

.card-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 8px 0;
}
.card-select-btn {
  background: transparent;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.card-select-btn:hover {
  border-color: #c9a96e;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}
.card-select-label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;
}
.mini-card {
  position: relative;
  width: 140px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.mini-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
  z-index: 2;
}
.mini-silver {
  background: linear-gradient(145deg, #f5f5f5 0%, #e0e0e0 30%, #d0d0d0 50%, #c0c0c0 100%);
  border: 1px solid rgba(255,255,255,0.4);
}
.mini-gold {
  background: linear-gradient(145deg, #d4af37 0%, #c9a96e 25%, #d4af37 45%, #e8c76b 100%);
  border: 1px solid rgba(255,255,255,0.2);
}
.mini-card-content {
  position: relative;
  z-index: 3;
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mini-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mini-card-logo {
  height: 16px;
  width: auto;
}
.mini-card-brand {
  font-size: 8px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mini-card-chip-wrap {
  margin-top: 2px;
}
.mini-card-chip {
  height: 20px;
  width: auto;
}
.mini-card-footer {
  display: flex;
  justify-content: flex-end;
}
.mini-card-tier {
  font-size: 7px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  font-family: 'Georgia', 'Times New Roman', serif;
}

/* ===== SUCCESS STATE ===== */
.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px;
  text-align: center;
}
.success-check-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  background: #c9a96e;
  position: relative;
  z-index: 2;
  animation: successCheckIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.success-check svg {
  width: 28px;
  height: 28px;
}
.success-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #c9a96e;
  opacity: 0;
  animation: successRingExpand 0.6s ease 0.15s both;
}
.success-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  animation: successTextIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}
.success-desc {
  font-size: 14px;
  color: #a89f8f;
  margin: 0;
  line-height: 1.5;
  animation: successTextIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

@keyframes successCheckIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes successRingExpand {
  from { opacity: 0.5; transform: scale(0.75); }
  to   { opacity: 0; transform: scale(1.5); }
}
@keyframes successTextIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== AGREEMENT SCREEN ===== */
.agreement-screen {
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  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 #2a2a2a;
}
.agreement-back {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #1a1a1a;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.agreement-back:hover { background: #2a2a2a; }
.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: #ffffff;
  margin: 0 0 6px;
  text-align: center;
}
.agreement-subtitle {
  font-size: 13px;
  color: #a89f8f;
  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: #ffffff;
  margin-bottom: 6px;
}
.agreement-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.agreement-input-wrapper:focus-within {
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.agreement-input-icon {
  width: 18px;
  height: 18px;
  color: #a89f8f;
  flex-shrink: 0;
}
.agreement-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  color: #ffffff;
  outline: none;
}
.agreement-input::placeholder {
  color: #8a7e6b;
}
@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}
@keyframes errorSlideIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.agreement-input--error,
.agreement-input-wrapper.has-error,
.agreement-select-wrapper.has-error {
  border-color: #c0392b;
}
.agreement-input-wrapper.has-error,
.agreement-select-wrapper.has-error {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
  animation: inputShake 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.agreement-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.agreement-select-wrapper:focus-within {
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.agreement-select-arrow {
  position: absolute;
  right: 14px;
  color: #a89f8f;
  pointer-events: none;
}
.agreement-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  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: #ffffff;
  cursor: pointer;
  transition: background 0.15s;
}
.agreement-dropdown-item:hover,
.agreement-dropdown-item--selected {
  background: #2a2a2a;
}

.hashtag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  flex: 1;
  padding: 8px 0;
}

/* Chip animations */
@keyframes chipEnter {
  from { opacity: 0; transform: scale(0.85) translateY(-4px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}
@keyframes chipExit {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.85); }
}

.hashtag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 13px;
  font-family: "SF Mono", SFMono-Regular, ui-monospace, Menlo, Monaco, Consolas, monospace;
  color: #ffffff;
  transition: background 0.15s, border-color 0.15s;
  animation: chipEnter 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.hashtag-chip:hover {
  background: #2a2a2a;
  border-color: #c9a96e;
}
.hashtag-chip--enter {
  animation: chipEnter 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.hashtag-chip--exit {
  animation: chipExit 0.2s ease forwards;
  pointer-events: none;
}
.hashtag-index {
  font-size: 10px;
  font-weight: 600;
  color: #a89f8f;
  user-select: none;
}
.hashtag-remove {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #a89f8f;
  transition: color 0.15s;
}
.hashtag-remove:hover { color: #c0392b; }

/* Word counter */
.hashtag-counter {
  font-size: 12px;
  font-weight: 500;
  color: #a89f8f;
  margin-top: 6px;
  transition: color 0.2s;
}
.hashtag-counter--valid {
  color: #c9a96e;
}
.hashtag-counter--warning {
  color: #ffffff;
}

.agreement-error {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #c0392b;
  margin-top: 6px;
  line-height: 1.4;
  animation: errorSlideIn 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.agreement-error svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #c0392b;
}

.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: #a89f8f;
  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 #2a2a2a;
  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: #c9a96e;
  border-color: #c9a96e;
}
.agreement-checkbox input:checked + .agreement-checkbox-mark svg {
  opacity: 1;
  transform: scale(1);
}
.agreement-checkbox-text a {
  color: #c9a96e;
  text-decoration: underline;
}
.agreement-checkbox-text a:hover {
  color: #d4b87a;
}

.agreement-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 14px;
  font-size: 12px;
  color: #a89f8f;
  line-height: 1.5;
  margin-bottom: 20px;
}
.agreement-disclaimer svg {
  flex-shrink: 0;
  color: #a89f8f;
}
.agreement-disclaimer p { margin: 0; }

.agreement-continue-btn {
  width: 100%;
  padding: 14px;
  background: #c9a96e;
  color: #0a0a0a;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.agreement-continue-btn:hover:not(:disabled) {
  background: #d4b87a;
  transform: translateY(-1px);
}
.agreement-continue-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Wallet theme CSS custom properties */
.agreement-screen.theme-nexora    { --theme-accent: #c9a96e; --theme-accent-text: #ffffff; }

/* Themed elements */
.agreement-screen .agreement-continue-btn {
  background: var(--theme-accent, #c9a96e);
  color: var(--theme-accent-text, #0a0a0a);
}
.agreement-screen .agreement-continue-btn:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.agreement-screen .agreement-input-wrapper:focus-within {
  border-color: var(--theme-accent, #c9a96e);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--theme-accent, #c9a96e) 12%, transparent);
}
.agreement-screen .agreement-checkbox input:checked + .agreement-checkbox-mark {
  background: var(--theme-accent, #c9a96e);
  border-color: var(--theme-accent, #c9a96e);
}
.agreement-screen .agreement-checkbox input:checked + .agreement-checkbox-mark svg {
  color: var(--theme-accent-text, #ffffff);
}
.agreement-screen .success-check {
  background: var(--theme-accent, #c9a96e);
  color: var(--theme-accent-text, #0a0a0a);
}
.agreement-screen .success-ring {
  border-color: var(--theme-accent, #c9a96e);
}

#agreement-success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
}

/* ===== MODAL RESPONSIVE ===== */
@media (max-width: 1024px) {
  .modal-overlay { align-items: center; justify-content: center; }
  .modal-sheet { margin: 16px; }
  .agreement-screen { margin: auto 16px; }
}

@media (max-width: 640px) {
  .modal-overlay {
    align-items: flex-end;
    justify-content: center;
    padding: 0;
  }
  .modal-sheet {
    max-width: 100%;
    width: 100%;
    margin: 0;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    animation: slideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    touch-action: pan-y;
  }
  .agreement-screen {
    margin: 0;
    max-width: 100%;
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    animation: slideUp 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    touch-action: pan-y;
  }
  .modal-sheet.modal--dragging,
  .agreement-screen.modal--dragging {
    transition: none;
    animation: none;
  }
  .drag-handle {
    padding: 12px 0 10px;
    cursor: grab;
  }
  .drag-handle:active {
    cursor: grabbing;
  }
  .drag-handle-bar {
    width: 40px;
    height: 5px;
    background: #2a2a2a;
  }
  .agreement-header {
    cursor: grab;
    touch-action: none;
  }
  .agreement-header:active {
    cursor: grabbing;
  }
  .card-select-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .mini-card {
    width: 120px;
    height: 76px;
  }
}

@keyframes scaleFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== COMPATIBILITY FOR OLD PAGE STRUCTURES ===== */
.legal-section { padding: 120px 0 80px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; font-weight: 500; color: var(--white); margin: 40px 0 12px; }
.legal-content p { font-size: 15px; color: var(--silver-muted); line-height: 1.7; margin-bottom: 16px; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content a:hover { color: var(--gold-light); }
.brand-name { color: var(--white); font-weight: 600; font-size: 16px; letter-spacing: 0.02em; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
