:root {
  --bg: #07111f;
  --bg-2: #0b1a2d;
  --surface: rgba(15, 31, 52, .78);
  --surface-strong: rgba(20, 42, 69, .92);
  --ink: #f5f9ff;
  --muted: #a9b8ca;
  --soft: #d8e6f4;
  --line: rgba(142, 178, 210, .22);
  --brand: #42b7dc;
  --brand-2: #2dd0a1;
  --accent: #f5c451;
  --danger: #ff7d7d;
  --shadow: 0 28px 70px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 8%, rgba(66, 183, 220, .22), transparent 34rem),
    radial-gradient(circle at 8% 22%, rgba(45, 208, 161, .12), transparent 26rem),
    linear-gradient(180deg, #06101c 0%, #081522 48%, #050b13 100%);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(142, 178, 210, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 178, 210, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 78%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(310px, 390px) 1fr minmax(310px, 390px);
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 3px clamp(20px, 5vw, 72px);
  background: rgba(6, 16, 28, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  isolation: isolate;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(66, 183, 220, .35),
    rgba(45, 208, 161, .5),
    rgba(66, 183, 220, .35),
    transparent
  );
  opacity: .65;
  pointer-events: none;
  animation: headerLine 5s ease-in-out infinite;
}
.site-header__bar {
  display: contents;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  grid-column: 1;
  color: #fff;
  transition: transform .22s ease, filter .22s ease;
}
.brand:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.brand img {
  width: 68px;
  height: 68px;
  filter: drop-shadow(0 0 24px rgba(66, 183, 220, .38));
  transition: filter .25s ease;
}
.brand:hover img {
  filter: drop-shadow(0 0 28px rgba(66, 183, 220, .52));
}
.brand-copy {
  display: grid;
  gap: 3px;
  line-height: 1.08;
}
.brand-copy strong {
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
  white-space: nowrap;
}
.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  grid-column: 2;
}
.site-nav a {
  position: relative;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  transition:
    color .22s ease,
    background .22s ease,
    border-color .22s ease,
    transform .22s ease,
    box-shadow .22s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s cubic-bezier(.22, 1, .36, 1);
  opacity: .9;
}
.site-nav a.active,
.site-nav a:hover {
  color: #fff;
  background: rgba(66, 183, 220, .1);
  border-color: rgba(66, 183, 220, .28);
}
.site-nav a:not(.nav-cta):hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(66, 183, 220, .12);
}
.site-nav a:not(.nav-cta):hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}
.site-nav a.nav-cta {
  overflow: hidden;
  padding: 8px 14px;
  color: var(--soft);
  background: rgba(45, 208, 161, .07);
  border-color: rgba(45, 208, 161, .28);
  font-weight: 800;
  box-shadow: none;
  animation: none;
}
.site-nav a.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .3) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform .65s ease;
  pointer-events: none;
  opacity: 0;
}
.site-nav a.nav-cta:hover {
  color: #05101d;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  border-color: transparent;
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 32px rgba(45, 208, 161, .34);
}
.site-nav a.nav-cta:hover::before {
  opacity: 1;
  transform: translateX(130%);
}
.site-nav a.nav-cta:hover::after {
  transform: scaleX(0);
}
.site-nav a.nav-cta.active {
  color: #fff;
  background: rgba(66, 183, 220, .1);
  border-color: rgba(66, 183, 220, .28);
  transform: none;
  filter: none;
  box-shadow: none;
}

@keyframes headerLine {
  0%, 100% { opacity: .4; }
  50% { opacity: .95; }
}

.mobile-tabbar { display: none; }

