:root {
  color-scheme: light;
  --blue: #075fad;
  --blue-2: #0d72ce;
  --ink: #172334;
  --muted: #5f7084;
  --line: #d9e3ef;
  --soft: #f4f8fc;
  --soft-2: #edf5fb;
  --white: #fff;
  --green: #34a853;
  --red: #d93f3f;
  --shadow: 0 18px 48px rgba(18, 49, 82, .12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(217,227,239,.72);
  backdrop-filter: blur(16px);
}
.public-topbar {
  background: #0b2236;
  color: #cfe0ee;
  font-size: .83rem;
}
.public-topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.public-topbar-left,
.public-topbar-right {
  display: flex;
  align-items: center;
}
.public-topbar-left {
  gap: 22px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: .78rem;
  color: #cfe0ee;
}
.public-topbar-right {
  gap: 14px;
}
.public-topbar-left span,
.topbar-portal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.public-topbar a {
  color: #cfe0ee;
}
.public-topbar a:hover {
  color: #fff;
  text-decoration: none;
}
.topbar-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.topbar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ad07f;
  animation: topbarPulse 2.4s infinite;
}
.topbar-portal {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: .76rem;
}
.topbar-social {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  transition: background-color .2s ease, transform .2s ease;
}
.topbar-social:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-1px);
}
.topbar-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
@keyframes topbarPulse {
  0% { box-shadow: 0 0 0 0 rgba(58, 208, 127, .5); }
  70% { box-shadow: 0 0 0 7px rgba(58, 208, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(58, 208, 127, 0); }
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.15rem;
  flex: 0 0 auto;
}
.brand img { width: auto; height: 62px; object-fit: contain; }
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .94rem;
  font-weight: 650;
}
.nav a { color: var(--ink); }
.nav-toggle { display: none; }
.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  font-size: .93rem;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(7, 95, 173, .18);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  transition:
    transform .32s cubic-bezier(.16, 1, .3, 1),
    box-shadow .32s cubic-bezier(.16, 1, .3, 1),
    background-color .24s ease,
    border-color .24s ease,
    color .24s ease;
}
.button::before, button::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 28%, rgba(255,255,255,.34) 45%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform .52s cubic-bezier(.16, 1, .3, 1);
}
.button:hover, button:not(:disabled):hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 95, 173, .26);
}
.button:hover::before, button:not(:disabled):hover::before {
  transform: translateX(120%);
}
.button span[aria-hidden="true"], button span[aria-hidden="true"],
.button svg, button svg {
  position: relative;
  z-index: 1;
  transition: transform .32s cubic-bezier(.16, 1, .3, 1);
}
.button:hover span[aria-hidden="true"], button:not(:disabled):hover span[aria-hidden="true"],
.button:hover svg, button:not(:disabled):hover svg {
  transform: translateX(4px);
}
.button.secondary {
  background: transparent;
  color: var(--blue);
  box-shadow: none;
}
.button.secondary:hover, button.secondary:not(:disabled):hover {
  background: rgba(7,95,173,.07);
  box-shadow: 0 12px 26px rgba(18, 49, 82, .1);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    linear-gradient(90deg, #fff 0%, #fff 48%, rgba(239,247,253,.68) 100%),
    radial-gradient(circle at 80% 30%, rgba(7,95,173,.08), transparent 34%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(7,95,173,.12) 1px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .38;
  mask-image: radial-gradient(ellipse at 72% 42%, #000 0 28%, transparent 70%);
  pointer-events: none;
}
.hero-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .9;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: center;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 {
  max-width: 620px;
  font-size: clamp(3rem, 5vw, 4.55rem);
  font-weight: 850;
  overflow-wrap: anywhere;
}
h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 820;
}
h3 { font-size: 1.35rem; font-weight: 800; }
.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.65;
  margin: 28px 0 32px;
}
.actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.point svg, .service svg, .resource-icon {
  width: 38px;
  height: 38px;
  color: var(--blue);
}
.point strong { display: block; margin-top: 12px; font-size: .95rem; }
.point span { display: block; margin-top: 4px; color: var(--muted); font-size: .84rem; line-height: 1.45; }
.hero-team-photo {
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}
.hero-team-photo img {
  display: block;
  width: 100%;
  min-height: 520px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center bottom;
}
.scan-section {
  padding: 74px 0 82px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.scan-section-inner {
  display: grid;
  place-items: center;
}
.security-radar {
  position: relative;
  width: min(100%, 660px);
  min-height: 560px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 18px 24px 0;
  background: transparent;
}
.radar-scope {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(7,95,173,.1), rgba(7,95,173,.1)) center / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(7,95,173,.1), rgba(7,95,173,.1)) center / 1px 100% no-repeat,
    repeating-radial-gradient(circle at center, transparent 0 23.5%, rgba(7,95,173,.16) 24% 24.5%, transparent 25% 48.5%, rgba(7,95,173,.14) 49% 49.5%, transparent 50% 73.5%, rgba(7,95,173,.12) 74% 74.5%, transparent 75% 100%);
  overflow: hidden;
}
.radar-scope::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(7,95,173,.13);
}
.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 245deg, rgba(7,95,173,.28) 0deg, rgba(46,159,224,.18) 28deg, transparent 46deg 360deg);
  animation: radarSweep 4.8s linear infinite;
}
.radar-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #2e9fe0;
  box-shadow: 0 0 0 0 rgba(46,159,224,.28);
  animation: radarPing 2.8s ease-in-out infinite;
}
.radar-dot-a { top: 31%; right: 27%; }
.radar-dot-b { left: 27%; bottom: 30%; animation-delay: .7s; }
.radar-dot-c { right: 32%; bottom: 24%; opacity: .48; animation-delay: 1.3s; }
.radar-dot-d { left: 42%; top: 24%; opacity: .38; animation-delay: 2s; }
.radar-core {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #1f9bd6);
  box-shadow: 0 18px 36px rgba(7,95,173,.24);
}
.radar-core svg {
  width: 42px;
  height: 42px;
  stroke-width: 3;
}
.radar-status {
  margin-top: 18px;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  color: #5f7084;
}
.radar-status span {
  display: block;
  color: var(--blue);
  font-size: 1.03rem;
  font-weight: 800;
  text-transform: uppercase;
}
.radar-status p {
  margin: 16px 0 0;
  font-size: 1.08rem;
}
.radar-status strong {
  color: var(--blue);
  font-size: 1.18rem;
}
@keyframes radarSweep {
  to { transform: rotate(360deg); }
}
@keyframes radarPing {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46,159,224,.26); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(46,159,224,0); }
}
.ops-panel {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ops-card {
  min-height: 175px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: #fff;
}
.ops-card h3 { font-size: 1rem; margin-bottom: 16px; }
.status-line, .check-line, .ticket-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: .9rem;
  margin: 10px 0;
}
.dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; margin-right: 7px; background: var(--green); }
.dot.warn { background: #e0a923; }
.dot.alert { background: var(--red); }
.donut {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 78%, #e0a923 78% 86%, var(--red) 86% 89%, #e9f1f8 89%);
  position: relative;
  margin: 6px 0 18px;
}
.donut::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: #fff;
}
.ops-card.wide {
  grid-column: 1 / -1;
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.alert-text { color: var(--red); font-weight: 750; }
.section { padding: 84px 0; }
.section.soft { background: linear-gradient(180deg, var(--soft) 0%, #fff 100%); }
.section-head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 54px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
}
.service:last-child { border-right: 0; }
.service p, .plan p, .resource p, .process p { color: var(--muted); }
.services-page {
  padding: 0 0 82px;
  background: linear-gradient(180deg, #fff 0%, var(--soft) 48%, #fff 100%);
}
.services-hero {
  padding: 74px 0 50px;
  background:
    linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}
.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: center;
}
.services-hero h1 {
  max-width: 900px;
  font-size: clamp(3.1rem, 5vw, 5rem);
}
.services-hero .lead {
  max-width: 820px;
  margin-bottom: 28px;
}
.services-hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(18,49,82,.08);
}
.services-hero-panel strong {
  display: block;
  font-size: 4rem;
  line-height: .9;
  color: var(--blue);
}
.services-hero-panel span {
  display: block;
  margin: 8px 0 18px;
  color: var(--ink);
  font-weight: 800;
}
.services-hero-panel .footer-list {
  display: grid;
  gap: 8px;
}
.services-hero-panel .footer-list li {
  margin: 0;
  color: var(--muted);
}
.outcome-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 42px;
  align-items: start;
  padding: 26px 0 48px;
}
.summary-copy {
  max-width: 820px;
}
.summary-copy h2 {
  font-size: clamp(2.1rem, 3.3vw, 3.65rem);
}
.summary-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 22px 0 0;
}
.summary-points {
  display: grid;
  gap: 14px;
}
.summary-point {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(18,49,82,.07);
}
.summary-point span {
  color: var(--blue);
  font-weight: 850;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.summary-point p {
  color: var(--muted);
  margin: 10px 0 0;
}
.ai-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: 46px;
  align-items: center;
}
.ai-callout > div > p:not(.lead) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}
.third-nerd-panel {
  border: 1px solid rgba(7,95,173,.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(237,245,251,.88), #fff 64%),
    #fff;
  padding: 30px;
  box-shadow: 0 18px 48px rgba(18,49,82,.1);
}
.third-nerd-panel h3 {
  margin-bottom: 18px;
  color: var(--ink);
}
.third-nerd-panel li {
  color: var(--muted);
}
.packages-page {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 44%, #fff 100%);
}
.packages-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 68px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(135deg, #0f2a3c 0%, #123152 52%, #0b4d35 100%);
  background-size: 48px 48px, 48px 48px, auto;
  color: #fff;
}
.packages-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 56px;
  align-items: center;
}
.packages-hero .eyebrow {
  color: #9ed6b4;
}
.packages-hero h1 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(3rem, 5vw, 4.9rem);
}
.packages-hero .lead {
  max-width: 760px;
  color: #d8e8ef;
}
.packages-hero .button.secondary {
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.package-fit-panel {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  padding: 30px;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.package-fit-panel h2 {
  font-size: 1.55rem;
  margin-bottom: 18px;
  color: #fff;
}
.package-tier-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px 0;
}
.package-tier-rail span {
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: #d8e8ef;
  font-size: .86rem;
  font-weight: 850;
}
.package-tier-rail .active {
  background: #fff;
  color: #123152;
}
.package-fit-panel .footer-list li {
  color: #d8e8ef;
  margin: 12px 0;
}
.package-fit-panel strong { color: #fff; }
.package-explainer {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: start;
  padding: 12px 0 56px;
}
.package-explainer h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}
.package-explainer p {
  color: var(--muted);
  font-size: 1.06rem;
  margin-top: 18px;
}
.package-steps {
  display: grid;
  gap: 14px;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
  padding-bottom: 70px;
}
.package-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(18,49,82,.08);
}
.package-card.featured {
  border-color: rgba(7,95,173,.55);
  border-width: 2px;
  padding: 36px 34px;
  transform: scale(1.035);
  z-index: 1;
  box-shadow: 0 24px 64px rgba(7,95,173,.2);
}
.package-card-head h2 {
  font-size: 2.15rem;
}
.package-card-head p:not(.eyebrow) {
  color: var(--muted);
}
.package-lists {
  display: grid;
  gap: 22px;
  flex: 1;
}
.package-lists h3 {
  font-size: 1rem;
}
.muted-list li {
  color: var(--muted);
}
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(420px, 1.25fr);
  gap: 42px;
  align-items: start;
  padding-bottom: 82px;
}
.quote-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}
.quote-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}
.quote-form-card {
  padding: 34px;
  margin: 0;
}
.assessment-form-card {
  padding: 34px;
  margin-top: 36px;
}
.support-page {
  background: linear-gradient(180deg, var(--soft) 0%, #fff 42%, var(--soft) 100%);
}
.support-hero {
  padding: 74px 0 52px;
}
.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: center;
}
.support-hero h1 {
  max-width: 880px;
  font-size: clamp(3rem, 5vw, 4.9rem);
}
.support-hero .lead {
  max-width: 760px;
}
.support-contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(18,49,82,.08);
}
.support-contact-card h2 {
  font-size: 1.55rem;
}
.support-contact-card p,
.support-contact-card .footer-list li {
  color: var(--muted);
}
.support-contact-card strong { color: var(--ink); }
.support-routing {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(520px, 1.25fr);
  gap: 42px;
  align-items: start;
  padding: 10px 0 58px;
}
.support-routing-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}
.support-routing-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}
.support-severity-grid {
  display: grid;
  gap: 14px;
}
.support-severity {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(18,49,82,.07);
}
.support-severity span {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.support-severity h3 {
  margin-top: 8px;
}
.support-severity p {
  color: var(--muted);
  margin: 10px 0 0;
}
.support-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(420px, 1.25fr);
  gap: 42px;
  align-items: start;
  padding-bottom: 82px;
}
.support-form-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}
.support-form-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}
.support-form-card {
  padding: 34px;
  margin: 0;
}
.portal-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  background: var(--soft);
}
.portal-sidebar {
  border-right: 1px solid var(--line);
  background: #fff;
  padding: 30px 24px;
}
.portal-sidebar nav {
  display: grid;
  gap: 10px;
  margin: 32px 0;
}
.portal-sidebar nav a {
  color: var(--ink);
  font-weight: 750;
}
.portal-sidebar p {
  color: var(--muted);
  font-size: .9rem;
}
.portal-main {
  padding: 40px;
}
.portal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.portal-head h1 {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
}
.portal-head .lead {
  margin: 14px 0 0;
}
.portal-grid {
  display: grid;
  grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
}
.portal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(18,49,82,.08);
}
.portal-card h2 {
  font-size: 1.45rem;
}
.portal-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.portal-form {
  display: grid;
  gap: 16px;
}
.portal-list {
  display: grid;
  gap: 12px;
}
.portal-ticket {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
}
.portal-ticket strong {
  overflow-wrap: anywhere;
}
.portal-ticket span {
  color: var(--blue);
  font-weight: 800;
}
.portal-ticket small {
  grid-column: 1 / -1;
  color: var(--muted);
}
.muted,
.form-note {
  color: var(--muted);
}
.portal-form button:disabled {
  opacity: .62;
  cursor: wait;
}
.contact-page {
  background: #fff;
}
.contact-mast {
  padding: 58px 0 34px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff 0%, var(--soft) 100%);
}
.contact-mast-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
  gap: 54px;
  align-items: end;
}
.contact-mast h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 4.8rem);
}
.contact-mast-inner > p {
  color: var(--muted);
  font-size: 1.12rem;
  margin: 0 0 8px;
}
.contact-routing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.contact-route {
  min-height: 230px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
}
.contact-route:last-child { border-right: 0; }
.contact-route h2 {
  font-size: 1.55rem;
}
.contact-route p {
  color: var(--muted);
}
.contact-route a {
  font-weight: 850;
}
.contact-board {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 0;
  margin-top: 56px;
  margin-bottom: 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(18,49,82,.08);
}
.contact-methods {
  background: var(--ink);
  color: #dce7f2;
  padding: 32px;
}
.contact-methods > div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-methods > div:first-child { padding-top: 0; }
.contact-methods > div:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-methods span {
  display: block;
  margin-bottom: 8px;
  color: #8fbce8;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-methods a {
  color: #fff;
  font-weight: 800;
}
.contact-methods p {
  margin: 0;
  color: #c7d6e4;
}
.contact-message-form {
  padding: 34px;
  background: #fff;
}
.contact-message-form h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.services-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  padding: 44px 0 34px;
}
.services-overview h2 {
  max-width: 700px;
  font-size: clamp(2.1rem, 3.3vw, 3.45rem);
}
.services-overview p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 18px 0 0;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.overview-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.services-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
  padding-top: 26px;
}
.service-directory-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(18,49,82,.08);
}
.service-directory-body {
  padding: 28px;
}
.service-directory-card p { color: var(--muted); }
.service-directory-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.service-directory-heading p { margin: 0; }
.service-directory-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 6.6;
  object-fit: cover;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.service-directory-image.is-contained {
  object-fit: contain;
  padding: 28px;
}
.service-tile-grid {
  display: grid;
  gap: 14px;
}
.service-tile {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 114px;
  padding: 12px;
  border: 1px solid rgba(217,227,239,.86);
  border-radius: var(--radius);
  background: #fbfdff;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.service-tile:hover {
  border-color: rgba(7,95,173,.36);
  box-shadow: 0 10px 24px rgba(18,49,82,.08);
  transform: translateY(-1px);
}
.service-tile h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}
.service-tile p {
  margin: 7px 0 9px;
  font-size: .9rem;
  line-height: 1.45;
}
.service-link-thumb {
  width: 104px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--soft-2);
}
.service-link-thumb.is-contained {
  object-fit: contain;
  padding: 10px;
}
.text-link {
  font-size: .88rem;
  font-weight: 800;
}
.service-hero-image {
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.service-hero-image img {
  display: block;
  width: 100%;
  max-height: 460px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
.service-hero-image.is-contained img {
  object-fit: contain;
  padding: clamp(24px, 5vw, 54px);
  background: #fff;
}
.nerd4 {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  font-family: inherit;
}
.nerd4-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(7,95,173,.28);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(18,49,82,.16);
  cursor: pointer;
}
.nerd4-toggle span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}
.nerd4-toggle strong {
  font-size: .95rem;
}
.nerd4-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  display: grid;
  grid-template-rows: auto minmax(120px, 1fr) auto auto;
  width: min(340px, calc(100vw - 28px));
  max-height: min(510px, calc(100vh - 92px));
  overflow: hidden;
  border: 1px solid rgba(217,227,239,.92);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(18,49,82,.22);
}
.nerd4-panel[hidden] {
  display: none;
}
.nerd4-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #f7fbff;
}
.nerd4-head strong,
.nerd4-head span {
  display: block;
}
.nerd4-head span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .82rem;
}
.nerd4-close {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}
.nerd4-messages {
  display: grid;
  align-content: start;
  gap: 8px;
  overflow-y: auto;
  padding: 12px;
  background: #fbfdff;
}
.nerd4-message {
  max-width: 88%;
  padding: 9px 11px;
  border-radius: 10px;
  font-size: .92rem;
  line-height: 1.45;
  white-space: pre-wrap;
}
.nerd4-message.assistant {
  justify-self: start;
  background: #eef6ff;
  color: var(--ink);
}
.nerd4-message.user {
  justify-self: end;
  background: var(--ink);
  color: #fff;
}
.nerd4-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 10px 12px 7px;
}
.nerd4-form textarea {
  min-height: 46px;
  max-height: 120px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}
