/* ==============================
   VIDREEL — LUXURY MAXIMALIST
   Jewel tones · Bold typography
   Art Deco influence · No neon
   ============================== */

:root {
  --black:    #060606;
  --dark:     #0D0C0C;
  --card:     #131212;
  --card-alt: #181616;
  --gold:     #D4AF37;
  --gold2:    #F5D26E;
  --ruby:     #C0392B;
  --ruby2:    #E74C3C;
  --emerald:  #1A8C5E;
  --emerald2: #27AE60;
  --sapphire: #1A5C8C;
  --sapphire2:#2980B9;
  --amethyst: #6C3483;
  --amethyst2:#8E44AD;
  --cream:    #F8F4EC;
  --text:     #EDE8E0;
  --muted:    #8E8880;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered cards */
.reveal-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.reveal.active .reveal-child:nth-child(1) { transition-delay: 0.1s; }
.reveal.active .reveal-child:nth-child(2) { transition-delay: 0.2s; }
.reveal.active .reveal-child:nth-child(3) { transition-delay: 0.3s; }
.reveal.active .reveal-child:nth-child(4) { transition-delay: 0.4s; }
.reveal.active .reveal-child:nth-child(5) { transition-delay: 0.5s; }

/* ── COLOR ACCENTS ── */
.gold    { color: var(--gold); font-style: normal; font-weight: inherit; }
.ruby    { color: var(--ruby2); font-style: normal; font-weight: inherit; }
.emerald { color: var(--emerald2); font-style: normal; font-weight: inherit; }

/* ── TICKER ── */
.ticker-bar {
  width: 100%;
  background: var(--gold);
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.ticker-track {
  display: inline-flex;
  gap: 50px;
  animation: ticker-scroll 45s linear infinite;
}
.ticker-track span { display: inline-block; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(6,6,6,0.96);
  border-bottom: 2px solid var(--gold);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-icon {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(212,175,55,0.45));
  transition: transform .25s ease;
}
.brand-icon:hover {
  transform: scale(1.08) rotate(4deg);
}
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  letter-spacing: 4px;
  color: var(--gold);
  line-height: 1;
}

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: #000;
  font-weight: 900;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .2s;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}
.nav-cta:hover { 
  background: var(--gold2); 
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212,175,55,0.55);
}

/* ── HERO ── */
.hero {
  padding: 100px 6% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, rgba(192,57,43,0.06) 40%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 2.5px;
  padding: 8px 24px;
  border-radius: 3px;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.95;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.h1-line1 {
  font-size: clamp(60px, 9vw, 135px);
  color: var(--cream);
  letter-spacing: 6px;
}
.h1-line2 {
  font-size: clamp(70px, 11vw, 165px);
  color: var(--cream);
  letter-spacing: 6px;
}
.h1-line3 {
  font-size: clamp(54px, 8vw, 125px);
  color: var(--cream);
  letter-spacing: 6px;
}
.hero-sub {
  max-width: 680px;
  margin: 0 auto 44px;
  font-size: 19px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.7;
}
.hero-sub strong { color: var(--cream); font-weight: 700; }

/* ── BUTTONS ── */
.hero-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.btn-svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  font-weight: 900;
  font-size: 16px;
  padding: 18px 38px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-gold:hover { 
  background: var(--gold2); 
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.55);
}
.btn-xl { font-size: 21px; padding: 22px 52px; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  font-weight: 900;
  font-size: 16px;
  padding: 18px 38px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(248,244,236,0.3);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.06); }

/* ── ICON WRAPPERS (JEWEL COLORS) ── */
.step-icon-wrap, .bento-icon-wrap, .about-box-svg {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.step-icon-wrap svg, .bento-icon-wrap svg, .about-box-svg svg {
  width: 26px;
  height: 26px;
}

.icon-gold {
  background: rgba(212,175,55,0.18);
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.icon-ruby {
  background: rgba(192,57,43,0.22);
  border: 1.5px solid var(--ruby2);
  color: var(--ruby2);
}
.icon-emerald {
  background: rgba(26,140,94,0.22);
  border: 1.5px solid var(--emerald2);
  color: var(--emerald2);
}
.icon-sapphire {
  background: rgba(26,92,140,0.22);
  border: 1.5px solid var(--sapphire2);
  color: var(--sapphire2);
}
.icon-amethyst {
  background: rgba(108,52,131,0.22);
  border: 1.5px solid var(--amethyst2);
  color: var(--amethyst2);
}

.sec-svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

/* ── HERO STATS ── */
.hero-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border: 2px solid rgba(212,175,55,0.35);
  border-radius: 8px;
  max-width: 840px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(19,18,18,0.7);
}
.hero-stat {
  flex: 1;
  min-width: 150px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(212,175,55,0.04);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
}
.stat-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-divider {
  width: 2px;
  height: 80px;
  background: rgba(212,175,55,0.35);
}

/* ── STRIPE DIVIDER ── */
.stripe-divider { display: flex; height: 10px; margin: 70px 0 0; }
.stripe { flex: 1; }
.s1 { background: var(--ruby); }
.s2 { background: var(--gold); }
.s3 { background: var(--emerald); }
.s4 { background: var(--amethyst); }
.s5 { background: var(--sapphire); }
.s6 { background: var(--gold); }
.s7 { background: var(--ruby2); }

/* ── SECTION HEADINGS ── */
.section-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 54px;
  line-height: 1.1;
}

