/*
Theme Name: SemperLinc
Version: 3.0
*/

/* =====================================================
   RESET
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #E8ECF4;
  background: #0D1F35;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* =====================================================
   TOKENS
===================================================== */
:root {
  --bg:       #0D1F35;
  --bg2:      #112640;
  --bg3:      #142D4A;
  --line:     rgba(255,255,255,.08);
  --line2:    rgba(255,255,255,.14);
  --white:    #FFFFFF;
  --off:      rgba(255,255,255,.82);
  --muted:    rgba(255,255,255,.58);
  --blue:     #1B6EF3;
  --blue2:    #4A8FF5;
  --teal:     #00C48C;
  --gold:     #C8992A;
  --orchid:   #8B5CF6;
  --red:      #E03535;
  --max:      1120px;
  --gap:      clamp(24px, 4vw, 56px);
}

/* =====================================================
   LAYOUT
===================================================== */
.wrap       { max-width: var(--max); margin: 0 auto; padding: 0 var(--gap); }
.sec        { padding: clamp(72px,8vw,120px) 0; border-bottom: 1px solid var(--line); }
.sec.slim   { padding: clamp(48px,5vw,72px) 0; }
.sec.dark   { background: var(--bg2); }
.sec.darker { background: var(--bg3); }
main        { padding-top: 64px; }

/* =====================================================
   NAVIGATION
===================================================== */
#sl-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 64px;
  background: rgba(13,31,53,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gap);
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: .1em;
  color: var(--white); display: flex; align-items: center; gap: 10px;
}
.nav-logo strong { color: var(--blue); font-weight: 900; }
.nav-mark {
  width: 28px; height: 28px; border: 1.5px solid var(--blue);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
}
.nav-mark-dot { width: 10px; height: 10px; background: var(--blue); border-radius: 2px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,.65); padding: 6px 10px; border-radius: 4px; transition: color .15s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  padding: 8px 16px !important; border-radius: 4px; font-weight: 500 !important;
  transition: background .15s !important;
}
.nav-cta:hover { background: var(--blue2) !important; }
.nav-burger { display: none; background: none; border: none; color: var(--white); font-size: 20px; cursor: pointer; }

/* =====================================================
   TYPOGRAPHY
===================================================== */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--blue); flex-shrink: 0; }
.eyebrow.teal   { color: var(--teal); }   .eyebrow.teal::before   { background: var(--teal); }
.eyebrow.gold   { color: var(--gold); }   .eyebrow.gold::before   { background: var(--gold); }
.eyebrow.orchid { color: var(--orchid); } .eyebrow.orchid::before { background: var(--orchid); }
.eyebrow.red    { color: var(--red); }    .eyebrow.red::before    { background: var(--red); }
.eyebrow.muted  { color: var(--muted); }  .eyebrow.muted::before  { background: var(--line2); }

.h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900; line-height: .95; letter-spacing: -.01em;
  text-transform: uppercase; color: var(--white);
}
.h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 900; line-height: .95; letter-spacing: -.01em;
  text-transform: uppercase; color: var(--white); margin-bottom: 1.5rem;
}
.h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800; letter-spacing: .02em; text-transform: uppercase; color: var(--white);
  margin-bottom: .5rem;
}
.lead { font-size: 16px; font-weight: 400; color: rgba(255,255,255,.82); line-height: 1.85; }
.body { font-size: 15px; font-weight: 400; color: rgba(255,255,255,.72); line-height: 1.85; }
.body strong { color: var(--white); font-weight: 600; }
.body-sm { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.65); line-height: 1.85; }

.blue   { color: var(--blue); }
.teal   { color: var(--teal); }
.gold   { color: var(--gold); }
.orchid { color: var(--orchid); }
.red    { color: var(--red); }

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: .06em;
  padding: 12px 24px; border-radius: 3px; cursor: pointer; border: none;
  transition: all .2s; white-space: nowrap;
}
.btn-primary  { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue2); transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--white); border: 1px solid var(--line2); }
.btn-outline:hover { border-color: var(--white); }
.btn-ghost    { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--white); }
.btn-arr::after { content: ' →'; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* =====================================================
   LIVE DOT
===================================================== */
.live-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #22D46B; animation: ldpulse 2s infinite; flex-shrink: 0;
}
@keyframes ldpulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.live-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 300; letter-spacing: .06em; color: var(--muted);
}

/* =====================================================
   DIVIDER BAND
===================================================== */
.divider-band {
  background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 13px 0; overflow: hidden;
}
.divider-band-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gap);
  font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* =====================================================
   HERO
