/* ─── Topteller Landing — style.css ─── */
:root {
  --bg:         #050510;
  --bg2:        #0a0a1e;
  --bg3:        #0f0f2a;
  --surface:    #141430;
  --surface2:   #1a1a3e;
  --gold:       #f5a623;
  --gold-light: #ffc55a;
  --gold-pale:  rgba(245,166,35,0.12);
  --gold-glow:  0 0 32px rgba(245,166,35,0.28);
  --teal:       #0f766e;
  --teal-light: #14b8a6;
  --purple:     #7c3aed;
  --purple-light:#a78bfa;
  --text:       #f0f0ff;
  --muted:      #8888bb;
  --line:       rgba(255,255,255,0.07);
  --radius:     14px;
  --radius-lg:  22px;
  --t:          0.28s ease;
  --container:  1160px;
  --nav-h:      68px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Sora', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
p  { color: var(--muted); font-size: 0.97rem; }

a { color: inherit; text-decoration: none; }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.preloader-bar {
  width: 200px; height: 3px;
  background: var(--surface2);
  border-radius: 99px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  animation: preloader-fill 1.4s ease-in-out forwards;
}
@keyframes preloader-fill {
  0%   { width: 0; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

.skel-rows { display: flex; flex-direction: column; gap: 10px; width: 220px; }
.skel { height: 10px; border-radius: 6px; background: var(--surface2); position: relative; overflow: hidden; }
.skel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  animation: shimmer 1.4s infinite;
}
.skel-lg { height: 14px; }
.skel-sm { width: 60%; }
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(5,5,16,0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: background var(--t);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 1.25rem; color: var(--gold);
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--text); font-weight: 400; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--muted);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 22px; border-radius: 99px;
  background: var(--gold); color: #000;
  font-weight: 700; font-size: 0.88rem;
  transition: opacity var(--t), transform var(--t);
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }

/* ── Section rhythm ── */
section { padding: 96px 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title { margin-bottom: 14px; }
.section-lead { font-size: 1.05rem; max-width: 560px; }

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 20% 50%, rgba(245,166,35,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(124,58,237,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(15,118,110,0.06) 0%, transparent 70%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid rgba(245,166,35,0.25);
  border-radius: 99px; padding: 5px 14px;
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title { margin-bottom: 18px; }
.hero-title .accent { color: var(--gold); }
.hero-sub { font-size: 1.1rem; max-width: 500px; margin-bottom: 36px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform var(--t), box-shadow var(--t), opacity var(--t);
  cursor: pointer;
}
.btn-hero:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #000; box-shadow: 0 4px 24px rgba(245,166,35,0.35); }
.btn-gold:hover { box-shadow: 0 8px 32px rgba(245,166,35,0.55); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 4px 20px rgba(15,118,110,0.35); }
.btn-purple { background: var(--purple); color: #fff; box-shadow: 0 4px 20px rgba(124,58,237,0.35); }

/* Hero platform cards */
.hero-platforms { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.platform-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
}
.platform-card::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity var(--t);
}
.platform-card:hover { transform: translateY(-4px); }
.platform-card:hover::before { opacity: 1; }
.platform-card.gold::before  { background: radial-gradient(ellipse at top left, rgba(245,166,35,0.08) 0%, transparent 60%); }
.platform-card.teal::before  { background: radial-gradient(ellipse at top left, rgba(15,118,110,0.08) 0%, transparent 60%); }
.platform-card.purple::before { background: radial-gradient(ellipse at top left, rgba(124,58,237,0.08) 0%, transparent 60%); }
.platform-card.blue::before   { background: radial-gradient(ellipse at top left, rgba(59,130,246,0.08) 0%, transparent 60%); }
.platform-card.gold:hover   { border-color: rgba(245,166,35,0.35); box-shadow: 0 8px 28px rgba(245,166,35,0.12); }
.platform-card.teal:hover   { border-color: rgba(15,118,110,0.35); box-shadow: 0 8px 28px rgba(15,118,110,0.12); }
.platform-card.purple:hover { border-color: rgba(124,58,237,0.35); box-shadow: 0 8px 28px rgba(124,58,237,0.12); }
.platform-card.blue:hover   { border-color: rgba(59,130,246,0.35); box-shadow: 0 8px 28px rgba(59,130,246,0.12); }
.platform-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.icon-gold   { background: rgba(245,166,35,0.15); }
.icon-teal   { background: rgba(15,118,110,0.15); }
.icon-purple { background: rgba(124,58,237,0.15); }
.icon-blue   { background: rgba(59,130,246,0.15); }
.platform-title { font-weight: 700; font-size: 0.95rem; }
.platform-desc  { font-size: 0.8rem; color: var(--muted); line-height: 1.45; }
.platform-link  { font-size: 0.78rem; font-weight: 600; margin-top: auto; display: flex; align-items: center; gap: 4px; }
.platform-link.gold   { color: var(--gold); }
.platform-link.teal   { color: var(--teal-light); }
.platform-link.purple { color: var(--purple-light); }
.platform-link.blue   { color: #60a5fa; }
.platform-link svg { width: 12px; height: 12px; transition: transform var(--t); }
.platform-card:hover .platform-link svg { transform: translateX(3px); }

/* ── Stats bar ── */
#stats { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'JetBrains Mono', monospace; font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label  { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

/* ── Services grid ── */
#services { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin-top: 48px; }
.service-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  cursor: default;
}
.service-tile:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(245,166,35,0.08);
}
.svc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold-pale); border: 1px solid rgba(245,166,35,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.4s ease;
}
.service-tile.visible .svc-icon { animation: icon-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes icon-pop {
  0%   { transform: scale(0) rotate(-15deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg);  opacity: 1; }
}
.svc-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.svc-name { font-weight: 700; font-size: 0.92rem; }
.svc-desc { font-size: 0.78rem; color: var(--muted); }

/* ── Earn diagram ── */
#earn { position: relative; overflow: hidden; }
.earn-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245,166,35,0.04) 0%, transparent 70%);
}
.earn-inner { position: relative; z-index: 1; }
.earn-diagram {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.earn-row { display: flex; justify-content: center; align-items: center; gap: 20px; position: relative; }
.earn-node {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  text-align: center;
  min-width: 180px;
  position: relative;
  transition: border-color var(--t), transform var(--t);
}
.earn-node:hover { transform: translateY(-3px); }
.earn-node.host   { border-color: rgba(245,166,35,0.4); background: rgba(245,166,35,0.05); min-width: 220px; }
.earn-node.reseller{ border-color: rgba(15,118,110,0.4);  background: rgba(15,118,110,0.05); }
.earn-node.direct { border-color: rgba(124,58,237,0.4); background: rgba(124,58,237,0.05); }
.earn-node.enduser{ border-color: rgba(255,255,255,0.12); }
.earn-node-icon { font-size: 1.8rem; margin-bottom: 8px; }
.earn-node-title { font-weight: 800; font-size: 1rem; }
.earn-node-sub { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.earn-node-samples {
  margin-top: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.earn-sample {
  background: rgba(255,255,255,0.04);
  border-radius: 6px; padding: 4px 8px;
  font-size: 0.72rem; color: var(--muted);
}

.earn-connector {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; padding: 6px 0;
}
.earn-line { width: 2px; height: 28px; background: linear-gradient(to bottom, var(--gold), rgba(245,166,35,0.2)); }
.earn-arrow { font-size: 0.9rem; color: var(--gold); }
.earn-split { display: flex; gap: 60px; align-items: flex-start; justify-content: center; }
.earn-branch { display: flex; flex-direction: column; align-items: center; gap: 0; }
.earn-split-line {
  width: 2px; height: 28px;
  background: linear-gradient(to bottom, rgba(245,166,35,0.3), rgba(255,255,255,0.1));
}
.earn-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold); margin: 4px 0;
}

.earn-benefits {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 56px;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
}
.benefit-icon { font-size: 1.4rem; margin-bottom: 10px; }
.benefit-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.benefit-list { list-style: none; }
.benefit-list li { font-size: 0.8rem; color: var(--muted); padding: 3px 0; display: flex; align-items: flex-start; gap: 6px; }
.benefit-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Reseller Pricing ── */
#reseller { background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.pricing-card.featured {
  border-color: rgba(245,166,35,0.5);
  background: linear-gradient(135deg, rgba(245,166,35,0.06) 0%, var(--surface) 60%);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #000;
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 16px; border-radius: 99px;
}
.pricing-icon { font-size: 2rem; margin-bottom: 14px; }
.pricing-title { font-weight: 800; font-size: 1.1rem; margin-bottom: 6px; }
.pricing-tagline { font-size: 0.83rem; color: var(--muted); margin-bottom: 20px; }
.pricing-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.2rem; font-weight: 700; color: var(--gold);
  margin-bottom: 4px;
}
.pricing-amount span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.pricing-renewal { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pricing-features li {
  font-size: 0.85rem; color: var(--muted);
  display: flex; align-items: flex-start; gap: 8px;
}
.pricing-features li::before { content: '◆'; color: var(--gold); font-size: 0.55rem; flex-shrink: 0; margin-top: 5px; }
.pricing-cta {
  display: block; width: 100%; text-align: center;
  margin-top: 24px; padding: 12px;
  border-radius: 10px; font-weight: 700; font-size: 0.9rem;
  background: var(--gold); color: #000;
  transition: opacity var(--t), transform var(--t);
}
.pricing-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── 55 User Levels ── */
#levels { position: relative; }
.levels-intro { max-width: 620px; margin-bottom: 48px; }
.levels-tiers { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.tier-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform var(--t), border-color var(--t);
}
.tier-card:hover { transform: translateY(-3px); }
.tier-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.tier-gem { font-size: 1.8rem; }
.tier-name { font-weight: 800; font-size: 1rem; }
.tier-range { font-size: 0.75rem; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
.tier-perks { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.tier-perks li { font-size: 0.8rem; color: var(--muted); display: flex; align-items: flex-start; gap: 6px; }
.tier-perks li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

.tier-card.basic    { border-color: rgba(156,163,175,0.25); }
.tier-card.bronze   { border-color: rgba(180,120,70,0.35); }
.tier-card.silver   { border-color: rgba(192,192,192,0.35); }
.tier-card.gold     { border-color: rgba(245,166,35,0.4); }
.tier-card.platinum { border-color: rgba(140,200,255,0.35); }
.tier-card.elite    { border-color: rgba(124,58,237,0.4); }
.tier-card.master   { border-color: rgba(20,184,166,0.4); }
.tier-card.diamond  { border-color: rgba(245,166,35,0.6); background: rgba(245,166,35,0.04); }

/* Level progress bar */
.level-progress {
  height: 6px; border-radius: 99px;
  background: var(--surface2);
  margin-top: 14px; overflow: hidden;
}
.level-progress-fill {
  height: 100%; border-radius: 99px;
  transition: width 1s ease;
}
.basic .level-progress-fill    { background: #9ca3af; width: 0; }
.bronze .level-progress-fill   { background: linear-gradient(90deg,#b47846,#d4955c); width: 0; }
.silver .level-progress-fill   { background: linear-gradient(90deg,#9ca3af,#d1d5db); width: 0; }
.gold .level-progress-fill     { background: linear-gradient(90deg,var(--gold),var(--gold-light)); width: 0; }
.platinum .level-progress-fill { background: linear-gradient(90deg,#8cc8ff,#a5d8ff); width: 0; }
.elite .level-progress-fill    { background: linear-gradient(90deg,var(--purple),var(--purple-light)); width: 0; }
.master .level-progress-fill   { background: linear-gradient(90deg,var(--teal),var(--teal-light)); width: 0; }
.diamond .level-progress-fill  { background: linear-gradient(90deg,#f5a623,#ffc55a,#f5a623); width: 0; }

/* ── Partners ── */
#partners { background: var(--bg2); }
.partners-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 14px;
  margin-top: 48px;
}
.partner-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.04em; text-align: center;
  color: var(--muted);
  transition: border-color var(--t), color var(--t), transform var(--t);
}
.partner-chip:hover { border-color: rgba(245,166,35,0.35); color: var(--text); transform: translateY(-2px); }

/* ── Client industries ── */
#clients {}
.clients-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 40px;
}
.client-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 10px 20px;
  font-size: 0.88rem; font-weight: 600;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.client-tag:hover {
  border-color: rgba(245,166,35,0.35);
  background: var(--gold-pale);
  transform: translateY(-2px);
}
.client-tag-icon { font-size: 1rem; }

/* ── Final CTA ── */
#cta {
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a0a1e 0%, #0d0d28 100%);
}
.cta-glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(245,166,35,0.08) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-title { margin-bottom: 16px; }
.cta-sub { font-size: 1.05rem; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer {
  background: #020208;
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-bottom: 40px; }
.footer-link-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 20px; }
.footer-brand-name { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--gold); margin-bottom: 10px; }
.footer-tagline { font-size: 0.85rem; color: var(--muted); max-width: 240px; }
.footer-col-title { font-weight: 700; font-size: 0.85rem; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.83rem; color: var(--muted); transition: color var(--t); }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--muted);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--muted); transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--text); }

/* ── Store badges ── */
.store-btns {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px;
}
.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 20px; border-radius: 14px;
  background: #12121e; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.1);
  transition: opacity var(--t), transform var(--t), border-color var(--t), box-shadow var(--t);
  text-decoration: none; min-width: 155px; flex: 1 1 155px; max-width: 200px;
}
.btn-store:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-store--play { border-color: rgba(245,166,35,0.35); }
.btn-store--play:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(245,166,35,0.18); }
.btn-store--soon { opacity: 0.45; pointer-events: none; position: relative; }
.btn-store--soon::after {
  content: 'COMING SOON';
  position: absolute; top: -8px; right: -2px;
  background: var(--surface2); border: 1px solid var(--line);
  font-size: 0.52rem; font-weight: 800; letter-spacing: 0.08em;
  color: var(--muted); padding: 2px 6px; border-radius: 4px;
}
.btn-store svg { width: 26px; height: 26px; flex-shrink: 0; fill: currentColor; }
.btn-store-text { display: flex; flex-direction: column; line-height: 1.25; }
.btn-store-text small { font-size: 0.62rem; opacity: 0.65; font-family: 'Inter', sans-serif; font-weight: 400; }
.btn-store-text strong { font-size: 0.88rem; font-weight: 700; font-family: 'Sora', sans-serif; }

/* ── Responsive — Tablet ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-platforms { grid-template-columns: 1fr 1fr; }
  .earn-split { gap: 24px; }
  .earn-benefits { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-link-cols { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat-item:last-child, .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── Responsive — Mobile ── */
@media (max-width: 660px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  section { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* Hero */
  #hero { padding-top: calc(var(--nav-h) + 24px); }
  .hero-grid { gap: 24px; }
  .hero-eyebrow { font-size: 0.72rem; }
  .hero-sub { font-size: 0.97rem; margin-bottom: 24px; }
  .store-btns { max-width: 100%; }
  .btn-store { min-width: 0; flex: 1 1 130px; max-width: none; padding: 9px 14px; }
  .btn-store svg { width: 22px; height: 22px; }
  .btn-store-text strong { font-size: 0.8rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 4px; }
  .btn-hero { justify-content: center; font-size: 0.8rem; padding: 11px 10px; border-radius: 10px; }
  /* Make last button (About Paradigm) span full width */
  .hero-actions > a:last-child { grid-column: 1 / -1; }

  /* Platform cards — 2 col, compact */
  .hero-platforms { grid-template-columns: 1fr 1fr; gap: 10px; }
  .platform-card { padding: 14px 12px; gap: 7px; border-radius: 14px; }
  .platform-icon { width: 34px; height: 34px; border-radius: 8px; font-size: 1rem; }
  .platform-title { font-size: 0.82rem; }
  .platform-desc { font-size: 0.73rem; }
  .platform-link { font-size: 0.72rem; }
  /* Business listing card full-width row layout already via grid-column:1/-1 */
  .platform-card[style*="grid-column"] { flex-direction: column; }
  .platform-card[style*="grid-column"] > div { flex-direction: column !important; gap: 8px !important; }
  .platform-card[style*="grid-column"] .platform-link { margin-left: 0 !important; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services — 4 equal columns, compact tiles */
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
  }
  .service-tile {
    padding: 10px 6px;
    gap: 5px;
    align-items: center;
    text-align: center;
    border-radius: 10px;
  }
  .svc-icon {
    width: 34px; height: 34px;
    font-size: 0.95rem;
    border-radius: 8px;
    margin: 0 auto;
  }
  .svc-tag { font-size: 0.56rem; letter-spacing: 0.06em; }
  .svc-name { font-size: 0.67rem; line-height: 1.3; font-weight: 700; }
  .svc-desc { display: none; }

  /* Earn diagram — keep side-by-side but compact */
  .earn-diagram { align-items: stretch; }
  .earn-split { flex-direction: row; gap: 8px; align-items: flex-start; }
  .earn-branch { flex: 1; }
  .earn-node { min-width: 0; padding: 11px 8px; border-radius: 12px; }
  .earn-node.host { min-width: 0; }
  .earn-node-icon { font-size: 1.3rem; margin-bottom: 5px; }
  .earn-node-title { font-size: 0.75rem; }
  .earn-node-sub { font-size: 0.65rem; }
  .earn-node-samples { display: none; }
  .earn-label { font-size: 0.62rem; }
  .earn-benefits { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Levels */
  .levels-tiers { grid-template-columns: 1fr; }

  /* Partners */
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .partner-chip { padding: 10px 6px; font-size: 0.75rem; border-radius: 8px; }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn-hero { justify-content: center; }

  /* Footer — brand full width, then 3 link cols in a tight row */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-link-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 12px;
  }
  .footer-col-title { font-size: 0.78rem; margin-bottom: 10px; }
  .footer-links a { font-size: 0.77rem; }
  .footer-links { gap: 6px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
}

/* ── Mobile nav drawer ── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: linear-gradient(160deg, #060614 0%, #0c0c22 50%, #08080f 100%);
  display: flex; flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(245,166,35,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 80%, rgba(124,58,237,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.mobile-nav.open { transform: translateX(0); }

.mob-nav-header {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--line);
}
.mob-nav-logo {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 1.3rem; color: var(--gold);
}
.mob-nav-logo span { color: var(--muted); font-weight: 400; font-size: 0.85rem; }
.mobile-nav-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; color: var(--muted);
  transition: background var(--t), color var(--t);
}
.mobile-nav-close:hover { background: var(--surface); color: var(--text); }

.mob-nav-links {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 2px;
  padding: 16px 16px 8px;
  flex: 1;
}
.mobile-nav a {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 14px; border-radius: 12px;
  font-size: 1rem; font-weight: 600; color: var(--muted);
  transition: background var(--t), color var(--t), transform var(--t);
  text-decoration: none;
}
.mobile-nav a:hover, .mobile-nav a:active {
  background: var(--surface); color: var(--text);
  transform: translateX(4px);
}
.mobile-nav a .mob-link-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  background: var(--surface2);
  transition: background var(--t);
}
.mobile-nav a:hover .mob-link-icon { background: var(--surface); }
.mob-link-icon.ic-gold   { background: rgba(245,166,35,0.12); }
.mob-link-icon.ic-teal   { background: rgba(15,118,110,0.12); }
.mob-link-icon.ic-purple { background: rgba(124,58,237,0.12); }
.mob-link-icon.ic-blue   { background: rgba(59,130,246,0.12); }

.mob-nav-footer {
  position: relative; z-index: 1;
  padding: 16px 16px 32px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.mob-nav-cta {
  display: block; text-align: center;
  padding: 14px; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  background: var(--gold); color: #000;
  text-decoration: none;
  transition: opacity var(--t);
}
.mob-nav-cta:hover { opacity: 0.88; }
.mob-nav-cta-ghost {
  display: block; text-align: center;
  padding: 13px; border-radius: 12px;
  font-weight: 600; font-size: 0.9rem;
  background: transparent; color: var(--muted);
  border: 1.5px solid var(--line);
  text-decoration: none;
  transition: color var(--t), border-color var(--t);
}
.mob-nav-cta-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

/* ── Utility ── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
