/* ═══════════════════════════════════════════════════
   BRIGHT FORENSICS — Shared Stylesheet
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #0d1826;
  --ink-soft:   #24354a;
  --body:       #55677d;
  --muted:      #64707e;
  --line:       #e4eaf1;
  --line-soft:  #eef3f8;
  --bg:         #ffffff;
  --bg-soft:    #f6f9fc;
  --bg-tint:    #eff6fd;
  --navy:       #0c1c31;
  --navy-mid:   #14283f;
  --blue:       #266fc7;
  --blue-dark:  #1a5fb8;
  --blue-light: #6bb2f2;
  --blue-pale:  #d9e9fa;
  --green:      #0c7f56;
  --amber:      #8f6808;
  --radius:     14px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 2px rgba(13,24,38,.05), 0 2px 8px rgba(13,24,38,.04);
  --shadow-md:  0 2px 6px rgba(13,24,38,.06), 0 12px 32px rgba(13,24,38,.07);
  --shadow-lg:  0 4px 12px rgba(13,24,38,.07), 0 24px 60px rgba(13,24,38,.1);
  --maxw:       1140px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }
.soft { background: var(--bg-soft); }
.tint { background: var(--bg-tint); }

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; letter-spacing: -.022em; line-height: 1.18; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow.on-dark { color: var(--blue-light); }

h1.display { font-size: clamp(2.4rem, 5vw, 3.7rem); font-weight: 800; letter-spacing: -.032em; }
h2.title   { font-size: clamp(1.85rem, 3.4vw, 2.6rem); font-weight: 750; margin-bottom: 18px; }
h3.sub     { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin-bottom: 14px; }

.lede { font-size: 1.14rem; line-height: 1.7; color: var(--body); max-width: 62ch; }
.section-intro { max-width: 66ch; margin-bottom: 52px; }
.section-intro p { font-size: 1.06rem; line-height: 1.75; }

.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }
.on-dark p, .on-dark .lede { color: #a9bed4; }

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: .94rem;
  font-weight: 650;
  border: 1.5px solid transparent;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn svg { transition: transform .18s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 2px rgba(43,125,224,.2), 0 6px 18px rgba(43,125,224,.22);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 2px 4px rgba(43,125,224,.24), 0 10px 26px rgba(43,125,224,.28); }

.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }

.btn-sm { padding: 10px 20px; font-size: .87rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.textlink { color: var(--blue); font-weight: 600; font-size: .94rem; display: inline-flex; align-items: center; gap: 6px; }
.textlink:hover { color: var(--blue-dark); gap: 10px; transition: gap .18s; }

/* ── NAV ────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo svg { flex-shrink: 0; }
.logo-text {
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: .01em;
  background: linear-gradient(135deg, #7dbcf5 0%, #2b7de0 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links > li > a {
  font-size: .92rem;
  font-weight: 550;
  color: var(--ink-soft);
  transition: color .15s;
  position: relative;
  padding: 4px 0;
}
.nav-links > li > a:hover { color: var(--blue); }
.nav-links > li > a.active { color: var(--blue); }
.nav-links > li > a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--blue); border-radius: 2px;
}
.burger { display: none; background: none; border: none; padding: 8px; color: var(--ink); }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: #fff;
  padding: 14px 28px 22px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 4px;
  font-size: .98rem;
  font-weight: 550;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 14px; }

/* ── HERO ───────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 92px 0 88px; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 78% 15%, rgba(107,178,242,.19) 0%, transparent 62%),
    radial-gradient(ellipse 46% 44% at 8% 82%, rgba(43,125,224,.09) 0%, transparent 60%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 62%);
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(43,125,224,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,125,224,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 62% 35%, #000 5%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 65% at 62% 35%, #000 5%, transparent 78%);
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 60px; align-items: center; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 34px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--blue-pale);
  box-shadow: var(--shadow-sm);
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.pill .dot.blue { background: var(--blue); }

/* ── CARDS ──────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: all .22s ease;
}
.card-hover:hover { border-color: var(--blue-pale); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card h3 { font-size: 1.04rem; margin-bottom: 10px; font-weight: 680; }
.card p { font-size: .93rem; line-height: 1.72; color: var(--body); }

.icon-box {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(140deg, #eaf3fd, #dbeafb);
  border: 1px solid #cee2f8;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

/* ── NUMBERED / LAYERED ─────────────────────── */
.layer {
  display: flex;
  gap: 22px;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .22s;
}
.layer:hover { border-color: var(--blue-pale); box-shadow: var(--shadow-md); }
.layer-num {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--blue-light), var(--blue));
  color: #fff;
  font-size: .84rem; font-weight: 750;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(43,125,224,.26);
}
.layer h3 { font-size: 1.02rem; margin-bottom: 7px; font-weight: 680; }
.layer p { font-size: .92rem; line-height: 1.7; }

