/* SpeedPR corporate press release site
   Static, dependency-free, and optimized for fast loading. */
:root {
  --navy-950: #07101f;
  --navy-900: #0a1628;
  --navy-850: #0d1c31;
  --navy-800: #10243d;
  --navy-700: #173654;
  --gold-500: #c7a04b;
  --gold-400: #d7b968;
  --gold-300: #e8d493;
  --ink-900: #121821;
  --ink-700: #3a4554;
  --ink-500: #667180;
  --line: #dfe4ea;
  --surface: #f5f7fa;
  --white: #ffffff;
  --success: #2f7a5c;
  --danger: #9d3f3f;
  --shadow-sm: 0 10px 30px rgba(8, 20, 38, .08);
  --shadow-lg: 0 24px 70px rgba(6, 16, 31, .18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold-300); color: var(--navy-950); }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--white);
  color: var(--navy-950);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-surface { background: var(--surface); }
.section-dark { background: var(--navy-950); color: var(--white); }
.narrow { max-width: 820px; }
.center { text-align: center; margin-inline: auto; }
.stack > * + * { margin-top: 1.25rem; }

.announcement {
  background: var(--navy-950);
  color: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  letter-spacing: .04em;
}
.announcement .container {
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  text-align: center;
}
.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 5px rgba(215,185,104,.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(12,28,49,.08);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 174px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  position: relative;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold-500);
  transition: right .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy-900); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
/* Keep the header call-to-action legible over its dark background. */
.nav-links a.btn-dark,
.nav-links a.btn-dark:hover,
.nav-links a.btn-dark[aria-current="page"] { color: var(--white); }
.nav-links a.btn-dark::after { display: none; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .015em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 10px 28px rgba(199,160,75,.28);
}
.btn-primary:hover { background: var(--gold-400); box-shadow: 0 14px 34px rgba(199,160,75,.34); }
.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-dark:hover { background: var(--navy-800); box-shadow: var(--shadow-sm); }
.btn-outline { border-color: rgba(255,255,255,.25); color: var(--white); background: rgba(255,255,255,.04); }
.btn-outline:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); }
.btn-light-outline { border-color: var(--line); color: var(--navy-900); background: var(--white); }
.btn-light-outline:hover { border-color: #bac3ce; box-shadow: var(--shadow-sm); }
.btn-sm { min-height: 42px; padding-inline: 17px; }
.btn-arrow::after { content: "→"; font-size: 18px; line-height: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.eyebrow-dark { color: var(--navy-700); }
.kicker { color: var(--navy-700); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

h1, h2, h3, h4 { margin: 0; color: inherit; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(46px, 6vw, 78px); font-weight: 850; }
h2 { font-size: clamp(34px, 4.4vw, 54px); font-weight: 830; }
h3 { font-size: 23px; font-weight: 800; }
h4 { font-size: 18px; font-weight: 800; }
p { margin: 0; }
.lead { color: var(--ink-500); font-size: clamp(18px, 2vw, 21px); line-height: 1.7; }
.section-dark .lead { color: rgba(255,255,255,.68); }
.section-heading { display: grid; gap: 18px; margin-bottom: 48px; }
.section-heading p { max-width: 700px; color: var(--ink-500); font-size: 18px; }
.section-heading.center p { margin-inline: auto; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 83% 18%, rgba(199,160,75,.17), transparent 27%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 52%, #0f2945 100%);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, transparent 8%, #000 62%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -230px;
  bottom: -290px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255,255,255,.02), 0 0 0 200px rgba(255,255,255,.02);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  padding: 98px 0 104px;
}
.hero-copy { max-width: 760px; }
.hero-copy h1 { margin-top: 22px; max-width: 760px; }
.hero-copy h1 span { color: var(--gold-400); }
.hero-copy .lead { margin-top: 28px; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 44px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-meta span { color: rgba(255,255,255,.62); font-size: 13px; font-weight: 700; }
.hero-meta b { color: var(--white); }

.signal-card {
  position: relative;
  min-height: 460px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.signal-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(215,185,104,.25), transparent 68%);
}
.signal-top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.signal-label { font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.58); }
.signal-status { display: inline-flex; align-items: center; gap: 8px; color: #dcebdd; font-size: 12px; font-weight: 800; }
.signal-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #65b484; box-shadow: 0 0 0 5px rgba(101,180,132,.12); }
.signal-mark {
  width: 144px;
  height: 144px;
  display: grid;
  place-items: center;
  margin: 34px auto 28px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 34px;
  transform: rotate(45deg);
  background: linear-gradient(145deg, rgba(215,185,104,.24), rgba(255,255,255,.04));
  box-shadow: inset 0 0 0 12px rgba(255,255,255,.025), 0 30px 70px rgba(0,0,0,.22);
}
.signal-mark span { transform: rotate(-45deg); color: var(--gold-400); font-size: 44px; font-weight: 900; letter-spacing: -.08em; }
.signal-title { text-align: center; font-size: 25px; font-weight: 850; letter-spacing: -.03em; }
.signal-copy { text-align: center; color: rgba(255,255,255,.6); font-size: 14px; margin-top: 10px; }
.signal-lines { display: grid; gap: 10px; margin-top: 28px; }
.signal-line { height: 7px; border-radius: 10px; background: rgba(255,255,255,.08); overflow: hidden; }
.signal-line span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold-500), rgba(215,185,104,.15)); }
.signal-line:nth-child(1) span { width: 84%; }
.signal-line:nth-child(2) span { width: 67%; }
.signal-line:nth-child(3) span { width: 75%; }

