
:root {
  --ink: #091321;
  --ink-soft: #455264;
  --blue: #1457ff;
  --blue-bright: #2b69ff;
  --blue-pale: #eef3ff;
  --cyan: #7ce7ff;
  --paper: #f7f8fb;
  --white: #ffffff;
  --line: #dce1e9;
  --night: #07111f;
  --lime: #b9f65a;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.announcement {
  min-height: 35px;
  padding: 8px 28px;
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  background: var(--night);
  color: #d8e2f2;
  font-size: 12px;
  letter-spacing: .04em;
}

.announcement a {
  color: var(--cyan);
  font-weight: 700;
}

.announcement a span {
  margin-left: 4px;
  transition: transform .2s ease;
  display: inline-block;
}

.announcement a:hover span {
  transform: translateX(3px);
}

.site-header {
  height: 78px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 251, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(9, 19, 33, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.045em;
}

.brand > span:last-child > span {
  color: var(--blue);
}

.brand-mark {
  width: 31px;
  height: 31px;
  position: relative;
  display: inline-block;
  transform: skewX(-8deg);
}

.brand-mark i {
  position: absolute;
  display: block;
  width: 7px;
  bottom: 3px;
  background: var(--blue);
  border-radius: 2px 2px 0 0;
}

.brand-mark i:nth-child(1) { left: 2px; height: 11px; }
.brand-mark i:nth-child(2) { left: 11px; height: 20px; }
.brand-mark i:nth-child(3) { left: 20px; height: 27px; background: var(--cyan); }

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 13px;
  font-weight: 700;
}

.nav > a:not(.button) {
  position: relative;
}

.nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--blue);
  transition: right .2s ease;
}

.nav > a:not(.button):hover::after {
  right: 0;
}