===================================================== */
.hero {
  min-height: calc(100vh - 64px);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; pointer-events: none;
  top: -200px; right: -200px; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(27,110,243,.09) 0%, transparent 65%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(27,110,243,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,110,243,.03) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-inner {
  position: relative; width: 100%;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 4rem; align-items: start;
  padding: clamp(64px,8vw,100px) 0;
}
.hero-tag {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2rem;
}
.hero-tag-line { width: 28px; height: 1px; background: var(--blue); flex-shrink: 0; }
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 900; line-height: .95; letter-spacing: -.01em;
  text-transform: uppercase; color: var(--white); margin-bottom: 2rem;
}
.hero-h1 span { color: var(--blue); }
.hero-rule { width: 100%; height: 1px; background: var(--line); margin-bottom: 2rem; }
.hero-para { font-size: 15px; font-weight: 300; color: var(--off); line-height: 1.85; max-width: 520px; margin-bottom: 2rem; }
.hero-right { padding-top: 1rem; }

/* Hero proof card */
.proof-card {
  border: 1px solid var(--line); overflow: hidden;
}
.proof-card-head {
  padding: 14px 20px; border-bottom: 1px solid var(--line); background: var(--bg2);
  font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.proof-item {
  padding: 18px 20px; border-bottom: 1px solid var(--line);
}
.proof-item:last-child { border-bottom: none; }
.proof-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 900; letter-spacing: .02em;
  text-transform: uppercase; color: var(--white); margin-bottom: 5px;
}
.proof-desc { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.70); line-height: 1.7; }
.proof-footer {
  padding: 14px 20px; display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--muted);
}

/* =====================================================
   TWO COLUMNS
===================================================== */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem); align-items: start;
}
.two-col.wide-left  { grid-template-columns: 1.3fr 1fr; }
.two-col.wide-right { grid-template-columns: 1fr 1.3fr; }

/* =====================================================
   BIO HERO (Patrick, Bridget)
===================================================== */
.bio-hero { padding: clamp(64px,8vw,100px) 0; border-bottom: 1px solid var(--line); }
.bio-photo {
  aspect-ratio: 3/4; border: 1px solid var(--line2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.bio-photo-init {
  font-family: 'Barlow Condensed', sans-serif; font-size: 80px; font-weight: 900;
  color: var(--line2); user-select: none; text-transform: uppercase;
}
.bio-photo-note {
  position: absolute; bottom: 12px;
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.bio-creds {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.bio-cred {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,.65);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.55;
}
.bio-cred::before { content: ''; width: 12px; height: 1px; background: var(--blue); flex-shrink: 0; margin-top: 7px; }
.bio-title-role {
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 2rem;
}
.bio-title-role.orchid { color: var(--orchid); }
.mil-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 1.25rem;
  font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(200,153,42,.25); padding: 5px 14px;
}
.pull-quote {
  border-left: 2px solid var(--blue); padding: 1.5rem 1.75rem;
  font-size: 16px; font-weight: 400; font-style: italic;
  color: rgba(255,255,255,.88); line-height: 1.75;
  background: rgba(27,110,243,.06); margin: 2rem 0;
}
.pull-quote cite {
  display: block; margin-top: .75rem; font-size: 11px; font-style: normal;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--blue);
}

/* =====================================================
   TIMELINE
===================================================== */
.timeline { border-top: 1px solid var(--line); }
.tl-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 3rem;
  padding: 2.5rem 0; border-bottom: 1px solid var(--line);
}
.tl-year { font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.tl-org  { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.60); margin-top: 4px; }
.tl-right > p { margin-top: .75rem; }
.tl-hl {
  margin-top: 1.25rem; padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--teal); background: rgba(0,196,140,.04);
}