main {
  position: relative;
  overflow-x: clip;
  min-width: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .82s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0s),
    transform .82s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0s);
}
html:not(.js) .reveal {
  opacity: 1;
  transform: none;
}
.reveal.reveal--from-right {
  transform: translateX(32px);
}
html:not(.js) .reveal.reveal--from-right {
  transform: none;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.hero, .page-hero, .contact-hero, .section, .split, .band, .legal {
  width: min(1280px, calc(100% - clamp(32px, 5vw, 64px)));
  max-width: 100%;
  margin-inline: auto;
}
.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .92fr);
  align-items: center;
  gap: clamp(32px, 4vw, 52px);
  padding: clamp(36px, 5vw, 56px) 0 clamp(44px, 5vw, 68px);
}
.hero__copy {
  max-width: 680px;
  min-width: 0;
}
.hero__copy .eyebrow {
  animation: riseIn .7s cubic-bezier(.22, 1, .36, 1) both;
}
.hero__copy h1 {
  animation: riseIn .75s cubic-bezier(.22, 1, .36, 1) .08s both;
}
.hero__copy > p {
  animation: riseIn .75s cubic-bezier(.22, 1, .36, 1) .16s both;
}
.hero .actions {
  animation: riseIn .75s cubic-bezier(.22, 1, .36, 1) .24s both;
}
.hero .signal-row {
  animation: riseIn .8s cubic-bezier(.22, 1, .36, 1) .32s both;
}
.hero__copy h1 {
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.1;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
}
.hero p {
  margin-top: 18px;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.65;
}
.hero .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 3vw, 30px);
  max-width: 100%;
}
.hero .button {
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 12px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, filter .18s ease;
}
.hero .button--primary {
  box-shadow: 0 16px 34px rgba(45, 208, 161, .26);
}
.hero .button--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 20px 42px rgba(45, 208, 161, .34);
}
.hero .button--ghost {
  border-color: rgba(142, 178, 210, .28);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
}
.hero .button--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(66, 183, 220, .48);
  background: rgba(66, 183, 220, .1);
}
.hero .signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  max-width: 100%;
}
.hero .signal-row span {
  padding: 7px 14px;
  border: 1px solid rgba(142, 178, 210, .18);
  border-radius: 999px;
  background: rgba(12, 26, 44, .72);
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.hero__visual {
  position: relative;
  min-height: min(460px, 52vh);
  display: grid;
  place-items: center;
  padding: clamp(22px, 3vw, 34px);
  animation: formEnter .9s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(66, 183, 220, .24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 40%, rgba(66, 183, 220, .22), transparent 58%),
    radial-gradient(circle at 72% 18%, rgba(45, 208, 161, .12), transparent 42%),
    linear-gradient(180deg, rgba(11, 24, 42, .94), rgba(7, 14, 26, .82));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
  animation: surfaceGlow 5s ease-in-out infinite;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background-image:
    linear-gradient(rgba(142, 178, 210, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 178, 210, .06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 45%, #000 28%, transparent 74%);
  pointer-events: none;
  animation: formGridDrift 18s linear infinite;
}
.hero__image {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  filter: drop-shadow(0 22px 44px rgba(66, 183, 220, .32));
}
.metric-panel {
  position: absolute;
  z-index: 2;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid rgba(66, 183, 220, .32);
  border-radius: 10px;
  background: rgba(6, 14, 26, .9);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
  animation: fieldRise .65s cubic-bezier(.22, 1, .36, 1) both;
}
.metric-panel strong { display: block; font-size: 26px; color: #fff; line-height: 1; }
.metric-panel span { color: var(--muted); font-size: 12px; font-weight: 800; line-height: 1.35; }
.metric-panel--one { left: 4%; bottom: 18%; animation-delay: .48s; }
.metric-panel--two { right: 2%; top: 14%; animation-delay: .6s; }
h1, h2, h3 {
  margin: 0;
  font-family: Archivo, "Nunito Sans", Arial, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}
h1 { font-size: clamp(46px, 7vw, 88px); overflow-wrap: break-word; hyphens: manual; }
h2 { font-size: clamp(32px, 4vw, 54px); overflow-wrap: break-word; hyphens: manual; }
h3 { font-size: 21px; overflow-wrap: break-word; }
p { color: var(--muted); }
.hero p, .page-hero p, .contact-hero p, .band p { max-width: 690px; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--brand-2);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 1000;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; max-width: 100%; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  max-width: 100%;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.button--primary {
  position: relative;
  overflow: hidden;
  color: #05101d;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  box-shadow: 0 18px 38px rgba(45, 208, 161, .22);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .24) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform .65s ease;
  pointer-events: none;
}
.button--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 20px 42px rgba(45, 208, 161, .32);
}
.button--primary:hover::after {
  transform: translateX(130%);
}
.button--ghost {
  border-color: var(--line);
  color: var(--soft);
  background: rgba(255, 255, 255, .04);
}

.section { padding: clamp(36px, 5vw, 52px) 0; }
.section.media-section {
  padding: clamp(28px, 4vw, 40px) 0 clamp(36px, 4vw, 48px);
}
.section__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: clamp(22px, 3vw, 30px);
  max-width: 780px;
}
.section__heading .eyebrow {
  margin-bottom: 0;
}
.section__heading h2 {
  max-width: none;
  line-height: 1.14;
  text-wrap: balance;
}
.service-grid, .credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.section--credentials .credential-pyramid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto 56px auto 56px auto;
  column-gap: 16px;
  row-gap: 0;
  max-width: 1100px;
  margin-inline: auto;
  padding: 12px 0 8px;
}
.credential-spine {
  grid-column: 1 / -1;
  width: 100%;
  height: 56px;
  pointer-events: none;
}
.credential-spine svg {
  display: block;
  width: 100%;
  height: 100%;
}
.credential-spine path {
  fill: none;
  stroke: rgba(66, 183, 220, .62);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}
.credential-spine--pro {
  grid-row: 2;
}
.credential-spine--base {
  grid-row: 4;
}
.credential-spine--base path:first-of-type {
  stroke: rgba(45, 208, 161, .68);
}
.credential-badge {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-block: 10px;
  padding: 18px 16px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(15, 31, 52, .72), rgba(10, 22, 38, .55));
  border: 1px solid rgba(142, 178, 210, .18);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.credential-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 183, 220, .45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .28);
}
.credential-badge img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 8px;
}
.credential-badge__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 8px;
  transition: transform .2s ease, filter .2s ease;
}
.credential-badge__link:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 20px rgba(66, 183, 220, .28));
}
.credential-badge__link:focus-visible {
  outline: 3px solid rgba(66, 183, 220, .45);
  outline-offset: 4px;
}
.credential-badge__meta {
  display: grid;
  gap: 6px;
  width: 100%;
  justify-items: center;
  text-align: center;
}
.credential-badge__desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}
.credential-badge__code {
  color: var(--brand-2);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.credential-badge h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: var(--soft);
  font-weight: 800;
}
.credential-badge--sap {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: min(100%, 320px);
  padding-top: 8px;
}
.credential-badge--sap img { width: min(140px, 100%); }
.credential-badge--saa {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
}
.credential-badge--saa img { width: min(128px, 100%); }
.credential-badge--sysops {
  grid-column: 2;
  grid-row: 3;
  align-self: start;
}
.credential-badge--sysops img { width: min(128px, 100%); }
.credential-badge--developer {
  grid-column: 3;
  grid-row: 3;
  align-self: start;
}
.credential-badge--developer img { width: min(128px, 100%); }
.credential-badge--practitioner {
  grid-column: 2;
  grid-row: 5;
  justify-self: center;
  width: min(100%, 320px);
  padding-bottom: 8px;
}
.credential-badge--practitioner img { width: min(120px, 100%); }
.credential-badge--sap h3 { color: #fff; font-size: 15px; }
.section--credentials .section__heading {
  text-align: center;
  margin-inline: auto;
  max-width: none;
  width: 100%;
}
.section--credentials .section__heading h2 {
  text-wrap: nowrap;
  white-space: nowrap;
}
.service-grid article, .credential-grid article, .values article, .stack article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, border-left-color .2s ease;
}
.service-grid article {
  border-left: 3px solid rgba(45, 208, 161, .35);
}
.service-grid article h3 {
  margin: 0 0 10px;
  line-height: 1.25;
}
.service-grid article:hover, .credential-grid article:hover, .values article:hover, .stack article:hover {
  border-color: rgba(66, 183, 220, .5);
  transform: translateY(-2px);
}
.service-grid article:hover {
  border-left-color: var(--brand);
}
.service-grid p, .credential-grid p, .values p, .stack p, .legal p { margin-bottom: 0; }
.band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin-block: 26px 88px;
  padding: 36px;
  border: 1px solid rgba(66, 183, 220, .26);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .92), rgba(7, 17, 31, .68)),
    url("/static/img/contact-bg.png") center / cover;
  box-shadow: var(--shadow);
  animation: surfaceGlow 6s ease-in-out infinite;
}
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(142, 178, 210, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 178, 210, .05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
  opacity: .55;
  animation: formGridDrift 22s linear infinite;
}
.band > div,
.band .button {
  position: relative;
  z-index: 1;
}
.band > div {
  min-width: 0;
}
.band h2 {
  hyphens: none;
  text-wrap: balance;
}
.band .button {
  justify-self: end;
  flex-shrink: 0;
  width: max-content;
  max-width: none;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
}

