:root {
  --navy: #07172a;
  --navy-2: #0b213a;
  --navy-3: #102c49;
  --gold: #b7933f;
  --gold-light: #d1b365;
  --ink: #0b1522;
  --muted: #5e6875;
  --paper: #f5f2eb;
  --white: #ffffff;
  --line: rgba(183, 147, 63, .35);
  --shadow: 0 24px 70px rgba(2, 12, 25, .18);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 9999; background: #fff; padding: 10px 16px; }
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 84px;
  background: rgba(4, 17, 32, .84);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
  transition: .3s ease;
}
.site-header.scrolled { height: 72px; background: rgba(4, 17, 32, .96); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 290px; overflow: hidden; }
.brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a { position: relative; transition: color .2s; }
.site-nav a:hover { color: var(--gold-light); }
.nav-cta { border: 1px solid rgba(209,179,101,.7); padding: 10px 18px; }
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; padding: 8px; }
.nav-toggle span { display: block; height: 2px; margin: 6px 0; background: #fff; }

.hero {
  min-height: 850px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 38%, rgba(40,93,138,.28), transparent 31%),
    linear-gradient(115deg, #04101f 0%, #071a2f 54%, #0b243e 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, #e68a21, #f6f1e4 50%, #1b8c3b);
}
.hero-blueprint {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
}
.hero-blueprint-artillery {
  left: 31%;
  right: 2%;
  bottom: 22px;
  height: 64%;
  background-image: url("assets/images/hero-artillery-blueprint.svg");
  background-position: center bottom;
  background-size: contain;
  opacity: .115;
  filter: brightness(1.05);
}
.hero-blueprint-ammunition {
  width: 235px;
  height: 76%;
  right: 0;
  top: 108px;
  background-image: url("assets/images/hero-ammunition-blueprint.svg");
  background-position: right center;
  background-size: contain;
  opacity: .13;
}
.hero-grid {
  position: absolute; inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to right, black, transparent 86%);
}
.hero-glow { position: absolute; width: 650px; height: 650px; border: 1px solid rgba(183,147,63,.17); border-radius: 50%; right: -120px; top: 100px; box-shadow: 0 0 0 75px rgba(183,147,63,.025), 0 0 0 150px rgba(183,147,63,.018); }
.hero-copy::before { content: ""; position: absolute; inset: -70px -40px -70px -80px; z-index: -1; background: radial-gradient(circle at 15% 45%, rgba(4,16,31,.72), rgba(4,16,31,.34) 48%, transparent 74%); pointer-events: none; }
.hero-copy { position: relative; z-index: 2; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: center; padding-top: 85px; }
.hero-copy { max-width: 780px; }
.eyebrow { margin: 0 0 20px; color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .22em; }
.eyebrow.dark { color: #98732b; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 { margin-bottom: 28px; font-size: clamp(48px, 6vw, 82px); letter-spacing: -.04em; font-weight: 760; }
h1 span { color: var(--gold-light); }
h2 { margin-bottom: 28px; font-size: clamp(36px, 4.2vw, 58px); letter-spacing: -.035em; }
.hero-lead { max-width: 750px; margin: 0 0 35px; color: rgba(255,255,255,.76); font-size: 19px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border: 1px solid transparent; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #07172a; background: var(--gold-light); }
.btn-primary:hover { background: #e2c77a; }
.btn-secondary { color: #fff; border-color: rgba(255,255,255,.35); }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.05); }
.btn-dark { color: #fff; background: var(--navy); }
.hero-trust { display: flex; align-items: center; gap: 13px; margin-top: 42px; color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero-trust i { width: 28px; height: 1px; background: var(--gold); }
.hero-mark { display: flex; justify-content: center; }
.hero-mark img { width: min(420px, 100%); filter: drop-shadow(0 30px 45px rgba(0,0,0,.34)); }

.statement { background: var(--paper); border-bottom: 1px solid #ded8cb; }
.statement-inner { padding: 46px 0; display: flex; justify-content: space-between; align-items: center; gap: 45px; }
.statement p { margin: 0; color: #98732b; font-size: 21px; font-weight: 800; }
.statement span { max-width: 680px; color: var(--muted); }

.section { padding: 120px 0; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.section-heading h2 { max-width: 560px; }
.body-copy { color: var(--muted); font-size: 18px; }
.body-copy p { margin: 0 0 24px; }
.centered { max-width: 790px; margin: 0 auto 55px; text-align: center; }
.centered > p:last-child { color: rgba(255,255,255,.65); }

.focus { color: #fff; background: var(--navy); }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cap-card { min-height: 380px; position: relative; padding: 34px 28px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.1); overflow: hidden; transition: transform .25s, border-color .25s; }
.cap-card:hover { transform: translateY(-7px); border-color: rgba(209,179,101,.55); }
.cap-card::before { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.cap-card:hover::before { transform: scaleX(1); }
.card-no { display: block; margin-bottom: 58px; color: rgba(255,255,255,.28); font: 700 12px/1 monospace; letter-spacing: .15em; }
.cap-card h3 { font-size: 24px; }
.cap-card p { color: rgba(255,255,255,.62); font-size: 15px; }
.line-icon { width: 48px; height: 58px; margin-bottom: 28px; position: relative; }
.round-icon { border: 2px solid var(--gold-light); border-radius: 20px 20px 6px 6px; }
.round-icon::after { content: ""; position: absolute; width: 12px; height: 24px; border: 2px solid var(--gold-light); border-bottom: 0; border-radius: 8px 8px 0 0; left: 16px; top: -14px; }
.precision-icon { border: 2px solid var(--gold-light); border-radius: 50%; }
.precision-icon::before, .precision-icon::after { content: ""; position: absolute; background: var(--gold-light); }
.precision-icon::before { width: 66px; height: 2px; top: 27px; left: -11px; }
.precision-icon::after { width: 2px; height: 72px; top: -8px; left: 21px; }
.factory-icon { border-left: 2px solid var(--gold-light); border-bottom: 2px solid var(--gold-light); }
.factory-icon::before { content: ""; position: absolute; inset: 16px 0 0 8px; border-top: 2px solid var(--gold-light); background: repeating-linear-gradient(90deg, transparent 0 8px, var(--gold-light) 8px 10px); }
.alliance-icon::before, .alliance-icon::after { content: ""; position: absolute; width: 29px; height: 43px; border: 2px solid var(--gold-light); border-radius: 20px; transform: rotate(38deg); }
.alliance-icon::after { left: 22px; transform: rotate(-38deg); }
.disclaimer { max-width: 900px; margin: 36px auto 0; color: rgba(255,255,255,.42); text-align: center; font-size: 12px; }

.principles { background: var(--paper); }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 95px; align-items: start; }
.principles-intro { position: sticky; top: 120px; }
.principles-intro p:last-child { color: var(--muted); font-size: 17px; }
.principle-list > div { display: grid; grid-template-columns: 60px 1fr; gap: 25px; padding: 31px 0; border-bottom: 1px solid #d5cec0; }
.principle-list strong { color: #a98538; font-family: monospace; }
.principle-list span { color: var(--muted); }
.principle-list b { display: block; margin-bottom: 8px; color: var(--ink); font-size: 19px; }

.partnerships { position: relative; color: #fff; background: linear-gradient(125deg, #07172a 10%, #0d2a47 100%); overflow: hidden; }
.partnerships::before { content: ""; position: absolute; width: 720px; height: 720px; right: -160px; top: -250px; border: 1px solid rgba(209,179,101,.25); transform: rotate(45deg); }
.partnership-overlay { position: absolute; inset: 0; opacity: .09; background: repeating-linear-gradient(135deg, transparent 0 34px, white 35px 36px); }
.partnership-content { position: relative; z-index: 1; max-width: 900px; margin-left: max(20px, calc((100% - var(--max)) / 2)); }
.partnership-content > p:not(.eyebrow) { max-width: 800px; color: rgba(255,255,255,.68); font-size: 18px; }
.partner-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 35px 0; }
.partner-tags span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.72); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }

.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: center; }
.contact-copy p:last-child { max-width: 600px; color: var(--muted); font-size: 18px; }
.contact-panel { padding: 42px; background: var(--paper); border-top: 4px solid var(--gold); box-shadow: var(--shadow); }
.contact-item { padding: 0 0 22px; margin-bottom: 22px; border-bottom: 1px solid #d9d1c2; }
.contact-item span { display: block; margin-bottom: 5px; color: #98732b; font-size: 10px; font-weight: 800; letter-spacing: .17em; }
.contact-item a { font-size: 17px; font-weight: 700; overflow-wrap: anywhere; }

.site-footer { color: rgba(255,255,255,.65); background: #03101f; }
.footer-main { min-height: 180px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-main img { width: 330px; }
.footer-meta { text-align: right; font-size: 13px; }
.footer-meta p { margin: 4px 0; }
.footer-bottom { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 25px; font-size: 12px; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--gold-light); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

.legal-page { background: var(--paper); }
.legal-hero { padding: 150px 0 70px; color: #fff; background: var(--navy); }
.legal-content { max-width: 850px; padding-top: 70px; padding-bottom: 100px; }
.legal-content h2 { margin-top: 45px; font-size: 28px; }
.legal-content p, .legal-content li { color: var(--muted); }

@media (max-width: 980px) {
  .site-header, .site-header.scrolled { height: 72px; }
  .brand { width: 245px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; top: 72px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 20px; background: rgba(3,16,31,.99); border-top: 1px solid rgba(255,255,255,.1); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px; }
  .nav-cta { border: 0; }
  .hero { min-height: 820px; }
  .hero-content { grid-template-columns: 1fr; padding-top: 135px; padding-bottom: 80px; }
  .hero-mark { display: none; }
  .hero-blueprint-artillery { left: 18%; right: -18%; height: 52%; opacity: .075; }
  .hero-blueprint-ammunition { width: 180px; height: 62%; right: -40px; top: 115px; opacity: .075; }
  .statement-inner, .split, .principles-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .statement-inner { flex-direction: column; align-items: flex-start; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-intro { position: static; }
  .footer-main { flex-direction: column; align-items: flex-start; justify-content: center; padding: 45px 0; }
  .footer-meta { text-align: left; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand { width: 215px; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 120px; }
  .hero-blueprint-artillery { left: 26%; right: -42%; height: 44%; bottom: 95px; opacity: .055; }
  .hero-blueprint-ammunition { width: 135px; right: -34px; top: 145px; opacity: .06; }
  h1 { font-size: 43px; }
  h2 { font-size: 36px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { gap: 8px; letter-spacing: .08em; }
  .section { padding: 84px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .cap-card { min-height: auto; }
  .contact-panel { padding: 28px 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 24px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
