/* =============================================================
   Bully.org / AI — Deepfake Prevention suite
   Consumer expression per Brand Guide v2: Midnight + Navy + Gold + Royal.
   Signal Red appears ONLY as semantic danger (crisis strip, sextortion
   callout, critical protocol steps). Never decorative.
   Icons: monochrome 1.5-stroke SVG (Lucide-style). No emoji, ever.
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:     #1F3358;
  --navy-900: #14223C;
  --midnight: #0B1330;
  --gold:     #F2B30A;
  --gold-s:   #FFD24A;
  --gold-bg:  #FFF1C2;
  --royal:    #1B49C4;
  --royal-700:#143694;
  --royal-bg: #DBE4F8;
  --danger:   #C8213E;
  --danger-bg:#F8D9DF;
  --fog:      #F7F9FC;
  --mist:     #EEF1F7;
  --graphite: #334155;
  --slate:    #667085;
  --border:   #DDE3EC;
}
body { font-family: 'Inter', sans-serif; color: var(--graphite); background: var(--fog); line-height: 1.5; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: var(--navy); }
img { max-width: 100%; display: block; }
a { color: var(--royal); }
button { font-family: inherit; cursor: pointer; }

.icon { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.icon-lg { width: 32px; height: 32px; }

/* NAV */
.nav { background: var(--midnight); padding: 0 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.nav-brand { display: flex; align-items: center; gap: 10px; padding: 14px 0; text-decoration: none; }
.nav-brand img { height: 34px; width: auto; }
.nav-brand .nav-ai { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: .1em; color: var(--gold); border-left: 1px solid rgba(255,255,255,.2); padding-left: 10px; }
.nav-links { display: flex; gap: 2px; flex-wrap: wrap; }
.nav-links a { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.65); text-decoration: none; padding: 20px 12px; border-bottom: 3px solid transparent; transition: color 200ms cubic-bezier(.22,.61,.36,1); }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* CRISIS STRIP — semantic danger, the one red moment */
.crisis-strip { background: var(--danger); color: #fff; text-align: center; padding: 10px 20px; font-size: 13px; font-weight: 600; }
.crisis-strip a { color: #fff; font-weight: 800; }

/* HERO — midnight plate with ghosted shield mark */
.hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%); padding: 60px 24px 68px; text-align: center; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; right: -60px; bottom: -80px; width: 380px; height: 380px; background: url('assets/logo-bp-shield-white.png') no-repeat center / contain; opacity: .05; pointer-events: none; }
.hero > * { position: relative; z-index: 1; }
.hero-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero h1 { font-weight: 900; font-size: clamp(28px, 4.5vw, 46px); color: #fff; letter-spacing: -.02em; line-height: 1.08; margin-bottom: 16px; max-width: 780px; margin-left: auto; margin-right: auto; text-transform: uppercase; }
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; line-height: 1.65; }
.hero-cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* BUTTONS — royal is the consumer CTA color */
.btn { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; padding: 15px 28px; border-radius: 8px; border: 0; display: inline-flex; align-items: center; gap: 9px; text-decoration: none; transition: all 200ms cubic-bezier(.22,.61,.36,1); }
.btn .icon { width: 18px; height: 18px; }
.btn-primary { background: var(--royal); color: #fff; }
.btn-primary:hover { background: var(--royal-700); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-s); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline:hover { border-color: #fff; }
.btn:active { transform: translateY(1px); }

/* LAYOUT */
.wrap { max-width: 860px; margin: 0 auto; padding: 48px 24px 72px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 48px 24px 72px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--royal); margin-bottom: 8px; }
h2.sec { font-weight: 900; font-size: 26px; letter-spacing: -.015em; margin-bottom: 10px; }
.sec-sub { font-size: 14.5px; color: var(--slate); margin-bottom: 26px; max-width: 640px; line-height: 1.65; }
.sec-sub strong, .panel p strong { color: var(--navy); font-weight: 700; }

/* CARDS */
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }
.card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 26px 28px; text-decoration: none; display: block; transition: box-shadow 200ms cubic-bezier(.22,.61,.36,1), border-color 200ms; }
a.card:hover { border-color: var(--navy); box-shadow: 0 18px 40px -12px rgba(31,51,88,.22); }
.card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--mist); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.card h3 { font-weight: 800; font-size: 16px; margin-bottom: 6px; }
.card p { font-size: 13px; color: var(--slate); line-height: 1.6; }
.card-tag { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-radius: 4px; padding: 4px 10px; margin-bottom: 12px; background: var(--mist); color: var(--navy); }
.card-tag.gold { background: var(--gold-bg); color: #8A6200; }
.card-tag.royal { background: var(--royal-bg); color: var(--royal-700); }
.card-tag.danger { background: var(--danger-bg); color: var(--danger); }

/* PANELS */
.panel { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px 30px; margin-bottom: 20px; }
.panel h3 { font-weight: 800; font-size: 17px; margin-bottom: 12px; }
.panel p { font-size: 14px; color: var(--graphite); line-height: 1.7; margin-bottom: 12px; }
.panel p:last-child { margin-bottom: 0; }
.panel ul, .panel ol { padding-left: 22px; margin-bottom: 12px; }
.panel li { font-size: 14px; margin-bottom: 8px; line-height: 1.6; }

/* STANZA — the brand's three-line pattern */
.stanza { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.7; color: var(--navy); margin: 22px 0; }

/* PROTOCOL STEPS */
.phase-head { display: flex; align-items: center; gap: 14px; margin: 36px 0 16px; }
.phase-badge { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--navy); border-radius: 6px; padding: 6px 14px; white-space: nowrap; }
.phase-head.p2 .phase-badge { background: var(--royal); }
.phase-head.p3 .phase-badge { background: var(--gold); color: var(--navy); }
.phase-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--navy); }
.step { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; margin-bottom: 12px; display: flex; gap: 16px; align-items: flex-start; }
.step.critical { border-left: 5px solid var(--danger); }
.step-num { width: 30px; height: 30px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.step.critical .step-num { background: var(--danger); }
.step-body strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--navy); font-size: 14.5px; margin-bottom: 4px; }
.step-body span { font-size: 13px; color: var(--graphite); line-height: 1.65; display: block; }
.step-body .why { font-size: 12px; color: var(--slate); font-style: italic; margin-top: 6px; display: block; }
.step-body a { font-weight: 600; }

