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

:root {
  --orange: #FF4500;
  --orange-dim: rgba(255, 69, 0, 0.12);
  --charcoal: #0D0D0D;
  --charcoal-mid: #1a1a1a;
  --charcoal-light: #2a2a2a;
  --off-white: #F5F5F0;
  --text-muted: #888;
  --text-dim: #555;
}

html { font-size: 16px; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--off-white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--orange-dim);
  color: var(--orange);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  border: 1px solid rgba(255,69,0,0.2);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255,69,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}
.hero-headline {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero-line-1 { color: var(--off-white); }
.hero-line-2 { color: var(--orange); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero-price-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-family: 'Space Grotesk', sans-serif;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: #ff571a; transform: translateY(-1px); }
.btn-large { font-size: 1.1rem; padding: 1rem 2rem; border-radius: 10px; }

/* === HERO RIGHT - GEOMETRIC STACK === */
.hero-right { position: relative; height: 400px; }
.geo-stack { position: relative; width: 100%; height: 100%; }
.geo-blob {
  position: absolute;
  border-radius: 20% 80% 60% 40% / 40% 60% 80% 20%;
  animation: blob-drift 8s ease-in-out infinite alternate;
}
.geo-blob-1 {
  width: 60%;
  height: 70%;
  top: 0; right: 0;
  background: linear-gradient(135deg, rgba(255,69,0,0.15) 0%, rgba(255,69,0,0.04) 100%);
  border: 1px solid rgba(255,69,0,0.2);
  backdrop-filter: blur(2px);
}
.geo-blob-2 {
  width: 40%;
  height: 45%;
  top: 15%; right: 30%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  border: 1px solid rgba(255,255,255,0.08);
  animation-delay: -3s;
}
.geo-blob-3 {
  width: 30%;
  height: 35%;
  bottom: 10%;
  right: 0;
  background: var(--orange-dim);
  border: 1px solid rgba(255,69,0,0.15);
  border-radius: 40% 60% 70% 30% / 60% 40% 30% 70%;
  animation-delay: -5s;
}
@keyframes blob-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(8px, -6px) rotate(3deg); }
}

/* GEO CARDS */
.geo-card {
  position: absolute;
  background: rgba(26,26,26,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(10px);
  min-width: 160px;
}
.geo-card-1 { top: 10%; left: 0; }
.geo-card-2 { top: 38%; left: 5%; }
.geo-card-3 { top: 66%; left: 0; }
.card-platform {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.6rem;
}
.card-lines { display: flex; flex-direction: column; gap: 0.35rem; }
.card-line {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.card-line.w80 { width: 80%; }
.card-line.w60 { width: 60%; }
.card-line.w90 { width: 90%; }
.card-line.w70 { width: 70%; }
.card-line.w85 { width: 85%; }
.card-line.w75 { width: 75%; }
.card-line.w55 { width: 55%; }
.card-check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* GEO STATS */
.geo-stat {
  position: absolute;
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(255,69,0,0.25);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(10px);
  text-align: center;
}
.geo-stat-1 { bottom: 15%; right: 15%; }
.geo-stat-2 { bottom: 30%; right: 0; }
.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

/* === SECTIONS SHARED === */
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 6rem 2rem;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
}
.manifesto-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  padding-top: 0.5rem;
  white-space: nowrap;
}
.manifesto-headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.manifesto-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 1rem;
}

/* === HOW === */
.how { padding: 6rem 2rem; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.how-step { padding: 0 1rem; }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.how-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.how-step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,69,0,0.4), rgba(255,69,0,0.1));
  margin-top: 2rem;
  flex-shrink: 0;
}

/* === SERVICES === */
.services { padding: 6rem 2rem; background: var(--charcoal-mid); border-top: 1px solid rgba(255,255,255,0.05); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: rgba(255,69,0,0.2); transform: translateY(-2px); }
.service-card-accent {
  border-color: rgba(255,69,0,0.3);
  background: linear-gradient(135deg, rgba(255,69,0,0.06) 0%, transparent 100%);
  position: relative;
}
.service-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 0 0 8px 8px;
}
.service-icon { margin-bottom: 1.25rem; }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.service-price {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--orange) !important;
  margin-bottom: 0.75rem !important;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  color: var(--orange);
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}
.service-cta:hover { gap: 0.5rem; }

/* === MANIFESTO 2 === */
.manifesto2 {
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.manifesto2-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.manifesto2-quote blockquote {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
  border-left: 3px solid var(--orange);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.manifesto2-quote cite {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: normal;
  font-family: 'Space Grotesk', sans-serif;
  padding-left: 1.5rem;
}
.manifesto2-right h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.manifesto2-right p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.closing-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20vw;
  font-weight: 700;
  color: rgba(255,69,0,0.04);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.closing-headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.closing-fine {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* === FOOTER === */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--off-white);
}
.footer-copy { font-size: 0.8rem; color: var(--text-dim); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { height: 280px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .how-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .manifesto2-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .services-grid { gap: 1rem; }
  .service-card { padding: 1.5rem; }
}