/* =========================================
   BHARAT BULLION — Neon Gold Dark Theme
   ========================================= */

:root {
  /* Core palette */
  --bg: #06060a;
  --bg-2: #0c0c14;
  --bg-3: #11111c;
  --ink: #f6f1e3;
  --ink-dim: #b8b3a3;
  --ink-mute: #807a6c;
  --line: rgba(255, 215, 110, 0.12);
  --line-2: rgba(255, 255, 255, 0.06);

  /* Neon accents */
  --gold: #ffd166;
  --gold-2: #ffb400;
  --gold-3: #ff8a00;
  --magenta: #ff2bd6;
  --cyan: #38e1ff;
  --green: #4dff9a;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #ffe28a 0%, #ffb400 35%, #ff8a00 75%, #ffd166 100%);
  --grad-magenta: linear-gradient(135deg, #ff7be6 0%, #ff2bd6 60%, #b217ff 100%);
  --grad-cool: linear-gradient(135deg, #38e1ff 0%, #b217ff 100%);
  --grad-frame: linear-gradient(135deg, rgba(255, 209, 102, .6), rgba(255, 43, 214, .45), rgba(56, 225, 255, .45));

  /* Shadows / glow */
  --glow-gold: 0 0 30px rgba(255, 209, 102, 0.45), 0 0 60px rgba(255, 138, 0, 0.25);
  --glow-magenta: 0 0 30px rgba(255, 43, 214, 0.45);
  --glow-cyan: 0 0 30px rgba(56, 225, 255, 0.45);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --max: 1240px;

  --t: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   BACKGROUND DECORATION
   ========================================= */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at top, rgba(255, 209, 102, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(255, 43, 214, 0.06), transparent 60%),
    linear-gradient(180deg, #06060a 0%, #08080f 50%, #06060a 100%);
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 209, 102, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 209, 102, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float 18s ease-in-out infinite;
}
.orb-gold { width: 480px; height: 480px; background: radial-gradient(circle, #ffb400, transparent 70%); top: -120px; left: -120px; }
.orb-magenta { width: 520px; height: 520px; background: radial-gradient(circle, #ff2bd6, transparent 70%); bottom: -160px; right: -160px; animation-delay: -6s; }
.orb-cyan { width: 380px; height: 380px; background: radial-gradient(circle, #38e1ff, transparent 70%); top: 40%; left: 50%; transform: translate(-50%, -50%); animation-delay: -12s; opacity: 0.25; }

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -30px); }
  66% { transform: translate(-30px, 30px); }
}
.orb-cyan { animation-name: floatCenter; }
@keyframes floatCenter {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-40%, -60%); }
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' /></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}

/* =========================================
   TOP BAR
   ========================================= */
.topbar {
  background: linear-gradient(90deg, rgba(255, 209, 102, 0.08), rgba(255, 43, 214, 0.05));
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-dim);
  position: relative;
  z-index: 5;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 38px;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar__left, .topbar__right {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.topbar__link:hover { color: var(--gold); }
.topbar__sep { opacity: .4; }
.topbar__pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(77, 255, 154, 0.06);
  color: var(--green);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block;
}
.dot--live {
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.topbar__socials { display: flex; gap: 8px; }
.topbar__socials a {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 12px;
  transition: all .25s var(--t);
}
.topbar__socials a:hover {
  background: var(--gold); color: #000; border-color: var(--gold);
  box-shadow: 0 0 14px rgba(255, 209, 102, .5);
}

/* =========================================
   NAVBAR
   ========================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(6, 6, 10, 0.7);
  border-bottom: 1px solid var(--line);
  transition: all .3s var(--t);
}
.nav.scrolled {
  background: rgba(6, 6, 10, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
  gap: 20px;
}
.nav__logo {
  display: flex; align-items: center; gap: 12px;
}
.nav__logo img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 0 16px rgba(255, 209, 102, .25);
}
.nav__brand {
  display: block;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 18px;
  color: var(--ink);
  line-height: 1;
}
.nav__brand em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav__brand-sub {
  display: block;
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 4px;
}
.nav__links {
  display: flex; gap: 4px;
}
.nav__links a {
  position: relative;
  padding: 10px 16px;
  font-size: 13.5px;
  letter-spacing: .04em;
  color: var(--ink-dim);
  transition: color .25s var(--t);
  font-weight: 500;
}
.nav__links a::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s var(--t);
  z-index: -1;
}
.nav__links a:hover, .nav__links a.active {
  color: #000;
}
.nav__links a:hover::before, .nav__links a.active::before {
  width: 100%; height: 100%;
  opacity: 1;
}
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.nav__burger span {
  display: block; width: 18px; height: 2px;
  background: var(--ink);
  transition: all .3s var(--t);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: 999px;
  transition: all .3s var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--neon {
  background: linear-gradient(135deg, #ffd166, #ffb400);
  color: #1a1300;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 24px rgba(255, 209, 102, .35), inset 0 1px 0 rgba(255, 255, 255, .4);
}
.btn--neon span { transition: transform .3s var(--t); }
.btn--neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(255, 209, 102, .65), inset 0 1px 0 rgba(255, 255, 255, .6);
}
.btn--neon:hover span { transform: translateX(4px); }
.btn--neon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .4), transparent);
  transform: translateX(-100%);
  transition: transform .8s var(--t);
}
.btn--neon:hover::after { transform: translateX(100%); }

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 18px rgba(255, 209, 102, .25);
}

.btn--lg { padding: 16px 30px; font-size: 15px; }

.btn--wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 24px rgba(37, 211, 102, .35);
}
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(37, 211, 102, .65); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 200px);
  padding: 40px 24px 80px;
}
.hero__copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: .32em;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.05);
}
.sparkle {
  color: var(--gold);
  animation: spin 6s linear infinite;
  display: inline-block;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 5.8vw, 5rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 24px;
}
.hero__title .line { display: block; }
.grad-gold {
  background: linear-gradient(120deg, #ffe28a 0%, #ffb400 30%, #ff8a00 60%, #ffd166 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease-in-out infinite;
  text-shadow: 0 0 40px rgba(255, 209, 102, .35);
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.grad-magenta {
  background: linear-gradient(120deg, #ff7be6, #ff2bd6 50%, #b217ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(255, 43, 214, .35);
}

.hero__lead {
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 540px;
  margin: 0 0 32px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 540px;
}
.stat {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--r-md);
  padding: 16px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--t);
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shine 3s linear infinite;
}
@keyframes shine {
  to { left: 100%; }
}
.stat:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 209, 102, .15);
}
.stat__num {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 30px;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat__unit {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* Hero visual */
.hero__visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__rings {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
}
.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 209, 102, .25);
}
.ring--1 { animation: rotate 30s linear infinite; }
.ring--2 { inset: 30px; border-color: rgba(255, 43, 214, .25); animation: rotate 40s linear infinite reverse; border-style: dotted; }
.ring--3 { inset: 70px; border-color: rgba(56, 225, 255, .25); animation: rotate 50s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }

.hero__stage {
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bar {
  position: absolute;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, .5));
  transition: transform .8s var(--t);
}
.hero__bar--gold {
  width: 320px;
  transform: translate(-40px, -20px) rotate(-8deg);
  z-index: 2;
  animation: floatBar 6s ease-in-out infinite;
}
.hero__bar--silver {
  width: 300px;
  transform: translate(40px, 30px) rotate(8deg);
  z-index: 1;
  animation: floatBar 6s ease-in-out infinite -3s;
}
@keyframes floatBar {
  0%, 100% { transform: translate(-40px, -20px) rotate(-8deg); }
  50% { transform: translate(-40px, -40px) rotate(-6deg); }
}
.hero__bar--silver {
  animation-name: floatBarSilver;
}
@keyframes floatBarSilver {
  0%, 100% { transform: translate(40px, 30px) rotate(8deg); }
  50% { transform: translate(40px, 50px) rotate(6deg); }
}

.hero__chip {
  position: absolute;
  padding: 12px 18px;
  border-radius: var(--r-md);
  font-family: 'Cinzel', serif;
  background: rgba(12, 12, 20, .85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center;
  z-index: 3;
  animation: bob 5s ease-in-out infinite;
}
.hero__chip--gold {
  top: 20%; right: 6%;
  box-shadow: 0 0 30px rgba(255, 209, 102, .35);
  border-color: rgba(255, 209, 102, .5);
}
.hero__chip--silver {
  bottom: 18%; left: 4%;
  box-shadow: 0 0 30px rgba(56, 225, 255, .35);
  border-color: rgba(56, 225, 255, .4);
  animation-delay: -2.5s;
}
.hero__chip span {
  font-size: 22px; font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__chip--silver span {
  background: linear-gradient(135deg, #fff, #38e1ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__chip small {
  font-size: 10px; letter-spacing: .2em; color: var(--ink-dim);
  margin-top: 2px;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__sparkles i {
  position: absolute;
  top: var(--y); left: var(--x);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
  animation: twinkle 3s ease-in-out infinite;
}
.hero__sparkles i:nth-child(even) {
  background: var(--magenta);
  box-shadow: 0 0 10px var(--magenta), 0 0 20px var(--magenta);
  animation-delay: -1s;
}
.hero__sparkles i:nth-child(3n) {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan);
  animation-delay: -2s;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

/* Ticker */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 209, 102, .04), rgba(255, 43, 214, .04));
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.ticker__track {
  display: flex;
  gap: 60px;
  padding: 14px 0;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}
.ticker__item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--ink-dim);
  display: inline-flex; align-items: center; gap: 8px;
}
.ticker__item b {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .1em;
}
.ticker__item em {
  font-style: normal;
  color: var(--green);
  font-size: 12px;
}
@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}

/* =========================================
   TRUST STRIP
   ========================================= */
.trust {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: rgba(255, 255, 255, 0.01);
}
.trust__grid {
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap;
  gap: 30px;
}
.trust__item {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--ink-dim);
  text-align: center;
}
.trust__item span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

/* =========================================
   SECTION GENERIC
   ========================================= */
.section {
  padding: 110px 0;
  position: relative;
}
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  margin: 12px 0 18px;
}
.section__lead {
  color: var(--ink-dim);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--t), transform .9s var(--t);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   ABOUT
   ========================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
  height: 540px;
  display: flex; align-items: center; justify-content: center;
}
.about__frame {
  position: relative;
  width: 360px; height: 360px;
  border-radius: 50%;
  padding: 4px;
  background: var(--grad-frame);
  display: flex; align-items: center; justify-content: center;
  animation: rotate 30s linear infinite;
  box-shadow: 0 0 80px rgba(255, 209, 102, .2), 0 0 120px rgba(255, 43, 214, .15);
}
.about__frame img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-2);
  animation: rotate 30s linear infinite reverse;
  filter: drop-shadow(0 0 20px rgba(255, 209, 102, .3));
}
.about__frame-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 102, .2), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}
.about__chip {
  position: absolute;
  bottom: 30px; right: 30px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(12, 12, 20, .9);
  backdrop-filter: blur(10px);
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: .14em;
  box-shadow: 0 0 30px rgba(255, 209, 102, .2);
}
.about__chip b {
  font-size: 22px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 6px;
}