.nerd4-form button {
  align-self: end;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 850;
  padding: 0 14px;
  cursor: pointer;
}
.nerd4-form button:disabled {
  opacity: .58;
  cursor: wait;
}
.nerd4-note {
  margin: 0;
  padding: 0 12px 12px;
  color: var(--muted);
  font-size: .76rem;
}
.article-hero-image {
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.article-hero-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
.clean-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  color: var(--ink);
  font-size: .93rem;
}
.clean-list li { margin: 10px 0; }
.clean-list li::before { content: "✓"; color: var(--green); margin-right: 10px; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.outcome-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 34px;
  box-shadow: 0 12px 34px rgba(18,49,82,.08);
}
.outcome-card span {
  display: block;
  width: 46px;
  height: 6px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: var(--blue);
}
.outcome-card h3 {
  max-width: 280px;
  font-size: 1.55rem;
}
.outcome-card p {
  color: var(--muted);
  margin: 18px 0 0;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}
.plan, .resource, .content-shell, .form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(18,49,82,.08);
}
.plan {
  padding: 34px;
  position: relative;
}
.plan.featured { border-color: rgba(7,95,173,.55); }
.plan.featured::before {
  content: "Most popular";
  position: absolute;
  inset: 0 0 auto 0;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  border-radius: 7px 7px 0 0;
}
.plan.featured h3 { margin-top: 26px; }
.price { display: flex; align-items: baseline; gap: 6px; margin: 24px 0; }
.price strong { font-size: 2.15rem; line-height: 1; }
.price span { color: var(--muted); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.process-intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .55fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
}
.process-intro h2 {
  max-width: 760px;
}
.process-intro .lead {
  margin: 0;
  font-size: 1.02rem;
}
.process-intro a {
  white-space: nowrap;
  font-weight: 850;
}
.process-step {
  position: relative;
  min-height: 210px;
  padding: 70px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(18,49,82,.07);
}
.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  top: 24px;
  left: 24px;
}
.process-step p {
  margin-bottom: 0;
}
.resources-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.resource {
  overflow: hidden;
  min-height: 220px;
}
.resource-body { padding: 28px; }
.resource-image {
  display: block;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}
