:root{
  --navy: #0C2340;     /* deep professional blue */
  --red:  #B11226;     /* deep professional red */
  --text: #1B1B1B;     /* dark readable text */
  --muted:#566372;     /* secondary text */
  --line: #D8DEE6;     /* borders */
  --white:#FFFFFF;
  --bg:   #FFFFFF;     /* pure white background */
  --radius: 8px;
}

/* -------- Base -------- */
*{ box-sizing:border-box; }

html, body{ height:100%; }

body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  line-height:1.7;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wrap{
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 22px 80px;
}

/* -------- Subtle border graphics (not dark) -------- */
/* Top equipment stripe */
body::before{
  content:"";
  display:block;
  height: 8px;
  background:
    linear-gradient(90deg, var(--navy) 0 70%, transparent 70% 100%),
    repeating-linear-gradient(135deg,
      var(--red) 0 10px,
      var(--red) 10px 14px,
      transparent 14px 28px
    );
}

/* -------- Header -------- */
header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  padding: 18px 0 16px;
  margin-bottom: 34px;
  border-bottom: 3px solid var(--navy);
  position:relative;
}

/* Thin red accent below header rule */
header::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background: var(--red);
}

.brand{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

/* Optional mark: clean “target box” */
.mark{
  width: 34px;
  height: 34px;
  border: 2px solid var(--navy);
  border-radius: 6px;
  position:relative;
  margin-top: 2px;
}

.mark::before{
  content:"";
  position:absolute;
  inset:7px;
  border: 2px solid var(--red);
  border-radius: 4px;
}

.brand h1{
  margin:0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .4px;
  color: var(--navy);
}

.brand p{
  margin:4px 0 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing:.2px;
}

/* Nav: compact, authoritative, clean */
nav{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  justify-content:flex-end;
  padding-bottom: 2px;
}

nav a{
  text-decoration:none;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
  padding: 6px 0;
  position:relative;
}

nav a:hover,
nav a.active{
  color: var(--red);
}

nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width: 100%;
  height: 2px;
  background: var(--red);
}

/* -------- Hero (clean, not cluttered) -------- */
.hero{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin: 18px 0 48px;
}

.hero-inner,
.hero__inner{
  padding: 38px 34px;
}

/* If your HTML uses .kicker + .dot from older versions, keep them simple */
.kicker{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.kicker .dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--red);
}

/* If your HTML uses .hero__eyebrow (newer), it will also work */
.hero__eyebrow{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 14px;
}

.hero h2,
.hero__title{
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: .2px;
}

.hero p,
.hero__lede{
  margin: 0 0 22px;
  font-size: 17px;
  color: var(--muted);
  max-width: 72ch;
}

/* CTA row */
.cta-row,
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin: 8px 0 0;
}

/* Buttons: real buttons, not blue links */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
  text-decoration:none;
  border-radius: 6px;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: var(--white);
  cursor:pointer;
}

.btn:hover{
  border-color: var(--red);
  color: var(--red);
}

/* Handle both naming styles: .btn.primary (older) and .btn--primary (new) */
.btn.primary,
.btn--primary{
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  border-left: 6px solid var(--red);
}

.btn.primary:hover,
.btn--primary:hover{
  background: var(--navy);
  color: var(--white);
  border-color: var(--red);
}

.btn--secondary{
  background: var(--white);
}

/* Helper text line under CTAs */
.subnote,
.hero__helper{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  max-width: 80ch;
}

/* -------- Sections (lots of white, light borders) -------- */
section{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px 26px;
  margin-bottom: 26px;
  position:relative;
}

/* Navy structure + thin red accent spine */
section::before{
  content:"";
  position:absolute;
  left:-1px;
  top:-1px;
  bottom:-1px;
  width: 6px;
  background:
    linear-gradient(180deg, var(--navy), var(--navy)),
    linear-gradient(180deg, var(--red), var(--red));
  background-size: 4px 100%, 2px 100%;
  background-position: left, right;
  background-repeat:no-repeat;
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

section h3{
  margin:0 0 18px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--navy);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  position:relative;
}

/* Thin red underline accent */
section h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  width: 44px;
  height: 2px;
  background: var(--red);
}

/* -------- Grid / Cards -------- */
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

@media (max-width: 860px){
  .grid{ grid-template-columns: 1fr; }
  .wrap{ padding: 40px 16px 70px; }
  .hero-inner, .hero__inner{ padding: 28px 20px; }
}

.card{
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 16px 16px;
}

.card h4{
  margin:0 0 8px;
  font-size: 15px;
  font-weight: 900;
  color: var(--navy);
}

.card p{
  margin:0;
  font-size: 14.5px;
  color: var(--muted);
}

/* Pills (if present) */
.pill{
  display:inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: #F7F9FB;
  margin-left: 8px;
  vertical-align: middle;
}

/* Lists */
ul.clean{
  margin: 0;
  padding-left: 20px;
}

ul.clean li{
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
}

/* Links */
a{ color: var(--navy); }
a:hover{ color: var(--red); }

/* Footer */
footer{
  margin-top: 34px;
  padding-top: 22px;
  border-top: 3px solid var(--navy);
  position:relative;
  font-size: 12.5px;
  color: var(--muted);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}

footer::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-6px;
  height: 2px;
  background: var(--red);
}

/* Monospace utility */
.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
}
/* -------- Credentials Strip -------- */

.credentials{
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--red);
  margin: 40px 0 60px;
  background: #F8FAFC;
}

.credentials__inner{
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px 22px;
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  justify-content:space-between;
  font-size:13px;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
  color: var(--navy);
}

.credentials__inner span{
  position:relative;
  padding-left:16px;
}

.credentials__inner span::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  width:6px;
  height:6px;
  background: var(--red);
}

