:root {
  --bg: #000000;
  --bg-elev: #0a0a0a;
  --bg-card: #111111;
  --text: #ffffff;
  --text-muted: #8a8a8a;
  --text-dim: #555555;
  --accent: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: "Consolas", "SF Mono", monospace;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* subtle grid backdrop */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 48px 48px;
}

.glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.12;
  background: radial-gradient(circle, #fff 0%, transparent 70%);
}

.glow-tr { top: -200px; right: -200px; }
.glow-bl { bottom: -250px; left: -200px; opacity: 0.06; }

.wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ============ NAV ============ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.brand img { width: 36px; height: 36px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, opacity 0.15s;
  font-family: inherit;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover { background: #e8e8e8; }

.btn-ghost {
  background: #141414;
  color: #fff;
}

.btn-ghost:hover { background: #1e1e1e; }

.btn-sm {
  padding: 9px 18px;
  font-size: 0.82rem;
}

.btn-block { width: 100%; }

/* ============ HERO ============ */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-logo {
  width: min(200px, 55vw);
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 60px rgba(255,255,255,0.08));
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero h1 span { color: var(--text-muted); font-weight: 600; }

.hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============ SECTIONS ============ */
section { padding: 72px 0; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

/* ============ FEATURE GRID ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  transition: background 0.2s;
}

.feature-card:hover { background: #161616; }

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ============ SHOWCASE / IN ACTION ============ */
.showcase {
  background: var(--bg-elev);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.showcase-panel {
  background: #0d0d0d;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.showcase-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dot { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.dot:nth-child(1) { background: #444; }
.dot:nth-child(2) { background: #333; }
.dot:nth-child(3) { background: #222; }

.showcase-bar span {
  margin-left: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--mono);
}

.showcase-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 340px;
}

.showcase-sidebar {
  background: #000;
  padding: 20px 14px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.showcase-sidebar .sb-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0 6px;
}

.showcase-sidebar .sb-brand img { width: 22px; height: 22px; }
.showcase-sidebar .sb-brand span { font-weight: 800; font-size: 0.85rem; }

.sb-item {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.sb-item.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 600;
}

.showcase-main { padding: 28px 32px; }

.showcase-main h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.showcase-main .sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.mock-card {
  background: #111;
  border-radius: 10px;
  padding: 14px 16px;
}

.mock-card .lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.mock-card .val {
  font-size: 0.9rem;
  font-weight: 700;
}

.mock-card .val.green { color: #34d399; }

.mock-launch {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 11px 28px;
  border-radius: 10px;
  margin-top: 4px;
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: background 0.2s, transform 0.2s;
}

.price-card:hover {
  background: #161616;
  transform: translateY(-2px);
}

.price-card.featured {
  background: #141414;
  outline: 1px solid rgba(255,255,255,0.12);
}

.price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount sup {
  font-size: 1rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}

.price-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-per {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  margin-bottom: 24px;
}

.price-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
}

/* ============ CTA BAND ============ */
.cta-band {
  text-align: center;
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-dim);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--text-muted); }

/* ============ BUY PAGE HEADER ============ */
.page-header {
  padding: 56px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-svg {
  width: 14px;
  height: 14px;
  color: #fff;
  flex-shrink: 0;
}

/* ============ FAQ ============ */
.faq-list { max-width: 640px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.faq-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============ ANIMATIONS ============ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.6; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.08); opacity: 0; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.20s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.30s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.40s; }

nav.nav-scrolled {
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* ============ HERO EXTRAS ============ */
.hero-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.hero-logo {
  animation: float 5s ease-in-out infinite;
}

.hero h1 .shimmer {
  background: linear-gradient(90deg, #888 0%, #fff 40%, #888 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s;
}

.btn-glow:hover::after {
  transform: translateX(120%);
}

/* ============ MARQUEE ============ */
.marquee-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.marquee span:nth-child(even) { opacity: 0.35; }

/* ============ FEATURE CARD HOVER ============ */
.feature-card {
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
}

.feature-icon {
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
}

/* ============ SCREENSHOT WIDGET ============ */
.shot-widget {
  max-width: 920px;
  margin: 0 auto;
}

.shot-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.shot-tab {
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-muted);
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.15s;
}

.shot-tab:hover {
  color: #fff;
  background: #161616;
}

.shot-tab.active {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.shot-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 100px rgba(0,0,0,0.65);
}

.shot-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.shot-img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  transition: opacity 0.18s ease, transform 0.4s ease;
}

.shot-img.fading {
  opacity: 0;
  transform: scale(0.985);
}

.shot-caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.85);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.shot-ver {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}

.shot-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: #111;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.05);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #555;
}

.pill-dot.green {
  background: #34d399;
  box-shadow: 0 0 8px rgba(52,211,153,0.5);
  animation: pulse-ring 2s ease-out infinite;
}

/* ============ GLOBAL / GLOBE ============ */
.global-section {
  padding: 88px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent);
}

.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.global-stat {
  background: #111;
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.global-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.global-stat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-widget {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #0d0d0d;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

.live-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34d399;
  position: relative;
  flex-shrink: 0;
}

.live-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(52,211,153,0.5);
  animation: pulse-ring 2s ease-out infinite;
}

.live-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.live-value {
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.3s;
}

.region-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.region-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.region-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
}

.globe-widget {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: block;
}

/* cobe wraps canvas in an anonymous relative div — fill the widget */
.globe-widget > div:not(.globe-ring):not(.globe-badge) {
  position: absolute !important;
  inset: 0;
  z-index: 2;
}

#globe-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  max-width: none;
  position: relative;
  z-index: 2;
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 1;
}

.globe-ring.ring-1 {
  inset: 4%;
  animation: spin-slow 24s linear infinite;
}

.globe-ring.ring-2 {
  inset: -2%;
  border-style: dashed;
  opacity: 0.4;
  animation: spin-slow 36s linear infinite reverse;
}

.globe-badge {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: auto !important;
  height: auto !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  pointer-events: none;
}

/* ============ FAQ ACCORDION ============ */
.faq-item h4 {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.15s;
}

.faq-item h4::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: transform 0.25s;
}

.faq-item.open h4::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s, margin 0.25s;
  margin-top: 0;
}

.faq-item.open p {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}

/* ============ BUY PAGE ANIMATIONS ============ */
.price-card {
  border: 1px solid rgba(255,255,255,0.04);
}

.price-card.featured {
  animation: float 6s ease-in-out infinite;
}

.page-header img {
  animation: float 5s ease-in-out infinite;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .global-grid {
    grid-template-columns: 1fr;
  }

  .globe-widget {
    max-width: 360px;
    order: -1;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .showcase-body { grid-template-columns: 1fr; }
  .showcase-sidebar { display: none; }
  .mock-row { grid-template-columns: 1fr; }
  .nav-links .hide-mobile { display: none; }
  .hero { padding-top: 48px; }
  .global-stats { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
  .marquee { animation: none; }
}