.resource-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.resource small { display: block; color: var(--blue); font-weight: 800; margin-bottom: 10px; }
.cta-band {
  padding: 48px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #06477f);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band p { margin: 10px 0 0; color: rgba(255,255,255,.82); }
.cta-band .button.secondary { color: #fff; border-color: rgba(255,255,255,.64); }
.site-footer {
  background: #172334;
  color: #dce7f2;
  padding: 52px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 34px;
}
.site-footer a { color: #dce7f2; }
.site-footer h3 { font-size: 1rem; margin-bottom: 16px; }
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-list li { margin: 8px 0; color: #b7c7d7; }
.footer-brand img { width: 64px; }
.copyright { margin-top: 42px; color: #aebdca; font-size: .9rem; }
.page-hero {
  padding: 70px 0 54px;
  background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.content-shell {
  padding: clamp(28px, 5vw, 62px);
  margin: -16px auto 70px;
}
.content-body h2, .content-body h3 { margin: 34px 0 12px; }
.content-body p { color: #334155; }
.content-body ul, .content-body ol { padding-left: 1.35rem; }
.content-body img { border-radius: var(--radius); margin: 18px 0; }
.content-body figure { margin: 24px 0; }
.content-body .wp-block-gallery,
.content-body .masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.content-body .wp-block-gallery figure,
.content-body .masonry-gallery figure { margin: 0; }
.content-body .wp-block-gallery img,
.content-body .masonry-gallery img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}
.content-body .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}
.offer-page {
  --offer-primary: #477e5e;
  --offer-secondary: #004712;
  --offer-accent: #9c9b9b;
  --offer-ink: #14201a;
  --offer-muted: #5d6b62;
  --offer-line: #d8ddd8;
  --offer-soft: #f5f7f4;
  min-height: 100vh;
  background: #fff;
  color: var(--offer-ink);
  font-family: var(--offer-font, Inter, Arial, sans-serif);
}
.offer-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.offer-hero {
  position: relative;
  overflow: hidden;
  padding: 26px 0 78px;
  border-bottom: 1px solid var(--offer-line);
  background:
    linear-gradient(90deg, rgba(71,126,94,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(71,126,94,.06) 1px, transparent 1px),
    #fff;
  background-size: 48px 48px;
}
.offer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  color: var(--offer-muted);
  font-size: .92rem;
}
.offer-3nerds {
  color: var(--offer-secondary);
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
}
.offer-nav-cta {
  color: var(--offer-secondary);
  font-weight: 850;
  text-decoration: none;
}
.offer-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  gap: 56px;
  align-items: center;
  padding-top: 64px;
}
.offer-hero-copy {
  display: grid;
  gap: 24px;
}
.offer-prospect-logo {
  max-width: 280px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}
.offer-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--offer-ink);
  font-size: 5.7rem;
  line-height: .93;
  letter-spacing: 0;
}
.offer-hero p {
  max-width: 710px;
  margin: 0;
  color: var(--offer-muted);
  font-size: 1.18rem;
  line-height: 1.7;
}
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.offer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--offer-secondary);
  border-radius: 4px;
  background: var(--offer-secondary);
  color: #fff;
  font-size: .92rem;
  font-weight: 850;
  text-decoration: none;
}
.offer-button.secondary {
  background: #fff;
  color: var(--offer-secondary);
}
.offer-snapshot {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--offer-line);
  border-top: 5px solid var(--offer-primary);
  border-radius: 6px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 20px 60px rgba(20,32,26,.09);
}
.offer-snapshot h2 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}
.offer-snapshot div {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--offer-line);
}
.offer-snapshot span,
.offer-evidence span,
.offer-timeline span {
  color: var(--offer-accent);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.offer-snapshot strong {
  color: var(--offer-ink);
  font-size: 1.25rem;
}
.offer-section {
  padding: 82px 0;
}
.offer-section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 32px;
}
.offer-section-head h2,
.offer-package h2,
.offer-questions h2,
.offer-final h2 {
  margin: 0;
  color: var(--offer-ink);
  font-size: 3rem;
  line-height: 1;
}
.offer-section-head p,
.offer-package p,
.offer-final p {
  margin: 0;
  color: var(--offer-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}
.offer-evidence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--offer-line);
  border-left: 1px solid var(--offer-line);
}
.offer-evidence article {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid var(--offer-line);
  border-bottom: 1px solid var(--offer-line);
  background: #fff;
}
.offer-evidence p {
  margin: 0;
  color: var(--offer-muted);
  line-height: 1.6;
}
.offer-plan-band {
  background: var(--offer-soft);
  border-block: 1px solid var(--offer-line);
}
.offer-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--offer-line);
  background: #fff;
}
.offer-timeline article {
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--offer-line);
}
.offer-timeline article:last-child {
  border-right: 0;
}
.offer-timeline h3 {
  margin: 0;
  color: var(--offer-secondary);
  font-size: 1.35rem;
}
.offer-timeline p {
  margin: 0;
  color: var(--offer-muted);
  line-height: 1.65;
}
.offer-package {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 46px;
  align-items: start;
  padding: 82px 0;
}
.offer-controls {
  display: grid;
  gap: 14px;
}
.offer-controls div {
  display: grid;
  gap: 6px;
  padding: 18px 0 18px 22px;
  border-left: 4px solid var(--offer-primary);
}
.offer-controls strong {
  color: var(--offer-ink);
  font-size: 1.04rem;
}
.offer-controls span {
  color: var(--offer-muted);
  line-height: 1.55;
}
.offer-questions {
  padding: 70px 0;
  border-top: 1px solid var(--offer-line);
}
.offer-questions ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 44px;
  margin: 28px 0 0;
  padding-left: 24px;
}
.offer-questions li {
  color: var(--offer-muted);
  line-height: 1.6;
}
.offer-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 76px;
  padding: 34px;
  border: 1px solid var(--offer-line);
  border-radius: 6px;
  background: var(--offer-secondary);
}
.offer-final h2,
.offer-final p {
  grid-column: 1;
  color: #fff;
}
.offer-final .offer-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  border-color: #fff;
  background: #fff;
  color: var(--offer-secondary);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--ink); font-size: .9rem; font-weight: 750; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted); font-size: .9rem; margin-top: 16px; }