.about__copy p {
  color: var(--ink-dim);
  font-size: 15.5px;
  margin: 0 0 18px;
}
.about__copy b { color: var(--gold); font-weight: 600; }
.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0 32px;
}
.af {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  transition: all .3s var(--t);
}
.af:hover {
  border-color: var(--gold);
  background: rgba(255, 209, 102, .04);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 209, 102, .12);
}
.af__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  background: var(--grad-gold);
  color: #1a1300;
  margin-bottom: 10px;
}
.af h4 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--ink);
}
.af p {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0;
}

/* =========================================
   PRODUCTS
   ========================================= */
.products { padding-bottom: 90px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  position: relative;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  transition: all .4s var(--t);
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(255, 209, 102, .3), transparent);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity .4s var(--t);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 50px rgba(255, 209, 102, .1);
}
.product-card:hover::before { opacity: 1; }

.product-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--grad-gold);
  color: #1a1300;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(255, 209, 102, .5);
  z-index: 2;
}
.product-card__badge--alt {
  background: var(--grad-magenta);
  color: white;
  box-shadow: 0 0 14px rgba(255, 43, 214, .5);
}
.product-card__img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin-bottom: 16px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .4));
}
.product-card__img img { max-height: 100%; object-fit: contain; }
.product-card__img--combo { gap: 0; }
.mini-bar {
  max-height: 160px;
}
.mini-bar--gold { transform: translateX(20px) rotate(-8deg); }
.mini-bar--silver { transform: translateX(-20px) rotate(8deg); }

