@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/poppins-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/poppins-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy: #003a8c;
  --navy-deep: #002f72;
  --blue: #0074e0;
  --cyan: #00a2ff;
  --turquoise: #40e0d0;
  --ink: #222222;
  --muted: #4b5b70;
  --line: #c8d6e8;
  --line-strong: #9eb6d3;
  --soft: #f4f7fb;
  --blue-soft: #eaf3ff;
  --white: #ffffff;
  --shadow: 0 1rem 2.5rem rgb(0 47 114 / 0.1);
  --shadow-soft: 0 0.5rem 1.5rem rgb(0 47 114 / 0.08);
  --glass-border: rgb(255 255 255 / 0.78);
  --glass-fill: rgb(255 255 255 / 0.72);
  --radius: 0.75rem;
  --radius-small: 0.5rem;
  --wrap: 75rem;
  --header-height: 5.5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 0.2rem solid var(--navy);
  outline-offset: 0.2rem;
  box-shadow: 0 0 0 0.15rem var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0 0 1rem;
}

ul,
ol,
dl,
figure,
blockquote {
  margin: 0;
}

.wrap {
  width: min(calc(100% - 3rem), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  inset: 0 auto auto 1rem;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  translate: 0 -120%;
  border-radius: 0 0 var(--radius-small) var(--radius-small);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(0 58 140 / 0.12);
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 0.25rem 1rem rgb(0 47 114 / 0.04);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  flex: 0 0 auto;
}

.brand img {
  width: 13rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 2vw, 1.7rem);
}

.site-nav > a:not(.button) {
  position: relative;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 0.15rem;
  content: "";
  background: var(--cyan);
  scale: 0 1;
  transform-origin: left;
  transition: scale 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  scale: 1;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border: 2px solid var(--navy);
  border-radius: var(--radius-small);
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-0.1rem);
  box-shadow: var(--shadow-soft);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
}

.button-light {
  border-color: rgb(255 255 255 / 0.82);
  background: linear-gradient(145deg, rgb(255 255 255 / 0.96), rgb(226 241 255 / 0.78));
  color: var(--navy);
  box-shadow: inset 0 1px 0 var(--white), 0 0.7rem 1.8rem rgb(0 20 60 / 0.18);
  -webkit-backdrop-filter: blur(1rem) saturate(1.25);
  backdrop-filter: blur(1rem) saturate(1.25);
}

.button-light:hover {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #bde7ff;
}

.hero,
.subhero,
.legal-hero,
.contact-band,
.boundary-callout {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgb(0 162 255 / 0.22), transparent 28rem),
    linear-gradient(115deg, var(--navy-deep), var(--navy) 64%, #005bb8);
  color: var(--white);
}

.hero::before,
.subhero::before,
.contact-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image:
    linear-gradient(90deg, transparent 49.8%, rgb(255 255 255 / 0.09) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgb(255 255 255 / 0.07) 50%, transparent 50.2%);
  background-size: 10rem 10rem;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
  min-height: min(51rem, calc(100svh - var(--header-height)));
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.hero-home {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.98) 0%, rgb(255 255 255 / 0.94) 38%, rgb(246 251 255 / 0.62) 61%, rgb(221 239 255 / 0.03) 100%),
    url("/brand/hero-civic-architecture-v4.webp") center right / cover no-repeat;
  color: var(--ink);
}

.hero-home::before {
  display: block;
  opacity: 0.82;
  background: url("/brand/civic-signal-overlay.svg") center right / cover no-repeat;
  animation: civic-signal-breathe 9s ease-in-out infinite;
}

.hero-home .hero-grid {
  z-index: 1;
}

.hero-home .hero-copy h1 {
  color: var(--navy-deep);
}

.hero-home .hero-copy h1 span {
  color: var(--blue);
}

.hero-home .hero-lead,
.hero-home .trust-line {
  color: var(--muted);
}

.hero-home .trust-line strong {
  color: var(--navy);
}

.mobile-civic-visual {
  display: none;
}

.hero-ai-label {
  position: absolute;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 3;
}

.hero-ai-label summary {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero-ai-label summary::-webkit-details-marker {
  display: none;
}

.hero-ai-label summary:hover {
  transform: scale(1.06);
}

.hero-ai-label summary:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 0.16rem;
}

.hero-ai-label summary img {
  width: 2.75rem;
  height: 2.75rem;
}

