@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --gold:        #FBBF24;
  --gold-light:  #E8C96A;
  --gold-dim:    #8A6F32;
  --gold-glow:   rgba(201,168,76,0.12);

  --ink:         #080808;
  --ink-2:       #111111;
  --ink-3:       #1A1A1A;
  --ink-4:       #242424;
  --ink-5:       #2E2E2E;

  --beige:       #F5F0E6;
  --beige-2:     #EDE6D8;
  --white:       #FDFAF4;

  --text-muted:  #A09890;
  --text-beige:  #C8BFB0;

  --border-gold: rgba(201,168,76,0.18);
  --border-dark: rgba(255,255,255,0.06);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --ease:         0.35s cubic-bezier(0.7,0,0.3,1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--ink);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3 { font-family: var(--font-display); }
a { text-decoration: none; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes floatDelayed {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes spinSlow {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

.fade-up  { animation: fadeUp  1s 0.2s both; }
.fade-in  { animation: fadeIn  1.2s 0.5s both; }
.float    { animation: float   4s ease-in-out infinite; }
.float-delayed { animation: float 4.5s 0.5s ease-in-out infinite; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color var(--ease);
  border-radius: 4px;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform var(--ease);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--gold); }
.btn-primary > span { position: relative; z-index: 1; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  border-radius: 4px;
}
.btn-outline-white:hover { border-color: rgba(201,168,76,0.5); color: var(--gold); }

.btn-ghost {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d4cfc9;
  padding: 8px 14px;
  transition: color 0.2s;
  border-radius: 4px;
}
.btn-ghost:hover { color: #fff; }

.btn-dark { background: var(--ink); color: var(--gold); }
.btn-dark::before { background: var(--gold); }
.btn-dark:hover { color: var(--ink); }

/* ─── SECTION HELPERS ────────────────────────────────────── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: #fff;
}
.section-header h2 em { color: var(--gold); font-style: italic; }
.dark-heading { color: var(--ink) !important; }
.dark-heading em { color: var(--gold) !important; }
.gold-dim-em { color: var(--gold-dim) !important; }

.section-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.gold-dim-label { color: var(--gold-dim) !important; }
.gold-dim-label::before { background: var(--gold-dim) !important; }

.divider {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 24px;
  border: none;
}
.divider-dim {
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent) !important;
}
.section-desc {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.85;
  font-size: 14px;
}
.gold-rule {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 28px 0;
}
.gold-rule.short { width: 50px; opacity: 0.6; margin-bottom: 28px; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5vw;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(201,168,76,0.1);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; flex-direction: row; align-items: center; gap: 10px; line-height: 1; }
.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #fff;
}
.brand-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d4cfc9;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; gap: 12px; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: 
    radial-gradient(ellipse 1000px 1100px at 25% 0%, #2F2813 0%, transparent 60%),
    var(--ink);
  display: flex;
  align-items: center;
  padding: 70px 5vw 20px;
  position: relative;
  overflow: hidden;
}
.hero-depth-1, .hero-depth-2, .hero-depth-3, .hero-glow {
  display: none;
}
.hero-line {
  position: absolute; top: 0; right: 8%; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(251,191,36,0.2), transparent);
}
.hero-line-2 {
  position: absolute; top: 0; right: 52%; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(251,191,36,0.06), transparent);
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: center;
}
.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}.hero-left h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  color: var(--text-muted);
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-btns-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat-n { display: block; font-size: 28px; color: var(--gold-light); font-weight: 700; font-style: italic; letter-spacing: 1px; }
.stat-l { display: block; font-size: 9px; letter-spacing: 2.5px; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; }

.hero-right {
  position: relative;
  height: clamp(560px, 80vh, 740px);
}
.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(400px, 48vw, 560px);
  height: clamp(400px, 48vw, 560px);
  transform: translate(-50%,-50%);
  border: 1px dashed rgba(251,191,36,0.1);
  border-radius: 50%;
  animation: spinSlow 30s linear infinite;
}
.hero-ring-2 {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(300px, 34vw, 400px);
  height: clamp(300px, 34vw, 400px);
  transform: translate(-50%,-50%);
  border: 1px dashed rgba(251,191,36,0.06);
  border-radius: 50%;
  animation: spinSlow 20s linear infinite reverse;
}
.hero-main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
.hero-main-img.active {
  opacity: 1;
}
.hero-img-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(380px, 42vw, 540px);
  height: clamp(600px, 82vh, 780px);
  border-radius: 0;
  border: none;
  box-shadow: none;
  overflow: hidden;
  z-index: 2;
  background: transparent;
}
.hero-slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(251,191,36,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slide-dot:hover {
  background: rgba(251,191,36,0.5);
  transform: scale(1.2);
}
.slide-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(251,191,36,0.6);
}
.hero-img-fade {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(8,8,8,0) 0%, rgba(8,8,8,0) 85%, var(--ink) 100%),
    linear-gradient(to right, rgba(8,8,8,0) 0%, rgba(8,8,8,0) 85%, var(--ink) 100%),
    linear-gradient(to left, rgba(8,8,8,0) 0%, rgba(8,8,8,0) 85%, var(--ink) 100%),
    linear-gradient(to top, rgba(8,8,8,0) 0%, rgba(8,8,8,0) 85%, var(--ink) 100%);
  pointer-events: none;
  z-index: 3;
}
.hero-img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(251,191,36,0.08) 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-img-spotlight {
  position: absolute;
  top: -30%; left: 20%;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(251,191,36,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
.hero-img-corner { display: none; }
.hero-jewel-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(251,191,36,0.25);
  padding: 10px 16px;
  z-index: 5;
  min-width: 180px;
}
.top-tag  { top: 40px;  right: -80px; }
.bot-tag  { bottom: 50px; left: -80px; }
.jewel-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(251,191,36,0.6);
}
.jewel-tag-name { font-size: 11px; color: #fff; font-weight: 500; letter-spacing: 0.5px; }
.jewel-tag-type { font-size: 9px; color: var(--gold); letter-spacing: 1.5px; margin-top: 2px; text-transform: uppercase; }
.hero-issue-label {
  position: absolute;
  bottom: 20px; right: 0;
  font-size: 8px;
  letter-spacing: 5px;
  color: rgba(251,191,36,0.4);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFloat var(--dur) var(--delay) ease-in-out infinite;
}
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-80px) scale(1.2); }
}

/* ─── TICKER ─────────────────────────────────────────────── */
.ticker-wrap {
  width: 100%;
  background: rgba(251,191,36,0.06);
  border-top: 1px solid rgba(251,191,36,0.12);
  border-bottom: 1px solid rgba(251,191,36,0.12);
  overflow: hidden;
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0.85;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── COLLECTIONS ────────────────────────────────────────── */
#collections {
  padding: 110px 5vw;
  background: var(--ink-2);
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.cat-btn {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  border-radius: 4px;
}
.cat-btn:hover { border-color: rgba(201,168,76,0.4); color: var(--gold); }
.cat-btn.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2px;
  margin-bottom: 48px;
}
.product-card {
  background: var(--ink-3);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.35);
}
.product-img {
  height: 280px;
  width: 280px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--ink-4), var(--ink-3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.product-card:hover .product-img { background: linear-gradient(145deg, var(--ink-4), var(--ink-5)); }
.product-emoji {
  font-size: 68px;
  filter: drop-shadow(0 8px 20px rgba(201,168,76,0.25));
  transition: transform 0.4s;
}
.product-card:hover .product-emoji { transform: scale(1.1); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(8,8,8,0.75);
  color: var(--gold);
  font-size: 8px; letter-spacing: 2px;
  padding: 4px 8px;
  text-transform: uppercase;
  border: 1px solid rgba(251,191,36,0.3);
  backdrop-filter: blur(4px);
  transition: background 0.3s, color 0.3s;
}
.product-card:hover .product-badge { background: var(--gold); color: var(--ink); }
.product-body { padding: 20px 22px 24px; }
.product-type { font-size: 9px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.product-name { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: #fff; margin-bottom: 12px; }
.product-weight {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 18px;
}
.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: var(--ink-3);
  aspect-ratio: 1/1;
}
.product-card .btn-primary { width: 100%; font-size: 9px; letter-spacing: 2px; }
.product-hint { font-size: 10px; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ─── BENEFITS & PRIVILEGES ──────────────────────────────── */
#benefits {
  padding: 110px 5vw;
  background: var(--ink);
}
.benefits-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.benefit-highlight-card {
  background: var(--ink-3);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.benefit-highlight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.benefit-highlight-card.featured {
  border-color: rgba(201,168,76,0.2);
}
.bh-img-wrap {
  height: 180px;
  background: linear-gradient(145deg, var(--ink-4), var(--ink-5));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-dark);
}
.benefit-highlight-card.featured .bh-img-wrap {
  background: linear-gradient(145deg, rgba(201,168,76,0.08), var(--ink-4));
  border-bottom-color: rgba(201,168,76,0.15);
}
.bh-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bh-img-placeholder {
  font-size: 52px;
  color: var(--gold-dim);
  opacity: 0.6;
}
.benefit-highlight-card.featured .bh-img-placeholder {
  color: var(--gold);
  opacity: 0.9;
}
.bh-body { padding: 24px 26px 28px; }
.bh-tag {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.bh-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
.bh-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.perk-item {
  background: var(--ink-3);
  border: 1px solid var(--border-dark);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.perk-item:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-3px);
}
.perk-icon {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.85;
}
.perk-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.perk-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── LIGHT SECTION ──────────────────────────────────────── */
.light-section { background: var(--beige); color: var(--ink); padding: 110px 5vw; }
.light-section .section-header h2 { color: var(--ink); }

/* ─── FEATURES ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
}
.features-grid--row {
  grid-template-columns: repeat(5, 1fr);
}
.feature-card {
  background: var(--white);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.35s, box-shadow 0.35s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--beige-2);
  border: 1px solid rgba(138,111,50,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px; color: var(--gold-dim);
}
.feature-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: #444; line-height: 1.85; }

/* ─── RESELLER ───────────────────────────────────────────── */
#reseller-program {
  padding: 110px 5vw;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.reseller-glow {
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  pointer-events: none;
}
.reseller-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reseller-left h2 {
  font-family: var(--font-display);
  font-size: clamp(32px,4vw,52px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.reseller-left h2 em { color: var(--gold-light); font-style: italic; }
.reseller-desc { color: var(--text-muted); line-height: 1.9; margin-bottom: 40px; font-size: 14px; }
.reseller-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.reseller-card {
  background: var(--ink-3);
  border: 1px solid var(--border-dark);
  padding: 26px 22px;
  transition: border-color 0.3s, transform 0.3s;
}
.reseller-card:hover { transform: translateY(-3px); }
.reseller-val { font-size: 32px; color: var(--gold-light); margin-bottom: 8px; font-weight: 500; }
.reseller-title { color: #fff; font-size: 11px; font-weight: 500; letter-spacing: 1.5px; margin-bottom: 8px; text-transform: uppercase; }
.reseller-desc-sm { color: var(--text-muted); font-size: 12px; line-height: 1.7; }

/* ─── STEPS ──────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap: 0;
}
.step-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.07);
}
.step-item:last-child { border-right: none; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display); font-size: 15px; color: var(--gold); font-weight: 500;
  border: 1px solid rgba(201,168,76,0.3);
}
.step-item h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step-item p { font-size: 13px; color: #555; line-height: 1.75; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
#testimonials { padding: 110px 5vw; background: var(--ink-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 2px;
}
.testimonial-card {
  background: var(--ink-3);
  padding: 36px 30px;
  border: 1px solid var(--border-dark);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); border-color: rgba(201,168,76,0.2); }
.stars { margin-bottom: 20px; color: var(--gold); letter-spacing: 3px; font-size: 14px; }
.testimonial-text {
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
}
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-weight: 600; font-size: 12px;
  flex-shrink: 0;
}
.author-name { font-weight: 500; font-size: 13px; color: #fff; }
.author-role { font-size: 9px; color: var(--gold); letter-spacing: 2px; margin-top: 3px; text-transform: uppercase; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.1); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  font-family: var(--font-body); font-size: 14px; color: var(--ink); font-weight: 400; letter-spacing: 0.3px;
}
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dim); font-size: 18px; flex-shrink: 0; margin-left: 16px;
  transition: transform 0.3s, background 0.2s, color 0.2s;
  line-height: 1;
}
.faq-q.open .faq-icon { transform: rotate(45deg); background: var(--gold-dim); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  color: #333; line-height: 1.85; font-size: 14px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open { max-height: 200px; padding-bottom: 22px; }

/* ─── FINAL CTA ──────────────────────────────────────────── */
#final-cta {
  padding: 130px 5vw;
  background: var(--ink);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold));
  margin: 0 auto 40px;
  opacity: 0.5;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(36px,5vw,64px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin: 20px 0;
}
.cta-heading em { color: var(--gold-light); font-style: italic; }
.cta-desc { color: var(--text-muted); font-size: 15px; line-height: 1.9; margin-bottom: 48px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background: #050505; padding: 70px 5vw 32px; border-top: 1px solid var(--border-dark); }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-tagline { color: var(--text-muted); font-size: 13px; line-height: 1.85; max-width: 240px; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.social-btn img { width: 18px; height: 18px; object-fit: contain; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { color: var(--gold); font-size: 9px; letter-spacing: 3px; margin-bottom: 22px; text-transform: uppercase; }
.footer-col a, .footer-col p {
  display: block; color: var(--text-muted); font-size: 13px;
  margin-bottom: 12px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 12px; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 24px; }
  .hero-jewel-tag { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px 5vw 40px;
    gap: 24px;
    border-bottom: 1px solid var(--border-gold);
    animation: fadeIn 0.25s ease;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 12px; }
  .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  #hero { padding: 100px 5vw 40px; }

  .reseller-inner { grid-template-columns: 1fr; gap: 48px; }
  .reseller-right { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); }
  .step-item:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.07); }

  .features-grid--row { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .light-section { padding: 70px 4vw; }
  #collections, #reseller-program, #testimonials, #benefits { padding: 70px 4vw; }
  .benefits-highlights { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── TERMS MODAL ───────────────────────────────────────── */
.terms-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.terms-modal-overlay.open { display: flex; }
.terms-modal {
  background: var(--ink-2);
  border: 1px solid rgba(201,168,76,0.2);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
}
.terms-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 36px 20px;
  border-bottom: 1px solid var(--border-dark);
  flex-shrink: 0;
}
.terms-modal-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: #fff;
}
.terms-modal-header h2 em { color: var(--gold); font-style: italic; }
.terms-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 28px; line-height: 1;
  padding: 0 0 0 16px; flex-shrink: 0;
  transition: color 0.2s;
}
.terms-close:hover { color: var(--gold); }
.terms-effective {
  padding: 16px 36px 0;
  font-size: 11px; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  flex-shrink: 0;
}
.terms-intro {
  padding: 12px 36px 20px;
  font-size: 13px; color: var(--text-muted);
  line-height: 1.85; flex-shrink: 0;
  border-bottom: 1px solid var(--border-dark);
}
.terms-body {
  overflow-y: auto;
  padding: 24px 36px 36px;
  flex: 1;
}
.terms-body::-webkit-scrollbar { width: 3px; }
.terms-body::-webkit-scrollbar-thumb { background: var(--gold-dim); }
.terms-section { margin-bottom: 28px; }
.terms-section h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.terms-section p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 8px;
}
.terms-section ul {
  padding-left: 20px; margin: 8px 0;
}
.terms-section ul li {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 4px;
}
.terms-agreement {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 20px 24px;
  border-radius: 4px;
}
.terms-agreement h3 { color: var(--gold) !important; }

@media (max-width: 480px) {
  .reseller-right { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-item { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
}




/* â”€â”€â”€ GOLD PRICE TODAY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#gold-price-today {
  padding: 90px 5vw;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
#gold-price-today::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.gpt-header { text-align: center; margin-bottom: 52px; }
.gpt-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: #fff;
}
.gpt-header h2 em { color: var(--gold); font-style: italic; }
.gpt-cards {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2px;
  max-width: 860px;
  margin: 0 auto 24px;
}
.gpt-card {
  background: var(--ink-3);
  border: 1px solid var(--border-dark);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.gpt-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.gpt-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.gpt-card--main {
  border-color: rgba(201,168,76,0.2);
  background: linear-gradient(145deg, rgba(201,168,76,0.06), var(--ink-3));
}
.gpt-card--main::before {
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6), transparent);
}
.gpt-card-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.gpt-card-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 6px;
  line-height: 1;
}
.gpt-card--main .gpt-card-value { color: var(--gold-light); }
.gpt-card-unit {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.gpt-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .gpt-cards { grid-template-columns: 1fr; max-width: 360px; }
  #gold-price-today { padding: 70px 4vw; }
}

.gpt-cards--single {
  grid-template-columns: 1fr;
  max-width: 360px;
}