.intro-panel {
  max-width: 780px;
  margin-bottom: 36px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.autogtm-page {
  background: linear-gradient(180deg, var(--soft) 0%, #fff 36%, var(--soft) 100%);
}
.admin-title-note {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
}
.autogtm-admin {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}
.autogtm-admin-command {
  display: grid;
  gap: 18px;
}
.autogtm-admin-command h2,
.autogtm-admin-steps h2 {
  font-size: 1.25rem;
}
.autogtm-admin-command p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
}
.autogtm-admin .autogtm-search {
  max-width: none;
  box-shadow: none;
}
.autogtm-admin .autogtm-status {
  margin: 0;
}
.autogtm-admin .autogtm-shell {
  grid-column: 1 / -1;
  padding: 10px 0 0;
}
.autogtm-admin .autogtm-card {
  box-shadow: 0 10px 28px rgba(18,49,82,.07);
}
.autogtm-hero {
  padding: 72px 0 54px;
  border-bottom: 1px solid rgba(217,227,239,.82);
}
.autogtm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 54px;
  align-items: center;
}
.autogtm-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5vw, 4.85rem);
}
.autogtm-hero .lead {
  max-width: 780px;
}
.autogtm-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 760px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(18,49,82,.1);
}
.autogtm-search input {
  min-height: 52px;
  border: 0;
  background: var(--soft);
  font-size: 1.02rem;
}
.autogtm-status {
  min-height: 28px;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}