.page-hero,
.contact-hero {
  padding: clamp(32px, 4vw, 52px) 0 clamp(40px, 5vw, 64px);
}
.page-hero h1 { max-width: 900px; }
.page-hero h1 {
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.12;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  padding: clamp(28px, 4vw, 40px) 0 clamp(32px, 4vw, 48px);
}
.split--intro {
  padding-top: clamp(32px, 4vw, 52px);
}
.split--intro h1 {
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.12;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  max-width: none;
}
.split--intro h2 {
  margin-top: 0;
  text-wrap: balance;
}
.split--intro .lead {
  max-width: none;
  margin-bottom: 0;
}
.intro-divider {
  margin: clamp(20px, 3vw, 28px) 0;
  border: 0;
  height: 1px;
  background: var(--line);
}
.split--intro .checklist {
  align-self: center;
  width: 100%;
  gap: 8px;
}
.split--intro:has(.checklist) {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1.2fr);
}
.split--intro:has(.values) {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1.2fr);
}
.split--intro .values {
  align-self: center;
  width: 100%;
  max-width: none;
  gap: 10px;
}
.values, .stack { display: grid; gap: 14px; }
.values {
  gap: 10px;
}
.values article {
  display: grid;
  gap: 6px;
  padding: 16px 18px 17px 20px;
  border-radius: 10px;
  border: 1px solid rgba(142, 178, 210, .16);
  border-left: 3px solid var(--brand-2);
  background: linear-gradient(135deg, rgba(15, 31, 52, .78), rgba(10, 22, 38, .58));
  box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
  backdrop-filter: blur(10px);
}
.values article:hover {
  border-color: rgba(66, 183, 220, .38);
  border-left-color: var(--brand);
  transform: translateY(-1px);
  transition: .18s ease;
}
.values article h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: #fff;
}
.values article p {
  font-size: 14px;
  line-height: 1.55;
}
.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
  align-content: start;
}
.checklist p {
  margin: 0;
  padding: 12px 14px 12px 16px;
  color: var(--soft);
  background: linear-gradient(135deg, rgba(15, 31, 52, .78), rgba(10, 22, 38, .58));
  border: 1px solid rgba(142, 178, 210, .16);
  border-left: 3px solid var(--brand-2);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}
