/* ═══════════════════════════════════════════════════════════
   REAL — Design System
   projectreal.net
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&display=swap');

/* ── TOKENS ── */
:root {
  /* Color — neutral dark gray (no blue tint) */
  --bg:           #0a0a0a;
  --bg-2:         #0e0e0e;
  --bg-3:         #131313;
  --bg-card:      #101010;
  --border:       rgba(255,255,255,0.05);
  --border-hover: rgba(255,255,255,0.10);
  --white:        #ffffff;
  --white-80:     rgba(255,255,255,0.82);
  --white-50:     rgba(255,255,255,0.55);
  --white-30:     rgba(255,255,255,0.32);
  --white-12:     rgba(255,255,255,0.12);
  --white-06:     rgba(255,255,255,0.06);
  --accent:       #ffffff;
  --accent-dim:   rgba(255,255,255,0.08);
  --tint-blue:    rgba(120,140,180,0.04);

  /* Type scale — 8pt base */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   22px;
  --text-xl:   28px;
  --text-2xl:  36px;
  --text-3xl:  48px;
  --text-4xl:  64px;
  --text-5xl:  80px;

  /* Spacing — strict 8pt grid */
  --s1:  8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  32px;
  --s5:  40px;
  --s6:  48px;
  --s7:  56px;
  --s8:  64px;
  --s10: 80px;
  --s12: 96px;
  --s16: 128px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 20px;

  /* Motion */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --dur-fast:    180ms;
  --dur-base:    320ms;
  --dur-slow:    600ms;
  --dur-slower:  900ms;

  /* Layout */
  --max-w: 1120px;
  --nav-h: 64px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 2px; }

/* ── SKELETON LOADING ── */
@keyframes skeletonShine {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  position: relative;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.04) 0%,
      rgba(255,255,255,0.10) 40%,
      rgba(255,255,255,0.04) 80%);
  background-size: 200% 100%;
  animation: skeletonShine 1.6s linear infinite;
  border-radius: var(--r-sm);
  color: transparent !important;
  user-select: none;
  pointer-events: none;
}
.skeleton::after { content: '\00a0'; }

.skeleton-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.03) 0%,
      rgba(255,255,255,0.07) 40%,
      rgba(255,255,255,0.03) 80%);
  background-size: 200% 100%;
  animation: skeletonShine 1.8s linear infinite;
  border-radius: inherit;
  z-index: 1;
  transition: opacity 0.5s var(--ease);
}
.skeleton-img.hidden { opacity: 0; pointer-events: none; }

/* ── SCROLL FLOAT (parallax-light reveal) ── */
[data-float] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-float].in {
  opacity: 1;
  transform: translateY(0);
}
[data-float-delay="1"].in { transition-delay: 100ms; }
[data-float-delay="2"].in { transition-delay: 200ms; }
[data-float-delay="3"].in { transition-delay: 300ms; }
[data-float-delay="4"].in { transition-delay: 400ms; }

