:root {
  --logo-sky: #77bbdd;
  --logo-deep: #002244;
  --logo-mist: #ddeeff;

  --ink: #031525;
  --ink-2: #061e33;
  --ink-3: #0c2c48;
  --paper: #f5faff;
  --paper-2: #e7f2f9;
  --text: var(--logo-mist);
  --muted: #7da3bd;
  --muted-dark: #4e6579;
  --line: rgba(119, 187, 221, 0.2);
  --blue: var(--logo-sky);
  --blue-2: #4a96c4;
  --cyan: #a8d8ee;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 34, 68, 0.38);
  --blue-rgb: 119 187 221;
  --blue-2-rgb: 74 150 196;
  --cyan-rgb: 168 216 238;
  --blue-deep-rgb: 0 34 68;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(var(--blue-rgb) / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--blue-rgb) / 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 75%, transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--blue-2);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section-dark {
  color: var(--text);
  background:
    radial-gradient(circle at 78% 18%, rgba(var(--blue-rgb) / 0.22), transparent 28rem),
    radial-gradient(circle at 15% 78%, rgba(var(--blue-deep-rgb) / 0.32), transparent 27rem),
    linear-gradient(135deg, var(--ink), var(--logo-deep) 72%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  width: 100%;
  padding: 1.05rem clamp(1.2rem, 4vw, 4.5rem);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(2, 7, 17, 0.9), rgba(2, 7, 17, 0.34));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, background 220ms ease;
}

.nav-toggle {
  display: none;
  grid-column: 3;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.55rem;
  color: var(--white);
  font: inherit;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.45rem;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(var(--blue-rgb) / 0.16);
  border-color: rgba(var(--blue-rgb) / 0.45);
}

.nav-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 1.35rem;
  height: 1.1rem;
}

.nav-toggle-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

.site-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.site-nav .primary-nav {
  display: flex;
}

body.nav-open {
  overflow: auto;
}

.site-nav-label {
  display: none;
}

.site-header.is-scrolled {
  padding-block: 0.72rem;
  background: rgba(2, 7, 17, 0.93);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(2.35rem, 4.5vw, 2.85rem);
  max-width: min(17.5rem, 52vw);
}

.site-header.is-scrolled .brand-logo {
  height: clamp(2.1rem, 4vw, 2.55rem);
}

.site-footer .brand-logo {
  height: clamp(2.55rem, 5vw, 3.1rem);
  max-width: min(19rem, 72vw);
}

.primary-nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2.1rem);
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.primary-nav a,
.text-link {
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--cyan);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.82rem 1.24rem;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 42px rgba(var(--blue-rgb) / 0.28);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.34);
}

.header-cta:hover,
.button:hover,
.header-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(var(--cyan-rgb) / 0.9);
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 9.5rem 0 5.4rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, 0.96) 0%, rgba(2, 7, 17, 0.84) 34%, rgba(2, 7, 17, 0.28) 66%, rgba(2, 7, 17, 0.78) 100%),
    linear-gradient(to bottom, rgba(2, 7, 17, 0.34), rgba(2, 7, 17, 0.82)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    url("assets/inunison-technology-hero.png");
  background-position: center, center, center, center, center right;
  background-size: cover, cover, 64px 64px, 64px 64px, cover;
}

.hero::after {
  right: -12vw;
  bottom: -19rem;
  width: min(58vw, 820px);
  height: 42rem;
  background: radial-gradient(circle, rgba(var(--blue-rgb) / 0.24), transparent 66%);
  filter: blur(6px);
}

