/* ═══════════════════════════════════════════════════════
   Members App — Stylesheet
   ═══════════════════════════════════════════════════════ */

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

/* ─── DESIGN TOKENS ──────────────────────────────────── */
:root {
  --purple-950: #1a0533;
  --purple-900: #2e0b5e;
  --purple-800: #4c1d95;
  --purple-700: #6d28d9;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-300: #c4b5fd;
  --purple-200: #ddd6fe;
  --purple-100: #ede9fe;
  --pink-500:   #ec4899;
  --pink-400:   #f472b6;
  --rose-500:   #f43f5e;
  --indigo-500: #6366f1;
  --blue-500:   #3b82f6;
  --cyan-400:   #22d3ee;
  --teal-400:   #2dd4bf;
  --amber-400:  #fbbf24;
  --green-400:  #4ade80;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-300:   #cbd5e1;
  --gray-400:   #94a3b8;
  --gray-500:   #64748b;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-800:   #1e293b;
  --gray-900:   #0f172a;
  --nav-height: 72px;
}

/* ─── BASE ───────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--gray-900);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-900); }
::-webkit-scrollbar-thumb { background: var(--purple-700); border-radius: 3px; }

/* ─── UTILITIES ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--purple-400) 0%, var(--pink-400) 50%, var(--amber-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-cool {
  background: linear-gradient(135deg, var(--cyan-400) 0%, var(--purple-400) 60%, var(--pink-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}
nav.scrolled {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-text {
  font-size: 20px; font-weight: 800; color: var(--white);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-300); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.btn-nav {
  padding: 9px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: all 0.2s;
}
.btn-nav-ghost {
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: var(--purple-300);
}
.btn-nav-ghost:hover {
  border-color: var(--purple-400);
  background: rgba(139, 92, 246, 0.1);
  color: var(--white);
}
.btn-nav-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
}
.btn-nav-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-300); border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(109, 40, 217, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
    var(--gray-900);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}
.hero-particles {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  padding-top: 60px; padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-size: 12px; font-weight: 600; color: var(--purple-300);
  margin-bottom: 24px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple-400);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 24px;
  color: var(--white);
}
.hero-subtitle {
  font-size: 18px; line-height: 1.7;
  color: var(--gray-400); margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-600) 0%, var(--pink-500) 100%);
  color: var(--white); font-size: 15px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6); }
.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-200); font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all 0.3s; backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px); color: var(--white);
}

.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); text-decoration: none;
  transition: all 0.3s; backdrop-filter: blur(10px);
}
.btn-store:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-store-icon { font-size: 24px; }
.btn-store-text { display: flex; flex-direction: column; text-align: left; }
.btn-store-text span:first-child { font-size: 10px; color: var(--gray-400); }
.btn-store-text span:last-child  { font-size: 15px; font-weight: 700; }

/* ─── HERO STATS ─────────────────────────────────────── */
.hero-stats {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-size: 26px; font-weight: 800; color: var(--white); line-height: 1;
}
.hero-stat-label { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--gray-700); }
.counter { display: inline-block; }

