/* =====================================================================
   DESIGN TOKENS — Edit these variables to retheme the entire site
   ===================================================================== */
:root {
  --brand:        #7C3AED;
  --brand-light:  #A78BFA;
  --brand-dark:   #5B21B6;
  --accent:       #06B6D4;
  --accent-warm:  #F59E0B;
  --green:        #10B981;

  --bg-0:         #07060F;
  --bg-1:         #0E0C1A;
  --bg-2:         #131124;
  --bg-card:      rgba(255,255,255,0.035);
  --bg-card-h:    rgba(255,255,255,0.065);

  --border:       rgba(255,255,255,0.07);
  --border-h:     rgba(124,58,237,0.45);

  --text-1:       #F0EDFF;
  --text-2:       #A09ABB;
  --text-3:       #655E80;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;

  --shadow-brand: 0 0 60px rgba(124,58,237,0.18);
  --shadow-card:  0 4px 40px rgba(0,0,0,0.4);
}

/* =====================================================================
   RESET & BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* =====================================================================
   TYPOGRAPHY SCALE
   ===================================================================== */
.font-display { font-family: var(--font-display); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
}

.text-hero   { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 800; letter-spacing: -0.03em; }
.text-section{ font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.02em; }
.text-card   { font-size: 1.1rem; font-weight: 600; }
.text-body   { font-size: 1rem; color: var(--text-2); line-height: 1.7; }
.text-sm     { font-size: 0.875rem; }
.text-xs     { font-size: 0.75rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm {
  background: linear-gradient(135deg, var(--accent-warm) 0%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================================
   LAYOUT UTILITIES
   ===================================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; position: relative; }
.section-alt{ background: var(--bg-1); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-col    { display: flex; flex-direction: column; }
.gap-4       { gap: 16px; }
.gap-6       { gap: 24px; }

/* =====================================================================
   COMPONENTS
   ===================================================================== */

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow.cyan  { color: var(--accent);      background: rgba(6,182,212,0.10); border-color: rgba(6,182,212,0.25); }
.eyebrow.amber { color: var(--accent-warm);  background: rgba(245,158,11,0.10); border-color: rgba(245,158,11,0.25); }
.eyebrow.green { color: var(--green);        background: rgba(16,185,129,0.10); border-color: rgba(16,185,129,0.25); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 999px;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #4F46E5 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124,58,237,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.5); }
.btn-outline {
  border: 1px solid var(--border-h);
  color: var(--brand-light);
  background: rgba(124,58,237,0.06);
}
.btn-outline:hover { background: rgba(124,58,237,0.14); transform: translateY(-2px); }
.btn-ghost  {
  border: 1px solid var(--border);
  color: var(--text-2);
}
.btn-ghost:hover { border-color: var(--border-h); color: var(--brand-light); transform: translateY(-2px); }

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  background: var(--bg-card-h);
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }

/* App cards */
.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.app-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Icon containers */
.icon-box {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.icon-box-lg {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.ib-purple { background: rgba(124,58,237,0.18); }
.ib-cyan   { background: rgba(6,182,212,0.15); }
.ib-amber  { background: rgba(245,158,11,0.15); }
.ib-green  { background: rgba(16,185,129,0.13); }
.ib-pink   { background: rgba(236,72,153,0.13); }

/* Tag / badge */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}
.tag-purple { background: rgba(124,58,237,0.18); color: var(--brand-light); }
.tag-cyan   { background: rgba(6,182,212,0.15);  color: var(--accent); }
.tag-amber  { background: rgba(245,158,11,0.15);  color: var(--accent-warm); }
.tag-green  { background: rgba(16,185,129,0.13);  color: var(--green); }

/* Divider */
.divider {
  width: 48px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  margin: 16px 0 24px;
}

/* Stat */
.stat-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================================
   BACKGROUND EFFECTS
   ===================================================================== */
.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-purple { background: rgba(124,58,237,0.22); }
.orb-cyan   { background: rgba(6,182,212,0.14); }
.orb-amber  { background: rgba(245,158,11,0.12); }

/* =====================================================================
   NAVBAR
   ===================================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(7,6,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a.active { color: var(--text-1); }
.nav-links a:hover { color: var(--text-1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; transition: all 0.3s; }

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(7,6,15,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 20px;
}
#mobile-nav a {
  font-size: 1rem;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
#mobile-nav a:hover { color: var(--text-1); }
#mobile-nav.open { display: flex; }

/* =====================================================================
   HERO
   ===================================================================== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 6px 16px 6px 6px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 32px;
  color: var(--text-2);
}
.hero-badge-dot {
  background: linear-gradient(135deg, var(--brand-light), var(--accent));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Floating app previews */
.hero-visual {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-mockup {
  width: 220px;
  height: 440px;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.12);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a0938 0%, #0d1f3c 50%, #0a2818 100%);
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
}
.phone-notch {
  width: 60px; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 0 auto 20px;
}
.floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

/* =====================================================================
   PRODUCTS / APPS SHOWCASE
   ===================================================================== */
.product-tabs {
  display: flex;
  gap: 8px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 999px;
  margin-bottom: 48px;
  width: fit-content;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.25s;
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--brand), #4F46E5);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}
.tab-btn:hover:not(.active) { color: var(--text-1); background: var(--bg-card); }

.products-grid { display: none; }
.products-grid.active { display: grid; }

/* =====================================================================
   FEATURES
   ===================================================================== */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-highlight.reverse { direction: rtl; }
.feature-highlight.reverse > * { direction: ltr; }

.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.25s;
}
.feature-item:hover { background: var(--bg-card); border-color: var(--border); }
.feature-item-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.feature-item-text p  { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }

/* =====================================================================
   METRICS / STATS SECTION
   ===================================================================== */
.metrics-band {
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.08) 100%);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-xl);
  padding: 60px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.metric-item { text-align: center; }
.metric-item p { color: var(--text-2); font-size: 0.875rem; margin-top: 4px; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonials-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.stars { color: var(--accent-warm); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.author-name  { font-size: 0.875rem; font-weight: 600; }
.author-title { font-size: 0.75rem; color: var(--text-3); margin-top: 1px; }

/* =====================================================================
   PRICING
   ===================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(124,58,237,0.15) 0%, rgba(79,70,229,0.1) 100%);
  border: 1.5px solid rgba(124,58,237,0.5);
  box-shadow: 0 0 60px rgba(124,58,237,0.15);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin: 16px 0;
}
.price-currency { font-size: 1.5rem; vertical-align: super; }
.price-period   { font-size: 1rem; color: var(--text-2); font-weight: 400; }
.price-features { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-2);
}
.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  width: 16px;
  flex-shrink: 0;
}
.price-features li.disabled { color: var(--text-3); }
.price-features li.disabled::before { content: '–'; color: var(--text-3); }

/* =====================================================================
   TEAM
   ===================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
}
.team-name  { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.team-role  { font-size: 0.8rem; color: var(--text-2); margin-bottom: 12px; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.team-social {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--text-2);
  transition: all 0.2s;
}
.team-social:hover { border-color: var(--border-h); color: var(--brand-light); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-h); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  text-align: left;
  gap: 16px;
}
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--brand-light);
  transition: all 0.25s;
}
.faq-item.open .faq-icon { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.4); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta-banner {
  background: linear-gradient(135deg, rgba(124,58,237,0.18) 0%, rgba(6,182,212,0.1) 100%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* =====================================================================
   NEWSLETTER
   ===================================================================== */
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 24px auto 0;
  gap: 8px;
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 13px 22px;
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: var(--text-3); }
.newsletter-input:focus { border-color: var(--brand-light); }

/* =====================================================================
   FOOTER
   ===================================================================== */
#footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--bg-1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-1); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 34px; height: 34px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.social-icon:hover { border-color: var(--border-h); color: var(--brand-light); }

/* =====================================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .grid-4, .metrics-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .testimonials-scroll { grid-template-columns: repeat(2, 1fr); }
  .feature-highlight { grid-template-columns: 1fr; gap: 40px; }
  .feature-highlight.reverse { direction: ltr; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .metrics-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-scroll { grid-template-columns: 1fr; }
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .hero-stat-divider { display: none; }
  .cta-banner { padding: 48px 28px; }
  .metrics-band { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-tabs { flex-wrap: wrap; border-radius: var(--radius-lg); }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .metrics-grid, .team-grid { grid-template-columns: 1fr; }
  .text-hero { font-size: 2.8rem; }
}

/* =====================================================================
   MISC ANIMATIONS
   ===================================================================== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 0.7; }
  50%  { transform: scale(1.05); opacity: 0.3; }
  100% { transform: scale(0.9); opacity: 0.7; }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.float-anim { animation: float 5s ease-in-out infinite; }
.float-anim-slow { animation: float 7s ease-in-out infinite; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-3);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid var(--text-3);
  border-radius: 12px;
  position: relative;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: var(--text-3);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: float 1.5s ease-in-out infinite;
}