.autogtm-panel,
.autogtm-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(18,49,82,.08);
}
.autogtm-panel {
  padding: 30px;
}
.autogtm-panel h2 {
  font-size: 1.7rem;
  margin-bottom: 22px;
}
.autogtm-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.autogtm-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 750;
}
.autogtm-steps span {
  width: 14px;
  height: 14px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.autogtm-steps li.active span {
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(7,95,173,.12);
}
.autogtm-steps li.done {
  color: var(--ink);
}
.autogtm-steps li.done span {
  border-color: var(--green);
  background: var(--green);
}
.autogtm-shell {
  padding: 44px 0 78px;
}
.autogtm-report-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.autogtm-report-head h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}
.autogtm-report-head p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 750;
}
.autogtm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.autogtm-actions .button,
.autogtm-actions button {
  min-height: 40px;
  padding: 0 14px;
  font-size: .84rem;
  box-shadow: none;
}
.autogtm-actions button:disabled,
.autogtm-search button:disabled {
  cursor: not-allowed;
  opacity: .62;
}
.autogtm-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr) minmax(280px, .9fr);
  gap: 18px;
  align-items: stretch;
}
.autogtm-card {
  min-height: 220px;
  padding: 26px;
}
.autogtm-card.wide {
  grid-column: 1 / -1;
}
.snapshot-card {
  grid-row: span 2;
}
.autogtm-card h3 {
  font-size: 1.08rem;
  margin-bottom: 16px;
}
.autogtm-card h4 {
  margin: 0 0 10px;
  font-size: .92rem;
}
.autogtm-card p,
.autogtm-card li,
.autogtm-card dd {
  color: var(--muted);
}
.autogtm-card ul {
  margin: 0;
  padding-left: 1.15rem;
}
.autogtm-card li {
  margin: 8px 0;
}
.autogtm-facts {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}
.autogtm-facts div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.autogtm-facts dt {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.autogtm-facts dd {
  margin: 6px 0 0;
}
.score-card strong {
  display: block;
  color: var(--blue);
  font-size: 4.8rem;
  line-height: .9;
  letter-spacing: 0;
}
.offer-card strong {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 4px;
  background: var(--soft-2);
  color: var(--blue);
  font-weight: 850;
}
.email-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.email-stack article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdff;
}
.autogtm-card pre {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #334155;
  font: inherit;
  font-size: .94rem;
  line-height: 1.55;
}
.text-brand {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
  text-decoration: none;
}
.public-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.public-nav a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.admin-auth,
.admin-layout {
  min-height: 100vh;
  background: var(--soft);
}
.admin-auth {
  display: grid;
  place-items: center;
  padding: 32px 18px;
}
.admin-auth-panel,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(18,49,82,.08);
}
.admin-auth-panel {
  width: min(100%, 480px);
  padding: 34px;
}
.admin-brand {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}
.admin-auth-panel h1,
.admin-title-row h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.admin-auth-panel p {
  color: var(--muted);
}
.admin-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.admin-form .field {
  display: grid;
  gap: 8px;
}
.admin-form label,
.select-label {
  color: var(--ink);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.admin-form textarea {
  resize: vertical;
}
.admin-error {
  padding: 12px 14px;
  border: 1px solid #fecaca;
  border-radius: 6px;
  background: #fff1f2;
  color: #9f1239 !important;
  font-weight: 800;
}
.admin-sso {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.admin-sso-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
}
.admin-sso-rule::before,
.admin-sso-rule::after {
  content: "";
  height: 1px;
  background: var(--line);
}
.microsoft-button {
  width: 100%;
  background: #111827;
  border-color: #111827;
  box-shadow: 0 10px 22px rgba(17,24,39,.14);
}
.admin-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: #fff;
}
.admin-sidebar nav {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}
.admin-sidebar nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.admin-sidebar nav a:hover {
  background: var(--soft);
}
.admin-sidebar p {
  color: var(--muted);
  font-size: .9rem;
}
.admin-main {
  width: min(100%, 1160px);
  padding: 44px;
}
.admin-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.admin-card {
  padding: 26px;
}
.admin-title-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.admin-table {
  display: grid;
}
.admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px 130px;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}
.admin-row:last-child {
  border-bottom: 0;
}
.admin-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}
.prospect-row {
  grid-template-columns: minmax(0, 1fr) 150px 90px 130px;
}
.admin-status {
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--soft-2);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}
.admin-status.published {
  background: rgba(25,135,84,.12);
  color: #146c43;
}
.prospect-brief-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.prospect-brief-summary div {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.prospect-brief-summary span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.prospect-brief-summary strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 1.25rem;
}
.prospect-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.prospect-brief-section {
  display: grid;
  gap: 14px;
}
.prospect-brief-section h2 {
  margin: 0;
  font-size: 1.25rem;
}
.prospect-brief-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}
.prospect-brief-section li,
.prospect-brief-section p {
  color: var(--muted);
  line-height: 1.6;
}
.prospect-brief-copy {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.prospect-brief-copy:first-of-type {
  padding-top: 0;
  border-top: 0;
}
.prospect-brief-copy h3 {
  margin: 0;
  font-size: 1rem;
}
.prospect-brief-pre {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #334155;
  font: inherit;
  font-size: .94rem;
  line-height: 1.55;
}
.prospect-offer-admin {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}
.prospect-offer-admin h2 {
  margin: 0 0 8px;
}
.prospect-offer-admin p {
  margin: 0;
  color: var(--muted);
}
.prospect-offer-links {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.prospect-offer-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  text-decoration: none;
}
.prospect-offer-links span {
  color: var(--muted);
  overflow-wrap: anywhere;
}
.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}
.checkbox-label input {
  width: auto;
}
.admin-delete-form {
  margin-top: 18px;
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.chatbot-admin-grid {
  display: grid;
  gap: 18px;
}
.admin-title-row.compact {
  margin-bottom: 18px;
}
.chatbot-row {
  grid-template-columns: minmax(0, 1fr) auto auto auto;
}
.row-actions a {
  font-weight: 850;
}
.chatbot-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.chatbot-review-actions form {
  margin-bottom: 0;
}
.chatbot-transcript {
  display: grid;
  gap: 14px;
}
.chatbot-transcript-message {
  max-width: 840px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdff;
}
.chatbot-transcript-message.assistant {
  border-color: rgba(7,95,173,.22);
  background: #eef6ff;
}
.chatbot-transcript-message header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.chatbot-transcript-message time {
  color: var(--muted);
  font-size: .82rem;
}
.chatbot-transcript-message p {
  margin: 0;
  white-space: pre-wrap;
}
.post-editor {
  margin-top: 0;
}
.admin-form-footer {
  display: grid;
  grid-template-columns: auto minmax(180px, 240px) auto;
  gap: 12px;
  align-items: center;
  justify-content: end;
}
.media-upload-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.media-upload-row input[type="file"] {
  min-height: 44px;
  padding: 9px;
}
.content-body img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 940px) {
  .header-inner { min-height: 72px; }
  .nav {
    position: absolute;
    top: 114px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .public-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 20px;
  }
  .nav-toggle {
    display: inline-flex;
    width: 44px;
    min-height: 44px;
    padding: 0;
    box-shadow: none;
  }
  .hero-grid, .footer-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .portal-layout,
  .portal-grid {
    grid-template-columns: 1fr;
  }
  .portal-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .portal-main {
    padding: 28px 20px;
  }
  .portal-head {
    display: grid;
  }
  .autogtm-admin {
    grid-template-columns: 1fr;
  }
  .process-grid,
  .ai-callout,
  .process-intro {
    grid-template-columns: 1fr;
  }
  .process-intro {
    gap: 14px;
    margin-bottom: 8px;
  }
  .process-intro .lead {
    max-width: 680px;
  }
  .process-step {
    min-height: 0;
  }
  .hero { padding-top: 48px; }
  .scan-section {
    padding: 62px 0 70px;
  }
  .security-radar {
    width: min(100%, 560px);
    min-height: 500px;
  }
  .ops-panel { grid-template-columns: 1fr; }
  .hero-team-photo img {
    min-height: 360px;
    aspect-ratio: 16 / 11;
  }
  .services-grid, .plans, .outcomes-grid, .resources-row, .hero-points {
    grid-template-columns: 1fr;
  }
  .packages-hero-grid,
  .package-explainer,
  .package-grid,
  .quote-layout,
  .support-hero-grid,
  .support-routing,
  .support-form-layout,
  .contact-mast-inner,
  .contact-routing,
  .contact-board,
  .autogtm-hero-grid,
  .autogtm-report-head,
  .autogtm-dashboard,
  .email-stack {
    grid-template-columns: 1fr;
  }
  .offer-hero-grid,
  .offer-package,
  .offer-final,
  .offer-evidence,
  .offer-timeline {
    grid-template-columns: 1fr;
  }
  .offer-timeline article {
    border-right: 0;
    border-bottom: 1px solid var(--offer-line);
  }
  .offer-timeline article:last-child {
    border-bottom: 0;
  }
  .offer-hero h1 {
    font-size: 4.25rem;
  }
  .offer-section-head h2,
  .offer-package h2,
  .offer-questions h2,
  .offer-final h2 {
    font-size: 2.65rem;
  }
  .offer-final h2,
  .offer-final p,
  .offer-final .offer-button {
    grid-column: auto;
    grid-row: auto;
  }
  .autogtm-actions { justify-content: flex-start; }
  .snapshot-card { grid-row: auto; }
  .contact-route {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .contact-route:last-child { border-bottom: 0; }
  .contact-board { margin-top: 42px; }
  .packages-hero { padding: 48px 0 34px; }
  .support-hero { padding: 48px 0 34px; }
  .package-explainer { padding-bottom: 42px; }
  .support-routing { padding-bottom: 42px; }
  .package-grid { padding-bottom: 52px; }
  .package-card.featured {
    transform: none;
  }
  .services-page { padding-bottom: 62px; }
  .services-hero { padding: 48px 0 30px; }
  .services-hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .outcome-summary {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px 0 34px;
  }
  .services-hero-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 18px;
    align-items: center;
  }
  .services-hero-panel .footer-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 18px;
  }
  .services-overview {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 34px 0 26px;
  }
  .overview-actions { justify-content: flex-start; }
  .services-directory { grid-template-columns: 1fr; }
  .service { border-right: 0; border-bottom: 1px solid var(--line); }
  .service:last-child { border-bottom: 0; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .autogtm-hero { padding: 52px 0 38px; }
}