.hero-side-label {
  position: absolute;
  left: 1.2rem;
  top: 45%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-side-label::before,
.hero-side-label::after {
  display: block;
  width: 1px;
  height: 72px;
  margin: 1rem auto;
  content: "";
  background: linear-gradient(var(--blue), transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 620px;
  margin-bottom: 1.35rem;
  color: var(--white);
  font-size: clamp(4.5rem, 8.4vw, 8.65rem);
}

h1 span,
h2 span,
.final-cta span,
.partner h2 > span {
  color: var(--blue);
}

.hero-lede {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 700;
}

.hero-support {
  max-width: 565px;
  margin-bottom: 2rem;
  color: var(--muted);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  isolation: isolate;
}

.code-rain {
  position: absolute;
  inset: -4rem -2rem -3rem 6rem;
  z-index: -2;
  background:
    linear-gradient(110deg, transparent 0 20%, rgba(var(--blue-rgb) / 0.28) 22%, transparent 24% 100%),
    repeating-linear-gradient(100deg, rgba(var(--blue-rgb) / 0.1) 0 1px, transparent 1px 14px);
  transform: skewY(-5deg);
  filter: drop-shadow(0 0 22px rgba(var(--blue-rgb) / 0.48));
}

.laptop {
  position: absolute;
  left: 1%;
  bottom: 0;
  width: min(78%, 590px);
  transform: perspective(1050px) rotateY(-19deg) rotateX(7deg) rotateZ(-2deg);
  filter: drop-shadow(0 34px 35px rgba(0, 0, 0, 0.46)) drop-shadow(0 0 38px rgba(var(--blue-rgb) / 0.18));
}

.laptop-screen {
  position: relative;
  min-height: 345px;
  padding: 3.15rem 3rem 2.6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 20%, rgba(var(--cyan-rgb) / 0.2), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(var(--blue-rgb) / 0.04) 36%, rgba(1, 9, 19, 0.84) 100%),
    linear-gradient(160deg, #0f3550, #041828 70%);
  border: 1px solid rgba(var(--blue-rgb) / 0.38);
  border-bottom-color: rgba(var(--cyan-rgb) / 0.16);
  border-radius: 1.35rem 1.35rem 0.55rem 0.55rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -30px 48px rgba(0, 0, 0, 0.34),
    0 0 0 10px rgba(3, 13, 27, 0.84),
    0 0 0 11px rgba(var(--blue-rgb) / 0.14),
    0 36px 70px rgba(0, 0, 0, 0.42);
}

.laptop-screen::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 12%, rgba(255, 255, 255, 0.18) 13%, transparent 15% 100%),
    linear-gradient(90deg, rgba(var(--cyan-rgb) / 0.12) 1px, transparent 1px),
    linear-gradient(rgba(var(--cyan-rgb) / 0.09) 1px, transparent 1px);
  background-size: cover, 24px 24px, 24px 24px;
  mask-image: linear-gradient(135deg, transparent, #000 34%, transparent 86%);
}

.laptop-screen::after {
  position: absolute;
  right: 1.65rem;
  bottom: 1.45rem;
  width: 43%;
  height: 48%;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(var(--cyan-rgb) / 0.6) 12% 18%, transparent 18% 27%, rgba(var(--blue-2-rgb) / 0.62) 27% 38%, transparent 38% 50%, rgba(var(--cyan-rgb) / 0.78) 50% 68%, transparent 68%),
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(var(--blue-rgb) / 0.26);
  border-radius: 0.85rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 34px rgba(0, 0, 0, 0.25);
  opacity: 0.86;
}

.laptop-screen p,
.laptop-screen strong,
.laptop-screen span {
  position: relative;
  z-index: 1;
  display: block;
}

.laptop-screen p {
  width: max-content;
  margin-bottom: 0.55rem;
  padding: 0.35rem 0.65rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(var(--cyan-rgb) / 0.08);
  border: 1px solid rgba(var(--cyan-rgb) / 0.28);
  border-radius: 999px;
}

.laptop-screen strong {
  max-width: 285px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 3.05rem;
  line-height: 0.94;
  text-shadow: 0 0 28px rgba(var(--cyan-rgb) / 0.2);
}

.laptop-screen span {
  width: max-content;
  margin-top: 1.45rem;
  padding: 0.62rem 1rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(var(--blue-rgb) / 0.24);
}

.laptop-base {
  position: relative;
  height: 45px;
  margin-inline: 3.5%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 12% 82%, rgba(255, 255, 255, 0.1)),
    linear-gradient(180deg, #51687f 0%, #1b2939 42%, #060d17 100%);
  border-top: 1px solid rgba(199, 235, 255, 0.28);
  border-radius: 0 0 1rem 1rem;
  clip-path: polygon(7% 0, 93% 0, 100% 100%, 0 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 28px 45px rgba(0, 0, 0, 0.34);
}

.laptop-base::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 26%;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, rgba(6, 16, 29, 0.18), rgba(255, 255, 255, 0.18), rgba(6, 16, 29, 0.18));
  border-radius: 999px;
  transform: translateX(-50%);
}

.solution-stack {
  position: absolute;
  top: -0.2rem;
  right: 0;
  display: grid;
  gap: 0.85rem;
  width: min(260px, 42%);
}

