:root {
  color-scheme: light;
  --navy: #0f172a;
  --navy-deep: #020617;
  --navy-mid: #1e3a5f;
  --accent: #0891b2;
  --accent-hover: #0e7490;
  --accent-bright: #22d3ee;
  --accent-fg: #ffffff;
  --accent-soft: rgba(8, 145, 178, 0.1);
  --accent-ring: rgba(8, 145, 178, 0.22);
  --line: rgba(6, 182, 212, 0.4);
  --bg: #f4f7fc;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --link: #0e7490;
  --shadow: 0 16px 48px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1140px;
  --font-sans: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

.section--dark {
  color-scheme: dark;
  --bg: transparent;
  --bg-elevated: rgba(255, 255, 255, 0.06);
  --surface: rgba(255, 255, 255, 0.07);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --link: #67e8f9;
  --shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  --accent-soft: rgba(34, 211, 238, 0.12);
  --accent-ring: rgba(34, 211, 238, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  position: relative;
}

.hero__bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 15%, transparent 72%);
  opacity: 0.5;
}

.bg-glow {
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.bg-glow--one {
  top: -140px;
  right: -60px;
  background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.35), transparent 68%);
}

.bg-glow--two {
  bottom: -160px;
  left: -80px;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.28), transparent 65%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  background: var(--surface);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
  border: 1px solid var(--border);
}

.skip-link:focus {
  top: 12px;
}

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

.section {
  padding: clamp(3.75rem, 7vw, 6.5rem) 0;
}

.section--compact {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.section--tint {
  background: linear-gradient(180deg, #eef2f7 0%, #f8fafc 100%);
  border-block: 1px solid var(--border);
}

.section__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-hover);
  margin: 0 0 0.65rem;
  font-weight: 600;
}

.section--dark .section__label {
  color: var(--accent-bright);
}

.section__head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.6vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  font-weight: 600;
}

.section__intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 62ch;
}

.link {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.link:hover {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(2, 6, 23, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), color 0.25s var(--ease-out);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --border: rgba(255, 255, 255, 0.1);
  --surface: rgba(255, 255, 255, 0.08);
}

.site-header.header--light,
.site-header[data-scrolled="true"] {
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --surface: #ffffff;
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 8px 32px rgba(15, 23, 42, 0.06);
}

.site-header .logo__text,
.site-header .site-nav a:not(.btn) {
  color: inherit;
}

.site-header .logo__tag {
  color: var(--muted-2);
}

.site-header .site-nav a:not(.btn) {
  color: var(--muted);
}

.site-header .site-nav a:not(.btn):hover {
  color: var(--text);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo__mark {
  width: 11px;
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 28px rgba(8, 145, 178, 0.35);
}

.logo__group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo__text {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.logo__tag {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  box-shadow: 0 -6px 0 var(--text), 0 6px 0 var(--text);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a:not(.btn) {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.94rem;
}

.site-nav a:not(.btn):hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease-out), filter 0.18s var(--ease-out), border-color 0.18s var(--ease-out),
    background 0.18s var(--ease-out);
}

.btn:active {
  transform: translateY(1px);
}

.btn--small {
  padding: 9px 16px;
  font-size: 0.86rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--accent-fg);
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 8px 24px rgba(8, 145, 178, 0.28);
}

.btn--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 12px 32px rgba(8, 145, 178, 0.35);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--border-strong);
  background: var(--accent-soft);
}

.section--dark .btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.section--dark .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--block {
  width: 100%;
}

.hero.section--dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  color: var(--text);
}

.hero {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  font-weight: 600;
}

.accent {
  background: linear-gradient(90deg, var(--accent-bright), #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--muted-2);
  margin: 0 0 0.85rem;
  font-weight: 600;
}

.hero__lead {
  margin: 0 0 1.65rem;
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.hero__trust {
  margin: 0 0 1.35rem;
  font-size: 0.9rem;
  color: var(--muted-2);
  max-width: 52ch;
}

.hero__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 0.55rem;
  font-size: 0.98rem;
}

.hero__bullets li {
  padding-left: 1.4rem;
  position: relative;
}

.hero__bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0.55em;
  background: var(--accent-bright);
  box-shadow: 0 0 0 2px var(--accent-ring);
}

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.75rem;
  text-align: center;
}

.stat__value {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.stat__label {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  color: var(--muted-2);
  line-height: 1.35;
}

.panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.panel__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.panel__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.panel__rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.1rem 0;
}

.facts {
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.facts dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  font-weight: 600;
}

.facts dd {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
}

.panel__channels {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.panel__channels:empty {
  display: none;
}

.pillars {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.pillars__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.pillars__list a {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out), background 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
}

.pillars__list a:hover {
  color: var(--accent-hover);
  border-color: var(--accent-ring);
  background: var(--accent-soft);
  box-shadow: 0 4px 16px rgba(8, 145, 178, 0.12);
}

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

.solution {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.solution:hover {
  border-color: var(--accent-ring);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.solution__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.solution__index {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-top: 0.35rem;
}

.solution__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-ring);
}

.solution__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-display);
  line-height: 1.25;
}

.solution__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.solution__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
  font-size: 0.94rem;
}

.solution__list li {
  margin: 0.3rem 0;
}

.solution__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.solution__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
}

.solution__link {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--link);
  text-decoration: none;
}

.solution__link:hover {
  color: var(--accent-hover);
}