.hero-ai-label div {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.6rem);
  width: max-content;
  max-width: min(18rem, calc(100vw - 2rem));
  padding: 0.65rem 0.8rem;
  border: 1px solid rgb(0 31 76 / 0.2);
  border-radius: var(--radius-small);
  background: rgb(255 255 255 / 0.94);
  box-shadow: var(--shadow-soft);
  color: var(--navy-deep);
  font-size: 0.82rem;
  line-height: 1.35;
  -webkit-backdrop-filter: blur(0.8rem);
  backdrop-filter: blur(0.8rem);
}

.hero-ai-label p {
  margin: 0;
}

@media (hover: hover) {
  .hero-ai-label:not([open]):hover > div,
  .hero-ai-label:not([open]):focus-within > div {
    display: block;
  }
}

.subhero::after {
  position: absolute;
  z-index: 0;
  inset: -0.75rem;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-repeat: no-repeat;
  animation: civic-signal-drift 12s ease-in-out infinite alternate;
}

.subhero-seminar::after {
  background-image:
    radial-gradient(circle at 78% 29%, rgb(64 224 208 / 0.9) 0 0.38rem, transparent 0.44rem),
    radial-gradient(circle at 91% 66%, rgb(83 181 255 / 0.9) 0 0.46rem, transparent 0.52rem),
    radial-gradient(circle at 82% 52%, transparent 0 8rem, rgb(189 231 255 / 0.48) 8.05rem 8.13rem, transparent 8.18rem),
    url("/brand/civic-signal-overlay.svg");
  background-position: center, center, center, 82% 47%;
  background-size: auto, auto, auto, max(66rem, 100%) auto;
}

.subhero-impulse::after {
  background-image:
    radial-gradient(circle at 86% 35%, rgb(64 224 208 / 0.92) 0 0.4rem, transparent 0.46rem),
    radial-gradient(circle at 73% 68%, rgb(83 181 255 / 0.9) 0 0.5rem, transparent 0.56rem),
    radial-gradient(circle at 82% 50%, transparent 0 5.5rem, rgb(189 231 255 / 0.48) 5.55rem 5.63rem, transparent 5.68rem 10.5rem, rgb(189 231 255 / 0.32) 10.55rem 10.63rem, transparent 10.68rem),
    url("/brand/civic-signal-overlay.svg");
  background-position: center, center, center, 96% 28%;
  background-size: auto, auto, auto, max(69rem, 104%) auto;
}

.subhero-consulting::after {
  background-image:
    radial-gradient(circle at 77% 30%, rgb(64 224 208 / 0.92) 0 0.38rem, transparent 0.44rem),
    radial-gradient(circle at 89% 72%, rgb(83 181 255 / 0.9) 0 0.48rem, transparent 0.54rem),
    linear-gradient(122deg, transparent 0 73%, rgb(189 231 255 / 0.32) 73.08% 73.16%, transparent 73.24%),
    url("/brand/civic-signal-overlay.svg");
  background-position: center, center, center, 72% 72%;
  background-size: auto, auto, auto, max(72rem, 108%) auto;
}

@keyframes civic-signal-breathe {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 0.88;
  }
}

@keyframes civic-signal-drift {
  from {
    translate: 0 0;
  }

  to {
    translate: -0.45rem 0.3rem;
  }
}

.hero:not(.hero-home) .hero-copy h1,
.subhero h1,
.legal-hero h1,
.contact-band h2,
.boundary-callout h2 {
  color: var(--white);
}

.hero-lead {
  max-width: 42rem;
  margin-top: 1.75rem;
  color: #e9f4ff;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.6;
}

.proof-chip {
  width: fit-content;
  max-width: 42rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.08rem 0.75rem;
  align-items: center;
  margin: 1.25rem 0 0;
  padding: 0.8rem 1rem;
  border: 1px solid rgb(255 255 255 / 0.75);
  border-radius: var(--radius-small);
  background: linear-gradient(135deg, var(--navy-deep), var(--blue));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.2), 0 0.8rem 2rem rgb(0 58 140 / 0.2);
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.45;
}

.proof-chip::before {
  grid-row: 1 / 3;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.48);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.14);
  color: var(--white);
  content: "✓";
  font-size: 1rem;
  font-weight: 800;
}