/* ── HOW IT WORKS ── */
.section-how {
  padding: 100px 6%;
  background: var(--dark);
  text-align: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.step-card {
  border-radius: 8px;
  padding: 48px 36px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all .25s ease;
}
.step-card:hover { transform: translateY(-5px); }
.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 110px;
  line-height: 1;
  opacity: 0.12;
  position: absolute;
  top: 10px; right: 20px;
  letter-spacing: -2px;
}
.step-icon { font-size: 42px; margin-bottom: 22px; }
.step-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}
.step-card p { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.7; font-weight: 500; }

.step-ruby    { background: rgba(192,57,43,0.18); border-color: rgba(192,57,43,0.5); }
.step-ruby .step-number { color: var(--ruby); }
.step-gold    { background: rgba(212,175,55,0.12); border-color: rgba(212,175,55,0.45); }
.step-gold .step-number { color: var(--gold); }
.step-emerald { background: rgba(26,140,94,0.16); border-color: rgba(26,140,94,0.45); }
.step-emerald .step-number { color: var(--emerald); }

/* ── BENTO FEATURES ── */
.section-features {
  padding: 100px 6%;
  background: var(--black);
  text-align: center;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
}
.bento-wide { grid-column: span 2; }
.bento-card {
  border-radius: 8px;
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: all .25s ease;
}
.bento-card:hover { transform: translateY(-4px); }
.bento-emoji { font-size: 38px; margin-bottom: 18px; display: block; }
.bento-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 23px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.bento-card p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; font-weight: 500; }
.bento-tag {
  margin-top: 22px;
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 7px 16px;
  border-radius: 3px;
  text-transform: uppercase;
}

.bento-dark-gold    { background: rgba(212,175,55,0.11); border-color: rgba(212,175,55,0.4); }
.bento-dark-gold .bento-tag { background: var(--gold); color: #000; }
.bento-dark-ruby    { background: rgba(192,57,43,0.15); border-color: rgba(192,57,43,0.45); }
.bento-dark-emerald { background: rgba(26,140,94,0.13); border-color: rgba(26,140,94,0.4); }
.bento-dark-sapphire{ background: rgba(26,92,140,0.15); border-color: rgba(26,92,140,0.45); }
.bento-dark-amethyst{ background: rgba(108,52,131,0.15); border-color: rgba(108,52,131,0.45); }
.bento-dark-amethyst .bento-tag { background: var(--amethyst); color: #fff; }

/* ── ABOUT US SECTION ── */
.section-about {
  padding: 110px 6%;
  background: var(--dark);
  text-align: center;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
}
.about-main-card {
  background: var(--card);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.about-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.about-brand-icon {
  width: 54px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(212,175,55,0.5));
}
.about-pill {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.about-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
}
.about-lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 18px;
}
.about-desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.about-desc strong { color: var(--emerald2); }
.about-quote {
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  font-style: italic;
}

.about-side-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-stat-box {
  border-radius: 8px;
  padding: 30px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1.5px solid transparent;
  transition: all .25s ease;
}
.about-stat-box:hover { transform: translateX(6px); }
.about-stat-icon { font-size: 34px; line-height: 1; flex-shrink: 0; margin-top: 4px; }
.about-stat-box h4 {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.about-stat-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-weight: 500;
}
.box-sapphire { background: rgba(26,92,140,0.15); border-color: rgba(26,92,140,0.45); }
.box-amethyst { background: rgba(108,52,131,0.15); border-color: rgba(108,52,131,0.45); }
.box-emerald  { background: rgba(26,140,94,0.15);  border-color: rgba(26,140,94,0.45); }

/* ── PAYOUT FEED ── */
.section-payouts {
  padding: 100px 6%;
  background: var(--black);
  text-align: center;
}
.payout-panel {
  max-width: 720px;
  margin: 0 auto;
  border: 2px solid var(--emerald);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.payout-header {
  background: var(--emerald);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.live-dot {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
.payout-feed { background: var(--card); }
.payout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  animation: slide-in .4s ease;
}
@keyframes slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.payout-user { font-weight: 700; font-size: 15px; color: var(--text); }
.payout-country { font-size: 13px; color: var(--muted); margin-top: 3px; }
.payout-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--emerald2);
  letter-spacing: 1px;
}

/* ── SECURITY STRIP ── */
.security-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 6%;
  background: rgba(212,175,55,0.07);
  border-top: 2px solid rgba(212,175,55,0.3);
  border-bottom: 2px solid rgba(212,175,55,0.3);
}
.sec-item { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; color: var(--text); }
.sec-icon { font-size: 19px; }
.sec-sep { color: var(--gold); font-size: 12px; opacity: 0.6; }

/* ── CTA ── */
.cta-section {
  padding: 120px 6%;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -150px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-badge {
  display: inline-block;
  background: var(--emerald);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 3px;
  margin-bottom: 28px;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 8vw, 115px);
  color: var(--cream);
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 22px;
}
.cta-sub {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 19px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.7;
}
.cta-fine {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── FOOTER ── */
.footer {
  background: #030303;
  border-top: 4px solid var(--gold);
  text-align: center;
  padding: 70px 6% 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
.footer-icon {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(212,175,55,0.4));
}
.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--gold);
  letter-spacing: 5px;
  line-height: 1;
}
.footer-tagline {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 34px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 13px;
  color: rgba(142,136,128,0.6);
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 950px) {
  .about-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .nav-links { display: none; }
  .hero-stat-row { flex-direction: column; }
  .stat-divider { width: 90px; height: 2px; }
}