.solution-stack article {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0.72rem;
  align-items: center;
  padding: 0.86rem;
  background: rgba(3, 13, 27, 0.78);
  border: 1px solid rgba(83, 181, 255, 0.25);
  border-radius: 0.7rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.solution-stack article:nth-child(even) {
  transform: translateX(16px);
}

.solution-stack span {
  display: grid;
  place-items: center;
  width: 2.1rem;
  aspect-ratio: 1;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  border: 1px solid rgba(var(--cyan-rgb) / 0.4);
  border-radius: 0.45rem;
}

.solution-stack strong {
  color: var(--white);
  font-size: 0.78rem;
  line-height: 1.25;
}

.services,
.work,
.partner {
  padding: clamp(4rem, 7vw, 6.8rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2,
.identity h2,
.partner h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 6.2vw, 6.2rem);
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0.7rem;
  color: var(--muted-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 0 1.2rem 1.3rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(10, 23, 38, 0.08);
  box-shadow: 0 20px 50px rgba(13, 31, 49, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 70px rgba(13, 31, 49, 0.16);
}

.card-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  margin-inline: -1.2rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(var(--blue-rgb) / 0.18);
  transition: filter 220ms ease;
}

.card-media::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse 90% 80% at 18% 12%, rgba(var(--cyan-rgb) / 0.22), transparent 58%),
    radial-gradient(ellipse 70% 60% at 88% 88%, rgba(var(--blue-rgb) / 0.16), transparent 62%);
}

.service-card:hover .card-media {
  filter: brightness(1.06);
}

