/* SHOCKIVATOR — global stylesheet */
:root {
  --black: #0A0A0A;
  --white: #F5F5F5;
  --red: #E63946;
  --steel: #3A3A3A;
  --steel-light: #5A5A5A;
  --bg: #0A0A0A;
  --fg: #F5F5F5;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.02em; line-height: 1.05; }
h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 2rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.red { color: var(--red); }
a { color: var(--fg); text-decoration: none; }
strong { color: var(--white); font-weight: 700; }

/* NAV */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 32px; position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--steel);
}
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.05em; }
.nav nav { display: flex; gap: 28px; align-items: center; }
.nav nav a { font-size: 0.9rem; font-weight: 500; opacity: 0.85; transition: opacity .2s, color .2s; }
.nav nav a:hover { opacity: 1; color: var(--red); }
.cta-small { background: var(--red); color: var(--white) !important; padding: 8px 18px; border-radius: 2px; font-weight: 700; opacity: 1 !important; }
.cta-small:hover { background: var(--white); color: var(--black) !important; }

/* HERO */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  background:
    radial-gradient(ellipse at top right, rgba(230,57,70,0.10), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(230,57,70,0.05), transparent 60%),
    var(--bg);
  padding: 80px 0;
}
.kicker {
  font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; letter-spacing: 0.15em;
  color: var(--red); margin-bottom: 24px; text-transform: uppercase;
}
.lede { font-size: 1.25rem; max-width: 640px; color: #cccccc; margin-bottom: 40px; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.cta-primary, .cta-secondary {
  display: inline-block; padding: 16px 32px; font-weight: 700;
  font-family: 'JetBrains Mono', monospace; font-size: 0.95rem;
  border-radius: 2px; transition: all .2s; letter-spacing: 0.02em;
}
.cta-primary { background: var(--red); color: var(--white); }
.cta-primary:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }
.cta-primary.big { font-size: 1.1rem; padding: 20px 40px; margin: 20px 0; }
.cta-secondary { background: transparent; color: var(--fg); border: 1px solid var(--steel-light); }
.cta-secondary:hover { border-color: var(--white); }
.micro { font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; color: var(--steel-light); margin-top: 16px; }

/* MANIFESTO */
.manifesto { padding: 100px 0; border-top: 1px solid var(--steel); }
.manifesto p { font-size: 1.15rem; margin-bottom: 1.5rem; color: #dddddd; }
.manifesto .signoff { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--red); letter-spacing: 0.05em; margin-top: 40px; }

/* PILLARS */
.pillars { padding: 100px 0; background: linear-gradient(180deg, #0A0A0A 0%, #111111 100%); border-top: 1px solid var(--steel); }
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.pillar { padding: 32px 24px; background: rgba(255,255,255,0.02); border: 1px solid var(--steel); border-radius: 2px; transition: all .25s; }
.pillar:hover { border-color: var(--red); transform: translateY(-4px); }
.pillar .num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--red); display: block; margin-bottom: 8px; }
.pillar p { color: #bbbbbb; font-size: 0.95rem; }

/* PACKAGES */
.packages { padding: 100px 0; border-top: 1px solid var(--steel); }
.section-lede { font-size: 1.1rem; color: #aaa; max-width: 600px; margin-bottom: 50px; }
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.pkg {
  background: rgba(255,255,255,0.02); border: 1px solid var(--steel);
  padding: 32px 28px; border-radius: 2px; display: flex; flex-direction: column;
  transition: all .25s;
}
.pkg:hover { border-color: var(--red); }
.pkg.featured { border-color: var(--red); background: rgba(230,57,70,0.04); }
.pkg.outcome { border-color: var(--white); background: rgba(245,245,245,0.04); }
.pkg-tier { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.pkg.outcome .pkg-tier { color: var(--white); }
.pkg .price { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--white); margin: 12px 0 20px; }
.pkg .price span { font-size: 1rem; color: var(--steel-light); margin-left: 6px; font-family: 'Inter', sans-serif; }
.pkg ul { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.pkg ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: #cccccc; font-size: 0.95rem; }
.pkg ul li::before { content: "→ "; color: var(--red); font-family: monospace; }
.pkg .scarcity { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--red); margin-bottom: 16px; }
.pkg-cta {
  display: block; text-align: center; padding: 14px;
  background: transparent; border: 1px solid var(--white); color: var(--white);
  font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.05em; transition: all .2s;
}
.pkg-cta:hover { background: var(--white); color: var(--black); }
.pkg.featured .pkg-cta { background: var(--red); border-color: var(--red); }
.pkg.featured .pkg-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.payments { text-align: center; margin-top: 40px; font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; color: var(--steel-light); }

/* AUDIT */
.audit { padding: 100px 0; text-align: center; border-top: 1px solid var(--steel); background: linear-gradient(180deg, #0A0A0A 0%, #1a0a0a 100%); }
.audit p { font-size: 1.1rem; color: #ccc; margin-bottom: 1.25rem; }
.guarantee { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--steel-light); margin-top: 24px !important; }

/* CLOSING */
.closing { padding: 120px 0; text-align: center; border-top: 1px solid var(--steel); }
.closing h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 32px; }
.closing p { font-size: 1.1rem; color: #aaa; margin-bottom: 1rem; }
.closing a { color: var(--red); border-bottom: 1px solid var(--red); }

/* FOOTER */
footer { padding: 40px 0; border-top: 1px solid var(--steel); text-align: center; color: var(--steel-light); }
footer p { margin: 4px 0; }
footer .small { font-size: 0.85rem; }
footer a { color: var(--steel-light); text-decoration: underline; }
footer a:hover { color: var(--red); }

/* MOBILE */
@media (max-width: 768px) {
  .nav nav { gap: 14px; }
  .nav nav a { font-size: 0.8rem; }
  .cta-row { flex-direction: column; }
  .cta-primary, .cta-secondary { text-align: center; }
}