/* parallax: drift element with scroll (set --p in JS) */
[data-parallax] {
  will-change: transform;
  transform: translateY(calc(var(--p, 0) * 1px));
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.display {
  font-size: clamp(48px, 8vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.headline {
  font-size: clamp(32px, 5vw, var(--text-3xl));
  font-weight: 700;
  letter-spacing: -0.025em;
}
.subheadline {
  font-size: clamp(20px, 3vw, var(--text-xl));
  font-weight: 600;
  letter-spacing: -0.015em;
}
.body-lg { font-size: var(--text-md); font-weight: 400; line-height: 1.7; }
.body    { font-size: var(--text-base); font-weight: 400; line-height: 1.7; }
.label   { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.caption { font-size: var(--text-xs); font-weight: 400; color: var(--white-50); }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s4);
}
@media (max-width: 640px) { .container { padding: 0 var(--s2); } }

.section {
  padding: var(--s16) 0;
}
@media (max-width: 768px) { .section { padding: var(--s10) 0; } }

/* ── BUTTONS ── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 28px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  outline: none;
  border: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    background var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-base) var(--ease),
    border-color var(--dur-fast) var(--ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn:hover  { transform: translateY(-2px); }
.btn:focus-visible { box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(255,255,255,0.5); }

.btn-primary {
  background: var(--white);
  color: var(--bg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 0 0 1px rgba(255,255,255,0.12),
    0 8px 24px rgba(0,0,0,0.4);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% -20%, rgba(255,255,255,0.6), transparent 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0.6;
  z-index: -1;
}
.btn-primary:hover {
  background: #ffffff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 0 0 1px rgba(255,255,255,0.2),
    0 12px 48px rgba(255,255,255,0.18),
    0 0 0 6px rgba(255,255,255,0.04);
}

.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--white-80);
  border: 1px solid var(--border-hover);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.btn-lg {
  height: 56px;
  padding: 0 36px;
  font-size: var(--text-base);
  border-radius: var(--r-lg);
}

.btn-sm {
  height: 32px;
  padding: 0 14px;
  font-size: 12px;
  border-radius: var(--r-sm);
  gap: 6px;
}

/* Subtle shimmer on primary buttons */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.btn-primary:hover::before { transform: translateX(100%); }

/* ── CHIPS / BADGES ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--white-50);
  background: var(--white-06);
}
.chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white-50);
}
.chip-dot.live { background: #4ade80; box-shadow: 0 0 6px #4ade80; }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s5);
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ── GLOW ── */
.glow-white {
  box-shadow: 0 0 80px rgba(255,255,255,0.04), 0 0 200px rgba(255,255,255,0.02);
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════
   NAVIGATION
   ══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), backdrop-filter var(--dur-base);
  border-bottom: none;
}
.nav.scrolled {
  background: rgba(9,9,9,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: transparent;
}
.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
}
.nav-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--s1);
  list-style: none;
  z-index: 1;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white-50);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-links a:hover {
  color: var(--white);
  background: var(--white-06);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--s1);
}
.nav-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-btn-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-btn-icon svg,
.nav-icon-button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-icon-button {
  width: 30px;
  height: 30px;
  padding: 0 !important;
  border-radius: 999px;
}
.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
  user-select: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-avatar.is-set {
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 0 10px rgba(255,255,255,0.08);
}
.nav-profile-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: border-color .22s var(--ease), background .22s var(--ease);
}
.nav-profile-wrap:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
}
.nav-profile-name {
  font-size: 13px !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}
.nav-profile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 150px;
  padding: 6px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: rgba(14,14,14,0.96);
  box-shadow: 0 18px 46px rgba(0,0,0,0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 30;
}
.nav-profile-menu[hidden] { display: none; }
.nav-profile-menu a,
.nav-profile-menu button {
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  border: 0;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--white-70);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.nav-profile-menu a:hover,
.nav-profile-menu button:hover {
  background: var(--white-06);
  color: var(--white);
}
.nav-profile-menu button.danger {
  color: #ff9b9b;
}
.nav-profile-menu button.danger:hover {
  color: #ffc2c2;
  background: rgba(255, 80, 80, 0.08);
}
.nav-mobile-btn {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: var(--white-06);
  border: 1px solid var(--border);
  color: var(--white);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-mobile-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-fast);
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(9,9,9,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: var(--s3) var(--s4) var(--s4);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.nav-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav-drawer a {
  font-size: 15px;
  font-weight: 500;
  color: var(--white-50);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--dur-fast);
}
.nav-drawer a:hover { color: var(--white); }
.nav-drawer a:last-child { border-bottom: none; }

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
}

/* On smaller screens, the entire top nav gives way to the mobile dock */
@media (max-width: 760px) {
  .nav { display: none; }
  .nav-drawer { display: none; }
}

/* ══════════════════════════════════
   MOBILE DOCK
   ══════════════════════════════════ */
.mobile-dock {
  display: none;
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 150;
  padding: 6px;
  background: rgba(14,14,14,0.78);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 18px 50px rgba(0,0,0,0.55);
  align-items: center;
  gap: 2px;
  animation: dockIn 0.6s var(--ease) 0.3s both;
}
@keyframes dockIn {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.dock-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 56px;
  height: 50px;
  border-radius: 16px;
  color: var(--white-50);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), transform 0.15s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.dock-item:active { transform: scale(0.94); }
