:root {
  --ink: #0f171d;
  --deep: #18232d;
  --deep-2: #202f3b;
  --blue: #25a8e1;
  --blue-soft: #80d5f5;
  --paper: #f2f6f7;
  --white: #ffffff;
  --muted: #b7c5ce;
  --line: rgba(255, 255, 255, 0.15);
  --dark-line: rgba(15, 23, 29, 0.16);
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--deep);
  color: var(--white);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.56;
}
img { display: block; max-width: 100%; height: auto; }
picture { display: block; }
a { color: inherit; text-underline-offset: 3px; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--blue-soft);
  outline-offset: 4px;
}
h1, h2, h3 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(3.6rem, 6.2vw, 6.6rem); text-transform: uppercase; }
h2 { font-size: clamp(2.2rem, 4vw, 3.9rem); }
h3 { font-size: 1.55rem; }
p { margin: 0 0 1.05rem; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(76px, 9vw, 136px); }
[id] { scroll-margin-top: 96px; }
.legacy-anchor { display: block; position: relative; top: -82px; }

.eyebrow,
.service-label,
.studio-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-lead {
  max-width: 720px;
  margin-top: 26px;
  color: #e4edf2;
  font-size: clamp(1.16rem, 1.7vw, 1.45rem);
  line-height: 1.46;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  color: var(--blue-soft);
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover { color: var(--white); text-decoration: underline; }
.ui-icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-link,
.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.channel-link { text-decoration: none; }
.channel-icon { width: 1.15em; height: 1.15em; stroke-width: 1.7; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-soft); }
.button-small { min-height: 40px; padding: 8px 17px; font-size: 0.9rem; }
.button-outline { border-color: currentColor; background: transparent; color: currentColor; }
.button-outline:hover { background: var(--ink); color: var(--white); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 29, 0.94);
  backdrop-filter: blur(18px);
}
.nav-wrap { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: clamp(116px, 10vw, 132px); height: auto; object-fit: contain; }
.desktop-nav ul { display: flex; margin: 0; padding: 0; gap: 27px; list-style: none; }
.desktop-nav a { color: var(--muted); font-size: 0.9rem; font-weight: 700; text-decoration: none; }
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-menu-toggle {
  display: none;
  min-height: 44px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}