/* ─── PHONE MOCKUP ───────────────────────────────────── */
.hero-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center;
}
.phone-glow {
  position: absolute; width: 320px; height: 520px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
  filter: blur(40px);
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}
.phone-wrap {
  position: relative; z-index: 1;
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-16px) rotate(2deg); }
}
.phone-frame {
  width: 260px; height: 530px;
  background: linear-gradient(160deg, #2a2a3e 0%, #12121e 100%);
  border-radius: 44px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative; overflow: hidden; padding: 12px;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #0a0a12; border-radius: 20px; z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 34px;
  background: linear-gradient(160deg, #1a1a2e 0%, #0f0f1e 100%);
  overflow: hidden; position: relative;
}
.phone-status {
  padding: 40px 16px 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-time { font-size: 13px; font-weight: 700; color: white; }
.phone-icons { display: flex; gap: 4px; align-items: center; }
.phone-icons span { font-size: 10px; }
.phone-app-header {
  padding: 12px 16px 8px;
  display: flex; align-items: center; gap: 10px;
}
.phone-app-avatar {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.phone-app-avatar img { width: 100%; height: 100%; object-fit: cover; }
.phone-app-greeting { display: flex; flex-direction: column; }
.phone-app-greeting span:first-child { font-size: 10px; color: var(--gray-500); }
.phone-app-greeting span:last-child  { font-size: 13px; font-weight: 700; color: var(--white); }
.phone-section-title {
  padding: 12px 16px 6px;
  font-size: 11px; font-weight: 700; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.8px;
}
.phone-service-card {
  margin: 0 16px 8px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 12px; padding: 10px 12px;
}
.phone-service-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.phone-service-name { font-size: 11px; font-weight: 700; color: var(--white); }
.phone-service-badge {
  font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: 20px;
}
.badge-confirmed { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.badge-pending   { background: rgba(251, 191, 36, 0.15);  color: #fbbf24; }
.phone-service-info { font-size: 9px; color: var(--gray-500); margin-top: 3px; }
.phone-event-list {
  padding: 0 16px; display: flex; flex-direction: column; gap: 6px;
}
.phone-event-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.phone-event-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.phone-event-text { display: flex; flex-direction: column; }
.phone-event-text span:first-child { font-size: 10px; font-weight: 600; color: var(--white); }
.phone-event-text span:last-child  { font-size: 9px; color: var(--gray-500); }
.phone-bottom-nav {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 4px 16px;
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-around;
}
.phone-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 4px 8px; border-radius: 8px;
}
.phone-nav-item.active { background: rgba(139, 92, 246, 0.15); }
.phone-nav-icon  { font-size: 16px; }
.phone-nav-label { font-size: 8px; color: var(--gray-500); font-weight: 500; }
.phone-nav-item.active .phone-nav-label { color: var(--purple-400); }

/* ─── FLOATING CARDS ─────────────────────────────────── */
.float-card {
  position: absolute;
  background: rgba(20, 20, 35, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 2;
}
.float-card-1 {
  right: -40px; top: 60px;
  animation: float-card-1 5s ease-in-out infinite;
}
.float-card-2 {
  left: -50px; bottom: 120px;
  animation: float-card-2 6s ease-in-out infinite;
}
@keyframes float-card-1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes float-card-2 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(10px); }
}
.float-card-label { font-size: 10px; color: var(--gray-400); margin-bottom: 4px; }
.float-card-value {
  font-size: 22px; font-weight: 800; color: var(--white); line-height: 1;
}
.float-card-sub  { font-size: 10px; color: var(--green-400); margin-top: 2px; }
.float-card-row  { display: flex; align-items: center; gap: 10px; }
.float-card-avatar {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--indigo-500), var(--cyan-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.float-card-info { display: flex; flex-direction: column; }
.float-card-info span:first-child { font-size: 12px; font-weight: 700; color: var(--white); }
.float-card-info span:last-child  { font-size: 10px; color: var(--gray-400); }

/* ─── TRUSTED ────────────────────────────────────────── */
.trusted {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trusted-label {
  text-align: center;
  font-size: 12px; font-weight: 600; color: var(--gray-600);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 28px;
}
.trusted-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trusted-logo {
  font-size: 14px; font-weight: 700; color: var(--gray-600);
  letter-spacing: -0.5px; transition: color 0.2s;
}
.trusted-logo:hover { color: var(--gray-400); }
.trusted-logo span { font-size: 16px; margin-right: 6px; }

/* ─── SECTION SHARED ─────────────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--purple-400);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 2px;
  background: var(--purple-400); border-radius: 2px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--gray-400); line-height: 1.7;
  max-width: 560px;
}
.section-header { margin-bottom: 64px; }

/* ─── FEATURES ───────────────────────────────────────── */
.features { padding: 120px 0; position: relative; overflow: hidden; }
.features-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 60%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.feature-card {
  background: var(--gray-900);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at var(--mx, 50%) var(--my, 50%),
    rgba(139, 92, 246, 0.08) 0%, transparent 70%
  );
  opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover { background: rgba(15, 15, 30, 0.95); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover .feature-icon-wrap { transform: scale(1.08); }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  transition: transform 0.3s;
}
.feature-name {
  font-size: 18px; font-weight: 700; color: var(--white);
  margin-bottom: 10px; letter-spacing: -0.3px;
}
.feature-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.feature-tag {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
}

/* Feature color variants */
.f1 .feature-icon-wrap { background: rgba(139, 92, 246, 0.15); }
.f1 .feature-tag { background: rgba(139, 92, 246, 0.1); color: var(--purple-400); }
.f2 .feature-icon-wrap { background: rgba(59, 130, 246, 0.15); }
.f2 .feature-tag { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.f3 .feature-icon-wrap { background: rgba(236, 72, 153, 0.15); }
.f3 .feature-tag { background: rgba(236, 72, 153, 0.1); color: var(--pink-400); }
.f4 .feature-icon-wrap { background: rgba(34, 211, 238, 0.15); }
.f4 .feature-tag { background: rgba(34, 211, 238, 0.1); color: var(--cyan-400); }
.f5 .feature-icon-wrap { background: rgba(251, 191, 36, 0.15); }
.f5 .feature-tag { background: rgba(251, 191, 36, 0.1); color: var(--amber-400); }
.f6 .feature-icon-wrap { background: rgba(74, 222, 128, 0.15); }
.f6 .feature-tag { background: rgba(74, 222, 128, 0.1); color: var(--green-400); }

/* ─── HOW IT WORKS ───────────────────────────────────── */
.how-it-works { padding: 120px 0; position: relative; overflow: hidden; }
.how-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(109, 40, 217, 0.06) 0%, transparent 70%);
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 36px;
  left: calc(16.66% + 24px); right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), rgba(139, 92, 246, 0.4), transparent);
}
.step-card { text-align: center; position: relative; }
.step-number {
  width: 72px; height: 72px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.3), rgba(236, 72, 153, 0.2));
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 900; color: var(--purple-300);
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.2);
}
.step-title {
  font-size: 20px; font-weight: 700; color: var(--white);
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.step-desc { font-size: 15px; color: var(--gray-400); line-height: 1.7; }

/* ─── SCREENSHOTS ────────────────────────────────────── */
.screenshots { padding: 120px 0; background: rgba(0,0,0,0.3); }
.screenshots-track {
  display: flex; gap: 20px; overflow-x: auto;
  padding: 20px 24px 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.screenshots-track::-webkit-scrollbar { display: none; }
.screenshot-card {
  flex: 0 0 auto; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer;
  transition: transform 0.35s;
}
.screenshot-card:hover { transform: translateY(-10px); }

/* Phone mockup frame for screenshots */
.sc-phone {
  position: relative;
  width: 210px;
  aspect-ratio: 390 / 844;
  background: #0a0a0f;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 40px rgba(139,92,246,0.08);
}
.sc-phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #000; border-radius: 20px; z-index: 10;
}
.sc-phone-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.sc-phone-label {
  text-align: center;
  font-size: 12px; font-weight: 500;
  color: var(--gray-400);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* Phone screen fill (hero) */
.phone-screen-fill {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}

.ss-stat-row { display: flex; gap: 8px; margin-bottom: 12px; }
.ss-stat {
  flex: 1; padding: 10px; border-radius: 10px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.15);
}
.ss-stat-num { font-size: 18px; font-weight: 800; color: var(--white); line-height: 1; }
.ss-stat-lbl { font-size: 9px; color: var(--gray-500); margin-top: 2px; }

.ss-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 10px;
  background: rgba(255,255,255,0.03); margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,0.05);
}
.ss-item-icon { font-size: 18px; }
.ss-item-text { display: flex; flex-direction: column; }
.ss-item-text span:first-child { font-size: 11px; font-weight: 600; color: var(--white); }
.ss-item-text span:last-child  { font-size: 9px;  color: var(--gray-500); }