.dock-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}
.dock-item .dock-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.dock-item.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.dock-item.dock-cta {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
}
.dock-item.dock-cta.active { background: rgba(255,255,255,0.16); }

@media (max-width: 760px) {
  .mobile-dock { display: flex; }
  /* leave room for the dock so content isn't covered */
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .cookie-banner { bottom: calc(76px + env(safe-area-inset-bottom)); }
}
@media (max-width: 360px) {
  .dock-item { width: 50px; }
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + var(--s8)) var(--s4) var(--s8);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
/* Radial glow spots */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: var(--border);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  max-width: 800px;
}
.hero-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: var(--s1);
  filter: drop-shadow(0 0 32px rgba(255,255,255,0.1));
}
.hero-eyebrow {
  margin-bottom: -var(--s1);
}
.hero-headline {
  font-size: clamp(52px, 9vw, 88px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.hero-sub {
  font-size: clamp(15px, 2vw, var(--text-md));
  font-weight: 400;
  color: var(--white-50);
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--s1);
}
.hero-disclaimer {
  font-size: var(--text-xs);
  color: var(--white-30);
  margin-top: var(--s1);
}
.hero-disclaimer a {
  color: var(--white-50);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* OS support row */
.os-support {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--s3);
}
.os-support-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-right: 4px;
}
.os-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--border);
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.os-pill svg { flex-shrink: 0; }
.os-pill--active {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: var(--white);
}
.os-pill--muted {
  color: var(--white-30);
  background: transparent;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.18);
  text-decoration-thickness: 1px;
  opacity: 0.55;
}
.os-pill--muted svg { opacity: 0.6; }
@media (max-width: 480px) {
  .os-support-label { width: 100%; margin-bottom: 2px; }
}

/* Product mockup float */
.hero-mockup-wrap {
  position: relative;
  z-index: 1;
  margin-top: var(--s7);
  width: 100%;
  max-width: 900px;
  perspective: 1200px;
}
.hero-mockup {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 120px rgba(255,255,255,0.03);
  transform: rotateX(6deg) rotateY(-1deg) scale(0.97);
  transform-origin: top center;
  transition: transform 1.2s var(--ease);
  background: var(--bg-3);
}
.hero-mockup:hover {
  transform: rotateX(2deg) rotateY(0deg) scale(1);
}
/* macOS window bar */
.mockup-bar {
  height: 36px;
  background: #161616;
  border-bottom: 1px solid var(--border);
  border-radius: 14px 14px 0 0;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
}
.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.mockup-dot.red    { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green  { background: #28c840; }
.mockup-title {
  margin: 0 auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-30);
  letter-spacing: 0.01em;
}
.mockup-img {
  width: 100%;
  border-radius: 0 0 13px 13px;
  display: block;
}

/* ══════════════════════════════════
   STATS STRIP
   ══════════════════════════════════ */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s5) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--s3);
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-50);
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
}

/* ══════════════════════════════════
   FEATURE CARDS
   ══════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-slow) var(--ease);
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--white-06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--white-80); }
.feature-title {
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: var(--text-sm);
  color: var(--white-50);
  line-height: 1.7;
}

/* ══════════════════════════════════
   PRODUCT SECTION (showcase)
   ══════════════════════════════════ */
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}
@media (max-width: 820px) {
  .product-split { grid-template-columns: 1fr; }
}
.product-visual {
  position: relative;
}
.product-screen {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  background: var(--bg-3);
}
.product-screen .mockup-bar { border-radius: var(--r-lg) var(--r-lg) 0 0; }
.product-screen .mockup-img { border-radius: 0 0 calc(var(--r-lg) - 1px) calc(var(--r-lg) - 1px); }

/* floating badges on product visual */
.product-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 14px;
  white-space: nowrap;
}
.product-badge.top-right {
  top: -16px;
  right: -16px;
}
.product-badge.bottom-left {
  bottom: -16px;
  left: -16px;
}
.badge-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  background: var(--white-06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-text-main { font-size: 13px; font-weight: 600; }
.badge-text-sub  { font-size: 10px; color: var(--white-50); }

/* ══════════════════════════════════
   DOWNLOAD SECTION
   ══════════════════════════════════ */
.download-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  position: relative;
  overflow: hidden;
}
.download-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