/* =====================================================
   SERVICE ROWS
===================================================== */
.svc-rows { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 72px 1fr 120px;
  gap: 2.5rem; align-items: start;
  padding: 2.5rem 0; border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.svc-row:hover { background: rgba(255,255,255,.01); }
.svc-n { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 900; color: var(--line2); line-height: 1; }
.svc-row:hover .svc-n { color: var(--blue); transition: color .3s; }
.svc-body > p { margin-top: .5rem; font-size:15px; font-weight:400; color:rgba(255,255,255,.72); line-height:1.8; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 1rem; }
.tag {
  font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid var(--line2); color: rgba(255,255,255,.65); border-radius: 2px;
}
.svc-row-link {
  font-size: 11px; font-weight: 500; letter-spacing: .06em; color: var(--muted);
  align-self: center; justify-self: end; transition: color .2s;
}
.svc-row-link:hover { color: var(--blue); }
.svc-row-link::after { content: ' →'; }

/* =====================================================
   GRID 3 (feature tiles)
===================================================== */
.grid-3 {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-top: 3rem;
}
.g3 { background: var(--bg); padding: 2.5rem; transition: background .2s; }
.g3:hover { background: var(--bg2); }
.g3-bar { width: 24px; height: 2px; background: var(--blue); margin-bottom: 1.5rem; }
.g3-bar.teal   { background: var(--teal); }
.g3-bar.red    { background: var(--red); }
.g3-bar.orchid { background: var(--orchid); }
.g3-bar.gold   { background: var(--gold); }
.g3 > p { margin-top: .5rem; font-size:14px; font-weight:400; color:rgba(255,255,255,.72); line-height:1.8; }

/* =====================================================
   GRID 2 (industry cards)
===================================================== */
.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-top: 3rem;
}
.g2 { background: var(--bg); padding: 2.5rem; display: block; transition: background .2s; }
.g2:hover { background: var(--bg2); }
.g2-num { font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; }
.g2 > p { margin-top: .625rem; font-size:14px; font-weight:400; color:rgba(255,255,255,.72); line-height:1.8; }
.g2-specs { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 7px; }
.g2-spec { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.65); display: flex; gap: 10px; align-items: flex-start; }
.g2-spec::before { content: '–'; color: var(--blue); flex-shrink: 0; }

/* =====================================================
   COST COMPARE
===================================================== */
.cost-table { border: 1px solid var(--line); overflow: hidden; }
.cost-table-head { padding: 14px 20px; border-bottom: 1px solid var(--line); background: var(--bg2); font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.cost-tr { display: flex; align-items: center; gap: 1.5rem; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.cost-tr:last-child { border-bottom: none; background: rgba(27,110,243,.05); }
.cost-lbl { font-size: 13px; font-weight: 300; color: var(--off); width: 130px; flex-shrink: 0; }
.cost-lbl.hl { color: var(--white); font-weight: 500; }
.cost-bar-wrap { flex: 1; height: 5px; background: var(--line); border-radius: 1px; overflow: hidden; }
.cost-bar { height: 100%; border-radius: 1px; }
.cost-bar.r { background: var(--red); }
.cost-bar.y { background: var(--gold); }
.cost-bar.g { background: var(--teal); }
.cost-amt { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; color: var(--white); min-width: 56px; text-align: right; letter-spacing: .02em; }
.cost-amt.hl { color: var(--teal); }

/* =====================================================
   ANSWER ITEMS
===================================================== */
.answer-list { margin-top: 2rem; border-top: 1px solid var(--line); }
.answer-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.answer-bar { width: 2px; height: 32px; background: var(--blue); flex-shrink: 0; margin-top: 3px; }
.answer-item > div > h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }

/* =====================================================
   INCLUDES LIST
===================================================== */
.includes { border: 1px solid var(--line); margin-top: 2rem; }
.includes-head { padding: 12px 18px; border-bottom: 1px solid var(--line); background: var(--bg2); font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.includes-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 400; }
.includes-row:last-child { border-bottom: none; }
.includes-row span:first-child { color: rgba(255,255,255,.82); }
.includes-check { color: var(--teal); font-size: 14px; font-weight: 700; }

/* =====================================================
   PRICING PACKAGES
===================================================== */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 3rem;
}
.pkg { background: var(--bg); padding: 2.5rem; position: relative; transition: background .2s; }
.pkg:hover { background: var(--bg2); }
.pkg.featured { background: var(--bg2); }
.pkg.featured::before {
  content: 'MOST REQUESTED'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white); font-size: 8px; font-weight: 500;
  letter-spacing: .14em; padding: 3px 14px; font-family: 'Barlow', sans-serif;
}
.pkg.span3 { grid-column: span 3; background: var(--bg2); display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; border-top: 1px solid var(--line); }
.pkg-tier { font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.5rem; }
.pkg-tier.orchid { color: var(--orchid); }
.pkg-tier.gold   { color: var(--gold); }
.pkg-price { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: .25rem; }
.pkg.featured .pkg-price { color: var(--blue); }
.pkg-per { font-size: 12px; font-weight: 300; color: var(--muted); margin-bottom: 2rem; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 2rem; }
.pkg-list li { font-size: 12px; font-weight: 300; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; line-height: 1.6; }
.pkg-list li::before { content: '–'; color: var(--blue); flex-shrink: 0; }
.pkg-list.gold-list li::before { color: var(--gold); }
.pkg-cta {
  display: block; text-align: center; padding: 11px;
  border: 1px solid var(--line2); font-size: 10px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); transition: all .2s;
}
.pkg-cta:hover { border-color: var(--white); color: var(--white); }
.pkg-cta.primary { background: var(--blue); border-color: var(--blue); color: var(--white); }
.pkg-cta.gold-btn { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* =====================================================
   OFFERING LIST (LINC IQ, Social)
===================================================== */
.offering-list { border-top: 1px solid var(--line); }
.offering-row { display: grid; grid-template-columns: 56px 1fr; gap: 2.5rem; padding: 2.5rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.offering-n { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 900; color: var(--line2); line-height: 1; }
.offering-sub { font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-bottom: .75rem; }
.offering-row > div > p { margin-top: .625rem; }
.offering-bullets { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 8px; }
.offering-bullets li { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.70); display: flex; gap: 10px; line-height: 1.7; }
.offering-bullets li::before { content: '–'; color: var(--blue); flex-shrink: 0; }

/* =====================================================
   WIDE FEATURE (2-col dark card)
===================================================== */
.wide-feat {
  background: var(--bg2); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem;
  align-items: center; padding: 3.5rem; margin-top: 3rem;
}
.wide-feat-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.wide-feat-list li { font-size: 15px; font-weight: 400; color: rgba(255,255,255,.75); display: flex; gap: 12px; align-items: flex-start; line-height: 1.7; }
.wide-feat-list li::before { content: '—'; color: var(--teal); flex-shrink: 0; }

/* =====================================================
   QUOTE BAND (CTA)
===================================================== */
.quote-band {
  padding: clamp(72px,8vw,112px) 0;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden; text-align: center;
}
.quote-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(27,110,243,.07) 0%, transparent 65%);
}
.quote-band blockquote {
  font-size: clamp(18px, 2.5vw, 28px); font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.5; max-width: 820px;
  margin: 0 auto 2rem; position: relative;
}
.qb-attr { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2.5rem; }