.media-code {
  background:
    linear-gradient(155deg, #0a1c30 0%, var(--logo-deep) 48%, #061525 100%);
}

.media-process {
  background:
    linear-gradient(155deg, #0f2a42 0%, #0a1830 55%, #05101f 100%);
}

.media-crm {
  background:
    linear-gradient(155deg, #102840 0%, #0c2238 50%, #071828 100%);
}

.media-growth {
  background:
    linear-gradient(155deg, #142a4f 0%, #0e1f3d 52%, #081528 100%);
}

.card-media-art {
  position: relative;
  z-index: 1;
  width: min(82%, 220px);
  aspect-ratio: 16 / 11;
}

/* Web development — code editor */
.card-media-art--code {
  padding: 0.55rem 0.65rem 0.7rem;
  background: rgba(3, 12, 24, 0.72);
  border: 1px solid rgba(var(--blue-rgb) / 0.32);
  border-radius: 0.55rem;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card-media-chrome {
  display: flex;
  gap: 0.28rem;
  margin-bottom: 0.55rem;
}

.card-media-chrome span {
  width: 0.42rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(var(--blue-rgb) / 0.55);
}

.card-media-chrome span:nth-child(1) {
  background: rgba(255, 120, 120, 0.75);
}

.card-media-chrome span:nth-child(2) {
  background: rgba(255, 200, 100, 0.75);
}

.card-media-chrome span:nth-child(3) {
  background: rgba(120, 220, 140, 0.75);
}

.card-media-code-lines {
  display: grid;
  gap: 0.38rem;
}

.card-media-code-lines > span {
  display: block;
  height: 0.34rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--cyan-rgb) / 0.85), rgba(var(--blue-rgb) / 0.35));
}

.card-media-code-lines > span:nth-child(1) { width: 72%; }
.card-media-code-lines > span:nth-child(2) { width: 92%; opacity: 0.9; }
.card-media-code-lines > span:nth-child(3) { width: 58%; opacity: 0.75; }
.card-media-code-lines > span:nth-child(4) { width: 80%; opacity: 0.85; }
.card-media-code-lines > span:nth-child(5) { width: 48%; opacity: 0.65; }

/* Business Process Management — workflow nodes */
.card-media-art--process {
  width: min(88%, 230px);
}

.card-media-node {
  position: absolute;
  width: 2.1rem;
  aspect-ratio: 1;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(var(--blue-rgb) / 0.45);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.card-media-node::after {
  position: absolute;
  inset: 0.45rem;
  content: "";
  border-radius: 0.2rem;
  background: linear-gradient(135deg, rgba(var(--cyan-rgb) / 0.5), rgba(var(--blue-rgb) / 0.2));
}

.card-media-node:nth-of-type(1) {
  top: 12%;
  left: 8%;
}

.card-media-node:nth-of-type(2) {
  top: 38%;
  right: 10%;
}

.card-media-node:nth-of-type(3) {
  bottom: 10%;
  left: 28%;
}

.card-media-flow-line {
  position: absolute;
  inset: 18% 12% 20% 14%;
  border: 1px dashed rgba(var(--cyan-rgb) / 0.45);
  border-radius: 0.35rem;
  mask-image: linear-gradient(135deg, #000 0 55%, transparent 75%);
}

.card-media-flow-line::before {
  position: absolute;
  top: 42%;
  left: 32%;
  width: 38%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(var(--cyan-rgb) / 0.2), rgba(var(--cyan-rgb) / 0.9));
  transform: rotate(24deg);
}

/* CRM — dashboard tiles */
.card-media-art--crm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  width: min(78%, 200px);
  aspect-ratio: auto;
}

.card-media-tile {
  min-height: 2.4rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(var(--blue-rgb) / 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.card-media-tile::before {
  display: block;
  width: 55%;
  height: 0.28rem;
  margin: 0.45rem 0 0 0.45rem;
  content: "";
  border-radius: 999px;
  background: rgba(var(--blue-rgb) / 0.45);
}

.card-media-tile--accent {
  grid-column: 1 / -1;
  min-height: 2.8rem;
  background:
    linear-gradient(135deg, rgba(var(--blue-rgb) / 0.28), rgba(var(--cyan-rgb) / 0.12)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(var(--cyan-rgb) / 0.4);
}

.card-media-tile--accent::before {
  width: 72%;
  height: 0.34rem;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.card-media-tile--accent::after {
  display: block;
  width: 40%;
  height: 0.22rem;
  margin: 0.35rem 0 0 0.45rem;
  content: "";
  border-radius: 999px;
  background: rgba(var(--blue-rgb) / 0.35);
}

/* Marketing — growth chart */
.card-media-art--growth {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.38rem;
  width: min(76%, 190px);
  aspect-ratio: auto;
  min-height: 5.5rem;
  padding: 0 0.25rem;
}

.card-media-bar {
  flex: 1;
  max-width: 1.35rem;
  border-radius: 0.25rem 0.25rem 0 0;
  background: linear-gradient(180deg, var(--cyan), rgba(var(--blue-rgb) / 0.45));
  box-shadow: 0 -4px 16px rgba(var(--cyan-rgb) / 0.25);
}

.card-media-bar:nth-child(1) { height: 38%; opacity: 0.65; }
.card-media-bar:nth-child(2) { height: 52%; opacity: 0.78; }
.card-media-bar:nth-child(3) { height: 68%; opacity: 0.9; }
.card-media-bar:nth-child(4) { height: 88%; }

.card-media-trend {
  position: absolute;
  top: 18%;
  right: 8%;
  left: 8%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan) 20%, var(--blue) 100%);
  transform: rotate(-12deg);
  box-shadow: 0 0 12px rgba(var(--cyan-rgb) / 0.45);
}

.card-media-trend::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  transform: rotate(45deg);
}

.card-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.card-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  margin-top: -2.75rem;
  margin-bottom: 1.2rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border: 3px solid var(--paper);
  box-shadow: 0 12px 28px rgba(var(--blue-deep-rgb) / 0.28);
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

.service-card p {
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.service-card a {
  color: var(--blue-2);
  font-size: 1.6rem;
}

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--ink-2);
  border-block: 1px solid rgba(255, 255, 255, 0.09);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 90s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.55rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker span::before {
  width: 0.4rem;
  aspect-ratio: 1;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--blue);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.identity {
  padding: clamp(4.4rem, 8vw, 7.5rem) 0;
}

.identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: stretch;
}

.identity-copy {
  padding-right: 1rem;
}

.identity-copy blockquote {
  position: relative;
  margin: 2rem 0;
  padding-left: 2.2rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}

.identity-copy blockquote::before {
  position: absolute;
  left: 0;
  top: -0.35rem;
  content: "“";
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 4.8rem;
  line-height: 1;
}

.identity-copy p:not(.eyebrow) {
  color: var(--muted);
}

.stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.15rem 0;
}

.stats article {
  position: relative;
  padding: 1.1rem 1.15rem 1.1rem 1.3rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(var(--blue-rgb) / 0.07) 100%);
  border: 1px solid rgba(var(--blue-rgb) / 0.24);
  border-radius: 0.8rem;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.stats article::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--cyan), var(--blue), var(--blue-2));
  border-radius: 3px 0 0 3px;
}

.stats article::after {
  position: absolute;
  top: -35%;
  right: -20%;
  width: 5.5rem;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(var(--blue-rgb) / 0.22), transparent 68%);
}

.stats article + article {
  padding-top: 1.1rem;
  border-top: none;
}

