/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --bg-2: #0F0F0F;
  --bg-3: #141414;
  --fg: #F5F5F5;
  --fg-2: #A0A0A0;
  --accent: #FF5722;
  --accent-dim: rgba(255, 87, 34, 0.12);
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(8,8,8,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--fg); }
.nav-tagline { font-size: 0.8rem; color: var(--fg-2); letter-spacing: 0.05em; text-transform: uppercase; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 40px 80px;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,87,34,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,87,34,0.08) 0%, transparent 70%);
  bottom: 50px;
  left: -50px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  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: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-2);
  max-width: 460px;
  line-height: 1.7;
}

/* === PHONE FRAME === */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  background: #111;
  border-radius: 36px;
  padding: 16px;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,87,34,0.2);
}

.phone-screen {
  background: #0C0C0C;
  border-radius: 28px;
  padding: 24px 20px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.clip-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--fg-2);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}

.clip-time { color: var(--accent); font-weight: 600; }

.clip-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.clip-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-3);
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--fg-2);
}

.clip-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg);
}

.clip-icon-done {
  background: var(--accent);
}

.clip-divider {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.clip-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === PROOF BAR === */
.proof {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-stat {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px;
}

.proof-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.proof-label {
  font-size: 0.8rem;
  color: var(--fg-2);
  line-height: 1.5;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* === SECTION SHARED === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--fg-2);
}

/* === HOW === */
.how {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.how-step {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.6;
}

/* === NICHES === */
.niches {
  padding: 100px 40px;
  background: var(--bg-2);
}

.niches .section-header { max-width: 1200px; margin: 0 auto 60px; }

.niches-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.niche-card {
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s;
}

.niche-card:hover { border-color: var(--accent); }

.niche-visual {
  margin-bottom: 20px;
  height: 60px;
  display: flex;
  align-items: center;
}

.niche-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.niche-icon-gym { background: linear-gradient(135deg, #FF5722, #FF8A65); }
.niche-icon-barber { background: linear-gradient(135deg, #4A4A4A, #888); }
.niche-icon-restaurant { background: linear-gradient(135deg, #D4A017, #E8C547); }
.niche-icon-realtor { background: linear-gradient(135deg, #2E7D32, #66BB6A); }

.niche-card h3 {
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 8px;
}

.niche-card p { font-size: 0.85rem; color: var(--fg-2); line-height: 1.6; }

/* === PRICING === */
.pricing {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  padding: 40px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
}

.pricing-card-featured {
  background: var(--bg-3);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(255,87,34,0.1);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 32px;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-2);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg-2);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* === PROCESS === */
.process {
  padding: 100px 40px;
  background: var(--bg-2);
  max-width: 1200px;
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 28px;
  padding: 24px 0;
  position: relative;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg-2);
}

.timeline-body { padding-top: 2px; }

.timeline-day {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.timeline-body h3 {
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 6px;
}

.timeline-body p { font-size: 0.9rem; color: var(--fg-2); }

/* === CLOSING === */
.closing {
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

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

.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }

.closing-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-2);
  margin-bottom: 40px;
  line-height: 1.7;
}

.closing-vibe {
  padding: 32px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,87,34,0.2);
  border-radius: 16px;
}

.closing-vibe p {
  font-size: 1rem;
  color: var(--fg-2);
  font-style: italic;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 60px 40px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p { font-size: 0.85rem; color: var(--fg-2); line-height: 1.6; }

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-link {
  font-size: 0.8rem;
  color: var(--fg-2);
  letter-spacing: 0.05em;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-2);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 2.4rem; }
  .how-steps { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-divider { display: none; }
  .proof-inner { gap: 0; }
  .footer-inner { flex-direction: column; }
  .nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .how, .pricing, .process { padding: 60px 20px; }
  .niches { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .niches-grid { grid-template-columns: 1fr; }
  .phone-frame { width: 240px; }
}