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

:root {
  --bg: #0D0D0D;
  --fg: #F5F5F0;
  --fg-muted: #888880;
  --lime: #BAFF00;
  --lime-dim: rgba(186, 255, 0, 0.15);
  --orange: #FF6B35;
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

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

/* === TYPOGRAPHY === */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.5rem;
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 4rem;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  background: rgba(13,13,13,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-badge {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid rgba(186,255,0,0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.proof-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* === HERO PANEL === */
.hero-panel {
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.panel-dots {
  display: flex;
  gap: 6px;
}

.panel-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.panel-dots span:nth-child(1) { background: #FF5F57; }
.panel-dots span:nth-child(2) { background: #FFBD2E; }
.panel-dots span:nth-child(3) { background: #28CA42; }

.panel-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.panel-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.client-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.client-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.client-meta {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
}

.client-status {
  font-size: 0.72rem;
  font-weight: 500;
}

.client-status.green { color: #28CA42; }
.client-status.lime { color: var(--lime); }

.panel-bar {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.bar-label {
  font-size: 0.65rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.bar-row {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--orange));
  border-radius: 99px;
}

.bar-value {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* === WHAT WE DO === */
.whatwedo {
  padding: 7rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s, background 0.2s;
}

.service-card:hover {
  border-color: rgba(186,255,0,0.2);
  background: rgba(186,255,0,0.03);
}

.service-icon {
  margin-bottom: 1.25rem;
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === DASHBOARD / HOW IT WORKS === */
.dashboard-section {
  padding: 7rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.workflow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.workflow-step {
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lime);
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.workflow-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  margin-top: 3.5rem;
  align-self: center;
  flex-shrink: 0;
}

/* === MANIFESTO === */
.manifesto {
  padding: 7rem 2.5rem;
  background: rgba(255,255,255,0.01);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.manifesto-label:first-child { margin-top: 0; }

.manifesto-text {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  color: var(--fg);
  font-weight: 300;
}

.manifesto-divider {
  width: 80px;
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* === CLOSING === */
.closing {
  padding: 8rem 2.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 3rem 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { order: -1; }
  .hero { padding-top: 7rem; }

  .services-grid { grid-template-columns: 1fr; }

  .workflow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .workflow-connector {
    width: 2px;
    height: 30px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--lime), transparent);
  }
}

@media (max-width: 600px) {
  .hero, .whatwedo, .dashboard-section, .manifesto, .closing { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav { padding: 1rem 1.25rem; }
}