/* CALLOUTS */
.callout { border-radius: 12px; padding: 18px 22px; margin: 20px 0; font-size: 13.5px; line-height: 1.65; border: 1px solid var(--border); background: #fff; }
.callout strong { color: var(--navy); }
.callout.warn { background: var(--gold-bg); border-color: rgba(242,179,10,.45); }
.callout.danger { background: var(--danger-bg); border-color: rgba(200,33,62,.35); }
.callout.brand { background: var(--navy); border-color: var(--navy); color: rgba(255,255,255,.8); }
.callout.brand strong { color: var(--gold); }
.callout.brand a { color: #fff; }

/* RESOURCE TABLE */
.res-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); font-size: 13.5px; }
.res-table th { background: var(--navy); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; text-align: left; padding: 12px 16px; }
.res-table td { padding: 14px 16px; border-top: 1px solid var(--border); vertical-align: top; line-height: 1.6; }
.res-table td:first-child { font-weight: 700; color: var(--navy); }
.res-scroll { overflow-x: auto; margin-bottom: 24px; }

/* BIG PROOF NUMBER — brand's signature type moment */
.proof-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 52px; color: var(--navy); line-height: 1; letter-spacing: -.02em; }
.proof-cap { font-size: 12px; color: var(--slate); margin-top: 6px; }

/* FOOTER */
.footer { background: var(--midnight); padding: 38px 24px; text-align: center; margin-top: 40px; }
.footer img { height: 30px; margin: 0 auto 14px; }
.footer-disc { font-size: 11px; color: rgba(255,255,255,.4); max-width: 640px; margin: 0 auto 10px; line-height: 1.7; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.3); }

/* PRINT */
@media print {
  .nav, .crisis-strip, .footer, .no-print { display: none; }
  body { background: #fff; }
  .hero { background: #fff; padding: 10px 0; text-align: left; }
  .hero::after { display: none; }
  .hero h1 { color: #1F3358; font-size: 26px; }
  .hero-sub { color: #334155; margin: 0; }
  .hero-eyebrow { color: #1B49C4; }
  .step { break-inside: avoid; }
}
