:root {
  --ci-blue: #27318b;
  --ci-blue-dark: #171d5f;
  --ci-ink: #172033;
  --ci-muted: #5f6980;
  --ci-green: #49a942;
  --ci-yellow: #fdbb30;
  --ci-surface: #ffffff;
  --ci-soft: #f5f7fb;
  --ci-soft-blue: #eef3ff;
  --ci-border: #dbe2f0;
  --ci-shadow: 0 18px 45px rgba(23, 32, 51, 0.12);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ci-ink);
  background: var(--ci-surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

a:hover {
  color: var(--ci-green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.1rem;
  color: var(--ci-blue-dark);
  font-size: 3.75rem;
}

h2 {
  margin-bottom: 1rem;
  color: var(--ci-blue-dark);
  font-size: 2.35rem;
}

h3 {
  margin-bottom: 0.75rem;
  color: var(--ci-blue-dark);
  font-size: 1.22rem;
}

p {
  color: var(--ci-muted);
}

ul,
ol {
  margin-top: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow-container {
  width: min(100% - 40px, 820px);
}

.section-shell {
  padding: 88px 0;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ci-blue-dark);
  color: white;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 226, 240, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  color: var(--ci-ink);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ci-green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ci-border);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ci-blue-dark);
}

.hero {
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 70px;
  background:
    linear-gradient(90deg, rgba(73, 169, 66, 0.08) 0, rgba(73, 169, 66, 0.08) 34%, transparent 34%),
    var(--ci-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  max-width: 720px;
}

.hero-lede {
  max-width: 680px;
  color: var(--ci-ink);
  font-size: 1.24rem;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--ci-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0.75rem 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ci-blue);
  color: white;
}

.button-primary:hover {
  background: var(--ci-green);
  color: white;
}

.button-secondary {
  border-color: var(--ci-blue);
  background: white;
  color: var(--ci-blue);
}

.button-secondary:hover {
  border-color: var(--ci-green);
  color: var(--ci-green);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.75);
  color: white;
}

.button-light:hover {
  border-color: var(--ci-yellow);
  color: var(--ci-yellow);
}

.full-button {
  width: 100%;
}

.operations-panel {
  border: 1px solid rgba(39, 49, 139, 0.18);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--ci-shadow);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--ci-border);
  padding: 1.2rem;
}

.panel-header img {
  width: 52px;
  height: 52px;
}

.panel-header strong,
.panel-header span {
  display: block;
}

.panel-header span {
  color: var(--ci-muted);
  font-size: 0.9rem;
}

.signal-flow {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
}

.signal-step {
  position: relative;
  border: 1px solid var(--ci-border);
  border-left: 5px solid var(--ci-green);
  border-radius: var(--radius);
  padding: 1rem;
  background: #fbfcff;
}

.signal-step:nth-child(2) {
  border-left-color: var(--ci-yellow);
}

.signal-step:nth-child(3) {
  border-left-color: var(--ci-blue);
}

.step-kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ci-blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.signal-step strong {
  display: block;
  color: var(--ci-blue-dark);
  font-size: 1.1rem;
}

.signal-step p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.proof-band {
  border-top: 1px solid var(--ci-border);
  border-bottom: 1px solid var(--ci-border);
  background: var(--ci-blue-dark);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid div {
  min-height: 124px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.25rem;
}

.proof-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid span,
.proof-grid strong {
  display: block;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  font-weight: 700;
}

.proof-grid strong {
  margin-top: 0.3rem;
  color: white;
  font-size: 1.12rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.compact-heading {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 245px;
  border: 1px solid var(--ci-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: white;
}

.featured-card {
  grid-row: span 2;
  background: var(--ci-soft-blue);
}

.card-label {
  display: inline-flex;
  margin-bottom: 1.1rem;
  border-radius: 6px;
  background: white;
  color: var(--ci-blue);
  padding: 0.2rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 900;
}

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

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ci-ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--ci-green);
  content: ">";
}

.muted-section {
  background: var(--ci-soft);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.steps-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--ci-border);
  border-radius: var(--radius);
  background: white;
  padding: 1rem;
  counter-increment: steps;
}

.steps-list li::before {
  display: inline-grid;
  width: 52px;
  height: 52px;
  align-content: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--ci-blue);
  color: white;
  font-weight: 900;
  content: counter(steps, decimal-leading-zero);
}

.steps-list span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ci-blue-dark);
  font-weight: 900;
}

.steps-list p {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 48px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1.5rem;
}

.reason-grid div {
  border-top: 4px solid var(--ci-yellow);
  padding-top: 1rem;
}

.reason-grid div:nth-child(2),
.reason-grid div:nth-child(3) {
  border-top-color: var(--ci-green);
}

.product-section {
  background: var(--ci-blue-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
}

.product-copy h2,
.product-copy p {
  color: white;
}

.product-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.product-stack {
  display: grid;
  gap: 0.85rem;
}

.product-stack article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.product-stack span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ci-yellow);
  font-weight: 900;
}

.product-stack p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.about-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.about-mark {
  display: grid;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ci-border);
  border-radius: var(--radius);
  background: var(--ci-soft);
}

.about-mark img {
  width: 120px;
}

.contact-section {
  background: var(--ci-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.65fr);
  gap: 48px;
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--ci-border);
  border-radius: var(--radius);
  background: white;
  padding: 1.25rem;
  box-shadow: 0 10px 32px rgba(23, 32, 51, 0.08);
}

.contact-panel dl {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.25rem;
}

.contact-panel dt {
  color: var(--ci-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 0;
  color: var(--ci-ink);
  font-weight: 700;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--ci-border);
  background: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.footer-logo {
  width: 190px;
  margin-bottom: 0.8rem;
}

.footer-grid p {
  max-width: 440px;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
  justify-content: flex-end;
  font-weight: 800;
}

.footer-links a {
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  color: var(--ci-muted);
}

.policy-page h1 {
  font-size: 3rem;
}

.policy-page h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.policy-page p {
  color: var(--ci-ink);
}

@media (max-width: 980px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-grid,
  .approach-grid,
  .split-section,
  .product-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .featured-card {
    grid-row: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow-container {
    width: min(100% - 28px, var(--container));
  }

  .section-shell {
    padding: 64px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 180px;
  }

  .nav-toggle {
    display: inline-grid;
    align-content: center;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    align-items: stretch;
    border: 1px solid var(--ci-border);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--ci-shadow);
    padding: 0.7rem;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 0.75rem;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2,
  .policy-page h1 {
    font-size: 1.85rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

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

  .proof-grid,
  .service-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .steps-list li {
    grid-template-columns: 1fr;
  }
}