/* ══════════════════════════════════
   RESELLERS SECTION
   ══════════════════════════════════ */
.resellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
}
@media (max-width: 700px) {
  .resellers-grid { grid-template-columns: 1fr; }
}
.reseller-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  transition: border-color var(--dur-base), transform var(--dur-base) var(--ease), background var(--dur-base);
  overflow: hidden;
}
.reseller-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.04), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base);
  pointer-events: none;
}
.reseller-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  background: #161616;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.reseller-card:hover::after { opacity: 1; }
.reseller-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reseller-name { font-size: var(--text-md); font-weight: 700; }
.verified-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white-50);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 999px;
}
.reseller-meta { font-size: var(--text-sm); color: var(--white-50); }
.reseller-card .btn { margin-top: auto; }

/* ══════════════════════════════════
   DISCORD CTA
   ══════════════════════════════════ */
.discord-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s5);
  align-items: center;
}
@media (max-width: 640px) {
  .discord-box { grid-template-columns: 1fr; }
}
.discord-icon svg { width: 48px; height: 48px; color: var(--white-30); }

/* ══════════════════════════════════
   SECTION HEADER (reusable)
   ══════════════════════════════════ */
.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-bottom: var(--s7);
}
.section-header.center {
  align-items: center;
  text-align: center;
}
.section-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
}

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--s8) 0 var(--s5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s6);
  margin-bottom: var(--s7);
}
@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s5) var(--s4);
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
}
@media (max-width: 480px) {
  .footer-grid { gap: var(--s4) var(--s3); }
  .footer-col-title { font-size: 10px; }
  .footer-col ul li a { font-size: var(--text-xs); }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}
.footer-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.footer-desc {
  font-size: var(--text-sm);
  color: var(--white-50);
  line-height: 1.7;
  max-width: 240px;
}
.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: var(--s2);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.footer-col ul li a {
  font-size: var(--text-sm);
  color: var(--white-50);
  transition: color var(--dur-fast);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s4);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: var(--s2);
}
.footer-copy {
  font-size: var(--text-xs);
  color: var(--white-30);
}
.footer-official {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-30);
}
.footer-official strong {
  color: var(--white-50);
}

/* ══════════════════════════════════
   INNER PAGE
   ══════════════════════════════════ */
.inner-hero {
  padding: calc(var(--nav-h) + var(--s10)) var(--s4) var(--s8);
  border-bottom: 1px solid var(--border);
}
.inner-hero-content {
  max-width: 720px;
}
.inner-content {
  max-width: 720px;
  padding: var(--s10) var(--s4);
  margin: 0 auto;
}
.prose h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-top: var(--s7);
  margin-bottom: var(--s2);
  letter-spacing: -0.02em;
}
.prose h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-top: var(--s5);
  margin-bottom: var(--s2);
  letter-spacing: -0.01em;
  color: var(--white-80);
}
.prose p {
  font-size: var(--text-base);
  color: var(--white-50);
  line-height: 1.8;
  margin-bottom: var(--s3);
}
.prose ul, .prose ol {
  padding-left: var(--s4);
  margin-bottom: var(--s3);
  color: var(--white-50);
  line-height: 1.8;
  font-size: var(--text-base);
}
.prose ul li, .prose ol li { margin-bottom: var(--s1); }
.prose a {
  color: var(--white-80);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--white); }
.prose strong { color: var(--white-80); font-weight: 600; }

/* ══════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: var(--s4);
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-inner {
  background: #141414;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s4) var(--s5);
  max-width: 720px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  transform: translateY(16px);
  transition: transform 0.4s var(--ease);
}
.cookie-banner.visible .cookie-inner {
  transform: translateY(0);
}
.cookie-text {
  font-size: var(--text-xs);
  color: var(--white-50);
  line-height: 1.6;
}
.cookie-text a {
  color: var(--white-80);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: var(--s1);
  flex-shrink: 0;
}
@media (max-width: 580px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}