.menu-button {
  display: none;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.theme-toggle:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.theme-icon { grid-area: 1 / 1; font-size: 18px; line-height: 1; }

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 9px 24px rgba(20, 87, 255, .2);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #003fe1;
  box-shadow: 0 14px 28px rgba(20, 87, 255, .28);
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  gap: 12px;
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero {
  min-height: var(--hero-min-height, 690px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
  align-items: center;
  padding: 84px max(28px, calc((100vw - var(--max)) / 2)) 72px;
  background: linear-gradient(112deg, var(--hero-bg-primary, #f9fbff) 0 var(--hero-split, 58%), var(--hero-bg-accent, #edf2ff) var(--hero-split, 58%) 100%);
}

.hero-no-visual { grid-template-columns: 1fr; }
.hero-no-visual .hero-copy { max-width: 920px; padding-right: 0; }

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .45;
  pointer-events: none;
  background-image: linear-gradient(rgba(20, 87, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 87, 255, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 65%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-right: 50px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: currentColor;
}

.eyebrow.light {
  color: var(--cyan);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(56px, 5.5vw, var(--hero-heading-size, 82px));
  line-height: .97;
  letter-spacing: -.068em;
  font-weight: 750;
}

h1 em,
h2 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

.hero-lede {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 33px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero-proof strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero-proof span {
  color: #6c7787;
  font-size: 11px;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  z-index: 1;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  top: 51%;
  left: 52%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #84ebff, #2e6dff 48%, #124de4 72%);
  box-shadow: 0 35px 90px rgba(20, 87, 255, .35);
  transform: translate(-50%, -50%);
}

.hero-visual::after {
  content: attr(data-monogram);
  position: absolute;
  top: 50%;
  left: 52%;
  color: rgba(255, 255, 255, .12);
  font-size: 180px;
  font-weight: 900;
  letter-spacing: -.11em;
  transform: translate(-52%, -50%);
}

.hero-visual.has-custom-image::before,
.hero-visual.has-custom-image::after { display: none; }
.hero-custom-image { width: calc(100% - 40px); height: calc(100% - 40px); position: absolute; inset: 20px; display: block; border-radius: 5px; }
.visual-fit-contain .hero-custom-image { object-fit: contain; }
.visual-fit-cover .hero-custom-image { object-fit: cover; }

.signal-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 22px 50px rgba(8, 26, 63, .18);
  backdrop-filter: blur(12px);
}

.card-one {
  width: 310px;
  height: 220px;
  top: 105px;
  left: 50%;
  padding: 22px;
  transform: translateX(-52%) rotate(-2deg);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5d6876;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.card-heading b {
  margin-left: auto;
  padding: 4px 6px;
  color: #148347;
  background: #e4faed;
  border-radius: 2px;
  font-size: 9px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #23c773;
  box-shadow: 0 0 0 4px #dcf8e9;
}

.signal-chart {
  height: 105px;
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  border-bottom: 1px solid #dbe2ee;
}

.signal-chart i {
  flex: 1;
  display: block;
  background: linear-gradient(to top, #1457ff, #7ce7ff);
  border-radius: 2px 2px 0 0;
  animation: bar-in .8s ease both;
}

@keyframes bar-in {
  from { transform: scaleY(.1); transform-origin: bottom; opacity: .25; }
}

.signal-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: #788393;
  font-size: 9px;
  text-transform: uppercase;
}

.card-two {
  right: -8px;
  top: 277px;
  width: 210px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: rotate(3deg);
}

.metric-ring {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-top: 17px;
  border-radius: 50%;
  background: conic-gradient(var(--lime) 0 98%, #dce4ee 98%);
  box-shadow: inset 0 0 0 7px white;
}

.metric-ring span { font-weight: 800; font-size: 16px; }
.metric-ring small { font-size: 8px; }
.card-two > div:last-child { display: flex; flex-direction: column; gap: 5px; }
.card-two strong { font-size: 12px; }
.card-two > div:last-child span { color: #768294; font-size: 10px; }

.card-three {
  left: 0;
  top: 345px;
  width: 205px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 12px;
  transform: rotate(-3deg);
}

.card-three .mono {
  grid-row: span 2;
  padding: 6px;
  align-self: center;
  color: var(--blue);
  background: var(--blue-pale);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.card-three strong { font-size: 11px; }
.card-three small { color: #788393; font-size: 9px; }

.orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
}

.orbit-a { width: 470px; height: 470px; left: 52%; top: 50%; transform: translate(-50%,-50%); }
.orbit-b { width: 530px; height: 310px; left: 52%; top: 50%; transform: translate(-50%,-50%) rotate(35deg); }

.platform-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.platform-strip > p {
  margin: 0;
  padding: 18px 28px 0;
  color: #8993a2;
  text-align: center;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.platform-track {
  max-width: 1380px;
  margin: 0 auto;
  padding: 25px 28px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 8px;
}

.platform-item {
  min-height: 58px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475365;
  background: #f7f8fb;
  border: 1px solid #e5e8ee;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 750;
}

.platform-logo {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border: 1px solid #e4e8ef;
  border-radius: 4px;
  background: white;
}

.platform-logo img { width: 20px; height: 20px; object-fit: contain; }

.partner-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 28px 40px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.partner-intro h2 {
  margin: 0;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.partner-intro h2 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.partner-card {
  min-height: 230px;
  padding: 24px 21px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(16, 38, 72, .04);
}

.partner-primary {
  min-height: 170px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto auto minmax(180px, .7fr) minmax(220px, 1fr);
  align-items: center;
  gap: 22px;
  border-color: #b9c9f2;
  border-left: 4px solid var(--blue);
  background: var(--white);
}

.partner-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-brand > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.partner-brand strong { font-size: 16px; letter-spacing: -.02em; }
.partner-status { margin-top: 22px; padding: 7px 10px; border-radius: 999px; color: #075b35; background: #dcf9e9; font-family: var(--font-geist-mono), monospace; font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.partner-primary .partner-status { margin-top: 0; justify-self: start; }
.partner-status.expert { color: var(--blue); background: var(--blue-pale); }
.partner-card > p { margin: 18px 0 0; color: var(--ink-soft); font-size: 10px; line-height: 1.65; }
.partner-primary > p { margin: 0; }
.badge-slot { width: 100%; max-width: 300px; margin-left: auto; padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; border: 1px dashed #aebfe7; background: #f8faff; }
.badge-slot b { color: var(--blue); font-size: 9px; text-transform: uppercase; }
.badge-slot small { color: #748095; font-size: 8px; line-height: 1.4; }
.partner-note { grid-column: 1 / -1; margin: 2px 0 0; color: #7a8595; font-size: 9px; line-height: 1.5; }

.certifications-section { padding-top: 95px; }
.certification-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.certification-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 5px; background: var(--white); box-shadow: 0 16px 32px rgba(16, 38, 72, .05); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.certification-card:hover { transform: translateY(-4px); border-color: #b9c9e8; box-shadow: 0 22px 40px rgba(16, 38, 72, .09); }
.certification-media { min-height: 235px; padding: 18px; display: grid; place-items: center; border-bottom: 1px solid var(--line); background: #f2f4f8; }
.certification-media img { width: 100%; height: 210px; display: block; object-fit: contain; background: white; }
.certification-placeholder { width: 100%; min-height: 198px; padding: 25px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px dashed #b8c1ce; border-radius: 4px; color: #7c8797; text-align: center; }
.certification-placeholder > span { padding: 7px 9px; color: var(--blue); background: var(--blue-pale); border-radius: 3px; font-family: var(--font-geist-mono), monospace; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.certification-placeholder > strong { margin-top: 17px; color: var(--ink); font-size: 15px; }
.certification-placeholder > small { max-width: 260px; margin-top: 8px; font-size: 9px; line-height: 1.55; }
.certification-content { min-height: 180px; padding: 23px; display: flex; flex-direction: column; align-items: flex-start; }
.certification-content > span { color: var(--blue); font-family: var(--font-geist-mono), monospace; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.certification-content h3 { margin: 13px 0 0; font-size: 20px; line-height: 1.25; letter-spacing: -.035em; }
.certification-content p { margin: 13px 0 0; color: var(--ink-soft); font-size: 9px; line-height: 1.5; }
.certification-content p strong { color: var(--ink); }
.certification-content > a { margin-top: auto; padding-top: 20px; color: var(--blue); font-size: 10px; font-weight: 800; text-decoration: underline; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 116px 28px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, .7fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  max-width: 820px;
  font-size: clamp(42px, 4.3vw, 64px);
}

.split-heading > p,
.article-heading > p {
  margin: 0 0 2px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.service-shell {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 310px 1fr;
  min-height: 470px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 50px rgba(22, 36, 58, .06);
}

.service-tabs {
  display: flex;
  flex-direction: column;
  background: #f0f3f9;
  border-right: 1px solid var(--line);
}

.service-tabs button {
  flex: 1;
  width: 100%;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 9px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #3e4b5e;
  text-align: left;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  transition: background .2s ease, color .2s ease;
}

.service-tabs button:last-child { border-bottom: 0; }
.service-tabs button > span:first-child { color: #9aa4b3; font-family: var(--font-geist-mono), monospace; font-size: 10px; }
.service-tabs button > span:last-child { transition: transform .2s ease; }
.service-tabs button:hover > span:last-child { transform: translateX(3px); }
.service-tabs button.active { background: var(--blue); color: white; }
.service-tabs button.active > span:first-child { color: var(--cyan); }

.service-panel {
  padding: 56px 62px 48px;
  animation: panel-in .32s ease both;
}
.service-panel-image { width: 100%; max-height: 260px; margin: -18px 0 30px; display: block; object-fit: cover; border: 1px solid var(--line); border-radius: 3px; }

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
}

.panel-kicker {
  margin: 0 0 15px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-panel h3 {
  max-width: 700px;
  margin: 0;
  font-size: 35px;
  line-height: 1.12;
  letter-spacing: -.045em;
}

.service-panel > p:not(.panel-kicker) {
  max-width: 680px;
  margin: 18px 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 38px;
  margin-bottom: 32px;
}

.service-list div {
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e5e8ef;
  font-size: 12px;
  font-weight: 700;
}

.service-list div span {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-pale);
  font-size: 9px;
}

.coverage-band {
  max-width: var(--max);
  margin: 0 auto 100px;
  padding: 28px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 45px;
  align-items: center;
  color: white;
  background: var(--blue);
}

.coverage-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
}

.coverage-number {
  font-size: 57px;
  font-weight: 850;
  letter-spacing: -.07em;
}

.coverage-copy strong { font-size: 14px; }
.coverage-copy p { margin: 7px 0 0; color: #dce6ff; font-size: 10px; line-height: 1.55; }
.coverage-list { display: flex; flex-wrap: wrap; gap: 8px; }
.coverage-list span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.25); background: rgba(4,24,65,.14); font-size: 9px; font-weight: 750; }

.dark-section {
  color: white;
  background: var(--night);
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -250px;
  top: -280px;
  border: 1px solid rgba(124, 231, 255, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(20, 87, 255, .035), 0 0 0 200px rgba(20, 87, 255, .02);
}

.section-dark-inner { max-width: var(--max); position: relative; }
.section-dark-inner h2 { color: white; }
.section-dark-inner .split-heading > p { color: #96a5b9; }
.section-dark-inner h2 em { color: var(--cyan); }

.process-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #253247;
  border-bottom: 1px solid #253247;
}

.process-card {
  min-height: 330px;
  padding: 25px 23px 30px;
  border-right: 1px solid #253247;
  transition: background .2s ease, transform .2s ease;
}

.process-card:last-child { border-right: 0; }
.process-card:hover { background: #0d1c30; transform: translateY(-4px); }
.process-card > span { color: var(--cyan); font-family: var(--font-geist-mono), monospace; font-size: 10px; }

.process-icon {
  width: 52px;
  height: 52px;
  margin: 43px 0 36px;
  position: relative;
  border: 1px solid #3b4a60;
  border-radius: 6px;
}

.process-icon i { position: absolute; display: block; border-radius: 2px; background: var(--cyan); }
.process-icon i:first-child { width: 10px; height: 10px; top: 12px; left: 12px; }
.process-icon i:last-child { width: 10px; height: 10px; right: 12px; bottom: 12px; opacity: .45; }
.process-card h3 { margin: 0 0 15px; font-size: 20px; letter-spacing: -.025em; }
.process-card p { margin: 0; color: #92a0b2; font-size: 12px; line-height: 1.7; }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 68px;
}

.industry-card {
  min-height: 390px;
  padding: 33px 36px;
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: #b9c7e2;
  box-shadow: 0 24px 45px rgba(19, 44, 85, .09);
}

.industry-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -90px;
  border: 1px solid #d8e2f5;
  border-radius: 50%;
  box-shadow: 0 0 0 35px #f6f8ff, 0 0 0 36px #e5ebf8;
}

.industry-top {
  display: flex;
  gap: 15px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.industry-top span { color: var(--blue); font-family: var(--font-geist-mono), monospace; font-size: 10px; }
.industry-top small { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.industry-card h3 { max-width: 400px; margin: 62px 0 15px; font-size: 30px; letter-spacing: -.04em; }
.industry-card > p { max-width: 510px; margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.industry-card ul { margin: 25px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.industry-card li { padding: 7px 9px; background: #f1f4f9; color: #445165; font-size: 9px; font-weight: 700; }
.industry-card > a { width: 42px; height: 42px; position: absolute; right: 29px; bottom: 29px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 17px; transition: all .2s ease; }
.industry-card:hover > a { background: var(--blue); border-color: var(--blue); color: white; transform: rotate(-20deg); }

.projects-section {
  position: relative;
  overflow: hidden;
  color: white;
  background: #0a1830;
}

.projects-section::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -360px;
  bottom: -360px;
  border: 1px solid rgba(124,231,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(20,87,255,.025), 0 0 0 200px rgba(20,87,255,.015);
}

.projects-inner { position: relative; z-index: 2; }
.projects-inner h2 { color: white; }
.projects-inner h2 em { color: var(--cyan); }
.projects-inner .split-heading > p { color: #9cacc1; }
.projects-grid { margin-top: 66px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.project-card { min-height: 530px; display: grid; grid-template-rows: 275px 1fr; border: 1px solid #293a56; background: #0d1e38; transition: transform .25s ease, border-color .25s ease; }
.project-card:hover { transform: translateY(-5px); border-color: #4c6fa8; }
.project-preview { position: relative; overflow: hidden; display: grid; place-items: center; background: linear-gradient(135deg, #104fef, #0b2d7f); }
.project-cyan .project-preview { background: linear-gradient(135deg, #068999, #06455d); }
.project-violet .project-preview { background: linear-gradient(135deg, #6942d1, #271e65); }
.project-night .project-preview { background: linear-gradient(135deg, #142541, #050b15); }
.project-preview::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 34px 34px; }
.project-index { position: absolute; left: 20px; top: 18px; color: rgba(255,255,255,.7); font-family: var(--font-geist-mono), monospace; font-size: 9px; }
.project-preview button { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; border: 0; background: none; color: white; cursor: default; }
.project-preview button > span { width: 62px; height: 62px; display: grid; place-items: center; padding-left: 3px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(255,255,255,.13); font-size: 17px; backdrop-filter: blur(8px); }
.project-preview button small { font-size: 9px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.preview-lines { width: 160px; position: absolute; right: 20px; bottom: 17px; display: flex; align-items: flex-end; gap: 6px; }
.preview-lines i { width: 25%; display: block; background: rgba(255,255,255,.24); }
.preview-lines i:nth-child(1) { height: 20px; }
.preview-lines i:nth-child(2) { height: 38px; }
.preview-lines i:nth-child(3) { height: 29px; }
.preview-lines i:nth-child(4) { height: 53px; background: var(--cyan); }
.project-content { padding: 28px 30px 30px; }
.project-content > span { color: var(--cyan); font-family: var(--font-geist-mono), monospace; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-content h3 { margin: 14px 0 11px; font-size: 24px; line-height: 1.2; letter-spacing: -.035em; }
.project-content p { margin: 0; color: #9eacc0; font-size: 11px; line-height: 1.65; }
.project-content ul { margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.project-content li { padding: 6px 8px; border: 1px solid #344866; color: #b7c5d9; font-size: 8px; }
.project-note { margin-top: 20px; padding: 22px 24px; display: grid; grid-template-columns: 210px 1fr; gap: 30px; align-items: center; border: 1px dashed #3d5578; background: rgba(255,255,255,.025); }
.project-note span { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.project-note p { margin: 0; color: #94a5bd; font-size: 10px; line-height: 1.55; }

.about-band {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(500px, 1.2fr);
  color: white;
  background: var(--blue);
}

.about-portrait {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background: #102947;
}

.about-portrait img { width: 100%; height: 100%; position: absolute; inset: 0; display: block; object-fit: cover; object-position: center top; border-radius: 0; }
.portrait-placeholder { width: 100%; min-height: inherit; padding: 42px; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; background: #102947; }
.portrait-placeholder span { color: white; font-size: clamp(88px, 11vw, 160px); font-weight: 850; line-height: .8; letter-spacing: -.09em; }
.portrait-placeholder small { margin-top: 22px; color: #b8c8dc; font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.about-copy {
  padding: 92px max(42px, calc((100vw - var(--max)) / 2)) 88px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy h2 { color: white; }
.about-copy h2 em { color: var(--cyan); }
.about-copy > p:not(.eyebrow) { max-width: 720px; margin: 25px 0 0; color: #d8e3ff; font-size: 15px; line-height: 1.75; }
.about-links { display: flex; align-items: center; gap: 26px; margin-top: 38px; }
.button-inverse { background: white; border-color: white; color: var(--ink); box-shadow: none; }
.button-inverse:hover { color: white; background: var(--night); border-color: var(--night); }
.about-links > span { color: #d5e1ff; font-size: 10px; text-transform: uppercase; letter-spacing: .05em; }

.proof-section { padding-bottom: 105px; }
.video-testimonials { margin-top: 62px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 16px; }
.video-testimonial { border: 1px solid var(--line); background: white; }
.video-placeholder { min-height: 330px; padding: 28px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; gap: 18px; color: white; background: linear-gradient(135deg, #0d1f3d, #1457ff); }
.video-placeholder::before { content: ""; position: absolute; width: 400px; height: 400px; right: -180px; top: -190px; border: 1px solid rgba(124,231,255,.35); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.025); }
.compact-video { min-height: 330px; flex-direction: column; text-align: center; background: linear-gradient(135deg, #13324a, #0a777f); }
.video-placeholder button { width: 70px; height: 70px; position: relative; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(255,255,255,.12); color: white; cursor: default; font-size: 18px; }
.video-placeholder button span { padding-left: 4px; }
.video-placeholder > div { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 6px; }
.video-placeholder strong { font-size: 15px; }
.video-placeholder small { max-width: 280px; color: #d8e6fb; font-size: 9px; line-height: 1.5; }
.video-caption { padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.video-caption span { color: #8994a4; font-family: var(--font-geist-mono), monospace; font-size: 8px; text-transform: uppercase; }
.video-caption b { font-size: 11px; text-align: right; }
.review-heading { margin-top: 65px; padding-top: 25px; display: flex; justify-content: space-between; align-items: end; gap: 30px; border-top: 1px solid var(--line); }
.review-heading > div { display: flex; flex-direction: column; gap: 7px; }
.review-heading span { color: var(--blue); font-family: var(--font-geist-mono), monospace; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.review-heading strong { font-size: 24px; letter-spacing: -.035em; }
.review-heading p { max-width: 500px; margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 1.55; }
.review-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card { min-height: 330px; padding: 25px; display: flex; flex-direction: column; border: 1px solid var(--line); background: white; }
.review-source { display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; gap: 0 10px; align-items: center; }
.review-source > span { width: 34px; height: 34px; grid-row: span 2; display: grid; place-items: center; border-radius: 50%; background: #14a800; color: white; font-size: 14px; font-weight: 900; }
.review-mint .review-source > span { background: #1dbf73; }
.review-source strong { font-size: 12px; }
.review-source small { color: #8b95a4; font-size: 8px; }
.stars { margin-top: 32px; color: #f2a900; font-size: 16px; letter-spacing: .12em; }
.review-card blockquote { margin: 17px 0 30px; color: #4b586a; font-family: Georgia, "Times New Roman", serif; font-size: 15px; line-height: 1.55; }
.review-person { margin-top: auto; padding-top: 18px; display: flex; gap: 11px; align-items: center; border-top: 1px solid #e5e8ee; }
.review-person > span { width: 31px; height: 31px; display: grid; place-items: center; border: 1px dashed #aeb7c4; border-radius: 50%; color: #8490a0; }
.review-person > div { display: flex; flex-direction: column; gap: 3px; }
.review-person strong { font-size: 10px; }
.review-person small { color: #8b95a4; font-size: 8px; }
.proof-note { margin: 13px 0 0; color: #8b95a4; font-size: 8px; line-height: 1.5; }

.review-screenshot-heading { margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; align-items: end; gap: 35px; border-top: 1px solid var(--line); }
.review-screenshot-heading > span { color: var(--blue); font-family: var(--font-geist-mono), monospace; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.review-screenshot-heading > p { max-width: 560px; margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 1.6; }
.review-screenshot-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.review-screenshot-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 5px; background: var(--white); box-shadow: 0 14px 30px rgba(16, 38, 72, .045); }
.review-screenshot-media { min-height: 260px; padding: 10px; display: grid; place-items: center; background: #f2f4f8; }
.review-screenshot-media img { width: 100%; height: auto; max-height: 620px; display: block; object-fit: contain; border: 1px solid #dfe3e9; border-radius: 4px; background: white; }
.review-screenshot-placeholder { width: 100%; min-height: 280px; padding: 35px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px dashed #b8c1ce; border-radius: 4px; color: #7c8797; text-align: center; }
.review-screenshot-placeholder > span { padding: 7px 9px; color: var(--blue); background: var(--blue-pale); border-radius: 3px; font-family: var(--font-geist-mono), monospace; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.review-screenshot-placeholder > strong { margin-top: 17px; color: var(--ink); font-size: 16px; }
.review-screenshot-placeholder > small { max-width: 360px; margin-top: 8px; font-size: 9px; line-height: 1.55; }
.review-screenshot-caption { min-height: 82px; padding: 17px 20px; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; border-top: 1px solid var(--line); }
.review-screenshot-caption > div { display: flex; flex-direction: column; gap: 4px; }
.review-screenshot-caption span { color: #8b95a4; font-family: var(--font-geist-mono), monospace; font-size: 7px; letter-spacing: .06em; text-transform: uppercase; }
.review-screenshot-caption strong { font-size: 12px; }
.review-screenshot-caption p { margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 1.5; }
.review-screenshot-caption > a { color: var(--blue); font-size: 9px; font-weight: 800; text-decoration: underline; }

.articles { padding-bottom: 130px; }
.article-filters { margin-top: 45px; padding-bottom: 14px; display: flex; gap: 8px; overflow-x: auto; }
.article-filters button { padding: 9px 13px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 999px; background: white; color: #566174; cursor: pointer; font-size: 10px; font-weight: 750; transition: all .2s ease; }
.article-filters button:hover,
.article-filters button.active { color: white; border-color: var(--blue); background: var(--blue); }

.article-grid {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card {
  background: white;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}

.article-card:hover { transform: translateY(-5px); box-shadow: 0 25px 45px rgba(19,44,85,.1); }
.article-card.featured { grid-column: span 2; }
.article-card > a { height: 100%; display: grid; grid-template-rows: 205px 1fr; }
.article-card.featured > a { grid-template-columns: .85fr 1.15fr; grid-template-rows: 1fr; }

.article-art {
  min-height: 205px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--blue);
}

.article-art::before {
  content: "";
  width: 170px;
  height: 170px;
  position: absolute;
  right: -45px;
  bottom: -60px;
  border: 25px solid rgba(255,255,255,.16);
  border-radius: 50%;
}

.article-art > span { position: relative; z-index: 2; font-family: var(--font-geist-mono), monospace; font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.article-art > b { position: absolute; right: 19px; bottom: 16px; z-index: 2; font-size: 42px; letter-spacing: -.08em; opacity: .9; }
.art-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 28px 28px; }
.art-2 { background: #11233d; }
.art-3 { background: #5438cd; }
.art-4 { background: #0a7e83; }
.article-content { padding: 25px; display: flex; flex-direction: column; }
.article-meta { display: flex; justify-content: space-between; gap: 10px; color: #8993a1; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.article-content h3 { margin: 20px 0 12px; font-size: 21px; line-height: 1.24; letter-spacing: -.035em; }
.article-content p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }
.read-link { margin-top: auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; color: var(--blue); font-size: 11px; font-weight: 800; }
.blog-cta { margin-top: 22px; padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: white; background: var(--night); }
.blog-cta > div { display: flex; flex-direction: column; gap: 6px; }
.blog-cta > div span { color: var(--cyan); font-family: var(--font-geist-mono), monospace; font-size: 8px; text-transform: uppercase; }
.blog-cta > div strong { font-size: 16px; }

.blog-page { background: #f7f8fb; }
.blog-hero { min-height: 525px; padding: 96px max(28px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; overflow: hidden; color: white; background: var(--night); }
.blog-hero-copy h1 { margin: 0; font-size: clamp(56px, 5.5vw, 82px); line-height: .98; letter-spacing: -.068em; }
.blog-hero-copy h1 em { color: var(--cyan); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.blog-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 29px 0 0; color: #9cacbf; font-size: 16px; line-height: 1.7; }
.blog-hero-index { min-height: 310px; position: relative; display: flex; flex-direction: column; justify-content: center; padding: 40px 55px; border: 1px solid #2a3b57; background: linear-gradient(145deg, #0b2450, #1457ff); }
.blog-hero-index::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 34px 34px; }
.blog-hero-index > span { position: relative; z-index: 2; color: rgba(255,255,255,.22); font-size: 110px; font-weight: 900; letter-spacing: -.1em; line-height: .8; }
.blog-hero-index b { position: relative; z-index: 2; margin-top: 30px; font-size: 26px; }
.blog-hero-index small { position: relative; z-index: 2; margin-top: 8px; color: #c8d9ff; font-family: var(--font-geist-mono), monospace; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.blog-featured-wrap { max-width: var(--max); margin: -52px auto 0; padding: 0 28px; position: relative; z-index: 3; }
.blog-featured { min-height: 420px; display: grid; grid-template-columns: .9fr 1.1fr; border: 1px solid #d9dfea; background: white; box-shadow: 0 28px 55px rgba(8,26,55,.14); transition: transform .25s ease; }
.blog-featured:hover { transform: translateY(-5px); }
.blog-featured-art { min-height: 420px; padding: 28px; position: relative; overflow: hidden; color: white; background: linear-gradient(145deg, #1457ff, #082b87); }
.blog-featured-art::before { content: ""; width: 320px; height: 320px; position: absolute; right: -125px; bottom: -135px; border: 34px solid rgba(124,231,255,.3); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.035), 0 0 0 100px rgba(255,255,255,.02); }
.blog-featured-art > span { position: relative; z-index: 2; font-family: var(--font-geist-mono), monospace; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.blog-featured-art > b { position: absolute; left: 28px; bottom: 23px; z-index: 2; font-size: 100px; line-height: .8; letter-spacing: -.08em; }
.blog-featured-art > div { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 38px 38px; }
.blog-featured-copy { padding: 58px 55px; display: flex; flex-direction: column; }
.blog-post-meta { display: flex; justify-content: space-between; gap: 20px; color: #8994a4; font-family: var(--font-geist-mono), monospace; font-size: 8px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.blog-featured-copy h2 { margin: 48px 0 18px; font-size: 36px; line-height: 1.12; letter-spacing: -.05em; }
.blog-featured-copy > p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.blog-featured-copy .read-link { margin-top: auto; }
.blog-library { max-width: var(--max); margin: 0 auto; padding: 115px 28px 125px; }
.blog-library-head { display: flex; justify-content: space-between; gap: 50px; align-items: end; }
.blog-library-head h2 { margin: 0; font-size: 48px; letter-spacing: -.055em; }
.blog-search { width: min(360px, 100%); display: flex; align-items: center; border-bottom: 1px solid #bfc7d3; }
.blog-search input { flex: 1; min-width: 0; padding: 13px 2px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 12px; }
.blog-search b { font-size: 19px; font-weight: 400; }
.blog-category-row { margin-top: 42px; padding-bottom: 15px; display: flex; gap: 8px; overflow-x: auto; }
.blog-category-row button { flex: 0 0 auto; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: white; color: #566174; cursor: pointer; font-size: 10px; font-weight: 750; }
.blog-category-row button:hover,
.blog-category-row button.active { color: white; border-color: var(--blue); background: var(--blue); }
.blog-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.blog-post-card { min-height: 485px; border: 1px solid var(--line); background: white; transition: transform .25s ease, box-shadow .25s ease; }
.blog-post-card:hover { transform: translateY(-5px); box-shadow: 0 23px 42px rgba(16,38,72,.09); }
.blog-post-card > a,
.blog-post-card > div { height: 100%; display: grid; grid-template-rows: 205px 1fr; }
.blog-post-art { padding: 20px; position: relative; overflow: hidden; color: white; background: #1457ff; }
.blog-post-art::before { content: ""; width: 160px; height: 160px; position: absolute; right: -65px; bottom: -60px; border: 22px solid rgba(255,255,255,.14); border-radius: 50%; }
.blog-post-art span { position: relative; z-index: 2; font-family: var(--font-geist-mono), monospace; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.blog-post-art b { position: absolute; right: 18px; bottom: 14px; z-index: 2; font-size: 49px; letter-spacing: -.07em; }
.blog-post-art i { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 28px 28px; }
.blog-art-2 { background: #102540; }
.blog-art-3 { background: #6440cf; }
.blog-art-4 { background: #087b83; }
.blog-post-copy { padding: 24px; display: flex; flex-direction: column; }
.blog-post-copy h3 { margin: 20px 0 12px; font-size: 20px; line-height: 1.25; letter-spacing: -.035em; }
.blog-post-copy p { margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.65; }
.post-status { margin-top: auto; padding-top: 18px; color: #8994a4; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.post-status.live { color: var(--blue); }
.blog-empty { padding: 70px 20px; display: flex; flex-direction: column; align-items: center; gap: 8px; border: 1px dashed #c5ccd7; color: #7b8695; }
.blog-empty strong { color: var(--ink); font-size: 16px; }
.blog-wordpress-note { max-width: 1360px; margin: 0 auto; padding: 80px max(45px, calc((100vw - var(--max)) / 2)); display: flex; justify-content: space-between; align-items: center; gap: 70px; color: white; background: var(--blue); }
.blog-wordpress-note > div { max-width: 750px; }
.blog-wordpress-note > div > span { color: var(--cyan); font-family: var(--font-geist-mono), monospace; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.blog-wordpress-note h2 { margin: 15px 0 13px; font-size: 37px; line-height: 1.1; letter-spacing: -.045em; }
.blog-wordpress-note p { margin: 0; color: #d9e5ff; font-size: 12px; line-height: 1.7; }

.faq-section {
  padding-top: 100px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 100px;
  border-top: 1px solid var(--line);
}

.faq-intro h2 { margin: 0 0 20px; font-size: 45px; letter-spacing: -.055em; }
.faq-intro > p:not(.eyebrow) { margin: 0 0 25px; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.faq-list { border-top: 1px solid #cfd5df; }
.faq-list details { border-bottom: 1px solid #cfd5df; }
.faq-list summary { min-height: 82px; display: grid; grid-template-columns: 36px 1fr 28px; align-items: center; gap: 12px; list-style: none; cursor: pointer; font-size: 14px; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: #9ba5b4; font-family: var(--font-geist-mono), monospace; font-size: 9px; }
.faq-list summary i { width: 16px; height: 16px; position: relative; }
.faq-list summary i::before,
.faq-list summary i::after { content: ""; position: absolute; left: 0; top: 7px; width: 15px; height: 1px; background: var(--ink); transition: transform .2s ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0deg); }
.faq-list details > p { margin: -8px 42px 27px 48px; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }

.booking-section { padding-top: 105px; }
.booking-frame {
  min-height: var(--booking-height, 700px);
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 24px 50px rgba(22, 36, 58, .07);
}
.booking-frame iframe { width: 100%; height: var(--booking-height, 700px); display: block; border: 0; background: white; }
.booking-placeholder { min-height: var(--booking-height, 700px); padding: 45px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.booking-placeholder > span { width: 72px; height: 72px; display: grid; place-items: center; border: 1px solid #b9c9f2; border-radius: 6px; color: var(--blue); background: var(--blue-pale); font-family: var(--font-geist-mono), monospace; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.booking-placeholder h3 { margin: 25px 0 10px; font-size: 29px; letter-spacing: -.04em; }
.booking-placeholder p { max-width: 520px; margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.booking-placeholder .button { margin-top: 26px; }

.contact-section {
  max-width: 1360px;
  margin: 20px auto 0;
  padding: 86px 70px;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 80px;
  color: white;
  background: var(--night);
  border-radius: 4px 4px 0 0;
}

.contact-copy h2 { color: white; }
.contact-copy h2 em { color: var(--cyan); }
.contact-copy > p:not(.eyebrow) { max-width: 560px; margin: 27px 0 0; color: #a5b1c2; font-size: 15px; line-height: 1.7; }
.contact-points { margin-top: 45px; display: flex; flex-direction: column; gap: 13px; }
.contact-points span { display: flex; align-items: center; gap: 14px; color: #dce6f3; font-size: 12px; }
.contact-points b { color: var(--cyan); font-family: var(--font-geist-mono), monospace; font-size: 9px; }

.contact-form-wrap {
  min-height: 480px;
  padding: 34px;
  color: var(--ink);
  background: white;
}

.contact-form-wrap form { display: flex; flex-direction: column; gap: 19px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-wrap label { display: flex; flex-direction: column; gap: 9px; color: #303b4b; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea { width: 100%; padding: 13px 14px; border: 1px solid #d7dce5; border-radius: 2px; outline: 0; background: #fbfcfe; color: var(--ink); font-size: 13px; text-transform: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form-wrap textarea { resize: vertical; min-height: 108px; }
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,87,255,.1); }
.button-submit { width: 100%; border: 0; cursor: pointer; }
.contact-form-wrap form > small { color: #8893a2; font-size: 9px; line-height: 1.5; text-align: center; text-transform: none; }

.success-message { min-height: 410px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.success-message > span { width: 54px; height: 54px; display: grid; place-items: center; color: var(--blue); background: var(--blue-pale); border-radius: 50%; font-size: 24px; }
.success-message h3 { margin: 22px 0 10px; font-size: 25px; letter-spacing: -.035em; }
.success-message p { max-width: 330px; margin: 0 0 24px; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.success-message > button { margin-top: 18px; border: 0; border-bottom: 1px solid currentColor; background: none; color: #637083; cursor: pointer; font-size: 10px; }

footer {
  color: white;
  background: #040b15;
}

.footer-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 28px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
}

.brand-light { color: white; }
.footer-main > div:first-child > p { max-width: 350px; margin: 21px 0 0; color: #8492a5; font-size: 12px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-links > div { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong { margin-bottom: 8px; color: #dbe6f4; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { color: #8290a4; font-size: 11px; transition: color .2s ease; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding: 23px 28px; display: flex; justify-content: space-between; border-top: 1px solid #182233; color: #68768a; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }

html[data-theme="dark"] body {
  --ink: #f1f5fb;
  --ink-soft: #aab6c7;
  --blue: #5f8cff;
  --blue-bright: #7aa0ff;
  --blue-pale: #172b4e;
  --paper: #08111f;
  --white: #101b2c;
  --line: #27364b;
  color: var(--ink);
  background: var(--paper);
}

html[data-theme="dark"] .site-header { background: rgba(8, 17, 31, .92); border-bottom-color: #243247; }
html[data-theme="dark"] .theme-toggle { background: #111d2e; }
html[data-theme="dark"] .hero { background: linear-gradient(112deg, #0b1524 0 58%, #101f36 58% 100%); }
html[data-theme="dark"] .hero-grid { opacity: .32; background-image: linear-gradient(rgba(124, 231, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 231, 255, .08) 1px, transparent 1px); }
html[data-theme="dark"] .hero-proof span { color: #91a0b4; }
html[data-theme="dark"] .signal-card { color: #091321; }
html[data-theme="dark"] .card-three .mono { color: #1457ff; background: #eef3ff; }
html[data-theme="dark"] .platform-strip > p { color: #96a4b8; }
html[data-theme="dark"] .platform-item { color: #d8e2ef; background: #111d2e; border-color: #29384e; }
html[data-theme="dark"] .partner-primary { border-color: #3c5689; border-left-color: var(--blue); }
html[data-theme="dark"] .badge-slot { border-color: #47618f; background: #13223a; }
html[data-theme="dark"] .badge-slot small,
html[data-theme="dark"] .partner-note { color: #91a0b4; }
html[data-theme="dark"] .partner-status { color: #b9f8d6; background: #123c2b; }
html[data-theme="dark"] .partner-status.expert { color: #b8cbff; background: #182f58; }
html[data-theme="dark"] .certification-media { background: #0b1524; }
html[data-theme="dark"] .certification-placeholder { border-color: #3a4a60; color: #9aa8ba; }
html[data-theme="dark"] .service-tabs { background: #0c1726; }
html[data-theme="dark"] .service-tabs button { color: #bec9d8; }
html[data-theme="dark"] .service-list div { border-top-color: #29384d; }
html[data-theme="dark"] .industry-card::after { border-color: #243754; box-shadow: 0 0 0 35px #111c2d, 0 0 0 36px #263851; }
html[data-theme="dark"] .industry-card li { color: #c8d3e2; background: #17253a; }
html[data-theme="dark"] .industry-card,
html[data-theme="dark"] .video-testimonial,
html[data-theme="dark"] .review-card,
html[data-theme="dark"] .article-card,
html[data-theme="dark"] .blog-featured,
html[data-theme="dark"] .blog-post-card,
html[data-theme="dark"] .service-shell { background: var(--white); }
html[data-theme="dark"] .review-card blockquote { color: #c0cbd9; }
html[data-theme="dark"] .review-person { border-top-color: #2a394d; }
html[data-theme="dark"] .review-screenshot-media { background: #0b1524; }
html[data-theme="dark"] .review-screenshot-placeholder { border-color: #3a4a60; color: #9aa8ba; }
html[data-theme="dark"] .blog-search { border-bottom-color: #3a4a60; }
html[data-theme="dark"] .faq-list,
html[data-theme="dark"] .faq-list details { border-color: #334259; }
html[data-theme="dark"] .contact-form-wrap { color: var(--ink); background: #101b2c; }
html[data-theme="dark"] .contact-form-wrap label { color: #dce5f1; }
html[data-theme="dark"] .contact-form-wrap input,
html[data-theme="dark"] .contact-form-wrap select,
html[data-theme="dark"] .contact-form-wrap textarea { color: var(--ink); background: #0b1524; border-color: #324258; }
html[data-theme="dark"] .button-inverse { color: #091321; background: white; border-color: white; }
html[data-theme="dark"] .empty-state,
html[data-theme="dark"] .booking-frame { background: #101b2c; }
html[data-theme="dark"] .blog-page { background: var(--paper); }
html[data-theme="dark"] .nav { color: var(--ink); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr .82fr; }
  .hero-copy { padding-right: 20px; }
  .card-two { right: -40px; }
  .partner-section { grid-template-columns: 1fr; gap: 40px; }
  .certification-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-card:nth-child(3) { border-right: 0; }
  .process-card:nth-child(-n+3) { border-bottom: 1px solid #253247; }
  .process-card { min-height: 280px; }
  .process-icon { margin: 30px 0 25px; }
  .about-copy { padding-left: 55px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-card.featured { grid-column: span 2; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card:last-child { grid-column: span 2; }
  .blog-post-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section { margin-left: 18px; margin-right: 18px; padding: 65px 45px; gap: 45px; }
}

@media (max-width: 820px) {
  .announcement { justify-content: space-between; padding: 8px 18px; }
  .site-header { height: 67px; padding: 0 19px; }
  .menu-button { width: 42px; height: 42px; display: flex; flex-direction: column; justify-content: center; gap: 5px; border: 0; background: transparent; cursor: pointer; }
  .menu-button > span:not(.sr-only) { width: 22px; height: 2px; display: block; margin-left: auto; background: var(--ink); }
  .nav { position: absolute; left: 0; right: 0; top: 66px; padding: 24px 20px 28px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px rgba(9,19,33,.1); }
  .nav.open { display: flex; }
  .nav > a:not(.button) { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav .theme-toggle { margin-top: 18px; align-self: flex-start; }
  .nav .button { margin-top: 18px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 72px 20px 30px; background: linear-gradient(160deg, #f9fbff 0 60%, #edf2ff 60%); }
  .hero-copy { padding: 0; }
  .hero h1 { font-size: clamp(51px, 14vw, 78px); }
  .hero-lede { max-width: 600px; font-size: 16px; }
  .hero-visual { min-height: 480px; margin-top: 20px; }
  .hero-proof { margin-top: 44px; }
  .hero-visual::before { width: 350px; height: 350px; }
  .hero-visual::after { font-size: 145px; }
  .orbit-a { width: 400px; height: 400px; }
  .orbit-b { width: 450px; }
  .card-one { top: 95px; }
  .card-two { right: 4%; top: 292px; }
  .card-three { left: 4%; top: 325px; }
  .section { padding: 90px 20px; }
  .partner-section { padding: 70px 20px 30px; }
  .partner-primary { grid-template-columns: 1fr 1fr; }
  .partner-primary .badge-slot { max-width: none; margin-left: 0; }
  .coverage-band { margin: 0 20px 80px; grid-template-columns: 1fr; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 { font-size: clamp(40px, 10vw, 60px); }
  .split-heading > p { max-width: 600px; }
  .service-shell { grid-template-columns: 1fr; margin-top: 48px; }
  .service-tabs { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-tabs button { min-width: 160px; min-height: 67px; flex: 0 0 auto; border-bottom: 0; border-right: 1px solid var(--line); }
  .service-panel { padding: 42px 33px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2n) { border-right: 0; }
  .process-card:nth-child(3) { border-right: 1px solid #253247; }
  .process-card:nth-child(-n+4) { border-bottom: 1px solid #253247; }
  .process-card:last-child { border-right: 1px solid #253247; }
  .projects-grid { grid-template-columns: 1fr; }
  .video-testimonials { grid-template-columns: 1fr; }
  .video-placeholder,
  .compact-video { min-height: 300px; }
  .review-screenshot-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .review-screenshot-grid { grid-template-columns: 1fr; }
  .blog-hero { grid-template-columns: 1fr; padding: 80px 20px 105px; }
  .blog-hero-index { min-height: 250px; }
  .blog-featured-wrap { padding: 0 20px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-art { min-height: 280px; }
  .blog-library { padding: 90px 20px; }
  .blog-wordpress-note { margin: 0 20px; padding: 60px 40px; align-items: flex-start; flex-direction: column; gap: 35px; }
  .about-band { grid-template-columns: 1fr; }
  .about-portrait { min-height: 430px; }
  .about-copy { padding: 75px 40px; }
  .faq-section { grid-template-columns: 1fr; gap: 55px; }
  .contact-section { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 560px) {
  .announcement > span { display: none; }
  .announcement { justify-content: center; }
  .brand { font-size: 19px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-proof { grid-template-columns: 1fr; gap: 17px; }
  .hero-proof div { display: grid; grid-template-columns: 130px 1fr; gap: 10px; }
  .hero-visual { min-height: 440px; transform: scale(.92); transform-origin: top center; }
  .hero-visual::before { width: 315px; height: 315px; }
  .card-one { width: 280px; left: 50%; }
  .card-two { width: 190px; right: -25px; }
  .card-three { left: -24px; }
  .orbit-a { width: 360px; height: 360px; }
  .orbit-b { width: 390px; }
  .section { padding: 76px 18px; }
  .partner-section { padding-left: 18px; padding-right: 18px; }
  .partner-cards { grid-template-columns: 1fr; }
  .partner-card { grid-template-columns: 1fr; gap: 16px; }
  .badge-slot { max-width: none; margin-left: 0; }
  .certification-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .coverage-band { margin-left: 18px; margin-right: 18px; padding: 24px 20px; }
  .coverage-copy { grid-template-columns: 1fr; gap: 7px; }
  .coverage-number { font-size: 48px; }
  .service-panel { padding: 35px 22px; }
  .service-panel h3 { font-size: 29px; }
  .service-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card,
  .process-card:nth-child(3),
  .process-card:nth-child(5) { min-height: auto; border-right: 0; border-bottom: 1px solid #253247; }
  .process-card:last-child { border-bottom: 0; }
  .process-card { padding: 28px 24px; }
  .process-icon { margin: 23px 0; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { padding: 29px 25px; }
  .industry-card h3 { margin-top: 50px; font-size: 27px; }
  .project-card { grid-template-rows: 230px 1fr; min-height: 500px; }
  .project-content { padding: 25px 22px; }
  .project-note { grid-template-columns: 1fr; gap: 8px; }
  .about-portrait { min-height: 330px; }
  .about-copy { padding: 64px 22px; }
  .about-links { align-items: flex-start; flex-direction: column; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-column: auto; }
  .article-card.featured > a { grid-template-columns: 1fr; grid-template-rows: 205px 1fr; }
  .review-heading { align-items: flex-start; flex-direction: column; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card:last-child { grid-column: auto; }
  .review-screenshot-caption { grid-template-columns: 1fr; gap: 8px; }
  .video-caption { align-items: flex-start; flex-direction: column; }
  .video-caption b { text-align: left; }
  .blog-cta { align-items: stretch; flex-direction: column; }
  .blog-hero { padding-left: 18px; padding-right: 18px; }
  .blog-hero-copy h1 { font-size: 49px; }
  .blog-hero-index { padding: 30px; }
  .blog-hero-index > span { font-size: 90px; }
  .blog-featured-wrap { padding: 0 18px; }
  .blog-featured-copy { padding: 35px 24px; }
  .blog-featured-copy h2 { margin-top: 34px; font-size: 28px; }
  .blog-library { padding-left: 18px; padding-right: 18px; }
  .blog-library-head { align-items: stretch; flex-direction: column; }
  .blog-library-head h2 { font-size: 39px; }
  .blog-search { width: 100%; }
  .blog-post-grid { grid-template-columns: 1fr; }
  .blog-wordpress-note { margin: 0; padding: 55px 22px; }
  .blog-wordpress-note h2 { font-size: 31px; }
  .faq-section { gap: 40px; }
  .faq-list summary { grid-template-columns: 28px 1fr 22px; font-size: 13px; }
  .faq-list details > p { margin-left: 40px; margin-right: 18px; }
  .contact-section { margin: 0; padding: 65px 18px; border-radius: 0; }
  .contact-form-wrap { padding: 25px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { padding: 58px 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: span 2; }
  .footer-bottom { padding: 20px; flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Shared CMS integration */
.page-width { max-width: var(--max); margin-inline: auto; padding-inline: 28px; }
.page-width-narrow { max-width: 900px; margin-inline: auto; padding-inline: 28px; }
.visually-hidden,
.skip-link:not(:focus) { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.skip-link { z-index: 1000; top: 8px; left: 8px; padding: 12px 16px; background: white; color: var(--ink); }
.brand-logo { display: block; width: auto; max-width: 200px; height: 38px; object-fit: contain; }
.section-description p,
.hero-lede p,
.contact-description p { margin: 0; }
.service-panels { min-width: 0; }
.service-panel.is-hidden { display: none; }
.project-video-link,
.video-play { text-decoration: none; }
.project-preview.has-image { background-size: cover; background-position: center; }
.project-preview.has-image::after { content: ""; position: absolute; inset: 0; background: rgba(5,17,39,.42); }
.project-preview.has-image > * { z-index: 2; }
.project-video-link { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; color: white; }
.project-video-link > span { width: 62px; height: 62px; display: grid; place-items: center; padding-left: 3px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(255,255,255,.13); font-size: 17px; backdrop-filter: blur(8px); }
.project-video-link small { font-size: 9px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.project-video-link.placeholder { cursor: default; }
.about-portrait { background-size: cover; background-position: center; }
.about-richtext p { max-width: 720px; margin: 25px 0 0; color: #d8e3ff; font-size: 15px; line-height: 1.75; }
.video-placeholder { background-size: cover!important; background-position: center!important; }
.video-play { width: 70px; height: 70px; position: relative; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(255,255,255,.12); color: white; font-size: 18px; }
.video-play span { padding-left: 4px; }
.video-play.placeholder { cursor: default; }
.review-person img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.review-upwork .review-source > span { background: #14a800; }
.review-fiverr .review-source > span { background: #1dbf73; }
.badge-slot img { width: auto; max-width: 150px; max-height: 65px; object-fit: contain; }
.partner-brand img { width: 34px; height: 34px; object-fit: contain; }
.empty-state { grid-column: 1 / -1; min-height: 180px; padding: 45px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 1px dashed #c5ccd7; color: #7a8595; text-align: center; }
.empty-state strong { color: var(--ink); font-size: 17px; }
.empty-state span { font-size: 11px; line-height: 1.6; }
.blog-category-row a { flex: 0 0 auto; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: white; color: #566174; font-size: 10px; font-weight: 750; }
.blog-category-row a:hover,
.blog-category-row a.active { color: white; border-color: var(--blue); background: var(--blue); }
.blog-search button { border: 0; background: transparent; cursor: pointer; font-size: 19px; }
.pagination { margin-top: 42px; display: flex; justify-content: center; gap: 8px; }
.pagination a,
.pagination .page.current { min-width: 38px; height: 38px; padding: 0 10px; display: inline-grid; place-items: center; border: 1px solid var(--line); background: white; font-size: 10px; }
.pagination .page.current { color: white; border-color: var(--blue); background: var(--blue); }

.error-page { min-height: 70vh; padding: 100px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.error-page > span { color: var(--blue); font-size: 120px; font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.error-page h1 { margin: 35px 0 12px; font-size: 42px; letter-spacing: -.05em; }
.error-page p { margin: 0 0 28px; color: var(--ink-soft); }
.form-status { margin-bottom: 20px; padding: 15px; display: flex; flex-direction: column; gap: 5px; font-size: 11px; }
.form-status.success { color: #075b35; background: #dcf9e9; }
.form-status.error { color: #9c1c28; background: #fde8eb; }

@media (max-width: 820px) {
  .page-width,
  .page-width-narrow { padding-inline: 20px; }
}

@media (max-width: 560px) {
  .page-width,
  .page-width-narrow { padding-inline: 18px; }
}

/* WordPress theme integration */
.admin-bar .site-header { top: 32px; }
.header-menu,
.footer-menu { margin: 0; padding: 0; list-style: none; }
.header-menu { display: flex; align-items: center; gap: 25px; }
.header-menu a { position: relative; display: block; }
.header-menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: right .2s ease; }
.header-menu a:hover::after,
.header-menu .current-menu-item > a::after { right: 0; }
.footer-menu { display: flex; flex-direction: column; gap: 12px; }
.footer-menu li { margin: 0; }

.partner-description p,
.process-description p { margin: 0; }
.partner-description { color: var(--ink-soft); font-size: 10px; line-height: 1.65; }
.partner-primary .partner-description { margin: 0; }
.partner-credential,
.proof-link { color: var(--blue); font-size: 9px; font-weight: 800; text-decoration: underline; }
.partner-primary .partner-credential { grid-column: 1 / -1; justify-self: start; }
.process-description { color: #92a0b2; font-size: 12px; line-height: 1.7; }
.process-custom-icon { width: 52px; height: 52px; margin: 43px 0 36px; display: grid; place-items: center; overflow: hidden; border: 1px solid #3b4a60; border-radius: 6px; background: #0d1c30; }
.process-custom-icon img { width: 100%; height: 100%; display: block; object-fit: contain; }

.testimonial-video-media { min-height: 330px; position: relative; display: grid; place-items: center; overflow: hidden; background: linear-gradient(135deg, #0d1f3d, #1457ff) center / cover no-repeat; }
.testimonial-video-media.compact-video { background: linear-gradient(135deg, #13324a, #0a777f) center / cover no-repeat; }
.testimonial-video-media video,
.testimonial-video-media .wp-video,
.testimonial-video-media .mejs-container { width: 100%!important; max-width: none!important; }
.testimonial-embed { width: 100%; height: 100%; min-height: 330px; }
.testimonial-embed iframe { width: 100%; height: 100%; min-height: 330px; display: block; border: 0; }
.video-placeholder-link { min-height: 330px; width: 100%; padding: 30px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: white; background: rgba(4, 18, 42, .35); text-align: center; }
.video-placeholder-link > span,
.video-play-icon { width: 70px; height: 70px; display: grid; place-items: center; padding-left: 4px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(255,255,255,.12); color: white; }
.testimonial-video-media > .video-placeholder { width: 100%; min-height: 330px; }
.video-caption small { color: #8994a4; font-weight: 400; }
.review-person img { width: 31px; height: 31px; border-radius: 50%; object-fit: cover; }
.proof-link { margin-top: 12px; align-self: flex-start; }
.review-screenshot-card .review-screenshot-caption > p:empty { display: none; }

.article-art.has-post-image,
.blog-post-art.has-post-image { background-position: center; background-size: cover; }
.article-art.has-post-image::after,
.blog-post-art.has-post-image::after { content: ""; position: absolute; inset: 0; background: rgba(5, 17, 39, .48); }
.article-art.has-post-image > *,
.blog-post-art.has-post-image > * { position: relative; z-index: 2; }
.article-art.has-post-image .art-grid,
.blog-post-art.has-post-image i { position: absolute; }
.blog-post-copy h2 { margin: 20px 0 12px; font-size: 20px; line-height: 1.25; letter-spacing: -.035em; }

.content-listing { min-height: 65vh; padding-top: 95px; padding-bottom: 120px; }
.listing-header { margin-bottom: 52px; }
.listing-header h1,
.entry-hero h1 { max-width: 900px; margin: 0; font-size: clamp(48px, 6vw, 76px); line-height: 1; letter-spacing: -.065em; }
.listing-description { max-width: 720px; margin-top: 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.listing-header .blog-search { margin-top: 30px; }
.navigation.pagination { margin-top: 48px; }
.navigation.pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.navigation.pagination .page-numbers { min-width: 40px; min-height: 40px; padding: 8px 12px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--white); font-size: 10px; font-weight: 750; }
.navigation.pagination .page-numbers.current { color: white; border-color: var(--blue); background: var(--blue); }

.entry-hero { padding-top: 105px; padding-bottom: 55px; }
.entry-featured img,
.single-featured img { width: 100%; height: auto; display: block; }
.entry-content { padding-top: 60px; padding-bottom: 110px; color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2,
.entry-content h3,
.entry-content h4 { margin-top: 1.7em; color: var(--ink); line-height: 1.17; letter-spacing: -.04em; }
.entry-content h2 { font-size: clamp(32px, 4vw, 46px); }
.entry-content h3 { font-size: 28px; }
.entry-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { max-width: 100%; height: auto; }
.entry-content blockquote { margin: 38px 0; padding: 24px 28px; border-left: 3px solid var(--blue); background: var(--white); color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 21px; }
.entry-content pre { max-width: 100%; overflow: auto; padding: 22px; border: 1px solid var(--line); background: var(--night); color: #dce7f7; font-size: 13px; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th,
.entry-content td { padding: 12px; border: 1px solid var(--line); text-align: left; }
.alignwide { width: min(1184px, calc(100vw - 56px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }

.single-hero { padding: 110px 0 92px; color: white; background: var(--night); }
.single-hero h1 { margin: 0; color: white; font-size: clamp(46px, 6.4vw, 78px); line-height: 1.02; letter-spacing: -.06em; }
.single-meta { margin-top: 34px; display: flex; gap: 24px; color: #9aabc0; font-family: monospace; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.single-featured { margin-top: -46px; position: relative; z-index: 2; }
.single-featured img { max-height: 650px; object-fit: cover; box-shadow: 0 25px 60px rgba(7,17,31,.14); }
.single-footer { padding-bottom: 100px; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.post-tags a { padding: 8px 11px; border: 1px solid var(--line); background: var(--white); color: var(--ink-soft); font-size: 10px; }
.post-navigation { margin-top: 45px; padding-top: 30px; border-top: 1px solid var(--line); }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.post-navigation a { min-height: 105px; padding: 22px; display: flex; flex-direction: column; gap: 8px; border: 1px solid var(--line); background: var(--white); }
.post-navigation span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.post-navigation strong { font-size: 15px; line-height: 1.45; }
.case-study-summary { max-width: 750px; margin: 24px 0 0; color: #a8b7ca; font-size: 17px; line-height: 1.7; }
.case-study-stack { margin: 30px 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.case-study-stack li { padding: 8px 11px; border: 1px solid #33435a; color: #c5d1df; font-size: 10px; }

.comments-wrap { padding-bottom: 100px; }
.comments-area { padding-top: 50px; border-top: 1px solid var(--line); }
.comments-area h2,
.comment-reply-title { font-size: 28px; letter-spacing: -.04em; }
.comment-list { padding-left: 0; list-style: none; }
.comment-list li { margin: 0; padding: 24px 0; border-bottom: 1px solid var(--line); }
.comment-author { display: flex; align-items: center; gap: 12px; }
.comment-author img { border-radius: 50%; }
.comment-meta { margin-top: 7px; color: var(--ink-soft); font-size: 10px; }
.comment-content { margin-top: 16px; color: var(--ink-soft); line-height: 1.7; }
.comment-form { display: grid; gap: 16px; }
.comment-form p { margin: 0; }
.comment-form label { display: block; margin-bottom: 7px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.comment-form input:not([type="checkbox"]),
.comment-form textarea { width: 100%; padding: 13px; border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.comment-form .submit { min-height: 48px; padding: 0 20px; border: 0; border-radius: 3px; background: var(--blue); color: white; cursor: pointer; font-weight: 800; }

.ar-honeypot { position: absolute!important; left: -10000px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.blog-search button { padding: 10px 2px 10px 14px; color: var(--blue); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.form-status { line-height: 1.5; }

html[data-theme="dark"] .entry-content blockquote,
html[data-theme="dark"] .post-tags a,
html[data-theme="dark"] .post-navigation a,
html[data-theme="dark"] .navigation.pagination .page-numbers { background: var(--white); }
html[data-theme="dark"] .review-screenshot-card { background: var(--white); }
html[data-theme="dark"] .review-screenshot-media img { border-color: #34445a; }
html[data-theme="dark"] .blog-post-art.has-post-image::after,
html[data-theme="dark"] .article-art.has-post-image::after { background: rgba(3, 10, 20, .55); }

@media (max-width: 820px) {
  .admin-bar .site-header { top: 46px; }
  .header-menu { width: 100%; flex-direction: column; align-items: stretch; gap: 0; }
  .header-menu li { border-bottom: 1px solid var(--line); }
  .header-menu a { padding: 15px 0; }
  .header-menu a::after { display: none; }
  .testimonial-video-media,
  .testimonial-embed,
  .testimonial-embed iframe { min-height: 300px; }
  .entry-hero { padding-top: 80px; }
  .single-hero { padding: 85px 0 75px; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 600px) {
  .admin-bar .site-header { top: 0; }
}

@media (max-width: 560px) {
  .content-listing { padding-top: 70px; padding-bottom: 85px; }
  .listing-header h1,
  .entry-hero h1 { font-size: 45px; }
  .entry-content { padding-top: 45px; padding-bottom: 80px; font-size: 16px; }
  .single-hero h1 { font-size: 43px; }
  .post-navigation .nav-links { grid-template-columns: 1fr; }
  .alignwide { width: calc(100vw - 36px); }
  .process-custom-icon { margin: 23px 0; }
}
