:root {
  --bg-primary: #0B1628;
  --bg-secondary: #0F1E33;
  --bg-card: #132038;
  --bg-terminal: #07111D;
  --amber: #F5A623;
  --amber-dim: rgba(245, 166, 35, 0.12);
  --amber-glow: rgba(245, 166, 35, 0.06);
  --text-primary: #F0F4FA;
  --text-secondary: #8BA4C0;
  --text-muted: #4A6380;
  --border: rgba(245, 166, 35, 0.1);
  --border-bright: rgba(245, 166, 35, 0.28);
  --green: #3ECF8E;
  --red: #E85C5C;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark { color: var(--amber); font-size: 1.15rem; }

.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-dim);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.5); }
  50% { opacity: 0.85; box-shadow: 0 0 0 5px rgba(62, 207, 142, 0); }
}

.status-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.04em;
}

/* HERO */
.hero {
  position: relative;
  padding: 5.5rem 3rem 6.5rem;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 65% at 50% 0%, black, transparent);
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.75rem;
}

.label-line {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--amber);
}

.hero-headline {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hero-headline em {
  font-style: normal;
  color: var(--amber);
  display: block;
}

.hero-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.75rem;
  max-width: 460px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

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

/* TERMINAL */
.hero-terminal {
  background: var(--bg-terminal);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.78rem;
  box-shadow: 0 0 50px rgba(245, 166, 35, 0.04), 0 24px 64px rgba(0,0,0,0.5);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.1rem;
  background: rgba(245, 166, 35, 0.05);
  border-bottom: 1px solid var(--border);
}

.terminal-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.terminal-dot.red { background: #E85C5C; }
.terminal-dot.amber { background: #F5A623; }
.terminal-dot.green { background: #3ECF8E; }

.terminal-title {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}

.terminal-body {
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.term-line {
  color: var(--text-muted);
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}

.term-ts {
  color: var(--text-muted);
  margin-right: 0.75rem;
  font-size: 0.7rem;
}

.term-action {
  color: var(--amber);
  margin-right: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
}

.term-highlight {
  color: var(--text-secondary);
  background: rgba(62, 207, 142, 0.05);
  border: 1px solid rgba(62, 207, 142, 0.18);
  border-radius: 6px;
  padding: 0.45rem 0.65rem;
  margin: 0.15rem 0;
}

.term-highlight .term-action { color: var(--green); }

/* PROOF */
.proof {
  padding: 5rem 3rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.proof-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.proof-headline {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3.5rem;
  line-height: 1.35;
}

.proof-highlight { color: var(--amber); font-weight: 700; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.proof-val {
  font-family: 'Sora', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.04em;
  margin-bottom: 0.4rem;
}

.proof-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* FEATURES */
.features {
  padding: 6.5rem 3rem;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.028em;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 8px 40px rgba(245, 166, 35, 0.07);
}

.feature-icon { margin-bottom: 1.5rem; }

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  letter-spacing: -0.015em;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 1.5rem;
}

.feature-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.fd-tag {
  background: var(--amber-dim);
  color: var(--amber);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* PHILOSOPHY */
.philosophy {
  padding: 6.5rem 3rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.phil-content { max-width: 1100px; margin: 0 auto; }

.phil-title {
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 1rem 0 3rem;
  letter-spacing: -0.028em;
}

.phil-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.phil-old, .phil-new {
  padding: 2rem 2.25rem;
  border-radius: 12px;
}

.phil-old {
  background: rgba(232, 92, 92, 0.04);
  border: 1px solid rgba(232, 92, 92, 0.14);
}

.phil-new {
  background: rgba(62, 207, 142, 0.04);
  border: 1px solid rgba(62, 207, 142, 0.14);
}

.phil-old h4, .phil-new h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.phil-old h4 { color: var(--red); }
.phil-new h4 { color: var(--green); }

.phil-old ul, .phil-new ul { list-style: none; display: flex; flex-direction: column; gap: 0.72rem; }

.phil-old li, .phil-new li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}

.phil-old li::before { content: '\00d7'; position: absolute; left: 0; color: var(--red); font-weight: 800; font-size: 1rem; }
.phil-new li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 0.85rem; }

.phil-quote {
  border-left: 3px solid var(--amber);
  padding-left: 2rem;
  max-width: 700px;
}

.phil-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.phil-quote cite {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* OUTCOMES */
.outcomes { padding: 6.5rem 3rem; }

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.outcome {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.outcome-val {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.outcome-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 7.5rem 3rem;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  text-align: center;
}

.closing-inner { max-width: 660px; margin: 0 auto; }

.closing-title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.028em;
  line-height: 1.2;
}

.closing-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 3rem;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-dim);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 500;
}

/* FOOTER */
footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--bg-secondary);
}

.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); }
.footer-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--text-muted); }
.footer-sep { color: var(--border-bright); }

/* RESPONSIVE */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .proof-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-cards { grid-template-columns: 1fr; }
  .phil-columns { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .navbar { padding: 1rem 1.5rem; }
  .hero { padding: 3.5rem 1.5rem 4.5rem; }
  .proof, .features, .philosophy, .outcomes, .closing { padding-left: 1.5rem; padding-right: 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
}