.capability-strip {
  position: relative;
  z-index: 4;
  margin-top: -36px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid rgba(12,28,49,.08);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.capability {
  padding: 25px 26px;
  border-right: 1px solid var(--line);
}
.capability:last-child { border-right: 0; }
.capability strong { display: block; color: var(--navy-900); font-size: 14px; }
.capability span { display: block; margin-top: 5px; color: var(--ink-500); font-size: 12px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  position: relative;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(12,28,49,.02);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: #cfd6de; }
.card-index { color: var(--gold-500); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.card h3 { margin-top: 24px; color: var(--navy-900); }
.card p { margin-top: 14px; color: var(--ink-500); }
.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 20px;
  font-weight: 900;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.panel-dark {
  position: relative;
  padding: 48px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.panel-dark::after {
  content: "SP";
  position: absolute;
  right: -18px;
  bottom: -58px;
  font-size: 190px;
  font-weight: 900;
  color: rgba(255,255,255,.035);
  letter-spacing: -.12em;
}
.panel-dark > * { position: relative; z-index: 2; }
.check-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 16px; }
.check-list li { position: relative; padding-left: 31px; color: rgba(255,255,255,.74); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(215,185,104,.15);
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 900;
}
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; color: var(--navy-700); font-size: 14px; font-weight: 900; }
.text-link::after { content: "→"; transition: transform .18s ease; }
.text-link:hover::after { transform: translateX(4px); }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px; }
.step { position: relative; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -16px;
  left: 0;
  padding-right: 14px;
  background: var(--navy-950);
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}
.step h3 { margin-top: 13px; }
.step p { margin-top: 13px; color: rgba(255,255,255,.62); }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #fafbfd);
}
.category span { color: var(--gold-500); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.category h4 { margin-top: 30px; color: var(--navy-900); }
.category p { margin-top: 8px; color: var(--ink-500); font-size: 13px; line-height: 1.55; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-950), #173856);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  right: -120px;
  top: -160px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
}
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-band h2 { font-size: clamp(32px, 4vw, 49px); max-width: 650px; }
.cta-band p { margin-top: 15px; color: rgba(255,255,255,.64); max-width: 650px; }
.cta-actions { flex: 0 0 auto; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 94px;
  background:
    radial-gradient(circle at 85% 20%, rgba(199,160,75,.18), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .09;
  mask-image: linear-gradient(to left, #000 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 900px; font-size: clamp(43px, 5vw, 68px); margin-top: 18px; }
.page-hero p { max-width: 720px; margin-top: 25px; color: rgba(255,255,255,.68); font-size: 19px; }
.breadcrumbs { display: flex; gap: 8px; color: rgba(255,255,255,.52); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--gold-400); }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 70px; align-items: start; }
.prose { max-width: 820px; }
.prose h2 { margin-top: 50px; font-size: 34px; color: var(--navy-900); }
.prose h3 { margin-top: 34px; color: var(--navy-900); }
.prose p, .prose li { color: var(--ink-700); }
.prose p { margin-top: 18px; }
.prose ul, .prose ol { margin: 18px 0 0; padding-left: 24px; }
.prose li + li { margin-top: 10px; }
.prose a { color: var(--navy-700); text-decoration: underline; text-decoration-color: var(--gold-500); text-underline-offset: 3px; }
.prose .notice { margin-top: 28px; padding: 22px 24px; border-left: 4px solid var(--gold-500); background: var(--surface); border-radius: 0 12px 12px 0; }
.side-nav { position: sticky; top: calc(var(--header-h) + 30px); padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.side-nav strong { color: var(--navy-900); font-size: 13px; letter-spacing: .09em; text-transform: uppercase; }
.side-nav nav { display: grid; gap: 10px; margin-top: 17px; }
.side-nav a { color: var(--ink-500); font-size: 14px; font-weight: 700; }
.side-nav a:hover { color: var(--navy-900); }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.stat { padding: 25px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.stat strong { display: block; color: var(--navy-900); font-size: 22px; }
.stat span { display: block; margin-top: 7px; color: var(--ink-500); font-size: 13px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { color: var(--navy-900); font-size: 13px; font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid #ccd3dc;
  border-radius: 9px;
  background: var(--white);
  color: var(--ink-900);
  padding: 13px 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
textarea { min-height: 145px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(199,160,75,.13); }
.form-shell { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.form-note { color: var(--ink-500); font-size: 12px; }
.form-message { display: none; margin-top: 16px; padding: 13px 15px; border-radius: 9px; background: #edf7f2; color: var(--success); font-size: 14px; font-weight: 700; }
.form-message.is-visible { display: block; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { padding: 25px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.contact-card span { color: var(--gold-500); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-card h3 { margin-top: 10px; font-size: 19px; color: var(--navy-900); }
.contact-card p, .contact-card a { margin-top: 8px; color: var(--ink-500); font-size: 14px; }
.contact-card a:hover { color: var(--navy-700); }

.site-footer { background: var(--navy-950); color: var(--white); }
.footer-main { padding: 70px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 60px; }
.footer-brand img { width: 170px; }
.footer-brand p { max-width: 360px; margin-top: 20px; color: rgba(255,255,255,.54); font-size: 14px; }
.footer-col h4 { font-size: 12px; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-400); }
.footer-col nav { display: grid; gap: 10px; margin-top: 18px; }
.footer-col a { color: rgba(255,255,255,.62); font-size: 14px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { color: rgba(255,255,255,.42); font-size: 12px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,.46); font-size: 12px; }
.footer-legal a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1040px) {
  :root { --header-h: 74px; }
  .nav-toggle { display: inline-flex; }
  .site-nav { position: relative; }
  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(38px + var(--header-h) + 8px);
    display: none;
    padding: 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 19px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a::after { display: none; }
  .nav-links .btn { width: 100%; }
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { max-width: 800px; }
  .signal-card { max-width: 620px; min-height: auto; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability:nth-child(2) { border-right: 0; }
  .capability:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split { gap: 45px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  .section { padding: 76px 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 78px 0 90px; }
  .grid-3, .steps, .stat-grid { grid-template-columns: 1fr; }
  .split, .content-layout { grid-template-columns: 1fr; }
  .side-nav { position: static; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-band { padding: 46px 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement .container { min-height: 42px; }
  .brand img { width: 155px; }
  .nav-links { left: 14px; right: 14px; }
  .hero-inner { padding: 66px 0 78px; }
  h1 { font-size: 43px; }
  h2 { font-size: 34px; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
  .signal-card { padding: 23px; border-radius: 20px; }
  .capability-strip { margin-top: -22px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability { border-right: 0; border-bottom: 1px solid var(--line); }
  .capability:last-child { border-bottom: 0; }
  .grid-2, .category-grid, .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .card, .panel-dark, .form-shell { padding: 27px; }
  .page-hero { padding: 82px 0 75px; }
  .page-hero h1 { font-size: 42px; }
  .cta-band { padding: 38px 27px; }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
  .footer-bottom .container { align-items: flex-start; flex-direction: column; }
}


/* === Christopher Ridgeway profile section === */
/* Force header call-to-action text to remain visible in every path and state. */
.site-header #main-navigation a.btn.btn-dark,
.site-header #main-navigation a.btn.btn-dark:link,
.site-header #main-navigation a.btn.btn-dark:visited,
.site-header #main-navigation a.btn.btn-dark:hover,
.site-header #main-navigation a.btn.btn-dark:focus,
.site-header #main-navigation a.btn.btn-dark:active {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--navy-900) !important;
}
.site-header #main-navigation a.btn.btn-dark::before,
.site-header #main-navigation a.btn.btn-dark::after { display: none !important; content: none !important; }

.profile-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(215,185,104,.20), transparent 25%),
    linear-gradient(132deg, var(--navy-950), var(--navy-900) 55%, #113052);
  color: var(--white);
}
.profile-hero::before,
.profile-subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, transparent 5%, #000 72%);
}
.profile-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,.65fr); gap: 80px; align-items: center; padding: 90px 0 96px; }
.profile-label { display: inline-flex; margin-top: 28px; color: var(--gold-400); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.profile-hero h1 { max-width: 760px; margin-top: 15px; font-size: clamp(56px,7vw,88px); }
.profile-hero h1 span { color: var(--gold-400); }
.profile-deck { max-width: 720px; margin-top: 25px; color: rgba(255,255,255,.72); font-size: clamp(19px,2vw,23px); line-height: 1.65; }
.profile-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.profile-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 46px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.12); }
.profile-facts div { padding: 20px 18px; background: rgba(7,16,31,.76); }
.profile-facts strong { display: block; color: var(--white); font-size: 16px; }
.profile-facts span { display: block; margin-top: 5px; color: rgba(255,255,255,.52); font-size: 12px; }
.profile-visual { position: relative; }
.profile-visual img { width: 100%; border-radius: 28px; box-shadow: 0 34px 90px rgba(0,0,0,.34); }
.profile-visual-caption { position: absolute; left: 28px; right: 28px; bottom: 24px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; background: rgba(7,16,31,.82); backdrop-filter: blur(12px); }
.profile-visual-caption span { display: block; color: var(--gold-400); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.profile-visual-caption strong { display: block; margin-top: 5px; font-size: 14px; }

.profile-nav-wrap { position: sticky; top: var(--header-h); z-index: 900; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); }
.profile-tabs { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: thin; }
.profile-tabs a { flex: 0 0 auto; padding: 17px 16px 15px; border-bottom: 3px solid transparent; color: var(--ink-500); font-size: 13px; font-weight: 800; }
.profile-tabs a:hover { color: var(--navy-900); }
.profile-tabs a.is-active { border-bottom-color: var(--gold-500); color: var(--navy-900); }

.profile-content-grid { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 76px; align-items: start; }
.profile-main h2 { max-width: 760px; margin-top: 18px; color: var(--navy-900); }
.profile-main > p:not(.lead) { max-width: 790px; margin-top: 20px; color: var(--ink-700); font-size: 17px; }
.profile-main .lead { margin-top: 24px; }
.profile-side { display: grid; gap: 16px; }
.profile-summary-card { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow-sm); }
.profile-card-label { color: var(--gold-500); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.profile-summary-card dl { margin: 18px 0 0; }
.profile-summary-card dl div { padding: 14px 0; border-top: 1px solid var(--line); }
.profile-summary-card dt { color: var(--ink-500); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.profile-summary-card dd { margin: 5px 0 0; color: var(--navy-900); font-size: 15px; font-weight: 800; }
.profile-side-link { display: grid; gap: 4px; padding: 22px; border-radius: 15px; background: var(--navy-900); color: var(--white); }
.profile-side-link span { color: var(--gold-400); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.profile-side-link strong { font-size: 14px; }
.profile-callout { margin-top: 34px; padding: 26px 28px; border-left: 4px solid var(--gold-500); border-radius: 0 14px 14px 0; background: var(--surface); }
.profile-callout span { color: var(--gold-500); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.profile-callout p { margin-top: 8px; color: var(--ink-700); }

.profile-section-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.profile-section-card { position: relative; min-height: 280px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.profile-section-card:hover { transform: translateY(-5px); border-color: #c8b478; box-shadow: var(--shadow-lg); }
.profile-section-card > span { color: var(--gold-500); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.profile-section-card h3 { margin-top: 50px; color: var(--navy-900); font-size: 27px; }
.profile-section-card p { margin-top: 13px; color: var(--ink-500); }
.profile-section-card b { display: block; margin-top: 24px; color: var(--navy-700); font-size: 13px; }
.profile-section-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -70px; top: -70px; border: 18px solid rgba(199,160,75,.10); border-radius: 50%; }
.profile-quote-section .lead { max-width: 680px; }
.profile-disclosure { display: flex; gap: 20px; align-items: flex-start; padding: 24px 28px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.profile-disclosure strong { flex: 0 0 auto; color: var(--navy-900); }
.profile-disclosure p { color: var(--ink-500); font-size: 14px; }
.profile-disclosure a { color: var(--navy-700); text-decoration: underline; text-decoration-color: var(--gold-500); text-underline-offset: 3px; }

.profile-subhero { position: relative; overflow: hidden; padding: 86px 0 78px; background: linear-gradient(135deg,var(--navy-950),var(--navy-900) 62%,#123353); color: var(--white); }
.profile-subhero .container { position: relative; z-index: 2; }
.profile-subhero .profile-label { margin-top: 26px; }
.profile-subhero h1 { max-width: 900px; margin-top: 14px; font-size: clamp(44px,5.5vw,70px); }
.profile-subhero p { max-width: 760px; margin-top: 22px; color: rgba(255,255,255,.68); font-size: 20px; }
.profile-article-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 76px; align-items: start; }
.profile-article.prose { max-width: none; }
.profile-article.prose section:first-child h2 { margin-top: 0; }
.profile-article.prose h2 { font-size: 35px; }
.profile-article.prose p { font-size: 17px; line-height: 1.8; }
.profile-article.prose section + section { margin-top: 54px; padding-top: 48px; border-top: 1px solid var(--line); }
.profile-mini-nav { display: grid; gap: 9px; padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.profile-mini-nav strong { margin-bottom: 4px; color: var(--navy-900); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.profile-mini-nav a { color: var(--ink-500); font-size: 14px; font-weight: 700; }
.profile-mini-nav a:hover { color: var(--navy-900); }
.profile-next { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 56px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.profile-next span { color: var(--ink-500); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.profile-next a { color: var(--navy-900); font-size: 17px; font-weight: 850; text-decoration: none; }

.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.resource-card { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.resource-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.resource-card > span { color: var(--gold-500); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.resource-card h3 { margin-top: 36px; color: var(--navy-900); font-size: 27px; }
.resource-card p { margin-top: 14px; color: var(--ink-500); }
.resource-card b { display: block; margin-top: 26px; color: var(--navy-700); font-size: 13px; }

.featured-profile-card { display: grid; grid-template-columns: 150px minmax(0,1fr) auto; gap: 28px; align-items: center; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.featured-profile-card img { width: 150px; border-radius: 15px; }
.featured-profile-card .kicker { display: block; }
.featured-profile-card h3 { margin-top: 9px; color: var(--navy-900); font-size: 29px; }
.featured-profile-card p { margin-top: 9px; color: var(--ink-500); }

@media (max-width: 1040px) {
  .profile-hero-grid { grid-template-columns: 1fr .65fr; gap: 45px; }
  .profile-content-grid, .profile-article-layout { gap: 45px; }
  .profile-section-grid { grid-template-columns: repeat(2,1fr); }
  .resource-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .profile-nav-wrap { top: var(--header-h); }
  .profile-hero-grid, .profile-content-grid, .profile-article-layout { grid-template-columns: 1fr; }
  .profile-visual { max-width: 500px; }
  .profile-side { max-width: 620px; }
  .featured-profile-card { grid-template-columns: 115px 1fr; }
  .featured-profile-card .btn { grid-column: 1 / -1; width: 100%; }
}
@media (max-width: 600px) {
  .profile-hero-grid { padding: 66px 0 74px; }
  .profile-hero h1 { font-size: 52px; }
  .profile-hero-actions, .profile-hero-actions .btn { width: 100%; }
  .profile-facts { grid-template-columns: 1fr; }
  .profile-tabs a { padding-inline: 13px; }
  .profile-section-grid, .resource-grid { grid-template-columns: 1fr; }
  .profile-section-card { min-height: 245px; }
  .profile-disclosure { flex-direction: column; gap: 8px; }
  .profile-next { align-items: flex-start; flex-direction: column; }
  .featured-profile-card { grid-template-columns: 1fr; }
  .featured-profile-card img { width: 120px; }
}
/* =========================================================
   CHRISTOPHER RIDGEWAY HOMEPAGE PORTRAIT
   ========================================================= */

.cr-hero-portrait {
  position: relative;
  width: 100%;
  max-width: 535px;
  min-height: 570px;
  margin-left: auto;
  isolation: isolate;
}

.cr-portrait-frame {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 570px;
  overflow: hidden;
  border: 1px solid rgba(197, 157, 77, 0.58);
  border-radius: 8px;
  background: #0b1727;
  box-shadow:
    0 34px 75px rgba(4, 12, 25, 0.32),
    0 10px 28px rgba(4, 12, 25, 0.22);
  transform: translateZ(0);
}

.cr-portrait-frame::before {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
  transition:
    inset 0.5s ease,
    border-color 0.5s ease;
}

.cr-portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 18%,
      rgba(255, 255, 255, 0.15) 41%,
      transparent 58%
    );
  transform: translateX(-140%);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.cr-portrait-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.82) contrast(1.04);
  transform: scale(1.015);
  transition:
    transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.7s ease;
}

.cr-portrait-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 14, 28, 0.94) 0%,
      rgba(5, 14, 28, 0.46) 27%,
      transparent 59%
    ),
    linear-gradient(
      90deg,
      rgba(8, 22, 41, 0.22),
      transparent 45%
    );
  pointer-events: none;
}

.cr-portrait-label {
  position: absolute;
  z-index: 7;
  left: 42px;
  right: 42px;
  bottom: 38px;
  color: #ffffff;
}

.cr-label-kicker {
  display: block;
  margin-bottom: 8px;
  color: #d8b46c;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cr-portrait-label strong {
  display: block;
  color: #ffffff;
  font-family: inherit;
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.38);
}

.cr-portrait-lines {
  position: absolute;
  z-index: 6;
  top: 38px;
  right: 35px;
  display: grid;
  gap: 6px;
  width: 54px;
  pointer-events: none;
}

.cr-portrait-lines span {
  display: block;
  height: 2px;
  background: #d8b46c;
  transform-origin: right center;
}

.cr-portrait-lines span:nth-child(1) {
  width: 54px;
}

.cr-portrait-lines span:nth-child(2) {
  width: 36px;
  margin-left: auto;
  opacity: 0.72;
}

.cr-portrait-lines span:nth-child(3) {
  width: 20px;
  margin-left: auto;
  opacity: 0.45;
}

.cr-portrait-accent {
  position: absolute;
  z-index: 1;
  right: -19px;
  bottom: -19px;
  width: 72%;
  height: 74%;
  border-right: 3px solid #c99f4d;
  border-bottom: 3px solid #c99f4d;
  border-radius: 0 0 10px 0;
  opacity: 0.82;
}

.cr-portrait-glow {
  position: absolute;
  z-index: 0;
  top: 8%;
  right: -10%;
  width: 82%;
  height: 78%;
  border-radius: 50%;
  background: rgba(201, 159, 77, 0.19);
  filter: blur(62px);
  pointer-events: none;
}

.cr-hero-portrait:hover .cr-portrait-image {
  transform: scale(1.065);
  filter: saturate(0.96) contrast(1.06);
}

.cr-hero-portrait:hover .cr-portrait-frame::before {
  inset: 20px;
  border-color: rgba(216, 180, 108, 0.58);
}

.cr-hero-portrait:hover .cr-portrait-frame::after {
  transform: translateX(140%);
}


/* Tablet */

@media (max-width: 980px) {
  .cr-hero-portrait {
    max-width: 680px;
    min-height: 530px;
    margin: 20px auto 0;
  }

  .cr-portrait-frame {
    height: 530px;
  }
}


/* Mobile */

@media (max-width: 640px) {
  .cr-hero-portrait {
    min-height: 455px;
    width: calc(100% - 10px);
    margin-top: 12px;
  }

  .cr-portrait-frame {
    height: 455px;
  }

  .cr-portrait-frame::before {
    inset: 11px;
  }

  .cr-hero-portrait:hover .cr-portrait-frame::before {
    inset: 14px;
  }

  .cr-portrait-label {
    left: 27px;
    right: 27px;
    bottom: 28px;
  }

  .cr-portrait-label strong {
    font-size: 28px;
  }

  .cr-portrait-lines {
    top: 28px;
    right: 25px;
  }

  .cr-portrait-accent {
    right: -11px;
    bottom: -11px;
  }
}