/* ============================================
   ROPE — Modern Mobile Design
   Apple-inspired · Clean · Well-spaced
   ============================================ */

:root {
  --lime: #C8FF00;
  --lime-bright: #D4FF33;
  --lime-dim: #9BB300;
  --lime-glow: rgba(200, 255, 0, 0.4);
  --lime-soft: rgba(200, 255, 0, 0.1);
  --purple: #A78BFA;
  --purple-soft: rgba(167, 139, 250, 0.1);

  --bg: #000000;
  --surface: #0A0A0A;
  --card: #141414;
  --elevated: #1C1C1C;

  --text: #FFFFFF;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;

  --stroke: #1F1F1F;
  --stroke-light: #2A2A2A;

  --success: #22C55E;
  --danger: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);

  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

p, span, div, button, a, li {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ============================================
   LOADER - Workflow Animation
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}

.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.loader-bg-orb-1 {
  width: 300px; height: 300px;
  background: var(--lime);
  opacity: 0.15;
  top: -100px; right: -100px;
}

.loader-bg-orb-2 {
  width: 250px; height: 250px;
  background: var(--purple);
  opacity: 0.12;
  bottom: -80px; left: -80px;
  animation-delay: -4s;
}

.loader-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
  max-width: 360px;
}

.loader-brand-name {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 8px;
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  animation: brandIn 0.6s ease;
}

@keyframes brandIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.loader-brand-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--lime);
  background: var(--lime-soft);
  border: 1px solid var(--lime);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1.5px;
  margin-bottom: 36px;
}

.loader-logo {
  margin-bottom: 24px;
  animation: brandIn 0.6s ease;
}

.loader-img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 0 30px var(--lime-glow);
  margin: 0 auto;
}

/* WORKFLOW STEPS */
.loader-workflow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding: 0 8px;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.3;
  transform: scale(0.85);
  transition: all 0.8s var(--ease-spring);
  position: relative;
  z-index: 1;
}

.workflow-step.active {
  opacity: 1;
  transform: scale(1);
}

.workflow-step.completed {
  opacity: 0.7;
  transform: scale(0.9);
}

.workflow-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--card);
  border: 2px solid var(--stroke-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.8s var(--ease-spring);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.workflow-icon svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.workflow-step.active .workflow-icon {
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  border-color: var(--lime);
  color: var(--bg);
  box-shadow:
    0 0 24px var(--lime-glow),
    0 0 48px var(--lime-glow);
  transform: translateY(-3px);
}

.workflow-step.completed .workflow-icon {
  background: var(--lime-soft);
  border-color: var(--lime);
  color: var(--lime);
}

/* Pulse ring on active */
.workflow-step.active .workflow-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 2px solid var(--lime);
  opacity: 0.4;
  animation: pulseRing 2.5s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.workflow-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.workflow-step.active .workflow-label {
  color: var(--lime);
}

.workflow-step.completed .workflow-label {
  color: var(--lime);
  opacity: 0.7;
}

/* ARROWS */
.workflow-arrow {
  flex: 1;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -4px;
  margin-bottom: 18px;
}

.arrow-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 8px;
  height: 2px;
  background: var(--stroke);
  transform: translateY(-50%);
  overflow: hidden;
  border-radius: 1px;
}

.workflow-arrow svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: var(--bg);
  padding-left: 2px;
  transition: color 0.3s;
}

.workflow-arrow.active .arrow-line {
  background: var(--lime-soft);
}

.workflow-arrow.active svg {
  color: var(--lime);
}

/* Loader Bar */
.loader-bar {
  width: 100%;
  max-width: 240px;
  height: 3px;
  background: var(--stroke);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--lime-bright));
  border-radius: 2px;
  width: 0;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--lime-glow);
}

.loader-status {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 16px;
  transition: color 0.3s;
}

.loader-status.active {
  color: var(--lime);
}

/* ============================================
   APP CONTAINER
   ============================================ */
.app {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  padding-top: 0;
  padding-bottom: 100px;
}

@media (min-width: 481px) {
  .app {
    border-left: 1px solid var(--stroke);
    border-right: 1px solid var(--stroke);
  }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 50;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2.5px;
}

.nav-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: 0 0 16px var(--lime-glow);
}