.proof-chip strong {
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.text-link,
.card-link,
.comparison-grid article > a,
.next-step a {
  min-height: 2.75rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.95rem;
  border: 1px solid rgb(76 132 194 / 0.3);
  border-radius: 999px;
  background: linear-gradient(145deg, rgb(255 255 255 / 0.9), rgb(227 241 255 / 0.68));
  box-shadow: inset 0 1px 0 var(--glass-border), 0 0.45rem 1.25rem rgb(0 47 114 / 0.1);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  -webkit-backdrop-filter: blur(0.9rem) saturate(1.2);
  backdrop-filter: blur(0.9rem) saturate(1.2);
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.text-link:hover,
.card-link:hover,
.comparison-grid article > a:hover,
.next-step a:hover {
  border-color: rgb(0 116 224 / 0.55);
  background: linear-gradient(145deg, var(--white), #d9edff);
  color: var(--navy-deep);
  transform: translateY(-0.1rem);
  box-shadow: inset 0 1px 0 var(--white), 0 0.7rem 1.6rem rgb(0 47 114 / 0.15);
}

.text-link-light {
  color: var(--white);
}

.text-link-light:hover {
  color: #bde7ff;
}

.trust-line {
  display: grid;
  gap: 0.1rem;
  margin-top: 2.25rem;
  padding-left: 1rem;
  border-left: 0.2rem solid var(--cyan);
  color: #d9eaff;
}

.trust-line strong {
  color: var(--white);
  font-size: 1.15rem;
}

.hero-paths {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid rgb(255 255 255 / 0.45);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgb(255 255 255 / 0.84), rgb(239 247 255 / 0.68));
  box-shadow: 0 1.5rem 4rem rgb(0 26 70 / 0.25);
  color: var(--ink);
}

.hero-paths h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.hero-paths ol {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.hero-paths a {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.05rem 0.8rem;
  min-height: 4.75rem;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--navy);
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, translate 160ms ease;
}

.hero-paths a:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  translate: 0.15rem 0;
}

.hero-paths a span {
  grid-row: 1 / 3;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-paths a strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.1rem;
}

.hero-paths a small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.section-soft,
.decision-section,
.testimonial-section {
  background:
    radial-gradient(circle at 88% 18%, rgb(0 162 255 / 0.13) 0 0.42rem, transparent 0.48rem),
    radial-gradient(circle at 93% 25%, rgb(64 224 208 / 0.16) 0 0.3rem, transparent 0.36rem),
    linear-gradient(135deg, #f8fbff 0%, #edf6ff 52%, #e4f1ff 100%);
}

.section-heading {
  max-width: 47rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.section-heading > p:last-child {
  max-width: 44rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading-compact {
  margin-bottom: 2rem;
}

.service-grid,
.comparison-grid,
.outcome-grid,
.topic-grid,
.process-grid,
.boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card,
.comparison-grid article,
.outcome-grid article,
.topic-grid li,
.process-grid li,
.boundary-grid article,
.result-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgb(255 255 255 / 0.94), rgb(242 248 255 / 0.78));
  box-shadow: inset 0 1px 0 var(--white);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.service-number,
.topic-grid span,
.process-grid span {
  display: inline-block;
  margin-bottom: 1.3rem;
  color: var(--blue);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.card-kicker {
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card > p:not(.card-kicker) {
  color: var(--muted);
}

.service-card dl {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}

.service-card dl div {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.service-card dt {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card dd {
  margin: 0.2rem 0 0;
  color: var(--ink);
  line-height: 1.5;
}

.card-link {
  margin-top: auto;
}

.decision-section {
  padding-block: clamp(4.5rem, 9vw, 7rem);
}

.decision-shell {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.78);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(1.25rem) saturate(1.15);
  backdrop-filter: blur(1.25rem) saturate(1.15);
}

.tab-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  background: #eef5ff;
}

.tab-list button {
  min-height: 3.5rem;
  padding: 0.8rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.tab-list button:hover {
  background: rgb(255 255 255 / 0.72);
}

.tab-list button[aria-selected="true"] {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.tab-panels {
  position: relative;
  min-height: 18rem;
  padding: clamp(1.75rem, 5vw, 3.5rem);
}

.tab-panels [role="tabpanel"] {
  max-width: 43rem;
}

.tab-panels h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.tab-panels p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.js .tab-panels [hidden] {
  display: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.testimonial {
  grid-column: span 4;
  display: flex;
  min-height: 13rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgb(255 255 255 / 0.94), rgb(239 247 255 / 0.8));
  box-shadow: var(--shadow-soft);
}

.testimonial-featured {
  grid-column: span 8;
  align-items: flex-end;
  background: var(--navy);
  color: var(--white);
}

.testimonial p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.testimonial-featured p {
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.45;
}

.profile-section {
  padding-block: clamp(4.5rem, 9vw, 7rem);
  background: linear-gradient(115deg, #eef5ff, #ffffff 60%);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.68fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.portrait-frame {
  overflow: hidden;
  max-width: 30rem;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.profile-grid h2 {
  margin-bottom: 1.5rem;
}

.profile-grid p {
  max-width: 45rem;
  color: var(--muted);
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.process-grid {
  padding: 0;
  list-style: none;
}

.process-grid li,
.topic-grid li {
  padding: 1.5rem;
}

.process-grid p,
.topic-grid p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.faq-section {
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item summary {
  position: relative;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 3.25rem 1.15rem 0;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span,
.faq-item summary span::after {
  position: absolute;
  width: 1rem;
  height: 0.12rem;
  content: "";
  background: var(--blue);
}

.faq-item summary span {
  right: 1rem;
}

.faq-item summary span::after {
  rotate: 90deg;
  transition: rotate 160ms ease;
}

.faq-item[open] summary span::after {
  rotate: 0deg;
}

.faq-item > div {
  max-width: 55rem;
  padding: 0 3.25rem 1.5rem 0;
  color: var(--muted);
}

.contact-band {
  padding-block: clamp(3.5rem, 7vw, 5rem);
}

.contact-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-inner > div {
  max-width: 47rem;
}

.contact-band h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.contact-band p:not(.eyebrow) {
  margin: 0.75rem 0 0;
  color: #dceeff;
}

.site-footer {
  padding-block: 3rem 1.5rem;
  background: #001f4c;
  color: #d5e4f6;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-main p {
  margin-top: 0.5rem;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.75rem 1.5rem;
}

.footer-main nav a {
  text-decoration: none;
}

.footer-main nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.footer-main a,
.footer-meta a,
.ai-disclosure summary {
  color: var(--white);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.22);
  font-size: 0.9rem;
}

.ai-disclosure {
  position: relative;
  margin-left: auto;
}

.ai-disclosure summary {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  list-style: none;
  transition: transform 160ms ease;
}

.ai-disclosure summary::-webkit-details-marker {
  display: none;
}

.ai-disclosure summary:hover {
  background: transparent;
  transform: scale(1.06);
}

.ai-disclosure summary:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 0.18rem;
}

.ai-disclosure summary img {
  width: 3rem;
  height: 3rem;
}

.ai-disclosure div {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  z-index: 5;
  width: min(23rem, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 0.35);
  border-radius: var(--radius-small);
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 1rem 2.5rem rgb(0 15 45 / 0.3);
  color: var(--ink);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

@media (hover: hover) {
  .ai-disclosure:not([open]):hover > div,
  .ai-disclosure:not([open]):focus-within > div {
    display: block;
  }
}

.ai-disclosure p {
  margin: 0;
}

.breadcrumbs {
  min-height: 3.25rem;
  display: flex;
  align-items: center;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  list-style: none;
}

.breadcrumb-separator {
  margin-right: 0.45rem;
  color: var(--line-strong);
}

.breadcrumbs a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.subhero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.65fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.subhero-grid > div > p:not(.eyebrow) {
  max-width: 48rem;
  margin: 1.5rem 0;
  color: #e3f1ff;
  font-size: 1.2rem;
}

.hero-facts {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.4);
  border-radius: var(--radius);
  background: rgb(0 34 85 / 0.35);
}

.hero-facts div {
  padding: 1.1rem 1.25rem;
}

.hero-facts div + div {
  border-top: 1px solid rgb(255 255 255 / 0.25);
}

.hero-facts dt {
  color: #bde7ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.25rem 0 0;
  color: var(--white);
  font-weight: 600;
  line-height: 1.5;
}

.comparison-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.comparison-grid .comparison-featured {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.comparison-grid .duration {
  min-height: 3.4rem;
  margin: 1rem 0;
  color: var(--navy);
  font-weight: 700;
}

.comparison-grid article > p:not(.card-kicker, .duration) {
  color: var(--muted);
}

.comparison-grid article > a {
  margin-top: auto;
}

.service-detail {
  padding-block: clamp(4.5rem, 9vw, 7rem);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
}

.detail-heading {
  align-self: start;
}

.detail-heading > p:last-child {
  margin-top: 1rem;
  color: var(--muted);
}

.detail-content {
  max-width: 49rem;
}

.detail-content h3 + p,
.detail-content h3 + ul {
  margin-top: 0.75rem;
}

.detail-content h3:not(:first-child) {
  margin-top: 2rem;
}

.detail-content > p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  position: absolute;
  top: 0.13rem;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 700;
}

.next-step {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.next-step strong {
  color: var(--blue);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-step a {
  margin-left: auto;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  margin-bottom: 3rem;
}

.split-heading > div:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.evidence-note {
  display: block;
  margin-top: 3rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid #8ab9e8;
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.evidence-note p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.boundary-note {
  max-width: 50rem;
  margin-top: 1.25rem;
  padding: 1.5rem;
  border-left: 0.2rem solid var(--cyan);
  background: var(--soft);
}

.boundary-note p:last-child {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.outcome-grid article {
  padding: 1.5rem;
}

.outcome-grid h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.outcome-grid article > p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
}

.topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.boundary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.boundary-grid article {
  padding: 1.5rem;
}

.boundary-grid p:not(.eyebrow) {
  margin-top: 0.75rem;
  color: var(--muted);
}

.feature-question {
  padding: 1.5rem;
  border-left: 0.2rem solid var(--cyan);
  background: var(--blue-soft);
  color: var(--navy) !important;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.result-box {
  max-width: 52rem;
  margin-left: auto;
  padding: 1.75rem;
}

.result-box .check-list {
  margin: 1rem 0;
}

.result-box p {
  margin: 0;
  color: var(--muted);
}

.boundary-callout {
  margin-top: 3rem;
  padding: clamp(2rem, 6vw, 3.75rem);
  border-radius: var(--radius);
}

.boundary-callout h2 {
  max-width: 48rem;
}

.boundary-callout p:not(.eyebrow) {
  max-width: 54rem;
  margin-top: 1rem;
  color: #e2f1ff;
}

.legal-hero {
  padding-block: clamp(3.5rem, 7vw, 5rem);
}

.legal-content {
  max-width: 52rem;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #34465e;
}

.legal-content code {
  padding: 0.15rem 0.35rem;
  border-radius: 0.25rem;
  background: var(--soft);
  color: var(--ink);
  font-size: 0.95em;
}

@media (max-width: 68rem) {
  :root {
    --header-height: 4.75rem;
  }

  .brand img {
    width: 11rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.82fr);
    gap: 2rem;
  }

  .site-nav {
    gap: 0.75rem;
  }

  .site-nav > a:not(.button) {
    font-size: 0.9rem;
  }

  .button-small {
    padding-inline: 0.75rem;
  }
}

@media (min-width: 56.01rem) and (max-height: 52rem) {
  .hero-grid {
    min-height: calc(100svh - var(--header-height));
    align-items: start;
    gap: 2rem;
    padding-block: 2rem 3rem;
  }

  .hero-home .hero-copy h1 {
    font-size: clamp(2.75rem, 4vw, 3rem);
  }

  .hero-lead {
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .proof-chip {
    margin-top: 0.7rem;
    padding: 0.45rem 0.65rem;
    font-size: 0.8rem;
  }

  .hero-actions,
  .trust-line {
    margin-top: 0.85rem;
  }

  .hero-paths {
    padding: 1.1rem;
  }

  .hero-paths h2 {
    font-size: 1.65rem;
  }

  .hero-paths ol {
    gap: 0.45rem;
    margin-top: 0.7rem;
  }

  .hero-paths a {
    min-height: 3.5rem;
    padding: 0.55rem 0.7rem;
  }

  .hero-paths a strong {
    font-size: 1rem;
  }

  .hero-paths a small {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}

@media (max-width: 56rem) {
  .wrap {
    width: min(calc(100% - 2rem), var(--wrap));
  }

  .js .menu-toggle {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small);
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    cursor: pointer;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    width: 1.25rem;
    height: 0.12rem;
    display: block;
    background: currentColor;
    content: "";
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::before {
    position: absolute;
    top: -0.38rem;
  }

  .menu-icon::after {
    position: absolute;
    top: 0.38rem;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .js .site-nav[hidden] {
    display: none;
  }

  .site-nav > a:not(.button) {
    min-height: 3.25rem;
    padding-inline: 0.75rem;
    font-size: 1rem;
  }

  .site-nav .button {
    margin-top: 0.5rem;
  }

  .hero-grid,
  .subhero-grid,
  .profile-grid,
  .detail-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-home {
    background: linear-gradient(180deg, var(--white) 0%, #f7fbff 68%, #eaf4ff 100%);
  }

  .hero-home::before {
    display: none;
  }

  .mobile-civic-visual {
    position: relative;
    min-height: clamp(10rem, 44vw, 13rem);
    display: block;
    overflow: hidden;
    border-top: 1px solid rgb(0 116 224 / 0.2);
    background:
      linear-gradient(180deg, rgb(234 244 255 / 0.12), rgb(0 58 140 / 0.18)),
      url("/brand/hero-civic-architecture-v4.webp") center 58% / cover no-repeat;
  }

  .mobile-civic-visual::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0.74;
    background: url("/brand/civic-signal-overlay.svg") center 58% / cover no-repeat;
    animation: civic-signal-drift 12s ease-in-out infinite alternate;
  }

  .hero-copy {
    max-width: 45rem;
  }

  .hero-paths {
    max-width: 45rem;
  }

  .service-grid,
  .comparison-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .decision-shell {
    grid-template-columns: 1fr;
  }

  .tab-list {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tab-list button {
    min-width: max-content;
    text-align: center;
  }

  .testimonial,
  .testimonial-featured {
    grid-column: span 6;
  }

  .topic-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portrait-frame {
    max-width: 24rem;
  }

  .result-box {
    margin-left: 0;
  }
}

@media (max-width: 42rem) {
  .hero-actions,
  .contact-inner,
  .footer-main,
  .footer-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-inner .button {
    width: 100%;
  }

  .service-grid,
  .topic-grid,
  .process-grid,
  .boundary-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .testimonial,
  .testimonial-featured {
    grid-column: auto;
    min-height: auto;
  }

  .footer-main nav {
    display: grid;
    justify-content: stretch;
  }

  .footer-main nav a {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }

  .footer-meta {
    display: flex;
  }

  .ai-disclosure summary {
    justify-content: flex-start;
  }

  .tab-panels {
    min-height: 21rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-home::before,
  .subhero::after,
  .mobile-civic-visual::after {
    animation: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .hero-paths,
  .decision-shell,
  .text-link,
  .card-link,
  .comparison-grid article > a,
  .next-step a,
  .hero-facts {
    background: var(--white);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-facts {
    background: var(--navy-deep);
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #334257;
    --line: #7f9bbc;
    --line-strong: #54779f;
  }

  .button,
  .service-card,
  .comparison-grid article,
  .outcome-grid article,
  .topic-grid li,
  .process-grid li {
    border-width: 2px;
  }
}

@media (forced-colors: active) {
  :root {
    --shadow: none;
    --shadow-soft: none;
  }

  .hero,
  .subhero,
  .legal-hero,
  .contact-band,
  .boundary-callout,
  .site-footer {
    background: Canvas;
    color: CanvasText;
  }

  .hero-copy h1,
  .subhero h1,
  .legal-hero h1,
  .contact-band h2,
  .boundary-callout h2,
  .eyebrow,
  .eyebrow-light,
  .hero-lead,
  .contact-band p:not(.eyebrow),
  .boundary-callout p:not(.eyebrow),
  .footer-brand,
  .footer-main a,
  .footer-meta a,
  .ai-disclosure summary {
    color: CanvasText;
  }

  .button {
    border: 2px solid ButtonText;
    background: ButtonFace;
    color: ButtonText;
    forced-color-adjust: auto;
  }

  .hero-paths,
  .service-card,
  .decision-shell,
  .testimonial,
  .evidence-note {
    border: 2px solid CanvasText;
    box-shadow: none;
  }

  .hero-home::before,
  .subhero::after,
  .mobile-civic-visual {
    display: none;
  }

  .site-nav > a[aria-current="page"] {
    text-decoration: underline;
  }
}

@media print {
  .site-header,
  .skip-link,
  .contact-band,
  .site-footer,
  .button,
  .hero-paths {
    display: none !important;
  }

  .mobile-civic-visual {
    display: none !important;
  }

  .hero-ai-label {
    display: none !important;
  }

  body {
    color: #000;
  }

  .hero,
  .subhero,
  .legal-hero,
  .section-soft,
  .decision-section,
  .testimonial-section {
    background: #fff;
    color: #000;
  }

  h1,
  h2,
  h3,
  .hero-copy h1,
  .subhero h1,
  .legal-hero h1 {
    color: #000;
  }

  a {
    color: #000;
  }
}
