/* ============================================
   GrowthOps.ai — Custom Landing Page Theme
   ============================================ */

:root {
  --bg-primary: #060912;
  --bg-secondary: #0A0E1C;
  --bg-card: rgba(12, 17, 35, 0.8);
  --accent-cyan: #00D4FF;
  --accent-violet: #7B5EFF;
  --accent-cyan-dim: rgba(0, 212, 255, 0.12);
  --accent-violet-dim: rgba(123, 94, 255, 0.12);
  --text-primary: #F0F4FF;
  --text-secondary: #8892A4;
  --text-dim: #4A5468;
  --border: rgba(240, 244, 255, 0.06);
  --border-accent: rgba(0, 212, 255, 0.2);
  --glow-cyan: 0 0 40px rgba(0, 212, 255, 0.15), 0 0 80px rgba(0, 212, 255, 0.05);
  --glow-violet: 0 0 40px rgba(123, 94, 255, 0.15), 0 0 80px rgba(123, 94, 255, 0.05);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 9, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.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: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-dot { color: var(--accent-cyan); }

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 400;
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* --- SHARED --- */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.highlight {
  color: var(--accent-cyan);
  position: relative;
}

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

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
}

.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: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 12px;
  color: var(--accent-cyan);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  background: var(--accent-cyan-dim);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-highlight {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.proof-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* --- COMMAND CENTER --- */
.command-center {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow: var(--glow-cyan);
  position: relative;
}

.cc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.cc-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cc-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--accent-cyan);
  font-weight: 500;
}

.cc-blink {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: pulse 1.5s ease-in-out infinite;
}

.cc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.cc-block {
  background: rgba(0, 212, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.cc-block-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.cc-block-value {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.cc-block-sub {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 2px;
}

.cc-block-spark {
  margin-top: 4px;
}

.cc-block-spark svg {
  width: 100%;
  height: 20px;
}

/* Flow nodes */
.cc-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fn-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-accent);
  background: var(--accent-cyan-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fn-icon-ai {
  background: var(--accent-violet-dim);
  border-color: rgba(123, 94, 255, 0.3);
}

.flow-arrow {
  display: flex;
  align-items: center;
}

/* --- PROBLEM SECTION --- */
.problem {
  padding: 100px 40px;
  position: relative;
}

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

.problem-label, .how-label, .del-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 20px;
}

.problem-headline, .how-headline, .del-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

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

.problem-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}

.pc-icon {
  margin-bottom: 16px;
}

.pc-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pc-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pc-verdict {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-cyan);
  padding: 4px 10px;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  display: inline-block;
}

/* --- HOW SECTION --- */
.how {
  padding: 100px 40px;
  background: var(--bg-secondary);
  position: relative;
}

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

.how-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.step-visual {
  margin-top: 20px;
}

/* Mini form */
.mini-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mf-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan-dim);
  border: 1px solid var(--border-accent);
  flex-shrink: 0;
}

.mf-dot-accent {
  background: var(--accent-violet-dim);
  border-color: rgba(123, 94, 255, 0.3);
}

.mf-line {
  height: 8px;
  flex: 1;
  background: var(--border);
  border-radius: 4px;
}

/* AI nodes */
.ai-nodes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.an-main {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-violet);
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(123, 94, 255, 0.4);
  background: var(--accent-violet-dim);
  text-align: center;
  letter-spacing: 0.04em;
}

.an-conn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.an-line {
  width: 12px;
  height: 1px;
  background: var(--border-accent);
}

.an-sm {
  font-size: 11px;
  color: var(--text-dim);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-weight: 500;
}

/* Report card */
.report-card {
  background: rgba(0, 212, 255, 0.03);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  overflow: hidden;
}

.rc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--accent-cyan-dim);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--accent-cyan);
  font-weight: 600;
}

.rc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

.rc-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rc-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.rc-line span:first-child {
  color: var(--text-dim);
}

.rc-val {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}

/* Step connector */
.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  gap: 0;
  min-width: 40px;
}

.sc-line {
  flex: 1;
  width: 1px;
  background: var(--border);
}

/* --- DELIVERABLES SECTION --- */
.deliverables {
  padding: 100px 40px;
  position: relative;
}

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

.del-header {
  margin-bottom: 60px;
}

.del-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.del-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.del-card:hover {
  transform: translateY(-2px);
}

.del-glow-1 { box-shadow: inset 0 1px 0 rgba(0, 212, 255, 0.1); }
.del-glow-2 { box-shadow: inset 0 1px 0 rgba(123, 94, 255, 0.1); }

.del-icon {
  margin-bottom: 16px;
}

.del-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.del-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- MANIFESTO --- */
.manifesto {
  padding: 100px 40px;
  background: var(--bg-secondary);
}

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

.manifesto-quote {
  position: relative;
}

.mq-mark {
  margin-bottom: 32px;
}

.mq-text {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.mq-attribution {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-cyan);
  font-style: italic;
}

/* --- CLOSING --- */
.closing {
  padding: 100px 40px;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cs-item {
  text-align: center;
}

.cs-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.cs-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cs-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-dot { color: var(--accent-cyan); }

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-legal {
  font-size: 12px;
  color: var(--text-dim);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

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

  .how-steps {
    flex-direction: column;
    gap: 12px;
  }

  .step-connector {
    flex-direction: row;
    min-width: unset;
    padding: 0;
    gap: 0;
  }

  .sc-line {
    width: auto;
    flex: 1;
    height: 1px;
  }

  .sc-arrow {
    transform: rotate(90deg);
  }

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

  .closing-stats {
    gap: 24px;
  }

  .cs-num {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 24px 60px;
  }

  .section-inner {
    padding: 0 24px;
  }

  .problem, .how, .deliverables, .manifesto, .closing {
    padding: 60px 24px;
  }

  .footer {
    padding: 40px 24px;
  }

  .nav {
    padding: 0 24px;
  }

  .hero-proof {
    flex-wrap: wrap;
    gap: 16px;
  }
}