@media (max-width: 760px) {
  .public-topbar-inner {
    min-height: 38px;
    gap: 10px;
  }
  .public-topbar-left {
    gap: 0;
    font-size: .72rem;
  }
  .topbar-time,
  .topbar-email {
    display: none !important;
  }
  .public-topbar-right {
    gap: 9px;
  }
  .topbar-social {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { top: 110px; }
  .topbar-social {
    display: none;
  }
  .topbar-portal {
    font-size: .72rem;
  }
  h1 { font-size: 2.75rem; }
  .section { padding: 62px 0; }
  .hero-grid { gap: 38px; }
  .scan-section { padding: 48px 0 56px; }
  .security-radar {
    width: 100%;
    min-height: 380px;
    padding: 8px 0 0;
  }
  .radar-scope {
    width: min(100%, 286px);
  }
  .radar-core {
    width: 82px;
    height: 82px;
    border-radius: 20px;
  }
  .hero-team-photo img { min-height: 240px; }
  .brand img { height: 46px; }
  .header-inner { gap: 10px; }
  .header-inner > .button {
    width: auto;
    min-height: 44px;
    padding: 0 14px;
    font-size: .86rem;
  }
  .actions .button { width: 100%; }
  .actions { width: 100%; }
  .autogtm-search {
    grid-template-columns: 1fr;
  }
  .autogtm-search button,
  .autogtm-actions button {
    width: 100%;
  }
  .autogtm-panel {
    padding: 22px;
  }
  .autogtm-card {
    min-height: 0;
    padding: 22px;
  }
  .score-card strong {
    font-size: 4rem;
  }
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .admin-sidebar nav {
    display: flex;
    flex-wrap: wrap;
  }
  .admin-main {
    padding: 26px 18px;
  }
  .admin-title-row,
  .admin-title-actions,
  .admin-form-footer,
  .media-upload-row {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .admin-row {
    grid-template-columns: 1fr;
  }
  .prospect-row,
  .prospect-brief-summary,
  .prospect-brief-grid,
  .prospect-offer-admin {
    grid-template-columns: 1fr;
  }
  .offer-shell {
    width: min(100% - 28px, 1120px);
  }
  .offer-hero {
    padding: 18px 0 48px;
  }
  .offer-nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .offer-hero-grid {
    gap: 32px;
    padding-top: 34px;
  }
  .offer-hero h1 {
    font-size: 2.75rem;
  }
  .offer-section,
  .offer-package,
  .offer-questions {
    padding: 52px 0;
  }
  .offer-questions ol {
    grid-template-columns: 1fr;
  }
  .offer-final {
    padding: 24px;
  }
  .offer-actions .offer-button,
  .offer-final .offer-button {
    width: 100%;
  }
  .services-hero { padding: 42px 0 24px; }
  .services-hero h1 { font-size: 2.45rem; }
  .services-hero .lead { margin: 18px 0 22px; }
  .services-hero-panel { display: none; }
  .services-hero-panel strong { font-size: 3.2rem; }
  .summary-copy h2 { font-size: 2rem; }
  .summary-copy p { font-size: 1rem; }
  .summary-point { padding: 18px; }
  .packages-hero h1 { font-size: 2.55rem; }
  .support-hero h1 { font-size: 2.45rem; }
  .contact-mast { padding: 42px 0 28px; }
  .contact-mast h1 { font-size: 2.55rem; }
  .contact-route { min-height: 0; padding: 26px 22px; }
  .contact-methods,
  .contact-message-form { padding: 24px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .package-fit-panel,
  .package-card,
  .quote-form-card,
  .assessment-form-card,
  .support-contact-card,
  .support-form-card { padding: 22px; }
  .services-overview h2 { font-size: 2.2rem; }
  .overview-actions,
  .overview-actions .button { width: 100%; }
  .services-directory { padding-top: 24px; }
  .service-directory-body { padding: 22px; }
  .service-directory-image { aspect-ratio: 16 / 8.8; }
  .service-tile {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 13px;
    min-height: 0;
  }
  .service-link-thumb {
    width: 82px;
    height: 76px;
  }
  .service-tile p { display: none; }
  .nerd4 {
    right: 12px;
    bottom: 12px;
  }
  .nerd4-panel {
    bottom: 56px;
    width: calc(100vw - 24px);
    max-height: min(560px, calc(100vh - 82px));
  }
  .nerd4-toggle strong { display: none; }
}