.product-card__img--coin { gap: 30px; }
.coin {
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 38px;
  position: relative;
}
.coin::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, .3);
}
.coin--gold {
  background: radial-gradient(circle at 30% 30%, #ffe28a, #ffb400 60%, #b67b00);
  color: #1a1300;
  box-shadow: 0 0 30px rgba(255, 209, 102, .4), inset 0 -8px 14px rgba(0, 0, 0, .2);
}
.coin--silver {
  background: radial-gradient(circle at 30% 30%, #f0f0f0, #c0c0c0 60%, #707070);
  color: #1a1a1a;
  box-shadow: 0 0 30px rgba(56, 225, 255, .3), inset 0 -8px 14px rgba(0, 0, 0, .2);
}

.product-card__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  margin: 0 0 8px;
}
.product-card p {
  font-size: 13.5px;
  color: var(--ink-dim);
  margin: 0 0 14px;
}
.product-card__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12px;
  color: var(--ink-mute);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}
.product-card__meta li { display: flex; justify-content: space-between; }
.product-card__meta b { color: var(--ink); font-weight: 600; }
.product-card__link {
  display: inline-block;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
  transition: all .3s var(--t);
}
.product-card__link:hover { transform: translateX(4px); text-shadow: 0 0 12px rgba(255, 209, 102, .6); }