.ss-calendar {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
}
.ss-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 9px; border-radius: 6px; color: var(--gray-500);
}
.ss-cal-day.today {
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
  color: white; font-weight: 700;
}
.ss-cal-day.has-event { color: var(--purple-300); font-weight: 600; }

.ss-progress { margin-top: 10px; }
.ss-progress-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.ss-progress-label { font-size: 10px; color: var(--gray-400); }
.ss-progress-val   { font-size: 10px; color: var(--white); font-weight: 600; }
.ss-progress-bar {
  height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
}
.ss-progress-fill { height: 100%; border-radius: 2px; margin-bottom: 8px; }

/* ─── SCROLL INDICATOR DOTS ──────────────────────────── */
.scroll-dots {
  display: flex; justify-content: center; gap: 8px; padding-top: 8px;
}
.scroll-dot {
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s;
}
.scroll-dot.active {
  width: 24px; background: var(--purple-500);
}
.scroll-dot:not(.active) { width: 8px; }

/* ─── ROLES ──────────────────────────────────────────── */
.roles { padding: 120px 0; }
.roles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.role-card {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.role-card-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.role-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.05);
}
.role-icon { font-size: 32px; margin-bottom: 14px; }
.role-name { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.role-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.role-perms { display: flex; flex-direction: column; gap: 6px; }
.role-perm {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--gray-400);
}
.perm-check { color: var(--green-400); font-size: 14px; }
.perm-x     { color: var(--gray-600);  font-size: 14px; }