.stats strong {
  display: block;
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 3.6vw, 3.15rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--white) 0%, var(--blue) 52%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats span {
  display: block;
  position: relative;
  z-index: 1;
  max-width: none;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tech-panel {
  padding: clamp(1.5rem, 3vw, 2rem);
  background:
    linear-gradient(rgba(4, 16, 31, 0.86), rgba(4, 16, 31, 0.86)),
    repeating-linear-gradient(120deg, rgba(var(--blue-rgb) / 0.12) 0 1px, transparent 1px 13px);
  border: 1px solid rgba(97, 191, 255, 0.22);
  box-shadow: var(--shadow);
}

.open-source-reasons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reason-card {
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
}

.reason-card h3 {
  margin: 0 0 0.45rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
}

.text-link {
  color: var(--blue-2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.72rem;
}

.case-card {
  position: relative;
  display: flex;
  min-height: 205px;
  padding: 1.2rem;
  overflow: hidden;
  color: var(--white);
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(to top, rgba(2, 7, 17, 0.92), rgba(2, 7, 17, 0.18)),
    linear-gradient(135deg, rgba(var(--blue-rgb) / 0.45), transparent 38%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px),
    #10243a;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: transform 180ms ease;
}

.case-card:hover {
  transform: translateY(-6px) skewX(-1deg);
}

.case-card span {
  position: absolute;
  top: 1rem;
  left: 1.15rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.case-card h3 {
  max-width: 10rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 0.95;
}

.case-card a {
  color: var(--white);
  font-size: 1.5rem;
}

.content-hero {
  position: relative;
  padding: 9rem 0 4.8rem;
  overflow: hidden;
}

.content-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 26%, rgba(var(--cyan-rgb) / 0.22), transparent 24rem);
  background-size: 64px 64px, 64px 64px, cover;
  mask-image: linear-gradient(to bottom, #000 60%, transparent);
}

.content-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  color: rgba(217, 232, 247, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--cyan);
}

.content-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3.8rem, 7.4vw, 7.2rem);
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.content-meta span {
  padding: 0.45rem 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.content-hero-panel,
.sidebar-card,
.related-card {
  background: var(--white);
  border: 1px solid rgba(10, 23, 38, 0.1);
  box-shadow: 0 18px 50px rgba(13, 31, 49, 0.1);
}

.content-hero-panel {
  padding: 1.4rem 1.5rem;
  color: var(--ink);
  border-top: 4px solid var(--blue);
}

.content-hero-panel ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.content-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(4rem, 7vw, 6.2rem) 0;
  align-items: start;
}

.content-body {
  max-width: 780px;
}

.content-intro {
  color: var(--ink-2);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.55;
}

.content-body h2 {
  margin: 2.5rem 0 0.8rem;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.content-body h3 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: 1rem;
}

.content-body p,
.content-body details {
  color: var(--muted-dark);
  font-weight: 600;
}

.content-callout {
  margin: 2rem 0;
  padding: 1.25rem 1.35rem;
  color: var(--ink-2);
  background:
    linear-gradient(90deg, rgba(var(--blue-rgb) / 0.12), rgba(var(--cyan-rgb) / 0.04)),
    var(--white);
  border-left: 4px solid var(--blue);
  box-shadow: 0 14px 36px rgba(13, 31, 49, 0.08);
}

.content-callout strong {
  color: var(--blue-2);
}

.content-step-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.content-step-grid article {
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid rgba(10, 23, 38, 0.08);
  box-shadow: 0 12px 32px rgba(13, 31, 49, 0.07);
}