.products__cta { text-align: center; margin-top: 50px; }

/* =========================================
   SERVICES
   ========================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.02);
  transition: all .4s var(--t);
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--magenta);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 43, 214, .15);
}
.service-card__num {
  font-family: 'Cinzel', serif;
  font-size: 50px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff7be6, #ff2bd6 60%, #b217ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .35;
  line-height: 1;
  margin-bottom: 12px;
  transition: opacity .4s var(--t);
}
.service-card:hover .service-card__num { opacity: .85; }
.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  margin: 0 0 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--ink-dim);
  margin: 0;
}
.service-card__line {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--magenta), transparent);
  transform: translateX(-100%);
  transition: transform .6s var(--t);
}
.service-card:hover .service-card__line { transform: translateX(0); }

/* =========================================
   VERIFY
   ========================================= */
.verify {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 209, 102, .08), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 43, 214, .08), transparent 60%);
}
.verify__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.verify__bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.verify__bullets li {
  font-size: 15px;
  color: var(--ink-dim);
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .02);
}
.verify__form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  box-shadow: 0 0 60px rgba(255, 209, 102, .08);
  position: relative;
}
.verify__form label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 12px;
}
.verify__input {
  display: flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(0, 0, 0, .3);
  overflow: hidden;
  transition: border-color .3s var(--t);
}
.verify__input:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(255, 209, 102, .25);
}
.verify__input-icon {
  padding: 0 14px;
  font-size: 18px;
  color: var(--gold);
}
.verify__input input {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 8px;
  color: var(--ink);
  font-size: 15px;
  font-family: 'Space Grotesk', monospace;
  letter-spacing: .04em;
  outline: none;
}
.verify__input button {
  width: 56px; height: 56px;
  background: var(--grad-gold);
  color: #1a1300;
  font-size: 22px;
  font-weight: 700;
  transition: all .3s var(--t);
}
.verify__input button:hover {
  box-shadow: 0 0 24px rgba(255, 209, 102, .6);
}
.verify__hint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-mute);
}
.verify__sample {
  color: var(--gold);
  font-family: 'Space Grotesk', monospace;
  text-decoration: underline dotted;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.verify__result {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(77, 255, 154, .4);
  border-radius: var(--r-md);
  background: rgba(77, 255, 154, .05);
}
.verify__result-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(77, 255, 154, .15);
  font-size: 13px;
  color: var(--ink-dim);
}
.verify__result-row b {
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
}
.verify__result-stamp {
  text-align: center;
  margin-top: 12px;
  padding: 10px;
  background: var(--green);
  color: #042b13;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: .14em;
  border-radius: var(--r-sm);
  box-shadow: 0 0 24px rgba(77, 255, 154, .5);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  transition: all .4s var(--t);
}
.testi::before {
  content: '“';
  position: absolute;
  top: -20px; left: 20px;
  font-family: 'Cinzel', serif;
  font-size: 100px;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .5;
  line-height: 1;
}
.testi:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 209, 102, .1);
}
.testi blockquote {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.6;
  font-style: italic;
}
.testi figcaption {
  display: flex; align-items: center; gap: 12px;
}
.testi__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 14px;
  color: #1a1300;
  background: var(--grad-gold);
  box-shadow: 0 0 14px rgba(255, 209, 102, .35);
}
.testi b { display: block; font-family: 'Cinzel', serif; font-size: 14px; }
.testi small { color: var(--ink-mute); font-size: 12px; }