.step { text-align: left; }
.step-num {
  font-size: .74rem; font-weight: 750; letter-spacing: .1em;
  color: var(--blue); margin-bottom: 12px;
}
.step h3 { font-size: .99rem; margin-bottom: 7px; }
.step p { font-size: .88rem; line-height: 1.65; }

/* ── SPLIT GATEWAY ──────────────────────────── */
.gateway { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.gate {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px 38px;
  overflow: hidden;
  transition: all .26s ease;
  display: flex; flex-direction: column;
}
.gate::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
  opacity: 0; transition: opacity .26s;
}
.gate:hover { border-color: var(--blue-pale); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gate:hover::before { opacity: 1; }
.gate-tag {
  display: inline-block; align-self: flex-start;
  font-size: .68rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: var(--bg-tint); border: 1px solid var(--blue-pale);
  padding: 5px 11px; border-radius: 6px; margin-bottom: 20px;
}
.gate h3 { font-size: 1.55rem; margin-bottom: 13px; letter-spacing: -.025em; }
.gate > p { font-size: .96rem; line-height: 1.72; margin-bottom: 24px; }
.gate ul { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.gate ul li {
  position: relative; padding: 8px 0 8px 27px;
  font-size: .92rem; color: var(--ink-soft); line-height: 1.6;
}
.gate ul li::before {
  content: ''; position: absolute; left: 2px; top: 15px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--bg-tint); border: 1px solid var(--blue-pale);
}
.gate ul li::after {
  content: ''; position: absolute; left: 6px; top: 19px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--blue);
}

