:root {
  --navy-950: #0a0e17;
  --navy-900: #10151f;
  --navy-800: #171e2e;
  --navy-700: #232c40;
  --navy-600: #3a4459;
  --gold-400: #e3b454;
  --gold-300: #efcb7e;
  --bull-500: #3dd68c;
  --ink-100: #f0f2f7;
  --ink-300: #c7ccda;
  --ink-400: #8d96ac;
  --serif: "Space Grotesk", "Segoe UI", sans-serif;
  --sans: "Plus Jakarta Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(227,180,84,.14), transparent),
    var(--navy-900);
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: var(--ink-100);
  font: 16px/1.65 var(--sans);
  overflow-x: hidden;
}
a { color: var(--gold-300); }
.site-header {
  position: relative;
  isolation: isolate;
  padding: 24px 22px 70px;
  border-bottom: 1px solid var(--navy-700);
  overflow: hidden;
}
.site-header::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -310px;
  right: -150px;
  border: 1px solid rgba(227,180,84,.25);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(227,180,84,.035), 0 0 0 58px rgba(227,180,84,.025);
  animation: orbit 18s linear infinite;
  pointer-events: none;
  z-index: -1;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), var(--bull-500), transparent);
  opacity: .75;
  animation: scanline 4s ease-in-out infinite;
}
.nav, .content, .site-footer { max-width: 1040px; margin: auto; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; z-index: 2; }
.brand { color: #fff; font: 700 1.2rem var(--serif); text-decoration: none; letter-spacing: -.02em; }
.brand::before { content: "◆"; color: var(--gold-400); font: .7rem var(--sans); margin-right: 9px; vertical-align: 2px; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; }
.nav-links a { position: relative; color: var(--ink-300); text-decoration: none; font-weight: 600; padding: 8px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 1px; height: 2px; background: var(--gold-400); transition: right .25s ease; }
.nav-links a:hover, .nav-links .active { color: var(--gold-300); }
.nav-links a:hover::after, .nav-links .active::after { right: 0; }
.hero-copy { max-width: 720px; margin-top: 80px; position: relative; }
.eyebrow { color: var(--gold-300); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; }
h1 { font-size: clamp(2.15rem, 5.5vw, 4.25rem); margin: 12px 0 20px; letter-spacing: -.045em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.35rem); margin: 0 0 16px; }
h3 { color: var(--gold-300); margin: 0 0 8px; }
p { color: var(--ink-300); max-width: 68ch; }
.content { padding: 78px 22px; }
.content > * { animation: rise-in .8s both; }
.intro { max-width: 720px; margin-bottom: 42px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.strategy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { min-width: 0; position: relative; overflow: hidden; background: linear-gradient(150deg, rgba(35,44,64,.9), rgba(16,21,31,.96)); border: 1px solid var(--navy-700); border-radius: 14px; padding: 28px; transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.08), transparent 65%); transform: translateX(-120%); transition: transform .7s ease; pointer-events: none; }
.card:hover { transform: translateY(-8px); border-color: rgba(227,180,84,.65); box-shadow: 0 18px 45px rgba(0,0,0,.28); }
.card:hover::before { transform: translateX(120%); }
.card strong { color: var(--ink-100); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 34px 0; }
.step { position: relative; padding: 22px 16px; border: 1px solid var(--navy-600); border-radius: 12px; background: var(--navy-800); transition: transform .3s ease, background .3s ease; }
.step:hover { transform: translateY(-5px); background: #202a3e; }
.step:not(:last-child)::after { content: "→"; position: absolute; right: -17px; top: 32px; color: var(--gold-400); font-size: 1.4rem; z-index: 1; }
.step-number { color: var(--gold-400); font-weight: 800; font-size: 1.4rem; }
.diagram { display: grid; gap: 12px; padding: 22px; border: 1px solid var(--navy-700); border-radius: 14px; background: rgba(10,14,23,.65); }
.diagram-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
.node { min-width: 0; padding: 14px 8px; text-align: center; border-radius: 9px; background: var(--navy-800); border: 1px solid var(--navy-600); color: var(--ink-300); font-size: .9rem; line-height: 1.35; overflow-wrap: normal; word-break: normal; }
.node.gold { border-color: var(--gold-400); color: var(--gold-300); }
.node.green { border-color: var(--bull-500); color: var(--bull-500); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof-card { overflow: hidden; border: 1px solid var(--navy-700); border-radius: 12px; background: var(--navy-800); transition: transform .35s ease, box-shadow .35s ease; }
.proof-card:hover { transform: translateY(-8px) rotate(.4deg); box-shadow: 0 18px 45px rgba(0,0,0,.35); }
.proof-card img { width: 100%; aspect-ratio: 1.35; object-fit: contain; background: #090d16; }
.proof-caption { display: flex; justify-content: space-between; gap: 10px; padding: 12px 14px; color: var(--ink-300); }
.proof-caption strong { color: var(--gold-300); }
.button { display: inline-block; padding: 11px 18px; border-radius: 8px; background: var(--gold-400); color: var(--navy-950); font-weight: 800; text-decoration: none; }
.card p, .card a { overflow-wrap: anywhere; word-break: break-word; }
.card h2 { max-width: 100%; font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.12; overflow-wrap: normal; word-break: normal; }
.card h3 { font-size: 1.05rem; }
.button.secondary { background: var(--navy-700); color: var(--ink-100); }
.site-footer { border-top: 1px solid var(--navy-700); padding: 30px 22px 44px; display: flex; justify-content: space-between; gap: 30px; font-size: .9rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.site-footer a { text-decoration: none; color: var(--ink-300); }
.muted { color: var(--ink-400); }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes scanline { 0%, 100% { transform: scaleX(.2); opacity: .25; } 50% { transform: scaleX(1); opacity: .9; } }
@keyframes rise-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(35px) scale(.98); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 760px) {
  .nav, .site-footer { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .grid, .proof-grid { grid-template-columns: minmax(0, 1fr); }
  .card { padding: 24px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .diagram-row { grid-template-columns: 1fr; }
}