/* =========================================
   CONTACT
   ========================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact__copy p {
  color: var(--ink-dim);
  font-size: 16px;
  margin: 0 0 24px;
}
.contact__bullets {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 24px;
}
.cb {
  display: flex; gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.02);
  transition: all .3s var(--t);
}
.cb:hover { border-color: var(--gold); transform: translateX(4px); }
.cb__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-gold);
  color: #1a1300;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cb b { display: block; font-family: 'Cinzel', serif; font-size: 14px; margin-bottom: 4px; }
.cb p { margin: 0; font-size: 13.5px; color: var(--ink-dim); }
.cb a { color: var(--gold); }
.cb a:hover { text-decoration: underline; }

.contact__form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255, 209, 102, .04), rgba(255, 255, 255, 0));
  box-shadow: 0 0 80px rgba(255, 209, 102, .06);
}
.contact__form h3 {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  margin: 0 0 22px;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact__form label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact__form input, .contact__form select, .contact__form textarea {
  width: 100%;
  background: rgba(0, 0, 0, .3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  transition: all .3s var(--t);
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(255, 209, 102, .2);
}
.contact__form textarea { resize: vertical; }
.contact__form .btn { width: 100%; justify-content: center; margin-top: 14px; }
.form-success {
  text-align: center;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(77, 255, 154, .4);
  border-radius: var(--r-sm);
  background: rgba(77, 255, 154, .06);
  color: var(--green);
  font-weight: 600;
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 209, 102, .12), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 43, 214, .12), transparent 50%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .3));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.cta-band h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 8px;
}
.cta-band p { color: var(--ink-dim); margin: 0; }
.cta-band__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .5));
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer__brand img {
  width: 60px; height: 60px;
  border-radius: 50%;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 0 16px rgba(255, 209, 102, .25);
}
.footer__brand h4 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  letter-spacing: .14em;
  margin: 0 0 14px;
}
.footer__brand h4 em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__brand p {
  font-size: 14px;
  color: var(--ink-dim);
  margin: 0 0 18px;
  max-width: 360px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 14px;
  transition: all .3s var(--t);
}
.footer__socials a:hover {
  background: var(--gold); color: #000; border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 14px rgba(255, 209, 102, .5);
}
.footer h5 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: .14em;
  margin: 0 0 18px;
  color: var(--ink);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a {
  font-size: 14px;
  color: var(--ink-dim);
  transition: color .25s var(--t);
}
.footer ul a:hover { color: var(--gold); }
.footer p { color: var(--ink-dim); font-size: 14px; margin: 0 0 10px; }
.footer p a { color: var(--gold); }
.footer p a:hover { text-decoration: underline; }

.footer__bar {
  padding: 20px 0;
  font-size: 13px;
  color: var(--ink-mute);
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
  z-index: 99;
  animation: bobWa 3s ease-in-out infinite;
}
@keyframes bobWa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-wa::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .6);
  animation: ringPulse 2s ease-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding-bottom: 60px; }
  .hero__visual { height: 440px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__visual { height: 420px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .verify__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav__links {
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(6, 6, 10, .97);
    backdrop-filter: blur(16px);
    padding: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-200%);
    transition: transform .4s var(--t);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 16px; border-radius: 8px; }
  .nav__burger { display: flex; }
  .nav__cta .btn { display: none; }

  .section { padding: 80px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__visual { height: 360px; }
  .hero__stage { width: 320px; height: 320px; }
  .hero__bar--gold { width: 240px; }
  .hero__bar--silver { width: 220px; }
  .about__frame { width: 280px; height: 280px; }
  .cta-band__inner { flex-direction: column; text-align: center; }
}
