/* ============================================================
   KINETIX — "Velocity Green" Marketing Website
   Design System & Full Page Styles
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Core Palette */
  --obsidian: #000000;
  --gunmetal: #0a0a0a;
  --surface: #111111;
  --graphite: #1a1a1a;
  --border: #2a2a2a;
  --border-light: #3a3a3a;

  /* Brand Colors */
  --velocity-green: #39FF14;
  --emerald: #50FA7B;
  --emerald-dim: rgba(57, 255, 20, 0.15);
  --emerald-glow: 0 0 30px rgba(57, 255, 20, 0.3), 0 0 60px rgba(57, 255, 20, 0.1);
  --emerald-glow-subtle: 0 0 15px rgba(57, 255, 20, 0.15);

  /* Accent */
  --cyan: #8BE9FD;
  --amber: #FFB86C;
  --purple: #BD93F9;
  --danger: #FF5555;

  /* Text */
  --ice: #F0F4F8;
  --ice-muted: #8892A4;
  --ice-dim: #5A6378;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-med: 400ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--obsidian);
  color: var(--ice);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---- Utilities ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.text-green {
  color: var(--velocity-green);
}

.text-emerald {
  color: var(--emerald);
}

.text-cyan {
  color: var(--cyan);
}

.text-amber {
  color: var(--amber);
}

.text-muted {
  color: var(--ice-muted);
}

.text-mono {
  font-family: var(--font-mono);
}

.gradient-text {
  background: linear-gradient(135deg, var(--velocity-green) 0%, var(--emerald) 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: linear-gradient(135deg, var(--velocity-green) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--velocity-green);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 4px;
  background: var(--emerald-dim);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--ice-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---- Glass Panel ---- */
.glass {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.glass-subtle {
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

/* ---- Glow ---- */
.glow-border {
  border: 1px solid rgba(57, 255, 20, 0.25);
  box-shadow: var(--emerald-glow-subtle);
}

.glow-border:hover {
  border-color: rgba(57, 255, 20, 0.5);
  box-shadow: var(--emerald-glow);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background: var(--velocity-green);
  color: var(--obsidian);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.btn-primary:hover {
  background: var(--emerald);
  box-shadow: var(--emerald-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ice);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--velocity-green);
  color: var(--velocity-green);
  box-shadow: var(--emerald-glow-subtle);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition-med);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-logo .logo-accent {
  color: var(--velocity-green);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ice-muted);
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
}

.navbar-links a:hover {
  color: var(--velocity-green);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ice);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay — hidden by default, shown via JS */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ice);
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--velocity-green);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.06) 0%, transparent 55%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(139, 233, 253, 0.04) 0%, transparent 55%);
  animation: pulse-glow 10s ease-in-out infinite reverse;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  max-width: 580px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--velocity-green);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: var(--emerald-dim);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 4px;
}

.hero-tag .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--velocity-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.4);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(57, 255, 20, 0);
  }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--ice-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--velocity-green);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--ice-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Hero Visual (right side) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dashboard {
  width: 100%;
  max-width: 520px;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dot.red {
  background: #ff5f57;
}

.dash-dot.yellow {
  background: #febc2e;
}

.dash-dot.green {
  background: #28c840;
}

.dash-titlebar-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ice-dim);
  margin-left: 8px;
}

.dash-body {
  padding: 20px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dash-header h3 {
  font-size: 0.9rem;
  font-weight: 700;
}

.dash-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 4px 10px;
  background: var(--emerald-dim);
  color: var(--velocity-green);
  border-radius: 4px;
  border: 1px solid rgba(57, 255, 20, 0.15);
}

.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dash-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.dash-stat-card .value {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--velocity-green);
}

