/* ShipOps — terminal-native aesthetic */

:root {
  --bg: #0a0a0f;
  --bg-surface: #0f0f18;
  --bg-surface-2: #14141f;
  --green: #39ff14;
  --green-dim: rgba(57, 255, 20, 0.15);
  --green-muted: rgba(57, 255, 20, 0.5);
  --text: #e8e8ec;
  --text-muted: #6b7280;
  --text-dim: #3a3a4a;
  --bracket: #7c3aed;
  --bracket-text: #a78bfa;
  --font-head: 'Syne', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

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

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--text-dim);
}
.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* HERO */
.hero {
  padding: 80px 0 64px;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  margin-bottom: 16px;
  opacity: 0.8;
}
.hero-headline {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* TERMINAL */
.hero-terminal {
  background: var(--bg-surface);
  border: 1px solid var(--text-dim);
  border-radius: 8px;
  overflow: hidden;
  max-width: 560px;
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.06), 0 20px 60px rgba(0,0,0,0.4);
}
.term-bar {
  background: var(--bg-surface-2);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--text-dim);
}
.term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
}
.term-dot:first-child { background: #ff5f57; }
.term-dot:nth-child(2) { background: #febc2e; }
.term-dot:nth-child(3) { background: #28c840; }
.term-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 8px;
}
.term-body {
  padding: 20px 20px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
}
.term-line { color: var(--text); }
.term-line.muted { color: var(--text-muted); }
.term-prompt { color: var(--green); margin-right: 8px; font-weight: 600; }
.shipops-msg { color: var(--bracket-text); }
.term-bracket { color: var(--bracket-text); }
.term-highlight { color: var(--green); }
.cursor {
  color: var(--green);
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* HOW IT WORKS */
.how-it-works {
  padding: 80px 0;
  border-top: 1px solid var(--text-dim);
}
.how-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  margin-bottom: 40px;
  opacity: 0.7;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--text-dim);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dim);
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* PRINCIPLES */
.principles {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--text-dim);
  border-bottom: 1px solid var(--text-dim);
}
.principles-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.principles-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 56px;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.principle-icon {
  margin-bottom: 16px;
}
.principle h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.principle p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 100px 0;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-tagline {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--text-dim);
  padding: 24px 0;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.footer-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .hero-headline { font-size: 44px; }
  .step { grid-template-columns: 40px 1fr; gap: 16px; }
  .step-num { font-size: 20px; }
  .principle-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .hero-terminal { max-width: 100%; }
}

/* No cursor blink in page - it's terminal aesthetic */