.nav-logo-text {
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-cta-pill {
  background: var(--lime);
  color: var(--bg);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 100px;
  transition: 0.2s var(--ease-spring);
  letter-spacing: 0.3px;
}

.nav-cta-pill:active {
  transform: scale(0.96);
}

/* ============================================
   BOTTOM NAV - 3D Apple-style
   ============================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 12px 8px calc(12px + var(--safe-bottom));
  z-index: 100;
  perspective: 1200px;
}

.bottom-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0.4;
}

.bottom-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  color: var(--text-muted);
  min-width: 60px;
  border-radius: 20px;
  transform-style: preserve-3d;
  transition: color 0.4s var(--ease-spring);
  cursor: pointer;
}

/* 3D Icon Stack */
.bottom-nav-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-spring);
}

.bottom-nav-glow {
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
  opacity: 0;
  transform: translateZ(-8px) scale(0.8);
  filter: blur(10px);
  transition: all 0.5s var(--ease-spring);
}

.bottom-nav-disc {
  position: absolute;
  inset: 4px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--card) 0%, var(--surface) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateZ(0);
  transition: all 0.5s var(--ease-spring);
}

.bottom-nav-item svg.icon-main {
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 2;
  transform: translateZ(20px);
  transition: all 0.5s var(--ease-spring);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.bottom-nav-shadow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) translateZ(-4px);
  width: 26px;
  height: 5px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.4;
  transition: all 0.5s var(--ease-spring);
}

.bottom-nav-item span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transform: translateZ(8px);
  transition: all 0.3s var(--ease-spring);
  opacity: 0.7;
}

/* ACTIVE STATE */
.bottom-nav-item.active {
  color: var(--lime);
}

.bottom-nav-item.active .bottom-nav-icon {
  transform: translateY(-6px);
}

.bottom-nav-item.active .bottom-nav-disc {
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-bright) 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 8px 24px var(--lime-glow),
    0 0 40px var(--lime-glow);
  transform: translateZ(4px) scale(1.05);
}

.bottom-nav-item.active .bottom-nav-glow {
  opacity: 0.5;
  transform: translateZ(-4px) scale(1.15);
}

.bottom-nav-item.active svg.icon-main {
  color: var(--bg);
  stroke: var(--bg);
  transform: translateZ(28px) scale(1.08);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.bottom-nav-item.active .bottom-nav-shadow {
  width: 32px;
  opacity: 0.6;
}

.bottom-nav-item.active span {
  color: var(--lime);
  font-weight: 800;
  opacity: 1;
}

/* PRESS */
.bottom-nav-item:active .bottom-nav-icon {
  transform: translateY(-2px) scale(0.94);
  transition: transform 0.1s ease;
}

/* RIPPLE EFFECT */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(200, 255, 0, 0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* DESKTOP WRAPPER */
@media (min-width: 768px) {
  .app-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    background: var(--bg);
    min-height: 100vh;
  }
  .app-wrapper .app {
    box-shadow: 0 0 60px rgba(200, 255, 0, 0.1), 0 25px 50px rgba(0, 0, 0, 0.5);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--stroke-light);
  }
  .app-wrapper .app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    opacity: 0.3;
  }
}

/* ============================================
   BACKGROUND ORBS
   ============================================ */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}

.bg-orb-1 {
  width: 280px; height: 280px;
  background: var(--lime);
  opacity: 0.12;
  top: -80px; right: -100px;
}

.bg-orb-2 {
  width: 240px; height: 240px;
  background: var(--purple);
  opacity: 0.1;
  bottom: -80px; left: -100px;
  animation-delay: -6s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 32px 24px 60px;
  overflow: hidden;
  text-align: center;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--lime-soft);
  border: 1px solid var(--lime);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-line {
  display: block;
  animation: fadeUp 0.6s ease both;
}

.hero-line:nth-child(1) { animation-delay: 0.3s; }
.hero-line:nth-child(2) { animation-delay: 0.4s; }
.hero-line:nth-child(3) { animation-delay: 0.5s; }

.hero-accent {
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.55;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.6s ease 0.6s both;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 48px;
  align-items: center;
  animation: fadeUp 0.6s ease 0.7s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--lime);
  color: var(--bg);
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 100px;
  transition: 0.3s var(--ease-spring);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:active {
  transform: scale(0.97);
}

.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  border-radius: 100px;
  transition: 0.2s;
}