.dash-stat-card .label {
  font-size: 0.65rem;
  color: var(--ice-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.dash-activity {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.dash-activity-title {
  font-size: 0.7rem;
  color: var(--ice-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.dash-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dash-activity-item:last-child {
  border-bottom: none;
}

.activity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.activity-dot.green {
  background: var(--velocity-green);
}

.activity-dot.amber {
  background: var(--amber);
}

.activity-dot.cyan {
  background: var(--cyan);
}

.dash-activity-item .text {
  font-size: 0.78rem;
  color: var(--ice-muted);
  flex: 1;
}

.dash-activity-item .time {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--ice-dim);
}

/* Floating elements */
.hero-float {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.hero-float-1 {
  top: -20px;
  right: -40px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 40px;
  left: -30px;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.float-card {
  padding: 12px 18px;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.float-card .icon {
  font-size: 1.2rem;
}

.float-card .label {
  font-size: 0.75rem;
  color: var(--ice-muted);
}

.float-card .value {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--velocity-green);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features {
  padding: var(--section-padding);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  padding: 36px 28px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all var(--transition-med);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--velocity-green), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.feature-card:hover {
  border-color: rgba(57, 255, 20, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--emerald-dim);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all var(--transition-med);
}

.feature-card:hover .feature-icon {
  box-shadow: var(--emerald-glow-subtle);
  border-color: rgba(57, 255, 20, 0.35);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--ice-muted);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-it-works {
  padding: var(--section-padding);
  background: var(--gunmetal);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.2), rgba(57, 255, 20, 0.2), transparent);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--velocity-green);
  background: var(--graphite);
  border: 2px solid rgba(57, 255, 20, 0.2);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: all var(--transition-med);
}

.step:hover .step-number {
  border-color: var(--velocity-green);
  box-shadow: var(--emerald-glow);
  background: rgba(57, 255, 20, 0.1);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--ice-muted);
  line-height: 1.6;
}

/* ============================================================
   PLATFORM ROLES (Admin vs Tech)
   ============================================================ */

.roles {
  padding: var(--section-padding);
  position: relative;
}

.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.role-card {
  padding: 40px 32px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-med);
}

.role-card:hover {
  border-color: rgba(57, 255, 20, 0.15);
  transform: translateY(-3px);
}

.role-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.03;
  transition: opacity var(--transition-med);
}

.role-card.admin::after {
  background: var(--velocity-green);
}

.role-card.tech::after {
  background: var(--cyan);
}

.role-card:hover::after {
  opacity: 0.06;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.role-card.admin .role-badge {
  color: var(--velocity-green);
  background: var(--emerald-dim);
  border: 1px solid rgba(57, 255, 20, 0.2);
}

.role-card.tech .role-badge {
  color: var(--cyan);
  background: rgba(139, 233, 253, 0.1);
  border: 1px solid rgba(139, 233, 253, 0.2);
}

.role-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.role-subtitle {
  font-size: 0.9rem;
  color: var(--ice-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.role-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.role-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}

.role-feature .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.65rem;
  margin-top: 2px;
}

.role-card.admin .role-feature .check {
  background: var(--emerald-dim);
  color: var(--velocity-green);
}

.role-card.tech .role-feature .check {
  background: rgba(139, 233, 253, 0.1);
  color: var(--cyan);
}

/* ============================================================
   BETA ACCESS SECTION
   ============================================================ */

.beta {
  padding: var(--section-padding);
  background: var(--gunmetal);
  position: relative;
  overflow: hidden;
}

.beta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.beta-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 48px;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(57, 255, 20, 0.05);
  position: relative;
}

.beta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--velocity-green), transparent);
}

.beta-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  display: block;
}

.beta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.beta-desc {
  font-size: 1rem;
  color: var(--ice-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.beta-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--velocity-green);
  padding: 10px 24px;
  background: var(--emerald-dim);
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 8px;
  margin-bottom: 32px;
}

.beta-status .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--velocity-green);
  animation: pulse 2s ease-in-out infinite;
}

.beta-email-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.beta-email-form input {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ice);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.beta-email-form input::placeholder {
  color: var(--ice-dim);
}

.beta-email-form input:focus {
  border-color: var(--velocity-green);
  box-shadow: var(--emerald-glow-subtle);
}

/* ============================================================
   MOBILE SECTION
   ============================================================ */

.mobile-section {
  padding: var(--section-padding);
  position: relative;
}

.mobile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mobile-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.mobile-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mobile-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--emerald-dim);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 10px;
}

.mobile-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.mobile-feature p {
  font-size: 0.83rem;
  color: var(--ice-muted);
  line-height: 1.5;
}

.mobile-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--graphite);
  border-radius: 40px;
  border: 3px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--obsidian);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  padding: 40px 16px 16px;
  height: 100%;
  background: linear-gradient(180deg, var(--obsidian) 0%, var(--graphite) 100%);
}

.phone-header {
  text-align: center;
  margin-bottom: 20px;
}

.phone-header h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.phone-header p {
  font-size: 0.6rem;
  color: var(--ice-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.phone-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}

.phone-stat .value {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--velocity-green);
}

.phone-stat .label {
  font-size: 0.55rem;
  color: var(--ice-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.phone-action-btn {
  padding: 10px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.phone-action-btn.primary {
  background: var(--velocity-green);
  color: var(--obsidian);
}

.phone-action-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ice-muted);
  border: 1px solid var(--border);
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(57, 255, 20, 0.06) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--ice-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--gunmetal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--ice-muted);
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ice-dim);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--ice-muted);
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--velocity-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--ice-dim);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

.reveal-delay-7 {
  transition-delay: 0.7s;
}

.reveal-delay-8 {
  transition-delay: 0.8s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-description {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

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

  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .steps-container::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .navbar-links,
  .navbar-cta .btn-outline {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile Nav */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ice);
    transition: color var(--transition-fast);
  }

  .mobile-nav a:hover {
    color: var(--velocity-green);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mobile-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .beta-email-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}