.mobile-menu-toggle:hover { border-color: var(--blue); color: var(--blue-soft); }
.mobile-drawer {
  width: min(92vw, 440px);
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.42);
}
.mobile-drawer::backdrop { background: rgba(5, 10, 14, 0.76); backdrop-filter: blur(5px); }
.mobile-drawer[open] { animation: drawer-enter 260ms cubic-bezier(0.22, 1, 0.36, 1); }
.mobile-drawer-panel { display: flex; height: 100%; min-height: 0; padding: 22px 24px 25px; flex-direction: column; overflow-y: auto; }
.mobile-drawer-header { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 24px; }
.mobile-drawer-brand img { width: 72px; height: 44px; object-fit: contain; }
.mobile-drawer-close {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}
.mobile-drawer-close:hover { border-color: var(--blue); color: var(--blue-soft); }
.mobile-drawer-content { padding-block: clamp(42px, 9vh, 76px) 34px; }
.mobile-drawer-content .eyebrow { margin-bottom: 10px; }
.mobile-drawer-content h2 { margin-bottom: 30px; font-size: clamp(2.5rem, 12vw, 3.4rem); }
.mobile-drawer-nav ol { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.mobile-drawer-nav li { border-bottom: 1px solid var(--line); }
.mobile-drawer-nav a {
  display: grid;
  grid-template-columns: 38px 1fr;
  min-height: 66px;
  padding: 13px 0;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: clamp(1.65rem, 7vw, 2.05rem);
  font-weight: 500;
  line-height: 1.05;
  text-decoration: none;
}
.mobile-drawer-nav a > span { color: var(--blue); font-family: "Source Sans 3", sans-serif; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; }
.mobile-drawer-nav a:hover,
.mobile-drawer-nav a[aria-current="page"] { color: var(--blue-soft); }
.mobile-drawer-footer { display: grid; margin-top: auto; gap: 17px; }
.mobile-drawer-footer .button { width: 100%; }
.mobile-drawer-footer > a:last-child { color: var(--muted); font-size: 0.9rem; font-weight: 700; text-align: center; }
body.mobile-menu-open { overflow: hidden; }

@keyframes drawer-enter {
  from { opacity: 0; transform: translateX(48px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(37, 168, 225, 0.075) 1px, transparent 1px),
    linear-gradient(rgba(37, 168, 225, 0.075) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
}
.home-hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -270px;
  top: -250px;
  border: 1px solid rgba(37, 168, 225, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(37, 168, 225, 0.035), 0 0 0 180px rgba(37, 168, 225, 0.025);
  pointer-events: none;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.62fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
  padding-block: 92px;
}
.hero-copy { min-width: 0; }
.hero-copy h1 { max-width: 800px; }
.hero-copy h1 em { display: block; color: var(--blue); font-style: normal; }
.hero-actions { display: flex; margin-top: 36px; align-items: center; flex-wrap: wrap; gap: 28px; }
.hero-studio {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(32, 47, 59, 0.78);
  box-shadow: 18px 18px 0 rgba(37, 168, 225, 0.12);
}
.studio-kicker { color: var(--muted); }
.studio-row { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 21px 0; border-top: 1px solid var(--line); }
.studio-row > span { color: var(--blue); font-family: Oswald, sans-serif; font-size: 1.1rem; }
.studio-row strong { display: block; margin-bottom: 4px; font-family: Oswald, sans-serif; font-size: 1.5rem; font-weight: 500; }
.studio-row p { margin: 0; color: #ccd8df; font-size: 0.96rem; }
.studio-note { margin: 8px 0 0; padding: 12px 14px; background: var(--blue); color: var(--ink); font-weight: 800; }

/* Home sections */
.intro-grid,
.narrative,
.cases-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(52px, 9vw, 132px);
  align-items: start;
}
.intro-grid > div:last-child,
.narrative p { color: #d2dde3; }
.intro-grid > div:last-child { padding-top: 10px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}
.section-heading > p { margin: 0; color: #c9d6dd; }
.capability-showcase { background: var(--deep-2); }
.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  min-height: 330px;
  gap: 18px;
  padding: 34px;
  background: var(--deep);
  transition: background 180ms ease;
}
.service-card:hover { background: #273b49; }
.service-number { color: var(--blue); font-family: Oswald, sans-serif; font-size: 1.28rem; }
.service-card > div { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; }
.service-label { min-height: 40px; color: var(--muted); }
.service-card h2,
.service-card h3 { margin-bottom: 15px; font-size: clamp(1.9rem, 2.6vw, 2.8rem); overflow-wrap: anywhere; }
.service-card h2 a,
.service-card h3 a { text-decoration: none; }
.service-card h2 a:hover,
.service-card h3 a:hover { color: var(--blue-soft); }
.service-card p:not(.service-label) { color: #cedae0; font-size: 1rem; }
.service-card .text-link { margin-top: auto; }
.open-brief {
  display: flex;
  padding: 28px 32px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--blue);
  border-top: 0;
  background: var(--ink);
}
.open-brief p { max-width: 720px; margin: 0; font-family: Oswald, sans-serif; font-size: 1.35rem; }
.open-brief a { flex: 0 0 auto; color: var(--blue-soft); font-weight: 800; }
.capability-bridge { background: var(--blue); color: var(--ink); }
.capability-bridge-layout { display: grid; grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr); gap: clamp(56px, 9vw, 132px); align-items: start; }
.capability-bridge-heading { position: sticky; top: 122px; }
.capability-bridge-heading .eyebrow { color: var(--ink); }
.capability-bridge-heading h2 { max-width: 520px; font-size: clamp(2.8rem, 4.6vw, 4.5rem); }
.capability-bridge-heading > p:last-child { max-width: 500px; margin-top: 24px; color: var(--ink); font-weight: 600; }
.capability-bridge-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(15, 23, 29, 0.32); border-left: 1px solid rgba(15, 23, 29, 0.32); }
.capability-bridge-grid article { min-height: 245px; padding: 30px; border-right: 1px solid rgba(15, 23, 29, 0.32); border-bottom: 1px solid rgba(15, 23, 29, 0.32); background: rgba(255, 255, 255, 0.08); }
.capability-bridge-grid article:nth-child(2),
.capability-bridge-grid article:nth-child(3) { background: rgba(15, 23, 29, 0.08); }
.capability-bridge-grid span { display: block; margin-bottom: 48px; color: var(--ink); font-family: Oswald, sans-serif; font-weight: 600; }
.capability-bridge-grid h3 { margin-bottom: 14px; font-size: clamp(1.75rem, 2.4vw, 2.4rem); }
.capability-bridge-grid p { margin: 0; color: var(--ink); line-height: 1.45; }
.process { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 90px; }
.process ol { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process li { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.process strong { color: var(--blue); font-family: Oswald, sans-serif; font-size: 1.13rem; font-weight: 500; }
.process span { color: #d2dde3; }
.cases-band { padding-block: clamp(86px, 8vw, 118px); scroll-margin-top: 82px; background: var(--paper); color: var(--ink); }
.cases-band .eyebrow { color: #116483; }
.cases-layout { grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr); gap: clamp(56px, 7vw, 96px); align-items: stretch; }
.cases-copy { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; }
.cases-copy .eyebrow { margin-bottom: 18px; }
.cases-copy h2 { max-width: 680px; margin-bottom: 24px; font-size: clamp(2.8rem, 4.35vw, 4.25rem); }
.cases-copy > p:not(.eyebrow) { max-width: 650px; margin: 0 0 30px; line-height: 1.58; }
.case-stat { display: flex; min-height: 100%; padding: 12px 0 12px clamp(42px, 5vw, 66px); justify-content: center; flex-direction: column; border-left: 1px solid var(--dark-line); }
.case-stat strong { display: block; color: #187ca6; font-family: Oswald, sans-serif; font-size: clamp(5.4rem, 9vw, 8.5rem); font-weight: 500; line-height: 0.9; }
.case-stat span { display: block; max-width: 310px; margin-top: 18px; font-weight: 700; line-height: 1.55; }
.home-case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: clamp(64px, 8vw, 104px); border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.home-case { display: flex; min-height: 300px; padding: 30px; flex-direction: column; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); color: var(--ink); text-decoration: none; transition: background 180ms ease, transform 180ms ease; }
.home-case:hover { background: #e3f4fa; transform: translateY(-4px); }
.home-case > span { color: #116483; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.home-case h3 { margin: 54px 0 24px; font-size: clamp(1.9rem, 2.7vw, 2.75rem); }
.home-case small { display: inline-flex; margin-top: auto; align-items: center; gap: 0.45em; color: #135e7e; font-size: 0.9rem; font-weight: 800; }
.ecosystem { padding-top: clamp(72px, 8vw, 112px); padding-bottom: 0; }
.ecosystem-heading { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr); gap: 24px clamp(40px, 7vw, 104px); margin-bottom: clamp(34px, 5vw, 56px); align-items: end; }
.ecosystem-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.ecosystem-heading h2 { max-width: 650px; margin: 0; }
.ecosystem-heading > p:last-child { max-width: 610px; margin: 0 0 6px; color: #cbd7de; font-size: clamp(1.03rem, 1.4vw, 1.18rem); }
.ecosystem-list { display: grid; gap: 22px; }
.ecosystem-card { display: grid; grid-template-columns: minmax(330px, 0.68fr) minmax(0, 1.32fr); border: 1px solid var(--line); }
.ecosystem-brand { display: flex; min-height: 330px; padding: 42px 30px; align-items: center; justify-content: center; flex-direction: column; gap: 30px; background: var(--white); color: var(--ink); }
.ecosystem-brand picture { width: min(100%, 360px); }
.ecosystem-brand span { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.11em; text-align: center; text-transform: uppercase; }
.ecosystem-copy { padding: clamp(38px, 6vw, 76px); background: var(--ink); }
.ecosystem-card h3 { max-width: 760px; margin-bottom: 20px; font-size: clamp(2.25rem, 3.5vw, 3.55rem); }
.ecosystem-card p { color: #d2dde3; }
.ecosystem-note { padding-left: 17px; border-left: 2px solid var(--blue); font-size: 0.95rem; }
.ecosystem-card-reverse { grid-template-columns: minmax(0, 1.32fr) minmax(330px, 0.68fr); }
.ecosystem-card-reverse .ecosystem-brand { grid-column: 2; grid-row: 1; }
.ecosystem-card-reverse .ecosystem-copy { grid-column: 1; grid-row: 1; }
.ecosystem-brand-canada { background: radial-gradient(circle at 82% 22%, rgba(37, 168, 225, 0.18), transparent 34%), #0b1217; color: var(--white); }
.agamacorp-official-logo { display: block; width: min(100%, 360px); height: auto; }
.clients { background: #121c23; }
.clients-heading { margin-bottom: 46px; }
.clients-heading h2 { max-width: 720px; }
.client-marquee {
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.client-marquee-track { display: flex; width: max-content; animation: client-marquee 38s linear infinite; will-change: transform; }
.client-marquee-group { display: flex; flex: 0 0 auto; margin: 0; padding: 0; list-style: none; }
.client-logo {
  display: grid;
  width: clamp(250px, 25vw, 340px);
  min-height: 160px;
  flex: 0 0 auto;
  place-items: center;
  padding: 30px 34px;
}
.client-logo img { width: 100%; max-width: 220px; height: 76px; object-fit: contain; filter: grayscale(1) brightness(0) invert(1); opacity: 0.72; transition: opacity 180ms ease; }
.client-logo:hover img { opacity: 1; }
.client-marquee:hover .client-marquee-track { animation-play-state: paused; }
.client-marquee:focus .client-marquee-track,
.client-marquee:focus-within .client-marquee-track,
.client-marquee.is-paused .client-marquee-track { animation-play-state: paused; }

@keyframes client-marquee {
  to { transform: translateX(-50%); }
}
.final-cta { display: flex; justify-content: space-between; align-items: center; gap: 40px; border-top: 1px solid var(--line); }
.final-cta h2 { max-width: 790px; }

/* Internal page heroes */
.page-hero { background: var(--ink); }
.page-hero.compact { padding-block: clamp(84px, 11vw, 155px); }
.page-hero.compact h1 { max-width: 1050px; font-size: clamp(3.2rem, 6vw, 6rem); overflow-wrap: anywhere; }
.compact-hero-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); gap: clamp(52px, 8vw, 112px); align-items: end; }
.compact-hero-layout .hero-lead { margin-top: 0; }
.compact-hero-layout .button { margin-top: 18px; }
.solutions-hero h1,
.cases-hero h1 { font-size: clamp(3.05rem, 5.4vw, 5.5rem) !important; }
.service-hero { overflow: hidden; }
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  min-height: 660px;
  padding-block: 74px;
}
.service-hero-copy { min-width: 0; }
.service-hero h1,
.contact-hero h1 { max-width: 740px; font-size: clamp(3.1rem, 5.1vw, 5.6rem); overflow-wrap: anywhere; }
.service-hero .button { margin-top: 14px; }
.service-visual { position: relative; padding: 0 20px 20px 0; }
.service-visual::after { content: ""; position: absolute; z-index: 0; inset: 20px 0 0 20px; border: 1px solid var(--blue); background: rgba(37, 168, 225, 0.09); }
.service-visual picture { position: relative; z-index: 1; }
.service-visual img { width: 100%; height: 440px; object-fit: cover; filter: saturate(0.76) contrast(1.05); }
.service-visual > span { position: absolute; z-index: 2; right: 0; bottom: 0; padding: 7px 12px; background: var(--blue); color: var(--ink); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.service-visual-diagram { min-width: 0; }
.service-diagram { position: relative; z-index: 1; height: 440px; overflow: hidden; border: 1px solid rgba(128, 213, 245, 0.4); background: #111c23; }
.service-diagram::before { content: ""; position: absolute; inset: 48px 0 0; background-image: linear-gradient(rgba(128, 213, 245, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(128, 213, 245, 0.08) 1px, transparent 1px); background-size: 36px 36px; }
.diagram-toolbar { position: relative; z-index: 2; display: flex; height: 48px; padding: 0 16px; align-items: center; gap: 7px; border-bottom: 1px solid rgba(128, 213, 245, 0.22); background: #182630; }
.diagram-toolbar > span { width: 7px; height: 7px; border-radius: 50%; background: #56717f; }
.diagram-toolbar > span:first-child { background: var(--blue); }
.diagram-toolbar b { margin-left: auto; color: #9cb2bd; font-size: 0.69rem; letter-spacing: 0.08em; text-transform: uppercase; }
.diagram-canvas { position: relative; z-index: 1; height: calc(100% - 48px); }
.diagram-canvas::before,
.diagram-canvas::after { content: ""; position: absolute; z-index: -1; height: 1px; background: rgba(37, 168, 225, 0.64); transform-origin: left center; }
.diagram-canvas::before { width: 44%; left: 27%; top: 30%; transform: rotate(27deg); }
.diagram-canvas::after { width: 48%; left: 25%; top: 69%; transform: rotate(-25deg); }
.diagram-node { position: absolute; display: flex; width: 42%; min-height: 88px; padding: 16px; justify-content: center; flex-direction: column; border: 1px solid rgba(128, 213, 245, 0.54); background: rgba(24, 35, 45, 0.94); box-shadow: 9px 9px 0 rgba(37, 168, 225, 0.09); }
.diagram-node small { color: var(--blue); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; }
.diagram-node strong { margin-top: 5px; color: var(--white); font-family: Oswald, sans-serif; font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 500; }
.diagram-node-1 { left: 8%; top: 10%; }
.diagram-node-2 { width: 38%; right: 7%; top: 39%; }
.diagram-node-3 { left: 11%; bottom: 8%; }
.diagram-orbit { position: absolute; width: 210px; height: 210px; right: -76px; top: -45px; border: 1px solid rgba(37, 168, 225, 0.38); border-radius: 50%; box-shadow: 0 0 0 34px rgba(37, 168, 225, 0.035), 0 0 0 68px rgba(37, 168, 225, 0.025); }
.diagram-signal { position: absolute; right: 9%; bottom: 8%; display: flex; height: 42px; align-items: end; gap: 5px; }
.diagram-signal i { display: block; width: 6px; background: var(--blue); }
.diagram-signal i:nth-child(1) { height: 28%; }.diagram-signal i:nth-child(2) { height: 62%; }.diagram-signal i:nth-child(3) { height: 44%; }.diagram-signal i:nth-child(4) { height: 100%; }
.service-diagram-conversation .diagram-node { border-radius: 28px; box-shadow: none; }
.service-diagram-conversation .diagram-node-2 { border-bottom-right-radius: 3px; }
.service-diagram-intelligence .diagram-node-2 { border-color: var(--blue); background: #15394a; }
.service-diagram-intelligence .diagram-orbit { right: 12%; top: 19%; }
.service-diagram-field .diagram-node-1 { width: 34%; min-height: 150px; }
.service-diagram-field .diagram-node-2 { right: 8%; top: 22%; }
.service-diagram-workflow .diagram-node { width: 38%; }
.about-hero .service-hero-grid { min-height: 700px; padding-block: clamp(72px, 7.5vw, 104px); }
.about-hero h1 { max-width: 700px; font-size: clamp(3.15rem, 4.8vw, 5.25rem); }
.about-hero-actions { display: flex; margin-top: 34px; align-items: center; flex-wrap: wrap; gap: 26px; }
.about-proof { border: 1px solid var(--line); background: var(--deep-2); box-shadow: 18px 18px 0 rgba(37, 168, 225, 0.1); }
.about-proof-year { padding: clamp(28px, 5vw, 52px); border-bottom: 1px solid var(--line); }
.about-proof-year strong { display: block; color: var(--blue); font-family: Oswald, sans-serif; font-size: clamp(5.7rem, 9vw, 8rem); font-weight: 500; line-height: 0.9; }
.about-proof-year span { display: block; max-width: 340px; margin-top: 20px; color: #d2dde3; font-weight: 700; }
.about-proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.about-proof-grid div { min-height: 120px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-proof-grid div:nth-child(even) { border-right: 0; }
.about-proof-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.about-proof-grid span { display: block; margin-bottom: 20px; color: var(--blue); font-size: 0.72rem; font-weight: 800; }
.about-proof-grid strong { font-family: Oswald, sans-serif; font-size: 1.35rem; font-weight: 500; }
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 142px);
  align-items: start;
}
.about-intro-heading h2 { max-width: 560px; }
.about-intro-copy { padding: 26px 0 4px 36px; border-left: 1px solid var(--line); color: #d2dde3; }
.about-intro-copy p:last-child { margin-bottom: 0; }
.about-principles { background: var(--deep-2); }
.about-process { background: var(--blue); color: var(--ink); }
.about-process .eyebrow { color: #0d526f; }
.about-process .section-heading > p { color: #173a49; }
.about-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid rgba(15, 23, 29, 0.3); border-left: 1px solid rgba(15, 23, 29, 0.3); list-style: none; }
.about-process-grid li { min-height: 270px; padding: 28px; border-right: 1px solid rgba(15, 23, 29, 0.3); border-bottom: 1px solid rgba(15, 23, 29, 0.3); }
.about-process-grid span { display: block; margin-bottom: 58px; color: #0d526f; font-weight: 800; }
.about-process-grid h3 { margin-bottom: 13px; font-size: 2rem; }
.about-process-grid p { margin: 0; color: #173a49; }
.about-principles .section-heading { margin-bottom: clamp(34px, 5vw, 58px); }
.about-principles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-principle { min-height: 290px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--deep); }
.about-principle-number { display: block; margin-bottom: 48px; color: var(--blue); font-family: Oswald, sans-serif; font-size: 1.15rem; }
.about-principle h3 { margin-bottom: 16px; font-size: clamp(1.85rem, 2.5vw, 2.55rem); }
.about-principle p { margin-bottom: 0; color: #cedae0; }
.about-cta { padding-top: clamp(82px, 9vw, 124px); padding-bottom: clamp(82px, 9vw, 124px); }
.narrative { padding-block: clamp(82px, 9vw, 128px); }
.narrative h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.5vw, 3.3rem); }
.capability-section { background: var(--deep-2); }
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card { position: relative; min-height: 260px; padding: 34px 34px 32px 86px; background: var(--deep); }
.card-index { position: absolute; left: 30px; top: 34px; color: var(--blue); font-family: Oswald, sans-serif; font-size: 1.1rem; }
.card h2,
.card h3 { margin-bottom: 14px; font-size: clamp(1.55rem, 2.3vw, 2.25rem); }
.card p { color: #cedae0; font-size: 1rem; }
.results { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); gap: 80px; }
.results ul { margin: 5px 0 0; padding: 0; list-style: none; }
.results li { position: relative; padding: 12px 0 12px 28px; border-bottom: 1px solid var(--line); }
.results li::before { content: ""; position: absolute; width: 8px; height: 8px; left: 0; top: 22px; background: var(--blue); }
.tech { grid-column: 1 / -1; margin: 38px 0 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }
.tech span { margin-right: 22px; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.related-cases { background: #121c23; }
.related-case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.related-case { display: flex; min-height: 240px; padding: 30px; flex-direction: column; border: 1px solid var(--line); background: var(--deep); text-decoration: none; transition: border-color 180ms ease, transform 180ms ease; }
.related-case:hover { border-color: var(--blue); transform: translateY(-4px); }
.related-case > span { color: var(--blue); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.related-case strong { max-width: 650px; margin: 32px 0; font-family: Oswald, sans-serif; font-size: clamp(1.75rem, 2.6vw, 2.6rem); font-weight: 500; line-height: 1.05; }
.related-case small { display: inline-flex; margin-top: auto; align-items: center; gap: 0.45em; color: var(--blue-soft); font-size: 0.86rem; font-weight: 800; }
.faq-band { scroll-margin-top: 82px; background: var(--blue); color: var(--ink); }
.faq { max-width: 920px; margin-inline: auto; }
.faq .eyebrow { margin-bottom: 18px; color: #10536f; }
.faq h2 { max-width: 820px; margin-bottom: 38px; }
.faq details { border-top: 1px solid rgba(15, 23, 29, 0.28); transition: background 180ms ease; }
.faq details:last-child { border-bottom: 1px solid rgba(15, 23, 29, 0.28); }
.faq details:hover,
.faq details[open] { background: rgba(255, 255, 255, 0.14); }
.faq summary { position: relative; padding: 22px 58px 22px 18px; list-style: none; cursor: pointer; font-size: 1.05rem; font-weight: 800; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 11px; color: var(--ink); font-size: 1.8rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 780px; margin: 0; padding: 0 58px 22px 18px; color: #17252e; }

/* Cases */
.case-intro { padding-bottom: clamp(72px, 8vw, 110px); }
.featured-cases { padding-top: 0; background: #121c23; }
.featured-case-list { border-top: 1px solid var(--line); }
.featured-case { display: grid; grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr); gap: clamp(52px, 9vw, 124px); padding-block: clamp(70px, 9vw, 120px); border-bottom: 1px solid var(--line); }
.featured-case-heading { align-self: start; }
.case-number { display: block; margin-bottom: 48px; color: var(--blue); font-family: Oswald, sans-serif; font-size: 2rem; }
.featured-case h2 { max-width: 570px; font-size: clamp(2.6rem, 4.2vw, 4.15rem); }
.case-facts { display: grid; gap: 30px; }
.case-facts > div:not(.case-services) { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.case-facts h3,
.compact-case-body h3 { margin: 0 0 8px; color: var(--blue); font-family: "Source Sans 3", sans-serif; font-size: 0.77rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.case-facts p,
.compact-case-body p { margin: 0; color: #d2dde3; }
.case-tags { display: flex; margin: 28px 0 0; padding: 0; flex-wrap: wrap; gap: 8px; list-style: none; }
.case-tags li { padding: 5px 10px; border: 1px solid var(--line); color: #c9d6dd; font-size: 0.75rem; font-weight: 700; }
.case-services { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px; }
.case-services > span { width: 100%; color: var(--muted); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.case-services a,
.compact-case-links a { color: var(--blue-soft); font-size: 0.88rem; font-weight: 800; text-decoration: none; }
.case-services a:hover,
.compact-case-links a:hover { color: var(--white); text-decoration: underline; }
.more-cases { padding-top: clamp(86px, 9vw, 126px); }
.compact-case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.compact-case { display: flex; min-height: 650px; padding: clamp(28px, 4vw, 42px); flex-direction: column; border: 1px solid var(--line); background: var(--deep-2); }
.compact-case-top { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.compact-case-top > span { color: var(--blue); font-family: Oswald, sans-serif; font-size: 1.25rem; }
.compact-case-top .eyebrow { margin-bottom: 0; text-align: right; }
.compact-case > h2 { max-width: 580px; margin: 46px 0 32px; font-size: clamp(2rem, 3vw, 3rem); }
.compact-case-body { display: grid; gap: 8px; }
.compact-case-body h3:not(:first-child) { margin-top: 16px; }
.compact-case .case-tags { margin-top: auto; padding-top: 34px; }
.compact-case-links { display: flex; margin-top: 22px; flex-wrap: wrap; gap: 10px 18px; }

/* Contact and legal */
.contact-direct { display: flex; margin-top: 28px; flex-wrap: wrap; gap: 20px; }
.contact-direct a { color: var(--blue-soft); font-weight: 800; }
.contact-direct .channel-icon { width: 1.05rem; height: 1.05rem; }
.contact-signal { border: 1px solid var(--line); background: var(--deep-2); box-shadow: 18px 18px 0 rgba(37, 168, 225, 0.1); }
.contact-signal > p { margin: 0; padding: 18px 24px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-signal ol { margin: 0; padding: 0; list-style: none; }
.contact-signal li { display: grid; grid-template-columns: 48px 1fr; padding: 25px 24px; border-bottom: 1px solid var(--line); }
.contact-signal li:last-child { border-bottom: 0; }
.contact-signal li > span { grid-row: 1 / 3; color: var(--blue); font-family: Oswald, sans-serif; }
.contact-signal strong { font-family: Oswald, sans-serif; font-size: clamp(1.65rem, 2.5vw, 2.3rem); font-weight: 500; }
.contact-signal small { color: var(--muted); font-size: 0.84rem; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr); gap: clamp(48px, 9vw, 132px); }
.contact-form { padding: clamp(30px, 5vw, 58px); border-top: 3px solid var(--blue); background: var(--deep-2); }
.contact-form h2 { margin-bottom: 28px; font-size: clamp(2.1rem, 3.2vw, 3rem); }
.contact-form label { display: block; margin: 18px 0 8px; color: #eaf2f5; font-size: 0.95rem; font-weight: 800; }
.field-group label { margin-top: 0; }
.field { display: grid; gap: 7px; }
.field-error { color: #ffb4bc; font-size: 0.82rem; font-weight: 700; }
.optional { color: var(--muted); font-weight: 400; }
input, textarea { width: 100%; padding: 12px 13px; border: 1px solid #718a9a; border-radius: 0; background: var(--ink); color: var(--white); font: inherit; }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #ff8d99; }
textarea { resize: vertical; }
input:focus, textarea:focus { outline: 2px solid var(--blue); outline-offset: 2px; }
textarea::placeholder { color: #8194a0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-note { margin-top: 18px; color: var(--muted); font-size: 0.87rem; }
.form-note a { color: var(--blue-soft); }
.consent-field { display: grid; grid-template-columns: 22px minmax(0, 1fr); margin: 24px 0; padding: 16px; align-items: start; gap: 3px 12px; border: 1px solid var(--line); background: var(--ink); }
.consent-field input { width: 20px; height: 20px; margin: 3px 0 0; padding: 0; accent-color: var(--blue); }
.consent-field label { margin: 0; font-size: 0.89rem; font-weight: 600; line-height: 1.48; }
.consent-field label a { color: var(--blue-soft); }
.consent-error { grid-column: 2; margin-top: 4px; }
.altcha-field { display: grid; margin: 0 0 24px; padding: 18px; gap: 10px; border: 1px solid var(--line); background: var(--ink); }
.altcha-field legend { padding: 0 7px; color: #eaf2f5; font-size: 0.95rem; font-weight: 800; }
.altcha-field > p { margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.45; }
.altcha-field altcha-widget { width: 100%; --altcha-max-width: 100%; --altcha-color-base: #101a21; --altcha-color-base-content: #eaf2f5; --altcha-color-primary: #25a8e1; --altcha-color-primary-content: #0f171d; --altcha-color-success: #5fe0b5; --altcha-color-success-content: #0f171d; --altcha-color-error: #ff8d99; --altcha-color-error-content: #0f171d; --altcha-border-color: #607786; --altcha-border-radius: 0px; --altcha-input-background-color: #0f171d; --altcha-input-color: #ffffff; }
.honeypot { position: absolute; width: 1px; height: 1px; left: -10000px; overflow: hidden; }
.notice { margin-bottom: 20px; padding: 13px; font-weight: 700; }
.notice.success { border-left: 3px solid #5fe0b5; background: #174e41; }
.notice.error { border-left: 3px solid #ff8d99; background: #5b3035; }
.contact-aside { padding-top: 22px; }
.contact-aside h2 { margin-bottom: 18px; }
.contact-aside ul { margin: 24px 0 28px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.contact-aside li { padding: 11px 0; border-bottom: 1px solid var(--line); color: #d2dde3; }
.contact-channel-link { width: fit-content; margin-top: 18px; color: var(--blue-soft); font-weight: 800; }
.contact-channel-link:hover { color: var(--white); text-decoration: underline; }
.legal { max-width: 820px; }
.legal h2 { margin: 40px 0 12px; font-size: 2rem; }
.legal p { color: #d2dde3; }
.legal a { color: var(--blue-soft); }
.legal-intro { padding: 24px; border-left: 3px solid var(--blue); background: var(--deep-2); font-size: 1.08rem; }
.legal-date { margin-top: 24px; color: var(--muted); font-size: 0.9rem; }

/* Footer */
.site-footer { padding-top: 68px; background: #0b1217; color: #c4d0d7; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 0.8fr 0.8fr; gap: 48px; padding-bottom: 62px; }
.footer-logo { width: 82px; margin-bottom: 17px; }
.site-footer h2 { margin-bottom: 15px; color: var(--white); font-size: 1.25rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 8px 0; font-size: 0.94rem; }
.site-footer a:hover { color: var(--blue-soft); }
.footer-channels .channel-link { width: fit-content; }
.footer-channels .channel-icon { width: 0.95rem; height: 0.95rem; }
.footer-note { display: block; color: #8799a4; font-size: 0.85rem; line-height: 1.4; }
.footer-bottom { display: flex; padding: 19px 0; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); font-size: 0.84rem; }

/* Privacy choice */
.privacy-notice {
  position: fixed;
  z-index: 60;
  width: min(1180px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  left: 50%;
  bottom: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(22px, 3vw, 34px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  overflow-y: auto;
  border: 1px solid var(--blue);
  background: #101a21;
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  transform: translateX(-50%);
}
.privacy-notice[hidden] { display: none; }
.privacy-notice-copy .eyebrow { margin-bottom: 7px; }
.privacy-notice-copy h2 { margin-bottom: 10px; font-size: clamp(1.8rem, 2.8vw, 2.7rem); }
.privacy-notice-copy > p:not(.eyebrow) { max-width: 760px; margin-bottom: 12px; color: #d2dde3; font-size: 0.94rem; }
.privacy-notice-copy .text-link { font-size: 0.88rem; }
.privacy-notice-actions { display: grid; min-width: 210px; gap: 10px; }
.privacy-notice-actions .button { width: 100%; }
.privacy-essential { border-color: var(--line); color: var(--white); }

@media (max-width: 980px) {
  .home-hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); gap: 42px; }
  .service-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.85fr); gap: 40px; }
  .service-hero h1, .contact-hero h1 { font-size: clamp(3rem, 5.8vw, 4.7rem); }
  .about-hero h1 { font-size: clamp(2.9rem, 5.25vw, 4.5rem); }
  .about-principles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cases-layout { grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr); gap: 48px; }
  .cases-copy h2 { font-size: clamp(2.65rem, 5.4vw, 3.7rem); }
  .case-stat { padding-left: 38px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 36px, 1180px); }
  body { font-size: 17px; }
  h1 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .section { padding-block: 78px; }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 72px; height: auto; }
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .home-hero { min-height: 0; background-size: 48px 48px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 54px; padding-block: 76px; }
  .hero-copy h1 em { display: inline; }
  .hero-studio { box-shadow: 10px 10px 0 rgba(37, 168, 225, 0.12); }
  .intro-grid,
  .narrative,
  .cases-layout,
  .section-heading,
  .process,
  .results,
  .contact-layout,
  .compact-hero-layout,
  .capability-bridge-layout,
  .featured-case { grid-template-columns: 1fr; gap: 36px; }
  .intro-grid > div:last-child { padding-top: 0; }
  .section-heading { align-items: start; margin-bottom: 34px; }
  .capability-bridge-heading { position: static; }
  .capability-bridge-grid { grid-template-columns: 1fr; }
  .capability-bridge-grid article { min-height: 0; }
  .capability-bridge-grid span { margin-bottom: 30px; }
  .services-grid,
  .card-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 50px 1fr; min-height: 0; padding: 28px 24px; }
  .service-label { min-height: 0; }
  .open-brief { align-items: flex-start; flex-direction: column; }
  .process li { grid-template-columns: 1fr; gap: 5px; }
  .cases-band { padding-block: 78px; scroll-margin-top: 70px; }
  .faq-band { scroll-margin-top: 70px; }
  .cases-copy h2 { margin-bottom: 20px; font-size: clamp(2.65rem, 12vw, 3.7rem); }
  .cases-copy > p:not(.eyebrow) { margin-bottom: 26px; }
  .case-stat { min-height: 0; padding: 34px 0 0; border-top: 1px solid var(--dark-line); border-left: 0; }
  .case-stat strong { font-size: clamp(5rem, 25vw, 7.6rem); }
  .case-stat span { max-width: 340px; margin-top: 12px; }
  .home-case-grid { grid-template-columns: 1fr; margin-top: 62px; }
  .home-case { min-height: 240px; }
  .ecosystem-card { grid-template-columns: 1fr; }
  .ecosystem-heading { grid-template-columns: 1fr; }
  .ecosystem-heading .eyebrow { grid-column: auto; }
  .ecosystem-brand { min-height: 240px; padding: 40px; }
  .ecosystem-card-reverse .ecosystem-brand,
  .ecosystem-card-reverse .ecosystem-copy { grid-column: auto; grid-row: auto; }
  .clients-heading { margin-bottom: 34px; }
  .client-logo { width: 220px; min-height: 132px; padding: 24px 28px; }
  .client-logo img { max-width: 180px; height: 62px; }
  .final-cta { flex-direction: column; align-items: flex-start; }
  .service-hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 52px; padding-block: 70px; }
  .service-hero h1, .contact-hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); overflow-wrap: anywhere; }
  .about-hero .service-hero-grid { min-height: 0; padding-block: 68px; }
  .about-hero h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
  .about-hero-actions { align-items: flex-start; margin-top: 28px; }
  .service-visual img { height: 300px; }
  .service-diagram { height: 320px; }
  .diagram-node { min-height: 72px; padding: 12px; }
  .diagram-node strong { font-size: 1.05rem; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-copy { padding: 28px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .about-principles-grid { grid-template-columns: 1fr; }
  .about-process-grid { grid-template-columns: 1fr; }
  .about-process-grid li { min-height: 0; }
  .about-process-grid span { margin-bottom: 34px; }
  .about-principle { min-height: 0; }
  .about-principle-number { margin-bottom: 34px; }
  .card { min-height: 0; padding: 28px 25px 28px 70px; }
  .card-index { left: 24px; top: 29px; }
  .tech span { display: block; margin-bottom: 8px; }
  .related-case-grid,
  .compact-case-grid { grid-template-columns: 1fr; }
  .featured-case { padding-block: 70px; }
  .case-number { margin-bottom: 30px; }
  .compact-case { min-height: 0; }
  .compact-case .case-tags { margin-top: 18px; padding-top: 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .privacy-notice { width: calc(100% - 20px); max-height: calc(100dvh - 20px); bottom: 10px; grid-template-columns: 1fr; padding: 22px; gap: 20px; }
  .privacy-notice-actions { min-width: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 430px) {
  .nav-actions > .button-small { display: none; }
  .home-hero-grid { padding-block: 64px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .about-hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .service-card { grid-template-columns: 1fr; }
  .service-number { margin-bottom: -4px; }
  .service-hero h1,
  .contact-hero h1,
  .solutions-hero h1,
  .cases-hero h1,
  .about-hero h1 { font-size: clamp(2.55rem, 10.8vw, 3.45rem) !important; }
  .diagram-node { width: 48%; }
  .diagram-node-2 { width: 44%; }
  .privacy-notice-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .mobile-drawer[open] { animation: none; }
  .client-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .client-marquee-track { animation: none; will-change: auto; }
  .client-marquee-group[aria-hidden="true"] { display: none; }
}