/* ── FEATURE SPLIT ──────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: center; }
.split.reverse .split-visual { order: -1; }

.visual-frame {
  background: linear-gradient(155deg, #f4f9ff, #eaf3fd);
  border: 1px solid var(--blue-pale);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.visual-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.vhead {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--line-soft);
}
.vhead .vt { font-size: .74rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.badge {
  font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 5px;
  letter-spacing: .04em;
}
.badge.green { background: #e7f7f0; color: var(--green); border: 1px solid #bfe9d7; }
.badge.blue  { background: var(--bg-tint); color: var(--blue); border: 1px solid var(--blue-pale); }

.vrow {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 13px; border-radius: 10px;
  border: 1px solid var(--line-soft); background: #fdfefe; margin-bottom: 9px;
}
.vrow .vi {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.vi.red   { background: #fdedec; border: 1px solid #f7d4d1; }
.vi.amber { background: #fdf6e3; border: 1px solid #f2e2b8; }
.vi.green { background: #e9f8f1; border: 1px solid #c4ead9; }
.vi.blue  { background: var(--bg-tint); border: 1px solid var(--blue-pale); }
.vrow .vc { flex: 1; min-width: 0; }
.vrow .vn { font-size: .82rem; font-weight: 650; color: var(--ink); margin-bottom: 2px; }
.vrow .vd { font-size: .75rem; color: var(--muted); line-height: 1.45; }
.vrow .vs { font-size: .72rem; font-weight: 700; flex-shrink: 0; }
.vs.red { color: #c54137; } .vs.amber { color: var(--amber); } .vs.green { color: var(--green); }

.vstats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft); text-align: center; }
.vstats .n { font-size: 1.12rem; font-weight: 780; color: var(--ink); }
.vstats .l { font-size: .68rem; color: var(--muted); }

/* ── DARK BAND ──────────────────────────────── */
.band {
  background: var(--navy);
  color: #a9bed4;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 78% 25%, rgba(43,125,224,.2) 0%, transparent 62%),
    radial-gradient(ellipse 40% 50% at 12% 85%, rgba(107,178,242,.09) 0%, transparent 60%);
}
.band > .wrap { position: relative; z-index: 1; }
.band h2, .band h3 { color: #fff; }

/* ── CREDIBILITY STRIP ──────────────────────── */
.cred { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-soft); padding: 34px 0; }
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cred-item { display: flex; gap: 14px; align-items: flex-start; }
.cred-item .ci { flex-shrink: 0; margin-top: 2px; }
.cred-item .cn { font-size: .91rem; font-weight: 680; color: var(--ink); margin-bottom: 3px; }
.cred-item .cd { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ── QUOTE / ORIGIN ─────────────────────────── */
.origin-quote {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.62;
  color: var(--ink-soft);
  font-style: italic;
  padding-left: 26px;
  border-left: 3px solid var(--blue-pale);
}

/* ── FORMS ──────────────────────────────────── */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-md);
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fgroup { margin-bottom: 18px; }
.flabel {
  display: block; font-size: .78rem; font-weight: 650;
  color: var(--ink-soft); margin-bottom: 7px; letter-spacing: .01em;
}
.finput, .fselect, .ftextarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .92rem;
  color: var(--ink);
  background: #fcfdfe;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color .17s, box-shadow .17s, background .17s;
}
.finput::placeholder, .ftextarea::placeholder { color: #a8b6c6; }
.finput:focus, .fselect:focus, .ftextarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(43,125,224,.11);
}
.ftextarea { resize: vertical; min-height: 118px; line-height: 1.6; }
.fselect { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238494a6' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.fsubmit { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 46px 20px; }
.form-success .fs-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: #e7f7f0; border: 1px solid #bfe9d7;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success h3 { font-size: 1.15rem; margin-bottom: 9px; }
.form-success p { font-size: .92rem; color: var(--body); max-width: 40ch; margin: 0 auto; }

/* ── CONTACT DETAILS ────────────────────────── */
.cdetail { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.cdetail:last-child { border-bottom: none; }
.cdetail .cdi {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--bg-tint); border: 1px solid var(--blue-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cdetail .cdl { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.cdetail .cdv { font-size: .96rem; font-weight: 550; color: var(--ink); }
.cdetail .cdv a:hover { color: var(--blue); }

/* ── PEOPLE ─────────────────────────────────── */
.person { text-align: center; }
.person .avatar {
  width: 78px; height: 78px; border-radius: 50%;
  background: linear-gradient(140deg, var(--blue-light), var(--blue));
  color: #fff; font-size: 1.35rem; font-weight: 750;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(43,125,224,.24);
}
.person .avatar.alt { background: linear-gradient(140deg, #7fd4c1, #0f9d6b); box-shadow: 0 4px 14px rgba(15,157,107,.22); }
.person .pn { font-size: 1rem; font-weight: 680; color: var(--ink); margin-bottom: 4px; }
.person .pr { font-size: .85rem; color: var(--body); }
.person .po { font-size: .78rem; color: var(--muted); margin-top: 5px; }

.advisor-card { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.advisor-card .avatar { width: 54px; height: 54px; font-size: 1rem; margin: 0; flex-shrink: 0; }
.advisor-card .an { font-size: .96rem; font-weight: 680; color: var(--ink); margin-bottom: 3px; }
.advisor-card .ad { font-size: .84rem; color: var(--body); line-height: 1.55; }

/* ── NOTE / CALLOUT ─────────────────────────── */
.callout {
  background: var(--bg-tint);
  border: 1px solid var(--blue-pale);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
}
.callout p { font-size: .92rem; line-height: 1.7; color: var(--ink-soft); }

.roadmap-card { background: var(--bg-soft); border: 1px dashed #c6d4e3; border-radius: var(--radius); padding: 28px; }
.roadmap-tag {
  display: inline-block; font-size: .66rem; font-weight: 750; letter-spacing: .11em;
  text-transform: uppercase; color: var(--amber); background: #fdf6e3;
  border: 1px solid #f0e0b6; padding: 3px 9px; border-radius: 5px; margin-bottom: 14px;
}

/* ── FOOTER ─────────────────────────────────── */
.footer { background: var(--navy); color: #7f95ad; padding: 60px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer .logo-text { background: linear-gradient(135deg, #9ccdf8, #4e9ae8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-blurb { font-size: .87rem; line-height: 1.7; margin-top: 16px; max-width: 34ch; }
.footer .footer-heading { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: .89rem; transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 26px; }
.footer-bottom p { font-size: .81rem; color: #71879f; }

/* ── UTIL ───────────────────────────────────── */
.mt-0{margin-top:0}.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}
.mt-32{margin-top:32px}.mt-40{margin-top:40px}.mt-52{margin-top:52px}
.mb-0{margin-bottom:0}.mb-12{margin-bottom:12px}.mb-20{margin-bottom:20px}
.mb-32{margin-bottom:32px}.mb-40{margin-bottom:40px}.mb-52{margin-bottom:52px}
.tc{text-align:center}
.center-narrow{max-width:none;margin:0 auto}
.mx-auto{margin-left:auto;margin-right:auto}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .hero-grid, .split, .gateway { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-visual { order: 0; }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cred-grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 680px) {
  section { padding: 68px 0; }
  .wrap { padding: 0 20px; }
  .hero { padding: 60px 0 64px; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .gate { padding: 32px 26px; }
  .form-card { padding: 28px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .vstats { grid-template-columns: 1fr; gap: 10px; }
  .layer { flex-direction: column; gap: 14px; padding: 24px; }
  .origin-quote { font-size: 1.12rem; padding-left: 18px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── PHOTO AVATARS ──────────────────────────── */
.avatar.photo { background: var(--bg-tint); overflow: hidden; padding: 0; }
.avatar.photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.person .avatar.photo { width: 96px; height: 96px; }
.proof { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.proof svg { flex-shrink: 0; }

/* ── LOGO IMAGE ─────────────────────────────── */
.logo-img { height: 40px; width: auto; display: block; }
.logo-footer .logo-img { height: 36px; background: #fff; padding: 6px 10px; border-radius: 8px; box-sizing: content-box; }

/* ── NAV CTA BUTTON ─────────────────────────── */
/* .nav-links > li > a was overriding the button's padding and colour */
.nav-links > li > a.btn { padding: 10px 20px; color: #fff; font-size: .87rem; font-weight: 650; line-height: 1.2; }
.nav-links > li > a.btn:hover { color: #fff; }
.nav-links > li > a.btn::after { display: none; }

/* ── TEAM BIOS ──────────────────────────────── */
.person .pbio { font-size: .92rem; line-height: 1.7; color: var(--body); margin-top: 14px; text-align: center; max-width: 42ch; margin-left: auto; margin-right: auto; }

/* ── VISUAL FRAME ON SMALL SCREENS ──────────── */
@media (max-width: 680px) {
  .visual-frame { padding: 10px; border-radius: 16px; }
  .visual-inner { padding: 14px; }
  .vhead { gap: 8px; flex-wrap: wrap; padding-bottom: 12px; margin-bottom: 12px; }
  .vhead .vt { font-size: .68rem; letter-spacing: .07em; }
  .vrow { gap: 10px; padding: 10px; margin-bottom: 8px; }
  .vrow .vi { width: 26px; height: 26px; }
  .vrow .vn { font-size: .8rem; line-height: 1.3; }
  .vrow .vd { font-size: .72rem; line-height: 1.35; }
  .vrow .vs { font-size: .68rem; }
  .vstats { grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 12px; padding-top: 12px; }
  .vstats .n { font-size: .95rem; }
  .vstats .l { font-size: .62rem; line-height: 1.3; }
}

/* ── HORIZONTAL LOGO ────────────────────────── */
/* The new logo reads on navy, so the footer no longer needs a white frame */
.logo-footer .logo-img { background: none; padding: 0; border-radius: 0; }


/* ── ACCESSIBILITY ──────────────────────────── */
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 600; font-size: .9rem; transition: top .15s; }
.skip-link:focus { top: 12px; }
a:focus-visible, button:focus-visible, select:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }
.footer a:focus-visible, .band a:focus-visible { outline-color: #fff; }
main:focus { outline: none; }
.form-error { margin-top: 12px; padding: 10px 14px; border-radius: 8px; background: #fdecea; border: 1px solid #f3c7c2; color: #8f2a20; font-size: .88rem; }
.statement h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.statement p, .statement li { font-size: 1rem; line-height: 1.8; color: var(--body); }
.statement ul { padding-left: 22px; margin-top: 8px; }
.statement li { margin-bottom: 6px; }
.statement a { color: var(--blue); text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .card-hover:hover, .gate:hover, .btn:hover, .tech-card:hover { transform: none !important; }
}