/* ─── CTA ────────────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(109, 40, 217, 0.25) 0%, transparent 70%);
}
.cta-card {
  position: relative; z-index: 1;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.2) 0%, rgba(236, 72, 153, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(236, 72, 153, 0.1)  0%, transparent 60%);
}
.cta-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.05;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.cta-subtitle {
  font-size: 18px; color: var(--gray-400); line-height: 1.6;
  max-width: 520px; margin: 0 auto 40px;
  position: relative; z-index: 1;
}
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.cta-orb-1 {
  width: 200px; height: 200px; top: -60px; right: -60px;
  background: radial-gradient(circle, rgba(139,92,246,0.2), transparent);
}
.cta-orb-2 {
  width: 160px; height: 160px; bottom: -40px; left: -40px;
  background: radial-gradient(circle, rgba(236,72,153,0.15), transparent);
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-name { display: flex; align-items: center; gap: 10px; }
.footer-brand-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.footer-brand-icon img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-text { font-size: 18px; font-weight: 800; color: var(--white); }
.footer-tagline { font-size: 14px; color: var(--gray-500); line-height: 1.6; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; text-decoration: none;
  transition: all 0.2s;
}
.footer-social-btn:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
}
.footer-col-title {
  font-size: 13px; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: var(--gray-500); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gray-200); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--gray-600); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 13px; color: var(--gray-600); text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gray-400); }

/* ─── PRIVACY ────────────────────────────────────────── */
.privacy {
  padding: 120px 0;
  position: relative;
}
.privacy-page {
  padding-top: calc(var(--nav-height) + 80px);
}

