:root {
  --orange: #FF6B00;
  --orange-dark: #CC5500;
  --orange-glow: rgba(255, 107, 0, 0.15);
  --black: #000000;
  --near-black: #111111;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --muted: #888888;
  --muted-light: #AAAAAA;
  --border: rgba(255, 255, 255, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  line-height: 1.15;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { width: 32px; height: 32px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.nav-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--white); }
.nav-tagline { font-size: 12px; color: var(--muted-light); letter-spacing: 0.08em; text-transform: uppercase; margin-left: 8px; padding-left: 8px; border-left: 1px solid var(--border); }
.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_168363/d241e23e-be6a-4386-9d6a-6399958d0983.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 48px 80px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-headline span { color: var(--orange); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(255, 107, 0, 0.3);
  cursor: pointer;
  border: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.5);
}
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted-light);
  font-size: 13px;
  margin-top: 60px;
  opacity: 0.7;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--muted-light);
  border-bottom: 2px solid var(--muted-light);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.7; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--black);
  padding: 96px 48px;
  position: relative;
}
.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.problem-inner { max-width: 900px; margin: 0 auto; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 16px;
}
.problem-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.25;
}
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 48px; }
.problem-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
  transition: background 0.2s, border-color 0.2s;
}
.problem-card:hover {
  background: rgba(255, 107, 0, 0.06);
  border-color: rgba(255, 107, 0, 0.25);
}
.problem-icon { font-size: 20px; flex-shrink: 0; filter: sepia(1) hue-rotate(-10deg) saturate(3); }
.problem-conclusion {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  font-family: 'Sora', sans-serif;
}

/* ===== HOW IT WORKS ===== */
.how {
  background: var(--near-black);
  padding: 96px 48px;
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  margin-bottom: 64px;
  color: var(--white);
}
.steps { display: flex; gap: 32px; }
.step { flex: 1; position: relative; }
.step::before {
  content: '';
  position: absolute;
  top: 36px;
  right: -16px;
  width: calc(100% - 60px);
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
  z-index: 0;
}
.step:last-child::before { display: none; }
.step-num {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 36px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.step-desc { font-size: 15px; color: var(--muted-light); line-height: 1.6; }

/* ===== OUTPUTS ===== */
.outputs {
  background: var(--black);
  padding: 96px 48px;
  position: relative;
}
.outputs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.outputs-inner { max-width: 1100px; margin: 0 auto; }
.outputs-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
  max-width: 560px;
}
.outputs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.output-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
  cursor: default;
}
.output-card:hover {
  background: rgba(255, 107, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.12);
}
.output-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.output-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.output-card p { font-size: 14px; color: var(--muted-light); line-height: 1.6; }

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--orange);
  padding: 96px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.manifesto-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.manifesto-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 20px;
}
.manifesto-sub {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.6);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--near-black);
  padding: 64px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
.footer-logo { width: 28px; height: 28px; background: var(--orange); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.footer-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px; color: var(--white); }
.footer-tagline { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.footer-tagline span { color: var(--orange); }
.footer-note {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 16px; }
.footer-links a { color: var(--muted-light); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* ===== ROADMAP CALLOUT ===== */
.roadmap-strip {
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  padding: 32px 48px;
  text-align: center;
}
.roadmap-strip-inner { max-width: 800px; margin: 0 auto; }
.roadmap-strip h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.roadmap-strip p { font-size: 15px; color: rgba(0,0,0,0.6); margin-bottom: 20px; }
.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-dark:hover { background: var(--near-black); transform: translateY(-1px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .nav-cta { padding: 8px 18px; font-size: 13px; }
  .hero-content { padding: 120px 24px 60px; }
  .hero-headline { font-size: clamp(36px, 8vw, 52px); }
  .problem { padding: 64px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .how { padding: 64px 24px; }
  .steps { flex-direction: column; gap: 40px; }
  .step::before { display: none; }
  .outputs { padding: 64px 24px; }
  .outputs-grid { grid-template-columns: 1fr 1fr; }
  .manifesto { padding: 64px 24px; }
  .roadmap-strip { padding: 48px 24px; }
  .footer { padding: 48px 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 480px) {
  .outputs-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}