.content-step-grid span,
.related-card span {
  color: var(--blue-2);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.content-step-grid p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.content-body details {
  padding: 1rem 0;
  border-top: 1px solid rgba(10, 23, 38, 0.12);
}

.content-body details:last-child {
  border-bottom: 1px solid rgba(10, 23, 38, 0.12);
}

.content-body summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.content-sidebar {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.sidebar-card {
  padding: 1.35rem;
}

.sidebar-card h2 {
  margin-bottom: 0.8rem;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 0.95;
}

.sidebar-card p,
.sidebar-list li {
  color: var(--muted-dark);
  font-size: 0.86rem;
  font-weight: 600;
}

.sidebar-card .button {
  width: 100%;
  text-align: center;
}

.sidebar-list h3 {
  margin: 0 0 0.9rem;
  color: var(--ink);
}

.sidebar-list ul {
  margin: 0;
  padding-left: 1.15rem;
}

.sidebar-list li + li {
  margin-top: 0.5rem;
}

.content-page--payment {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
}

.payment-panel {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid rgba(10, 23, 38, 0.1);
  box-shadow: 0 22px 56px rgba(13, 31, 49, 0.1);
}

.payment-form {
  display: grid;
  gap: 1.75rem;
}

.payment-form-section {
  margin: 0;
  padding: 0;
  border: none;
}

.payment-form-section > legend {
  margin-bottom: 1rem;
  padding: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field--honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--paper);
  border: 1px solid rgba(10, 23, 38, 0.14);
  border-radius: 0.45rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input::placeholder {
  color: rgba(78, 101, 121, 0.65);
}

.form-field input:hover {
  border-color: rgba(var(--blue-rgb) / 0.45);
}

.form-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(var(--blue-rgb) / 0.2);
  outline: none;
}

.form-field input:user-invalid:not(:focus):not(:placeholder-shown),
.form-field input.is-invalid {
  border-color: #c44;
}

.form-radio-group {
  margin: 1.25rem 0 0;
  padding: 0;
  border: none;
}

.form-radio-group > legend {
  margin-bottom: 0.75rem;
  color: var(--ink-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.55rem 1rem;
  color: var(--muted-dark);
  font-size: 0.86rem;
  font-weight: 800;
  background: var(--paper);
  border: 1px solid rgba(10, 23, 38, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.form-radio:has(input:checked) {
  color: var(--ink);
  background: rgba(var(--blue-rgb) / 0.12);
  border-color: rgba(var(--blue-rgb) / 0.45);
}

.form-radio input {
  accent-color: var(--blue-2);
}

.payment-form-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 0.25rem;
}

.payment-form-actions .button {
  min-width: 12rem;
  border: none;
  cursor: pointer;
}

.form-message {
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 0.5rem;
}

.form-message[hidden] {
  display: none !important;
}

.form-message:not([hidden]) {
  display: block;
}

.form-message--success {
  color: #0d4a2e;
  background: #e8f7ef;
  border: 1px solid #9ed4b6;
}

.form-message--error {
  color: #6b1a1a;
  background: #fdeeee;
  border: 1px solid #efb5b5;
}

.content-hero-panel a {
  color: var(--blue-2);
  font-weight: 800;
}

.content-hero-panel a:hover,
.content-hero-panel a:focus-visible {
  color: var(--blue);
}

.hero-lede a {
  color: var(--cyan);
  font-weight: 800;
}

.hero-lede a:hover,
.hero-lede a:focus-visible {
  color: var(--white);
}

.related-content {
  padding: 0 0 clamp(4rem, 7vw, 6rem);
}

.related-card {
  min-height: 260px;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.related-card h3 {
  margin: 0.75rem 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 0.95;
}

.related-card p {
  color: var(--muted-dark);
  font-size: 0.88rem;
  font-weight: 600;
}

.related-card a {
  color: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.local-focus {
  position: relative;
  isolation: isolate;
  padding: clamp(4rem, 7vw, 6.2rem) 0;
  overflow: hidden;
}

.local-focus::before,
.local-focus::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.local-focus::before {
  z-index: -2;
  background:
    linear-gradient(180deg, var(--paper) 0%, rgba(245, 250, 255, 0) 14%),
    linear-gradient(0deg, var(--paper) 0%, rgba(245, 250, 255, 0) 16%),
    linear-gradient(
      128deg,
      var(--paper) 0%,
      color-mix(in srgb, var(--paper-2) 72%, var(--logo-sky) 28%) 46%,
      color-mix(in srgb, var(--paper) 58%, var(--logo-mist) 42%) 100%
    );
}

.local-focus::after {
  z-index: -1;
  background:
    radial-gradient(ellipse 52% 62% at 8% 42%, rgba(var(--blue-rgb) / 0.2), transparent 70%),
    radial-gradient(ellipse 44% 54% at 92% 58%, rgba(var(--blue-deep-rgb) / 0.1), transparent 72%),
    radial-gradient(ellipse 60% 42% at 50% 108%, rgba(var(--blue-rgb) / 0.12), transparent 68%),
    linear-gradient(rgba(var(--blue-rgb) / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--blue-rgb) / 0.035) 1px, transparent 1px);
  background-size: auto, auto, auto, 38px 38px, 38px 38px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.local-focus-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(240px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.local-focus .eyebrow {
  color: var(--blue-2);
}

.local-focus h2 {
  margin: 0.4rem 0 1rem;
  color: var(--ink);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.12;
}

.local-focus-lede,
.local-focus-support {
  margin: 0 0 1rem;
  color: var(--muted-dark);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.65;
}

.local-focus-support {
  margin-bottom: 0;
}

.local-focus-aside {
  padding: 1.35rem 1.5rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.94) 0%, rgba(var(--blue-rgb) / 0.08) 100%);
  border: 1px solid rgba(var(--blue-rgb) / 0.24);
  border-radius: 0.85rem;
  box-shadow:
    0 22px 48px rgba(var(--blue-deep-rgb) / 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.local-focus-aside h3 {
  margin: 0 0 1rem;
  color: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.local-focus-aside ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--muted-dark);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.55;
}

.local-focus-aside li + li {
  margin-top: 0.55rem;
}

.local-focus-aside .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.partner {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) 1fr;
  gap: 2.5rem;
  align-items: center;
}

.partner h2 {
  max-width: 300px;
  font-size: clamp(2.7rem, 4.4vw, 4.2rem);
}

.partner-points {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.partner-points article {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  padding: 1.1rem 0.65rem;
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(10, 23, 38, 0.08);
  border-radius: 0.85rem;
  box-shadow: 0 14px 34px rgba(13, 31, 49, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.partner-points article:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--blue-rgb) / 0.28);
  box-shadow: 0 22px 48px rgba(var(--blue-deep-rgb) / 0.1);
}

.partner-points article:hover .partner-icon {
  border-color: rgba(var(--cyan-rgb) / 0.55);
  box-shadow:
    0 16px 32px rgba(var(--blue-rgb) / 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.partner-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.15rem;
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgba(var(--blue-rgb) / 0.18) 0%, rgba(var(--logo-deep-rgb) / 0.55) 100%);
  border: 1px solid rgba(var(--blue-rgb) / 0.38);
  border-radius: 0.85rem;
  box-shadow:
    0 12px 26px rgba(var(--blue-deep-rgb) / 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.partner-icon::before,
.partner-icon::after {
  position: absolute;
  content: "";
}

/* Personalized — concentric focus rings */
.partner-icon--personal::before {
  width: 1.35rem;
  aspect-ratio: 1;
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(var(--cyan-rgb) / 0.35);
}

.partner-icon--personal::after {
  width: 0.42rem;
  aspect-ratio: 1;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(var(--cyan-rgb) / 0.65);
}

/* Feedback — message loop */
.partner-icon--feedback::before {
  width: 1.15rem;
  height: 0.85rem;
  border: 2px solid var(--blue);
  border-radius: 0.28rem;
}

.partner-icon--feedback::after {
  bottom: 0.72rem;
  left: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: translateX(-35%) rotate(45deg);
}

/* Education — diamond insight */
.partner-icon--education::before {
  width: 1rem;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  transform: rotate(45deg);
  border-radius: 0.15rem;
}

.partner-icon--education::after {
  width: 0.55rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

/* Future — upward momentum */
.partner-icon--future::before {
  width: 0;
  height: 0;
  border-left: 0.62rem solid transparent;
  border-right: 0.62rem solid transparent;
  border-bottom: 1.05rem solid var(--blue);
  filter: drop-shadow(0 3px 6px rgba(var(--blue-rgb) / 0.35));
}

.partner-icon--future::after {
  bottom: 0.62rem;
  width: 1.15rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  border-radius: 999px;
}

/* Agile — four-point spark */
.partner-icon--agile::before {
  width: 1.1rem;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cyan), var(--blue-2));
  transform: rotate(45deg);
  border-radius: 0.12rem;
  box-shadow: 0 0 14px rgba(var(--cyan-rgb) / 0.45);
}

.partner-icon--agile::after {
  width: 1.1rem;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--blue), var(--logo-deep));
  border-radius: 0.12rem;
  opacity: 0.55;
  transform: rotate(45deg) scale(0.55);
}

.final-cta {
  padding: clamp(3.6rem, 6vw, 5.5rem) 0;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr auto;
  gap: 2rem;
  align-items: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--text);
  font-weight: 800;
}

.site-footer {
  padding: 4rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 2rem;
}

.site-footer h3 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.site-footer span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.site-footer a {
  margin: 0.35rem 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cyan);
}

.socials {
  display: flex;
  gap: 0.45rem;
  margin-top: 1rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 1.7rem;
  aspect-ratio: 1;
  color: var(--white);
  font-size: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.footer-message {
  width: min(1160px, calc(100% - 40px));
  margin: 2.25rem auto 0;
  padding: 1.25rem 1.25rem 0;
  color: rgba(217, 232, 247, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  width: min(1160px, calc(100% - 40px));
  margin: 1.25rem auto 0;
  padding-top: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1101px) {
  .nav-toggle,
  .nav-backdrop {
    display: none !important;
  }

  .site-nav-label {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0;
    z-index: 302;
    align-items: center;
  }

  .site-header.is-nav-open {
    background: rgba(2, 7, 17, 0.98);
    border-bottom-color: rgba(var(--blue-rgb) / 0.22);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    padding-bottom: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    grid-column: 2;
    grid-row: 1;
    z-index: 1;
    align-self: center;
    margin-bottom: 1rem;
  }

  .nav-backdrop {
    display: none !important;
  }

  .site-nav {
    position: static;
    z-index: auto;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    background:
      radial-gradient(ellipse 90% 45% at 50% 0%, rgba(var(--blue-rgb) / 0.12), transparent 62%),
      linear-gradient(180deg, rgba(0, 34, 68, 0.35) 0%, transparent 100%);
    border-top: 1px solid transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      max-height 340ms ease,
      opacity 220ms ease,
      visibility 220ms ease,
      padding 220ms ease,
      border-color 220ms ease;
  }

  .site-nav.is-open {
    max-height: 42rem;
    padding: 0.85rem 0 1.1rem;
    overflow: visible;
    border-top-color: rgba(var(--blue-rgb) / 0.22);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav-label {
    display: block;
    margin: 0 0 0.65rem;
    color: var(--cyan);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .site-nav .primary-nav {
    display: flex !important;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    justify-content: flex-start;
  }

  .primary-nav a {
    display: block;
    padding: 0.72rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(var(--blue-rgb) / 0.22);
    border-radius: 0.5rem;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    color: var(--white);
    background: rgba(var(--blue-rgb) / 0.16);
    border-color: rgba(var(--cyan-rgb) / 0.45);
  }

  .site-nav .header-cta {
    flex-shrink: 0;
    margin-top: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .content-hero-grid,
  .content-page,
  .content-page--payment,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .form-grid--3 {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    position: static;
  }

  .hero-visual {
    min-height: 560px;
  }

  .service-grid,
  .case-strip,
  .content-step-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-card {
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  }

  .local-focus-inner,
  .partner,
  .partner-points,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .identity-grid {
    grid-template-columns: 1fr minmax(200px, 0.55fr);
  }

  .stats {
    grid-row: span 2;
    align-self: center;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    position: fixed;
    padding: 1rem 0.9rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7.4rem;
  }

  .hero-side-label {
    display: none;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 5.6rem);
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 640px;
  }

  .laptop {
    left: 0;
    width: 88%;
  }

  .solution-stack {
    right: 0.3rem;
    width: min(280px, 62%);
    gap: 0.55rem;
  }

  .solution-stack article {
    padding: 0.7rem;
  }

  .solution-stack strong {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .section-heading,
  .service-grid,
  .case-strip,
  .content-step-grid,
  .related-grid,
  .identity-grid,
  .local-focus-inner,
  .partner,
  .partner-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    grid-row: auto;
  }

  .stats article {
    padding: 1rem 0.85rem;
    text-align: center;
  }

  .stats article::before {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 3px;
    border-radius: 0 0 3px 3px;
  }

  .stats strong {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .stats span {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .content-hero {
    padding-top: 7.4rem;
  }

  .content-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .service-card {
    min-height: auto;
  }

  .identity-copy blockquote {
    padding-left: 1.6rem;
    font-size: 1.02rem;
  }
}

@media (max-width: 460px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .stats article {
    text-align: left;
    padding: 1rem 1.1rem 1rem 1.25rem;
  }

  .stats article::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 3px;
    height: auto;
    border-radius: 3px 0 0 3px;
  }

  .brand-logo {
    max-width: min(14.5rem, 58vw);
  }

  .laptop-screen {
    min-height: 285px;
    padding: 3rem 1.6rem;
  }

  .laptop-screen strong {
    font-size: 2.2rem;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .laptop {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .solution-stack {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    gap: 0.5rem;
  }

  .solution-stack article {
    grid-template-columns: 1.7rem 1fr;
    padding: 0.65rem;
  }

  .solution-stack article:nth-child(even) {
    transform: none;
  }

  .solution-stack span {
    width: 1.7rem;
  }
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.6rem);
  bottom: clamp(1rem, 2.5vw, 1.6rem);
  z-index: 25;
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  padding: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  cursor: pointer;
  background: linear-gradient(145deg, var(--blue), var(--blue-2));
  border: 1px solid rgba(var(--cyan-rgb) / 0.45);
  border-radius: 50%;
  box-shadow:
    0 16px 36px rgba(var(--blue-deep-rgb) / 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.92);
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.back-to-top.is-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 22px 44px rgba(var(--blue-rgb) / 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.back-to-top span {
  display: block;
  margin-top: -0.12rem;
}
