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

:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --bg-elevated: #1e1e1e;
  --lime: #c8ff2e;
  --lime-dim: rgba(200, 255, 46, 0.08);
  --lime-glow: rgba(200, 255, 46, 0.15);
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-400: #888888;
  --gray-500: #666666;
  --gray-600: #444444;
  --gray-800: #1a1a1a;
  --red: #ff4444;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.top-bar {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.65rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 3rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo .logo-icon {
  width: 28px; height: 28px;
  background: var(--lime);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo .logo-icon svg { width: 16px; height: 16px; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-size: 0.875rem; color: var(--gray-400); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-right a { font-size: 0.875rem; color: var(--gray-400); font-weight: 500; transition: color 0.2s; }
.nav-right a:hover { color: var(--white); }
.btn-nav-cta {
  background: transparent;
  border: 1px solid var(--lime);
  color: var(--lime);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
}
.btn-nav-cta:hover { background: var(--lime); color: var(--bg); }

.hero {
  padding: 6rem 3rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--lime-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text { max-width: 640px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lime-dim);
  border: 1px solid rgba(200, 255, 46, 0.15);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--lime);
  margin-bottom: 2rem;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero h1 .highlight {
  display: inline-block;
  background: var(--lime);
  color: var(--bg);
  padding: 0.05em 0.25em;
  border-radius: 4px;
  margin-top: 0.15em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; gap: 1rem; align-items: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lime);
  color: var(--bg);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200, 255, 46, 0.25); }
.btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s var(--ease-out);
}
.btn-secondary:hover { background: var(--bg-elevated); border-color: rgba(255,255,255,0.2); }

.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.bento-cell {
  background: var(--bg-card);
  padding: 1.8rem 2rem;
  transition: background 0.3s;
}
.bento-cell:hover { background: var(--bg-card-hover); }
.bento-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bento-cell .big-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.bento-cell .label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  font-family: var(--font-mono);
}
.bento-cell.accent { background: var(--lime); color: var(--bg); cursor: pointer; }
.bento-cell.accent:hover { background: #d4ff50; }
.bento-cell.accent .label { color: rgba(0,0,0,0.5); }
.bento-cell.accent .cta-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bento-cell.accent .cta-text svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out); }
.bento-cell.accent:hover .cta-text svg { transform: translateX(4px); }
.bento-arrow {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gray-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}
.bento-wide:hover .bento-arrow { border-color: var(--lime); background: var(--lime-dim); }
.bento-arrow svg { width: 16px; height: 16px; color: var(--gray-400); }
.bento-cell.danger .big-num { color: var(--red); }

.marquee-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 1.2rem 0;
}
.marquee-track { display: flex; animation: marquee 30s linear infinite; width: max-content; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.marquee-item .sep { width: 4px; height: 4px; background: var(--lime); border-radius: 50%; flex-shrink: 0; }

.section { padding: 7rem 3rem; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
  margin-bottom: 1.5rem;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--lime); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 600px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 3.5rem;
}

.problem-section { background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}
.problem-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.4s;
}
.problem-card:hover::before { opacity: 1; }
.problem-card:hover { background: var(--bg-card-hover); }
.problem-num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gray-600); margin-bottom: 1.5rem; letter-spacing: 0.1em; }
.problem-stat { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--red); letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.75rem; }
.problem-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.problem-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

.services-section { border-top: 1px solid rgba(255,255,255,0.04); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--lime-glow) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover { border-color: rgba(200, 255, 46, 0.15); transform: translateY(-4px); }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--lime-dim);
  border: 1px solid rgba(200, 255, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 22px; height: 22px; color: var(--lime); }
.service-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; color: var(--gray-400); line-height: 1.7; margin-bottom: 1.5rem; }
.service-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  background: var(--lime-dim);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(200, 255, 46, 0.1);
}

.approach-section { background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.04); }
.approach-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.approach-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-600), var(--gray-600), transparent);
}
.step { text-align: center; padding: 0 1.5rem; position: relative; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-out);
}
.step:hover .step-num { border-color: var(--lime); background: var(--lime-dim); color: var(--lime); }
.step h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* WHY / FOUNDER + FREE ASSESSMENT */
.why-section { border-top: 1px solid rgba(255,255,255,0.04); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.why-content .founder-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.why-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.why-content h3 span { color: var(--lime); }
.why-content p {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.why-content p:last-of-type { margin-bottom: 0; }
.why-assessment {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.why-assessment::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--lime), rgba(200,255,46,0.2));
}
.why-assessment .assess-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--lime-dim);
  border: 1px solid rgba(200, 255, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.why-assessment .assess-icon svg { width: 26px; height: 26px; color: var(--lime); }
.why-assessment h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.why-assessment p { font-size: 0.95rem; color: var(--gray-400); line-height: 1.7; margin-bottom: 1.5rem; }
.assess-list { list-style: none; margin-bottom: 2rem; }
.assess-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray-200);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.assess-list li:last-child { border-bottom: none; }
.assess-list li svg { width: 16px; height: 16px; color: var(--lime); flex-shrink: 0; margin-top: 3px; }
.assess-price {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 1rem;
}
.assess-price span { color: var(--lime); font-weight: 600; }

.cta-section {
  padding: 7rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--lime-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section .section-title { max-width: 700px; margin: 0 auto 1rem; }
.cta-section .section-desc { max-width: 500px; margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; }

footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; margin-top: 1rem; max-width: 300px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.9rem; color: var(--gray-400); padding: 0.3rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--gray-600);
  font-family: var(--font-mono);
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--gray-600);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--white);
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  background: var(--lime);
  color: var(--bg);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--lime-glow);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-success {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--lime);
  display: none;
}
.form-success.show {
  display: block;
}
.form-success h4 {
  color: var(--lime);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--gray-400);
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; min-height: auto; padding: 4rem 2rem; }
  .hero-bento { max-width: 500px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .approach-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav, .section, .cta-section, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .top-bar { padding: 0.5rem 1.5rem; font-size: 0.65rem; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.8rem; }
  .approach-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
}