.checklist p::before { content: "✓"; color: var(--brand-2); margin-right: 8px; font-weight: 1000; }
.media-section {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: center;
}
.media-section__visual {
  position: sticky;
  top: 96px;
  display: grid;
  place-items: center;
  min-height: min(420px, 70vh);
  padding: clamp(28px, 4vw, 40px);
  border-radius: 14px;
  border: 1px solid rgba(66, 183, 220, .24);
  background:
    radial-gradient(circle at 50% 40%, rgba(66, 183, 220, .2), transparent 58%),
    radial-gradient(circle at 20% 80%, rgba(45, 208, 161, .12), transparent 42%),
    linear-gradient(180deg, rgba(11, 24, 42, .94), rgba(7, 14, 26, .82));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
  overflow: hidden;
  animation: surfaceGlow 5s ease-in-out infinite;
}
.media-section__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(142, 178, 210, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 178, 210, .06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 45%, #000 25%, transparent 72%);
  pointer-events: none;
  animation: formGridDrift 18s linear infinite;
}
.media-section__visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  height: auto;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  filter: drop-shadow(0 18px 36px rgba(66, 183, 220, .28));
}
.media-section > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.media-section .eyebrow {
  margin-bottom: 12px;
}
.media-section h2 {
  margin-bottom: clamp(24px, 3vw, 32px);
  line-height: 1.14;
  hyphens: none;
  text-wrap: balance;
}
.stack {
  gap: 10px;
}
@media (min-width: 901px) {
  .media-section .stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
.media-section .stack article {
  padding: 14px 16px 15px 18px;
  border-radius: 10px;
  border: 1px solid rgba(142, 178, 210, .16);
  border-left: 3px solid var(--brand-2);
  background: linear-gradient(135deg, rgba(15, 31, 52, .78), rgba(10, 22, 38, .58));
  box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
}
.media-section .stack article h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
  color: #fff;
}
.media-section .stack article p {
  font-size: 13px;
  line-height: 1.55;
}
.stack article h3 {
  margin: 0 0 10px;
  line-height: 1.25;
}
.stack article p {
  line-height: 1.6;
}