.outcomes {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.outcomes__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.outcomes__grid li {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}

.outcomes__grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
  color: var(--text);
}

.outcomes__grid span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.portfolio-filter__btn {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s var(--ease-out), color 0.18s var(--ease-out), background 0.18s var(--ease-out);
}

.portfolio-filter__btn:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.portfolio-filter__btn.is-active {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: rgba(255, 255, 255, 0.12);
}

.portfolio-grid .case.is-hidden {
  display: none;
}

.cards {
  display: grid;
  gap: 1.15rem;
}

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

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

.card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem 1.35rem;
  overflow: hidden;
}

.card--lift::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}

.card--lift:hover::before {
  opacity: 1;
}

.card--lift:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1rem;
  border: 1px solid var(--accent-ring);
}

.card__title {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  font-weight: 600;
}

.card__text {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.card__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
  font-size: 0.95rem;
}

.card__list li {
  margin: 0.35rem 0;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.split__panels {
  display: grid;
  gap: 1rem;
}

.info-panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.35rem 1.35rem 1.2rem;
}

.info-panel--muted {
  background: var(--surface-2);
}

.info-panel__title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.info-panel__lede {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-ring);
}

.checklist--x li::before {
  background: transparent;
  border: 2px solid var(--muted-2);
  box-shadow: none;
  width: 10px;
  height: 10px;
  top: 0.52em;
}

.deliver-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.deliver-grid li {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.95rem;
  color: var(--muted);
}

.stack {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.06), var(--surface));
  box-shadow: var(--shadow);
}

.stack__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.stack__note {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 70ch;
}

.stack__tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stack__tags li {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
}

.timeline-pro {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}

.timeline-pro::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(var(--border-strong), transparent);
}

.timeline-pro__step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.15rem;
  padding: 0.35rem 0 1.35rem;
  align-items: start;
}

.timeline-pro__badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-fg);
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

.timeline-pro__body {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem 1.1rem;
}

.timeline-pro__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.timeline-pro__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.case {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.35rem;
  background: var(--surface-2);
}

.case--rich {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.case__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.case__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--accent-ring);
  color: var(--accent-hover);
  background: var(--accent-soft);
}

.pill--muted {
  color: var(--muted);
  border-color: var(--border);
}

.case__metrics {
  display: flex;
  gap: 1rem;
}

.case__metrics > div {
  text-align: right;
}

.case__metric-val {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.case__metric-lbl {
  display: block;
  font-size: 0.68rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case__title {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.case__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.case__note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted-2);
}

.quote {
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  max-width: 720px;
  border-left: 3px solid var(--accent);
  padding: 0.25rem 0 0.25rem 1.35rem;
}

.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45;
  color: var(--text);
}

.quote figcaption {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--muted-2);
}

.faq {
  display: grid;
  gap: 0.65rem;
}

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

.faq__item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.15rem 1rem 0.05rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

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

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0.85rem;
  font-weight: 700;
  color: var(--muted-2);
}

.faq__item[open] summary::after {
  content: "−";
  color: var(--accent);
}

.faq__item p {
  margin: 0 0 0.95rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-section.section--dark {
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 55%, #0c4a6e 100%);
  position: relative;
  overflow: hidden;
}

.cta-section {
  padding-bottom: clamp(4rem, 9vw, 7.5rem);
}

.cta {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

.cta__list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
  display: grid;
  gap: 0.45rem;
}

.cta__list li {
  padding-left: 1.2rem;
  position: relative;
}

.cta__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--accent);
}

.cta__direct {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 52ch;
}

.cta__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta__cal-wrap .btn {
  margin: 0;
}

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: var(--shadow);
}

.section--dark .form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.section--dark .form label {
  color: #cbd5e1;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted-2);
  margin-bottom: 0.85rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  padding: 11px 13px;
  font: inherit;
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}

.section--dark .form input,
.section--dark .form select,
.section--dark .form textarea {
  background: rgba(2, 6, 23, 0.35);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form textarea {
  resize: vertical;
  min-height: 140px;
}

.checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.checkbox input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.form__hint {
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  color: var(--muted-2);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 0 3rem;
  background: var(--navy-deep);
  color: #94a3b8;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --border: rgba(255, 255, 255, 0.08);
  --link: #67e8f9;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 1.25rem 2rem;
  align-items: center;
}

.footer__brand {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.footer__tag {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer__nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.footer__nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer__nav a:hover {
  color: var(--text);
}

.footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-self: end;
}

.footer__legal {
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .hero__grid,
  .cards--3,
  .cards--2,
  .split,
  .deliver-grid,
  .faq--two,
  .cta,
  .solutions,
  .outcomes,
  .outcomes__grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer__links {
    justify-self: start;
  }

  .case__metrics > div {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    --text: #0f172a;
    --muted: #475569;
    --border: rgba(15, 23, 42, 0.1);
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s var(--ease-out);
  }

  .site-nav.is-open {
    max-height: 420px;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 22px;
    gap: 0.25rem;
  }

  .site-nav a {
    padding: 10px 6px;
  }

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

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

  .timeline-pro::before {
    left: 17px;
  }

  .timeline-pro__step {
    grid-template-columns: 36px 1fr;
  }

  .timeline-pro__badge {
    width: 36px;
    height: 36px;
    font-size: 0.68rem;
  }
}

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

  .btn,
  .card--lift,
  .form input,
  .form select,
  .form textarea {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