/* ─── TERMS PAGE ─────────────────────────────────────── */
.terms-page {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 120px;
}
.terms-updated {
  font-size: 13px; color: var(--gray-500);
  margin-top: 12px;
}
.terms-body {
  max-width: 760px; margin: 56px auto 0;
  display: flex; flex-direction: column; gap: 40px;
}
.terms-block h3 {
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}
.terms-block p {
  font-size: 15px; color: var(--gray-400); line-height: 1.8; margin: 0;
}
.terms-block ul {
  margin: 12px 0 0 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.terms-block ul li {
  font-size: 15px; color: var(--gray-400); line-height: 1.7;
}
.terms-block a {
  color: var(--purple-400); text-decoration: none;
  transition: color 0.2s;
}
.terms-block a:hover { color: var(--purple-300); }

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-page {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 120px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  margin-top: 64px;
  align-items: start;
}
/* Info cards */
.contact-info {
  display: flex; flex-direction: column; gap: 20px;
}
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 20px;
  transition: border-color 0.3s;
}
.contact-info-card:hover { border-color: rgba(139,92,246,0.3); }
.contact-info-icon {
  font-size: 24px; flex-shrink: 0; margin-top: 2px;
}
.contact-info-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--purple-400); margin-bottom: 4px;
}
.contact-info-email {
  display: block; font-size: 15px; font-weight: 600; color: var(--white);
  text-decoration: none; margin-bottom: 6px;
  transition: color 0.2s;
}
.contact-info-email:hover { color: var(--purple-300); }
.contact-info-highlight {
  display: block; font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.contact-info-desc {
  font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0;
}
/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 32px;
}
.contact-form {
  display: flex; flex-direction: column; gap: 20px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-group {
  display: flex; flex-direction: column; gap: 8px;
}
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--gray-300);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-600); }
.form-group select option { background: var(--gray-800); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(139,92,246,0.5);
  background: rgba(255,255,255,0.07);
}
.contact-submit { width: 100%; justify-content: center; }
.form-note {
  font-size: 12px; color: var(--gray-600); text-align: center; margin: 0;
}
.form-note a { color: var(--purple-400); text-decoration: none; }
.form-note a:hover { color: var(--purple-300); }
/* Success state */
.contact-success {
  text-align: center; padding: 48px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.contact-success-icon { font-size: 48px; }
.contact-success h3 { font-size: 22px; font-weight: 700; color: var(--white); }
.contact-success p { font-size: 15px; color: var(--gray-400); margin: 0; }

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  margin-bottom: 32px;
}
.privacy-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.3s, transform 0.3s;
}
.privacy-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}
.privacy-card-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}
.privacy-card-title {
  font-size: 18px; font-weight: 700; color: var(--white);
}
.privacy-card-desc {
  font-size: 14px; color: var(--gray-400); line-height: 1.7; flex: 1;
}
.privacy-badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: 20px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: var(--purple-300); font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  width: fit-content; margin-top: 8px;
}
.privacy-commitment {
  display: flex; align-items: flex-start; gap: 20px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 16px;
}
.privacy-commitment-icon {
  font-size: 28px; flex-shrink: 0; margin-top: 2px;
}
.privacy-commitment-text strong {
  display: block; font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.privacy-commitment-text p {
  font-size: 14px; color: var(--gray-400); line-height: 1.7; margin: 0;
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(40px);
  transition:
    opacity   0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0ms; }
.fade-up:nth-child(2) { transition-delay: 80ms; }
.fade-up:nth-child(3) { transition-delay: 160ms; }
.fade-up:nth-child(4) { transition-delay: 240ms; }
.fade-up:nth-child(5) { transition-delay: 320ms; }
.fade-up:nth-child(6) { transition-delay: 400ms; }

/* ─── MOBILE MENU ────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10, 10, 20, 0.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: 28px; font-weight: 700; color: var(--white);
  text-decoration: none; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--purple-400); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--gray-400);
  font-size: 28px; cursor: pointer; padding: 4px;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .float-card-1  { right: -20px; }
  .float-card-2  { left: -20px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-top: 40px; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions  { justify-content: center; }
  .hero-stats    { justify-content: center; }
  .hero-visual   { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .roles-grid    { grid-template-columns: 1fr; }
  .privacy-grid  { grid-template-columns: 1fr; }
  .privacy-commitment { flex-direction: column; gap: 12px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; gap: 32px; }
  .cta-card      { padding: 48px 28px; }
  .section-header { text-align: center; }
  .section-eyebrow { justify-content: center; }
  .section-subtitle { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
}
