/* Velocity — Local Service Business Marketing */
:root {
  --bg: #0C0C0E;
  --bg-2: #111115;
  --bg-card: #16161A;
  --bg-card-hover: #1E1E24;
  --fg: #F5F5F7;
  --fg-2: #A1A1AA;
  --fg-3: #52525B;
  --accent: #FF5C00;
  --accent-soft: rgba(255, 92, 0, 0.12);
  --border: rgba(255, 255, 255, 0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.nav-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-2);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}
.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
}
.hero-inner {
  flex: 1;
}
.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 52px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 360px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-mock {
  position: relative;
  z-index: 2;
  width: 200px;
}
.phone-screen {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,92,0,0.1);
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5C00, #FF8C40);
  flex-shrink: 0;
}
.phone-meta { flex: 1; }
.phone-name { font-size: 12px; font-weight: 500; color: var(--fg); }
.phone-handle { font-size: 10px; color: var(--fg-3); }
.phone-follow-btn {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 8px;
  border-radius: 12px;
}
.phone-video-area {
  height: 100px;
  background: linear-gradient(160deg, #1a1a2e 0%, #0c0c0e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.phone-video-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,92,0,0.03) 3px,
    rgba(255,92,0,0.03) 4px
  );
}
.video-play-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,92,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.video-overlay-text {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.phone-comments {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.comment-line { font-size: 10px; line-height: 1.5; }
.comment-name { font-weight: 500; color: var(--fg); margin-right: 4px; }

/* Orbit rings */
.orbit-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,92,0,0.08);
}
.r1 { width: 260px; height: 260px; }
.r2 { width: 340px; height: 340px; border-color: rgba(255,92,0,0.04); }
.r3 { width: 440px; height: 440px; border-color: rgba(255,92,0,0.02); }
.orbit-center {
  width: 80px;
  height: 80px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,92,0,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,92,0,0.15);
}

/* Proof */
.proof {
  padding: 80px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.proof-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.proof-cred {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  color: white;
}
.proof-name { font-size: 14px; font-weight: 500; color: var(--fg); }
.proof-role { font-size: 12px; color: var(--fg-3); }

/* How */
.how {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 56px;
}
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  line-height: 1.15;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.how-card {
  background: var(--bg-card);
  padding: 36px 32px;
  position: relative;
}
.how-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 20px;
}
.how-icon { margin-bottom: 20px; }
.how-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.how-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.7;
  font-weight: 300;
}

/* Manifesto */
.manifesto {
  padding: 80px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.02em;
}

/* Pricing */
.pricing {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(255,92,0,0.3);
  background: linear-gradient(160deg, #1a1208 0%, var(--bg-card) 100%);
}
.pricing-card.premium {
  border-color: rgba(255,92,0,0.15);
}
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-3);
}
.pricing-desc {
  font-size: 13px;
  color: var(--fg-3);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 13px;
  color: var(--fg-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Closing */
.closing {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.closing-inner {
  max-width: 760px;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing p {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.75;
  font-weight: 300;
}

/* Footer */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-sub {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 100px 24px 60px; gap: 60px; }
  .hero-visual { width: 100%; justify-content: center; }
  .phone-mock { width: 160px; }
  .how-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .navbar { padding: 0 24px; }
  .how, .pricing, .closing, .how { padding: 60px 24px; }
  .section-header h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .phone-mock { display: none; }
  .manifesto-text { font-size: 20px; }
}