:root {
  --bg: #08080C;
  --bg-alt: #0D0D12;
  --green: #39FF14;
  --green-dim: rgba(57, 255, 20, 0.12);
  --text: #E8E8E0;
  --text-dim: rgba(232, 232, 224, 0.5);
  --border: rgba(255,255,255,0.07);
  --radius: 8px;
  --font-head: 'Unbounded', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,12,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-wordmark {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(57,255,20,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(57,255,20,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.headline-green { color: var(--green); }
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-dim); letter-spacing: 0.04em; }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* ── FRAMES STACK (right side hero) ── */
.frames-stack {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame {
  position: absolute;
  border-radius: 12px;
  background: #111117;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.frame-1 { width: 220px; height: 300px; top: 0; left: 50%; transform: translateX(-50%) rotate(-3deg); z-index: 3; }
.frame-2 { width: 210px; height: 285px; top: 60px; left: 10px; transform: rotate(2deg); z-index: 2; }
.frame-3 { width: 200px; height: 270px; top: 120px; right: 10px; transform: rotate(-1deg); z-index: 1; }
.frame-inner { height: 100%; display: flex; flex-direction: column; }
.frame-video-bar { height: 28px; background: #1a1a22; border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 12px; gap: 6px; }
.frame-video-bar::before, .frame-video-bar::after {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border);
}
.frame-video-bar::before { background: var(--green); opacity: 0.6; }
.frame-content { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 12px; gap: 8px; }
.frame-scene { height: 70%; border-radius: 4px; }
.gym-scene { background: linear-gradient(135deg, #1a2a1a 0%, #0f1f0f 50%, #1a3a1a 100%); }
.food-scene { background: linear-gradient(135deg, #2a1a0a 0%, #1f0f05 50%, #3a2010 100%); }
.realestate-scene { background: linear-gradient(135deg, #0f1a2a 0%, #081020 50%, #1a2a3a 100%); }
.frame-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-dim);
}
.platform-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.frames-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--green);
  z-index: 10;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s infinite;
}

/* ── SECTION SHARED ── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc { color: var(--text-dim); font-size: 17px; line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how { padding: 100px 48px; background: var(--bg-alt); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 32px;
}
.step {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid var(--border);
}
.step:last-child::after { display: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--green);
  opacity: 0.15;
  line-height: 1;
}
.step-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.step-desc { font-size: 15px; color: var(--text-dim); line-height: 1.65; }
.how-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  padding: 16px 20px;
  background: var(--green-dim);
  border-radius: var(--radius);
  border: 1px solid rgba(57,255,20,0.1);
}

/* ── INDUSTRIES ── */
.industries { padding: 100px 48px; }
.industries-inner { max-width: 1200px; margin: 0 auto; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.industry-card {
  background: var(--bg-alt);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}
.industry-card:hover { background: #111118; }
.ind-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-dim);
}
.ind-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ind-desc { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* ── DIFFERENCE ── */
.difference { padding: 100px 48px; background: var(--bg-alt); }
.diff-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.diff-body { font-size: 16px; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; }
.diff-pillars { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.pillar { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.pillar-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.quote-card {
  background: #0E0E14;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}
.quote-mark { margin-bottom: 16px; }
.quote-text { font-size: 16px; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 24px; }
.quote-attr { display: flex; align-items: center; gap: 12px; }
.attr-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
.attr-name { font-size: 14px; font-weight: 600; }
.attr-biz { font-size: 12px; color: var(--text-dim); }
.diff-stat-block { display: flex; flex-direction: column; gap: 0; }
.dsb-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dsb-item:last-child { border-bottom: none; }
.dsb-num { font-family: var(--font-head); font-size: 36px; font-weight: 900; color: var(--green); line-height: 1; }
.dsb-label { font-size: 13px; color: var(--text-dim); }

/* ── PRICING ── */
.pricing { padding: 100px 48px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 24px; }
.pricing-card {
  background: var(--bg-alt);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card.featured {
  background: #0D1008;
  border: 1px solid rgba(57,255,20,0.25);
}
.pc-badge {
  position: absolute;
  top: -1px;
  left: 32px;
  background: var(--green);
  color: #08080C;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
}
.pc-tier {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}
.pc-price {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.pc-per { font-size: 14px; font-weight: 400; color: var(--text-dim); }
.pc-usd { font-size: 13px; color: var(--text-dim); margin-bottom: 28px; }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pc-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-dim); line-height: 1.5; }
.pc-features svg { flex-shrink: 0; margin-top: 2px; }
.pricing-note { font-size: 12px; color: var(--text-dim); line-height: 1.6; }

/* ── CLOSING ── */
.closing { padding: 100px 48px; background: var(--bg-alt); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-body { font-size: 17px; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; }
.closing-body:last-of-type { margin-bottom: 0; }
.closing-rule {
  width: 48px; height: 2px;
  background: var(--green);
  margin: 48px auto;
}
.closing-tagline {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

/* ── FOOTER ── */
.footer { padding: 60px 48px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.footer-desc { font-size: 14px; color: var(--text-dim); line-height: 1.65; max-width: 320px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.col-head { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; margin-bottom: 4px; }
.footer-col span:not(.col-head) { font-size: 14px; color: var(--text-dim); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-dim); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .frames-stack { height: 320px; }
  .frame-1 { width: 180px; height: 250px; }
  .frame-2 { width: 170px; height: 235px; }
  .frame-3 { width: 160px; height: 220px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .how, .industries, .difference, .pricing, .closing { padding: 72px 24px; }
}