/* =====================================================
   PAGE HERO (interior pages)
===================================================== */
.page-hero {
  padding: clamp(72px,8vw,112px) 0 clamp(56px,6vw,80px);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 50%, rgba(27,110,243,.06) 0%, transparent 60%);
}
.page-hero-inner { position: relative; }
.page-hero-stats { display: flex; gap: 4rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.phs-val { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 900; color: var(--white); line-height: 1; }
.phs-val em { font-style: normal; color: var(--teal); font-size: .6em; }
.phs-lbl { font-size: 10px; font-weight: 300; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* =====================================================
   TEAM CARDS
===================================================== */
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 3rem;
}
.team-card { background: var(--bg); padding: 3rem; display: block; transition: background .2s; }
.team-card:hover { background: var(--bg2); }
.team-photo-init {
  width: 64px; height: 64px; border: 1px solid var(--line2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900;
  color: var(--muted); text-transform: uppercase; margin-bottom: 2rem;
}
.team-card-name { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 900; text-transform: uppercase; letter-spacing: .02em; color: var(--white); margin-bottom: 4px; }
.team-card-role { font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.5rem; }
.team-card-role.blue   { color: var(--blue); }
.team-card-role.orchid { color: var(--orchid); }
.team-card > p { font-size: 15px; font-weight: 400; color: rgba(255,255,255,.72); line-height: 1.9; }

/* =====================================================
   ENGINEERS
===================================================== */
.eng-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 3rem;
}
.eng-card { background: var(--bg); padding: 2.5rem; }
.eng-init { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; color: var(--line2); line-height: 1; margin-bottom: 1.5rem; }
.eng-name { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: .02em; color: var(--white); margin-bottom: 3px; }
.eng-role { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 1rem; }

/* =====================================================
   VALUES
===================================================== */
.val-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 3rem;
}
.val-card { background: var(--bg); padding: 3rem; }
.val-n { font-family: 'Barlow Condensed', sans-serif; font-size: 64px; font-weight: 900; color: var(--line); line-height: 1; margin-bottom: 1.5rem; }
.val-card > p { margin-top: .5rem; }