.contact-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: auto;
}
@media (min-width: 901px) {
  .contact-hero__aside {
    padding-top: clamp(16px, 2.5vw, 36px);
  }
}
.contact-hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8%;
  width: min(560px, 52%);
  height: min(520px, 72%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 183, 220, .2), rgba(45, 208, 161, .08) 42%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
  animation: contactAura 9s ease-in-out infinite alternate;
}
.contact-hero__copy,
.contact-hero__aside,
.contact-form {
  position: relative;
  z-index: 1;
}
.contact-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 480px;
  justify-self: end;
}
.contact-hero > div:first-child,
.contact-hero__copy {
  min-width: 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
}
.contact-hero__copy .eyebrow {
  margin-bottom: 12px;
  animation: riseIn .7s cubic-bezier(.22, 1, .36, 1) both;
}
.contact-hero__copy h1 {
  animation: riseIn .75s cubic-bezier(.22, 1, .36, 1) .08s both;
}
.contact-hero__copy > p {
  margin: 0;
  line-height: 1.6;
  animation: riseIn .75s cubic-bezier(.22, 1, .36, 1) .16s both;
}
.contact-hero h1 {
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.12;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}
.contact-hero__copy > p strong {
  color: var(--soft);
  font-weight: 900;
}
.contact-note {
  position: relative;
  display: grid;
  gap: 4px;
  max-width: 520px;
  margin-top: 16px;
  padding: 14px 18px 14px 20px;
  border-left: 3px solid var(--brand-2);
  border-radius: 0 10px 10px 0;
  background: rgba(255,255,255,.045);
  animation: riseIn .8s cubic-bezier(.22, 1, .36, 1) .28s both;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.contact-note::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 12%;
  bottom: 12%;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  box-shadow: 0 0 18px rgba(45, 208, 161, .45);
  animation: noteAccentPulse 2.8s ease-in-out infinite;
}
.contact-note:hover {
  transform: translateX(4px);
  background: rgba(66, 183, 220, .06);
}
.contact-note strong { color: #fff; }
.contact-note span { color: var(--muted); }
.contact-meta {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.contact-meta__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-meta__card {
  display: grid;
  gap: 4px;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(142, 178, 210, .16);
  border-left: 3px solid var(--brand-2);
  border-radius: 0 10px 10px 0;
  background: linear-gradient(135deg, rgba(15, 31, 52, .78), rgba(10, 22, 38, .58));
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.contact-meta__card:hover {
  transform: translateX(4px);
  border-color: rgba(66, 183, 220, .32);
  background: rgba(66, 183, 220, .08);
}
.contact-meta__label {
  color: var(--brand-2);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-meta__card a,
.contact-meta__card span:last-child {
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}
.contact-meta__card a:hover { color: var(--brand); }
.contact-steps {
  padding: 16px 18px;
  border: 1px solid rgba(66, 183, 220, .22);
  border-radius: 10px;
  background: rgba(10, 22, 38, .55);
}
.contact-steps__title {
  margin: 0 0 10px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-steps__list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.contact-steps__list li + li { margin-top: 6px; }
.contact-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0 2px;
}
.contact-topics span {
  padding: 7px 14px;
  border: 1px solid rgba(142, 178, 210, .18);
  border-radius: 999px;
  background: rgba(12, 26, 44, .72);
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.contact-topics span:hover {
  transform: translateY(-2px);
  border-color: rgba(66, 183, 220, .38);
  background: rgba(66, 183, 220, .1);
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 2.5vw, 32px) clamp(22px, 2.5vw, 30px);
  margin-top: 0;
  background: rgba(10, 22, 38, .86);
  border: 1px solid rgba(66, 183, 220, .25);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
  animation: formEnter .9s cubic-bezier(.22, 1, .36, 1) .12s both, formGlow 5s ease-in-out 1.2s infinite;
}
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(142, 178, 210, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 178, 210, .05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 78%);
  pointer-events: none;
  opacity: .7;
  animation: formGridDrift 18s linear infinite;
}
.contact-form::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  z-index: 0;
  opacity: .55;
  background: conic-gradient(from 180deg, transparent, rgba(66, 183, 220, .14), rgba(45, 208, 161, .1), transparent 65%);
  pointer-events: none;
  animation: formSheen 7s linear infinite;
}
.contact-form > * {
  position: relative;
  z-index: 1;
}
.contact-alert {
  display: grid;
  gap: 3px;
  padding: 14px 15px;
  color: #062016;
  background: linear-gradient(135deg, rgba(45, 208, 161, .96), rgba(100, 230, 190, .92));
  border: 1px solid rgba(45, 208, 161, .9);
  border-radius: 8px;
  animation: alertPop .55s cubic-bezier(.22, 1, .36, 1) both;
}
.contact-alert strong { color: #03140e; }
.contact-alert span { color: #073321; font-weight: 800; }
.contact-form label {
  display: grid;
  gap: 5px;
  color: var(--soft);
  font-weight: 900;
  animation: fieldRise .6s cubic-bezier(.22, 1, .36, 1) both;
}
.contact-form label:nth-of-type(1) { animation-delay: .42s; }
.contact-form label:nth-of-type(2) { animation-delay: .5s; }
.contact-form label:nth-of-type(3) { animation-delay: .58s; }
.contact-form label:nth-of-type(4) { animation-delay: .66s; }
.contact-form input, .contact-form textarea {
  width: 100%;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(169,184,202,.28);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  resize: vertical;
  transition: border-color .22s ease, box-shadow .28s ease, background .22s ease, transform .22s ease;
}
.contact-form textarea {
  min-height: 96px;
  max-height: 200px;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(66, 183, 220, .72);
  box-shadow:
    0 0 0 3px rgba(66, 183, 220, .18),
    0 12px 28px rgba(66, 183, 220, .14);
}
.contact-form .button {
  position: relative;
  z-index: 1;
  min-height: 48px;
  margin-top: 2px;
  border-radius: 12px;
  animation: fieldRise .65s cubic-bezier(.22, 1, .36, 1) .78s both;
}
.contact-form .button:active {
  transform: translateY(0);
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes formEnter {
  from { opacity: 0; transform: translateX(32px) scale(.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes fieldRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes alertPop {
  from { opacity: 0; transform: scale(.96) translateY(-6px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes contactAura {
  from { transform: translate(0, 0) scale(1); opacity: .75; }
  to { transform: translate(-18px, 14px) scale(1.1); opacity: 1; }
}
@keyframes formGlow {
  0%, 100% {
    border-color: rgba(66, 183, 220, .22);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .38), 0 0 0 rgba(66, 183, 220, 0);
  }
  50% {
    border-color: rgba(66, 183, 220, .42);
    box-shadow: 0 32px 78px rgba(0, 0, 0, .42), 0 0 48px rgba(66, 183, 220, .12);
  }
}
@keyframes surfaceGlow {
  0%, 100% {
    border-color: rgba(66, 183, 220, .22);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
  }
  50% {
    border-color: rgba(66, 183, 220, .4);
    box-shadow: 0 28px 68px rgba(0, 0, 0, .32), 0 0 36px rgba(66, 183, 220, .1), inset 0 1px 0 rgba(255, 255, 255, .05);
  }
}
@keyframes formGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 32px 32px, 32px 32px; }
}
@keyframes formSheen {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes noteAccentPulse {
  0%, 100% { opacity: .75; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.15); }
}
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; }

.legal { max-width: 860px; padding: 0 0 84px; }
.legal h2 { margin-top: 30px; font-size: 28px; }

.site-footer {
  width: 100%;
  margin-top: 36px;
  padding: 0 clamp(20px, 5vw, 72px);
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(8, 21, 34, .96), rgba(5, 11, 19, 1)),
    radial-gradient(circle at 14% 0%, rgba(66, 183, 220, .18), transparent 30rem);
  border-top: 1px solid rgba(66, 183, 220, .18);
}
.site-footer img { width: 58px; }
.site-footer p { margin: 0; }
.site-footer a:hover { color: var(--brand); }
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
  width: 100%;
  padding: 34px 0 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: none;
  justify-self: start;
  text-align: left;
}
.footer-brand > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand img {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 24px rgba(66, 183, 220, .28));
}
.footer-brand strong, .footer-col strong {
  display: block;
  color: #fff;
  font-weight: 1000;
}
.footer-brand strong {
  margin: 0;
  line-height: 1.25;
}
.footer-col strong {
  margin: 0 0 8px;
  text-align: center;
}
.footer-tagline {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(142, 178, 210, .75);
}
.footer-desc {
  margin: 0;
  max-width: 360px;
  line-height: 1.4;
}
.footer-col {
  text-align: center;
  justify-self: center;
}
.footer-col nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
}
.footer-col a {
  color: var(--muted);
  white-space: nowrap;
}
.footer-contact {
  display: grid;
  gap: 8px;
  justify-self: end;
  justify-items: center;
  text-align: center;
}
.footer-contact strong {
  text-align: center;
}
.footer-contact a {
  word-break: break-word;
  color: var(--brand);
  font-weight: 800;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(142, 178, 210, .14);
  font-size: 14px;
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
  .site-header {
    display: block;
    min-height: auto;
    padding: max(4px, env(safe-area-inset-top)) clamp(16px, 4vw, 20px) 8px;
  }
  .site-header__bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .brand {
    grid-column: auto;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
  }
  .brand img {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    margin: -8px 0 -24px;
  }
  .brand-copy {
    display: grid;
    min-width: 0;
    align-items: center;
    text-align: center;
  }
  .brand-copy strong {
    display: none;
  }
  .brand-copy small {
    display: block;
    margin-top: 0;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--muted);
    white-space: normal;
    max-width: 280px;
  }
  .site-header .site-nav {
    display: none;
  }
  .mobile-tabbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    gap: 2px;
    padding:
      6px max(8px, env(safe-area-inset-left))
      max(8px, env(safe-area-inset-bottom))
      max(8px, env(safe-area-inset-right));
    background: rgba(5, 12, 22, .96);
    border-top: 1px solid rgba(66, 183, 220, .22);
    backdrop-filter: blur(18px);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, .35);
  }
  .mobile-tabbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 56px;
    padding: 6px 4px;
    border-radius: 12px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
    -webkit-tap-highlight-color: transparent;
    transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .mobile-tabbar__item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform .2s ease;
  }
  .mobile-tabbar__item.active {
    color: var(--brand-2);
    background: rgba(45, 208, 161, .1);
  }
  .mobile-tabbar__item.active svg {
    transform: translateY(-1px);
  }
  .mobile-tabbar__item:active {
    background: rgba(66, 183, 220, .12);
    transform: scale(.97);
  }
  .mobile-tabbar__item--cta {
    position: relative;
    overflow: hidden;
    min-height: 56px;
    margin-top: 0;
    padding-top: 6px;
    color: var(--brand-2);
    background: rgba(45, 208, 161, .1);
    border: 1px solid rgba(45, 208, 161, .24);
    box-shadow: none;
    animation: none;
  }
  .mobile-tabbar__item--cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
  }
  .mobile-tabbar__item--cta svg {
    position: relative;
    z-index: 1;
    stroke: var(--brand-2);
    color: var(--brand-2);
  }
  .mobile-tabbar__item--cta span {
    position: relative;
    z-index: 1;
    color: var(--brand-2);
    font-weight: 800;
  }
  .mobile-tabbar__item--cta.active {
    color: var(--brand-2);
    background: rgba(45, 208, 161, .1);
    border-color: rgba(45, 208, 161, .24);
    filter: none;
    transform: none;
  }
  .mobile-tabbar__item--cta:active {
    border-color: transparent;
    transform: scale(.97);
  }
  .mobile-tabbar__item--cta:active::before {
    opacity: 1;
  }
  .mobile-tabbar__item--cta:active svg,
  .mobile-tabbar__item--cta:active span {
    color: #05101d;
    stroke: #05101d;
  }
  .hero__copy {
    order: 2;
    width: 100%;
    max-width: 100%;
  }
  .hero .signal-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    margin-top: 22px;
    overflow: visible;
  }
  .hero .signal-row span {
    flex: 0 1 auto;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
    padding: 36px 0 52px;
    width: min(100% - 32px, 1280px);
    max-width: calc(100vw - 32px);
    min-width: 0;
  }
  .hero__visual {
    order: 1;
    min-height: auto;
    display: grid;
    grid-template-areas:
      "image image"
      "metric-a metric-b";
    gap: 12px;
    padding: 4px 0 8px;
  }
  .hero__visual::after { display: none; }
  .hero__visual::before {
    inset: 0;
    border-radius: 12px;
  }
  .hero__image {
    grid-area: image;
    max-width: min(100%, 380px);
    margin-inline: auto;
  }
  .metric-panel {
    position: relative;
    inset: auto;
    min-width: 0;
    width: auto;
    padding: 14px 16px;
  }
  .metric-panel strong { font-size: 26px; }
  .metric-panel--one { grid-area: metric-a; }
  .metric-panel--two { grid-area: metric-b; }
  .split, .media-section, .contact-hero { grid-template-columns: 1fr; min-height: auto; align-items: stretch; }
  .split--intro:has(.checklist),
  .split--intro:has(.values) {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .split--intro {
    gap: 24px;
  }
  .split--intro > div:first-child {
    min-width: 0;
  }
  .split--intro p,
  .media-section p,
  .values p,
  .stack p,
  .checklist p {
    text-wrap: pretty;
  }
  .contact-hero__aside {
    max-width: none;
    justify-self: stretch;
    padding-top: 0;
  }
  .media-section { gap: 28px; }
  .media-section__visual {
    position: static;
    min-height: auto;
    padding: 24px 20px;
  }
  .media-section__visual img {
    width: min(100%, 280px);
    margin-inline: auto;
  }
  .media-section h2 { margin-bottom: 22px; }
  .page-hero,
  .contact-hero {
    padding: 32px 0 40px;
  }
  .contact-hero {
    gap: 28px;
  }
  .contact-hero h1,
  .page-hero h1 {
    font-size: clamp(26px, 6vw, 34px);
    line-height: 1.14;
    text-wrap: pretty;
  }
  .section { padding: clamp(32px, 6vw, 40px) 0; }
  .section.media-section { padding: clamp(24px, 5vw, 32px) 0 clamp(28px, 5vw, 36px); }
  .split--intro h1 {
    font-size: clamp(26px, 6vw, 34px);
    line-height: 1.14;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }
  .split--intro h2,
  .media-section h2 {
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }
  .split--intro .lead {
    font-size: 16px;
    line-height: 1.6;
  }
  .section__heading { margin-bottom: 20px; }
  .section--credentials .section__heading h2 {
    text-wrap: pretty;
    white-space: normal;
  }
  .section--credentials .section__heading {
    align-items: center;
    text-align: center;
  }
  .section--credentials .section__heading::after {
    content: "";
    width: min(180px, 48vw);
    height: 1px;
    margin-top: 12px;
    background: linear-gradient(90deg, transparent, rgba(66, 183, 220, .7), rgba(45, 208, 161, .7), transparent);
  }
  .service-grid, .credential-grid { grid-template-columns: 1fr; }
  .section--credentials .credential-pyramid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
    max-width: 360px;
    padding-top: 0;
  }
  .credential-spine { display: none; }
  .credential-badge--sap { order: 1; }
  .credential-badge--saa { order: 2; }
  .credential-badge--sysops { order: 3; }
  .credential-badge--developer { order: 4; }
  .credential-badge--practitioner { order: 5; }
  .credential-badge,
  .credential-badge--sap,
  .credential-badge--saa,
  .credential-badge--sysops,
  .credential-badge--developer,
  .credential-badge--practitioner {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    width: auto;
    padding: 18px 16px;
  }
  .band {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 20px;
    margin-block: 20px 56px;
    padding: 28px 24px;
    border-radius: 12px;
  }
  .band h2 {
    max-width: none;
    text-wrap: pretty;
  }
  .band .button {
    justify-self: stretch;
    width: 100%;
    white-space: normal;
  }
  .footer-main {
    display: none;
  }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 0;
    padding: 12px 0 4px;
    text-align: center;
  }
  .footer-bottom__link { display: inline; font-size: 12px; }
  .site-footer {
    margin-top: 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .actions .button { min-height: 48px; }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }
  .hero, .page-hero, .contact-hero, .section, .split, .band, .legal {
    width: min(100% - 32px, 1280px);
    max-width: calc(100vw - 32px);
  }
  .site-footer {
    padding-inline: max(16px, env(safe-area-inset-left)) max(16px, env(safe-area-inset-right));
  }
  h1 {
    font-size: clamp(26px, 7.2vw, 36px);
    line-height: 1.12;
    letter-spacing: 0;
  }
  h2 {
    font-size: clamp(24px, 6vw, 30px);
    line-height: 1.14;
  }
  .button {
    padding-inline: 16px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }
  h3 { font-size: 19px; }
  .eyebrow { font-size: 11px; margin-bottom: 12px; }
  .hero { padding: 28px 0 44px; gap: 24px; }
  .hero p, .page-hero p, .contact-hero p { font-size: 15px; line-height: 1.6; }
  .actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
  }
  .actions .button {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    border-radius: 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .actions .button--ghost {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(142, 178, 210, .28);
  }
  .hero .signal-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }
  .hero .signal-row span {
    font-size: 11px;
    padding: 9px 10px;
    border-radius: 999px;
    line-height: 1.25;
  }
  .hero__visual { gap: 10px; }
  .hero__visual::before,
  .hero__visual::after { display: none; }
  .metric-panel strong { font-size: 22px; }
  .metric-panel span { font-size: 12px; }
  .service-grid article, .credential-grid article, .values article, .stack article {
    padding: 20px 18px;
  }
  .values,
  .stack {
    gap: 10px;
  }
  .values article,
  .media-section .stack article {
    padding: 16px;
  }
  .values article h3,
  .media-section .stack article h3 {
    font-size: 17px;
    line-height: 1.28;
  }
  .values article p,
  .media-section .stack article p {
    font-size: 14px;
    line-height: 1.55;
  }
  .checklist { grid-template-columns: 1fr; }
  .checklist p { padding: 13px 15px; font-size: 14px; line-height: 1.45; }
  .page-hero,
  .contact-hero {
    padding: 36px 0 40px;
  }
  .contact-hero { gap: 28px; }
  .split { padding: 32px 0 48px; gap: 28px; }
  .section { padding: clamp(28px, 6vw, 36px) 0; }
  .band {
    padding: 24px 20px;
    margin-block: 16px 44px;
  }
  .band .button {
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
  }
  .contact-note { margin-top: 14px; padding: 14px 16px; }
  .contact-meta { margin-top: 14px; gap: 12px; }
  .contact-meta__grid { grid-template-columns: 1fr; }
  .contact-steps { padding: 14px 16px; }
  .contact-topics span { font-size: 11px; padding: 8px 12px; }
  .contact-form {
    padding: 24px 20px;
    margin-top: 0;
    border-radius: 14px;
    gap: 14px;
    animation: riseIn .85s cubic-bezier(.22, 1, .36, 1) .12s both, formGlow 5s ease-in-out 1.2s infinite;
  }
  .contact-form input, .contact-form textarea {
    font-size: 16px;
    padding: 12px 14px;
    border-radius: 10px;
  }
  .contact-form textarea { min-height: 112px; }
  .contact-form .button {
    width: 100%;
    min-height: 48px;
    font-size: 12px;
    border-radius: 12px;
  }
  .footer-brand img { width: 52px; height: 52px; }
  .footer-bottom { font-size: 12px; line-height: 1.55; }
  .legal { padding-bottom: 56px; }
  .legal h2 { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-grid article:hover, .credential-grid article:hover,
  .values article:hover, .stack article:hover,
  .contact-meta__card:hover, .contact-topics span:hover {
    transform: none;
    transition: none;
  }
  .hero .button--primary:hover,
  .hero .button--ghost:hover,
  .button--primary:hover,
  .site-nav a:not(.nav-cta):hover,
  .site-nav a.nav-cta:hover,
  .brand:hover {
    transform: none;
    filter: none;
  }
  .site-header::after {
    animation: none;
  }
  .hero__copy .eyebrow,
  .hero__copy h1,
  .hero__copy > p,
  .hero .actions,
  .hero .signal-row,
  .hero__visual,
  .metric-panel,
  .contact-hero::before,
  .contact-hero__copy .eyebrow,
  .contact-hero__copy h1,
  .contact-hero__copy > p,
  .contact-note,
  .contact-form,
  .contact-form label,
  .contact-form .button,
  .contact-alert {
    animation: none;
  }
  .hero__visual::before,
  .hero__visual::after,
  .band,
  .band::after,
  .media-section__visual,
  .media-section__visual::before,
  .contact-form::before,
  .contact-form::after,
  .contact-note::before {
    animation: none;
  }
  .contact-note:hover,
  .contact-meta__card:hover {
    transform: none;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    transform: none;
  }
}