.btn-ghost:active {
  color: var(--lime);
  background: var(--lime-soft);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  max-width: 320px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 320px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid var(--stroke-light);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.6s ease 0.8s both;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.stat-unit {
  font-size: 16px;
  color: var(--lime);
  opacity: 0.7;
}

.stat-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-sep {
  width: 1px;
  height: 32px;
  background: var(--stroke);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 60px 24px;
  position: relative;
}

.section-alt {
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--lime-soft);
  border: 1px solid var(--lime);
  border-radius: 100px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.tag-dot {
  width: 4px;
  height: 4px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text);
}

.section-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

/* ============================================
   APPS LIST
   ============================================ */
.apps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.app-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  transition: 0.3s var(--ease-spring);
  cursor: pointer;
}

.app-row:active {
  transform: scale(0.98);
  border-color: var(--lime);
}

.app-row .app-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-info {
  flex: 1;
  min-width: 0;
}

.app-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.app-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.app-check {
  width: 24px;
  height: 24px;
  background: var(--lime-soft);
  border: 1px solid var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  flex-shrink: 0;
}

.app-check svg {
  width: 12px;
  height: 12px;
}

/* ============================================
   FEATURES LIST
   ============================================ */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 16px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  transition: 0.3s var(--ease-spring);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid;
}

.icon-lime { background: var(--lime-soft); border-color: var(--lime); }
.icon-red { background: rgba(239, 68, 68, 0.1); border-color: var(--danger); }
.icon-blue { background: rgba(59, 130, 246, 0.1); border-color: var(--info); }
.icon-green { background: rgba(34, 197, 94, 0.1); border-color: var(--success); }
.icon-purple { background: var(--purple-soft); border-color: var(--purple); }
.icon-orange { background: rgba(245, 158, 11, 0.1); border-color: var(--warning); }

.feature-body {
  flex: 1;
  min-width: 0;
}

.feature-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.feature-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   STEPS
   ============================================ */
.steps-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.steps-stack::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--lime) 0%, var(--purple) 100%);
  opacity: 0.3;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  position: relative;
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 800;
  color: var(--lime);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 16px var(--lime-soft);
}

.step-final .step-num {
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.step-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 50px 24px;
  background: var(--surface);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, var(--lime-soft) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-box {
  text-align: center;
  padding: 12px;
}

.stat-num-lg {
  font-size: 32px;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label-sm {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 20px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.review-role {
  font-size: 11px;
  color: var(--text-muted);
}

.review-stars {
  color: var(--warning);
  font-size: 12px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--stroke);
  border-radius: 24px;
  padding: 24px;
  transition: 0.3s var(--ease-spring);
}

.price-popular {
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.08) 0%, var(--card) 100%);
  border-color: var(--lime);
  box-shadow: 0 0 40px var(--lime-soft);
}

.price-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--lime);
  color: var(--bg);
  font-size: 10px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
}

.price-head {
  margin-bottom: 20px;
}

.price-name {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 40px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}

.price-lime {
  color: var(--lime);
}

.price-period {
  font-size: 13px;
  color: var(--text-muted);
}

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

.price-features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0;
  font-weight: 500;
}

.price-btn {
  width: 100%;
  background: var(--surface);
  color: var(--text);
  padding: 14px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 100px;
  border: 1px solid var(--stroke-light);
  transition: 0.2s var(--ease-spring);
}

.price-btn:active {
  transform: scale(0.97);
}

.price-btn-primary {
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
}

/* ============================================
   DOWNLOAD CTA
   ============================================ */
.download-card {
  background: var(--card);
  border: 2px solid var(--lime);
  border-radius: 28px;
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px var(--lime-soft);
}

.download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.download-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.download-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.download-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

.download-meta .dot {
  color: var(--lime);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 24px 120px;
  background: var(--surface);
  border-top: 1px solid var(--stroke);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.footer-name {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--text);
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  transition: 0.2s;
}

.footer-links a:active { color: var(--lime); }

.footer-copy {
  font-size: 10px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-spring), transform 0.6s var(--ease-spring);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   SMALL MOBILE
   ============================================ */
@media (max-width: 360px) {
  .hero-title { font-size: 42px; }
  .section-title { font-size: 26px; }
  .hero-sub { font-size: 14px; }
  .hero-stats { padding: 16px; gap: 16px; }
  .stat-num { font-size: 20px; }
  .btn-primary { padding: 14px 24px; font-size: 14px; }
  .feature-row, .app-row { padding: 14px; }
  .price-card { padding: 20px; }
  .download-card { padding: 32px 20px; }
}