/* =====================================================
   PLATFORM PAIR
===================================================== */
.platform-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 3rem;
}
.platform-card { background: var(--bg2); padding: 3rem; }
.platform-badge {
  width: 44px; height: 44px; border: 1px solid var(--line2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900;
  color: var(--blue2); margin-bottom: 2rem;
}

/* =====================================================
   CONTACT FORM
===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.contact-why-item { padding: 1.75rem 0; border-bottom: 1px solid var(--line); }
.contact-why-item:first-child { border-top: 1px solid var(--line); }
.contact-why-item > p { margin-top: .5rem; font-size:14px; font-weight:400; color:rgba(255,255,255,.72); line-height:1.8; }
.contact-direct { margin-top: 2.5rem; padding: 1.75rem; border: 1px solid var(--line); }
.contact-direct-lbl { font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.contact-direct a { display: block; font-size: 13px; font-weight: 300; color: var(--muted); margin-bottom: 6px; transition: color .2s; }
.contact-direct a:hover { color: var(--white); }
.form-shell { border: 1px solid var(--line); padding: 3rem; }
.form-title { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; text-transform: uppercase; letter-spacing: .02em; color: var(--white); margin-bottom: .5rem; }
.form-sub { font-size: 13px; font-weight: 300; color: var(--muted); margin-bottom: 2.5rem; }
.fg { margin-bottom: 1.25rem; }
.fg-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg label { display: block; font-size: 9px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line2);
  padding: 10px 0; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--white); outline: none; transition: border-color .15s; border-radius: 0;
  -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-bottom-color: var(--blue); }
.fg select option { background: var(--bg2); color: var(--white); }
.fg textarea { resize: none; height: 88px; }
.form-btn {
  width: 100%; background: var(--blue); color: var(--white); border: none;
  padding: 14px; font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  margin-top: .375rem; transition: background .15s;
}
.form-btn:hover { background: var(--blue2); }
.form-note { font-size: 10px; color: var(--muted); text-align: center; margin-top: .875rem; }

/* =====================================================
   SKILLS CHIPS (Bridget)
===================================================== */
.skill-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 1.75rem 0; }
.skill-chip { font-size: 10px; font-weight: 400; letter-spacing: .06em; padding: 4px 10px; border: 1px solid var(--line); color: var(--muted); }

/* =====================================================
   CAREER GRID (Bridget)
===================================================== */
.career-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 3rem;
}
.career-item { background: var(--bg); padding: 2.5rem; transition: background .2s; }
.career-item:hover { background: var(--bg2); }
.career-yr { font-size: 9px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--orchid); margin-bottom: 8px; }
.career-item > h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--white); margin-bottom: 5px; }

/* =====================================================
   FOOTER
===================================================== */
.site-footer { border-top: 1px solid var(--line); padding: clamp(56px,6vw,80px) 0 clamp(32px,4vw,48px); }
.footer-wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gap); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); margin-bottom: 2rem; }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: .1em; color: var(--white); margin-bottom: 1rem; }
.footer-logo strong { color: var(--blue); font-weight: 900; }
.footer-brand > p { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.60); max-width: 240px; line-height: 1.8; }
.footer-live { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--teal); margin-top: 1.25rem; }
.footer-col h5 { font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.60); transition: color .15s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 11px; color: var(--muted); }
.footer-pp { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .14em; color: var(--muted); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:1024px){
  .hero-inner     { grid-template-columns: 1fr; }
  .hero-right     { display: none; }
  .two-col,
  .two-col.wide-left,
  .two-col.wide-right { grid-template-columns: 1fr; gap: 3rem; }
  .wide-feat      { grid-template-columns: 1fr; }
  .pkg-grid       { grid-template-columns: 1fr 1fr; }
  .pkg.span3      { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .tl-row         { grid-template-columns: 140px 1fr; gap: 2rem; }
}
@media(max-width:768px){
  .nav-links      { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); padding: 16px var(--gap); flex-direction: column; border-bottom: 1px solid var(--line); }
  #sl-nav.open .nav-links { display: flex; }
  .nav-burger     { display: block; }
  .grid-3,
  .grid-2,
  .team-grid,
  .eng-grid,
  .val-grid,
  .platform-pair,
  .pkg-grid,
  .career-grid    { grid-template-columns: 1fr; }
  .svc-row        { grid-template-columns: 1fr; }
  .svc-n,
  .svc-row-link   { display: none; }
  .tl-row         { grid-template-columns: 1fr; gap: 1rem; }
  .footer-top     { grid-template-columns: 1fr; }
  .page-hero-stats{ gap: 2rem; }
  .bio-hero .two-col { grid-template-columns: 1fr; }
}
