:root {
  --navy-950: #061127;
  --navy-900: #07142e;
  --navy-800: #0b2047;
  --navy-700: #173563;
  --blue-700: #0758d8;
  --blue-600: #0868f7;
  --blue-500: #1681ff;
  --blue-200: #b9d8ff;
  --blue-100: #deecff;
  --blue-50: #eef6ff;
  --cyan: #54d5e6;
  --ink: #111c30;
  --slate: #506078;
  --muted: #738098;
  --line: #d9e1ed;
  --surface: #f5f7fb;
  --white: #ffffff;
  --success: #158764;
  --error: #b83543;
  --shadow: 0 22px 60px rgba(15, 34, 69, 0.12);
  --max-width: 1200px;
  --header-height: 78px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--blue-600);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 7px;
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 20, 46, 0.08);
  transition: height 180ms ease, box-shadow 180ms ease, background 180ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(6, 17, 39, 0.08);
}

.header-inner {
  width: min(calc(100% - 40px), 1320px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-mark {
  position: relative;
  flex: 0 0 194px;
  width: 194px;
  height: 51px;
  overflow: hidden;
}

.brand-mark img {
  position: absolute;
  top: -33px;
  left: -25px;
  width: 232px;
  max-width: none;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 32px);
}

.site-nav > a:not(.button) {
  position: relative;
  color: #263650;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-phone {
  color: var(--blue-700);
}

.nav-toggle {
  display: none;
  width: 49px;
  height: 45px;
  padding: 0;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.nav-toggle-lines {
  display: grid;
  gap: 7px;
  place-items: center;
}

.nav-toggle-lines i {
  display: block;
  width: 27px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines i:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines i:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--white);
  background: var(--blue-600);
  border: 1px solid var(--blue-600);
  border-radius: 10px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(8, 104, 247, 0.22);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--blue-700);
  box-shadow: 0 14px 32px rgba(8, 104, 247, 0.32);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.button-primary {
  min-width: 202px;
}

.button:disabled {
  opacity: 0.62;
  box-shadow: none;
  cursor: wait;
  transform: none;
}

.button.is-loading span:first-child::after {
  display: inline-block;
  content: "";
  width: 0.9em;
  height: 0.9em;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  vertical-align: -0.1em;
  animation: spin 700ms linear infinite;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-700);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.text-link-light {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 780px;
  padding-top: calc(var(--header-height) + 94px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(10, 55, 119, 0.28), transparent 44%),
    var(--navy-900);
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(130, 179, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 179, 255, 0.15) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, transparent, black 25%, black 75%, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 5%;
  right: 7%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(14, 108, 255, 0.28), transparent 68%);
}

.hero-glow-two {
  bottom: -28%;
  left: 30%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(22, 129, 255, 0.18), transparent 67%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.88fr);
  gap: clamp(58px, 7vw, 108px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 25px;
  color: var(--blue-700);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}

.eyebrow span {
  width: 27px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light,
.section-kicker-light {
  color: #8fc2ff;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.45rem, 6vw, 5.8rem);
  font-weight: 750;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.hero h1 em {
  color: #82baff;
  font-style: normal;
  font-weight: 440;
}

.hero-intro {
  max-width: 665px;
  margin: 32px 0 0;
  color: #c5d2e7;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  max-width: 460px;
  margin-top: 48px;
  padding-top: 24px;
  align-items: center;
  gap: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof strong {
  color: #8fc2ff;
  font-size: 2.45rem;
  line-height: 1;
}

.hero-proof span {
  color: #aab9d0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.delivery-board {
  position: relative;
  border: 1px solid rgba(155, 195, 255, 0.23);
  border-radius: 16px;
  background: rgba(7, 23, 54, 0.82);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.delivery-board::before {
  position: absolute;
  z-index: -1;
  inset: -30px;
  content: "";
  border: 1px solid rgba(68, 146, 255, 0.12);
  border-radius: 24px;
}

.board-top {
  display: grid;
  height: 46px;
  padding-inline: 16px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: #8395b3;
  border-bottom: 1px solid rgba(155, 195, 255, 0.15);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i,
.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34517c;
}

.window-dots i:nth-child(2) {
  background: #4774a7;
}

.window-dots i:nth-child(3) {
  background: var(--blue-500);
}

.status {
  justify-self: end;
  color: #79d8b7;
  letter-spacing: 0.04em;
}

.status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #42d29e;
  box-shadow: 0 0 0 4px rgba(66, 210, 158, 0.1);
}

.board-body {
  padding: 28px;
}

.board-heading {
  display: flex;
  margin-bottom: 22px;
  flex-direction: column;
  color: #8192ad;
  font-size: 0.78rem;
}

.board-heading strong {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 720;
}

.board-steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.board-steps::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 20px;
  width: 1px;
  content: "";
  background: rgba(143, 194, 255, 0.17);
}

.board-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 68px;
  padding: 10px 12px;
  grid-template-columns: 40px 1fr 26px;
  align-items: center;
  gap: 12px;
  color: #7889a6;
  border: 1px solid transparent;
  border-radius: 9px;
}

.board-steps li.is-active {
  color: #b7c8e3;
  background: linear-gradient(90deg, rgba(8, 104, 247, 0.2), rgba(8, 104, 247, 0.06));
  border-color: rgba(73, 145, 255, 0.22);
}

.step-index {
  display: grid;
  width: 40px;
  height: 40px;
  color: #7990b4;
  background: #0b234d;
  border: 1px solid #1e4174;
  border-radius: 8px;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 900;
}

.is-complete .step-index {
  color: #7ed6b7;
  border-color: rgba(66, 210, 158, 0.25);
}

.is-active .step-index {
  color: var(--white);
  background: var(--blue-600);
  border-color: var(--blue-500);
}

.board-steps strong,
.board-steps small {
  display: block;
}

.board-steps strong {
  color: #e2eaf8;
  font-size: 0.86rem;
}

.board-steps small {
  margin-top: 1px;
  color: #7387a7;
  font-size: 0.67rem;
}

.step-state {
  color: #4d668e;
  text-align: center;
}

.is-complete .step-state {
  color: #56d5a7;
}

.pulse-dot {
  justify-self: center;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55a2ff;
  box-shadow: 0 0 0 0 rgba(85, 162, 255, 0.45);
}

.board-footer {
  display: flex;
  margin-top: 22px;
  padding-top: 18px;
  justify-content: space-between;
  gap: 12px;
  color: #70819d;
  border-top: 1px solid rgba(155, 195, 255, 0.13);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.capability-strip {
  position: relative;
  display: flex;
  margin-top: 80px;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #8292ab;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.capability-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-500);
}

.intro-band {
  padding: 78px 0;
  color: var(--navy-900);
  background: var(--blue-50);
}

.intro-band-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.6fr;
  gap: 48px;
}

.intro-statement {
  max-width: 860px;
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.intro-statement strong {
  color: var(--blue-600);
  font-weight: 620;
}

.section {
  padding: 128px 0;
}

.section-heading {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: 1.6fr 0.75fr;
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.process-intro h2,
.audience h2,
.about h2,
.contact h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.55rem, 4.6vw, 4.5rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading h2 span,
.process-intro h2 span,
.about h2 span {
  color: var(--blue-600);
  font-weight: 450;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--slate);
  font-size: 1.02rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 455px;
  padding: 36px 32px 32px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  z-index: 1;
  border-color: var(--blue-200);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card-accent {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.service-number {
  position: absolute;
  top: 24px;
  right: 27px;
  color: #a3adbd;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card-accent .service-number {
  color: #7085a7;
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 72px;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 13px;
  place-items: center;
  font-size: 0.88rem;
  font-weight: 900;
}

.service-card-accent .service-icon {
  color: #9bc8ff;
  background: #0b2555;
  border-color: #19437f;
}

.service-card h3 {
  margin: 0 0 13px;
  color: var(--navy-900);
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.service-card-accent h3 {
  color: var(--white);
}

.service-card p {
  margin: 0;
  color: var(--slate);
}

.service-card-accent p {
  color: #adbad0;
}

.service-card ul {
  display: grid;
  margin: 26px 0 0;
  padding: 22px 0 0;
  gap: 7px;
  color: #637187;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  list-style: none;
}

.service-card-accent ul {
  color: #91a1bb;
  border-color: #20365d;
}

.service-card li::before {
  margin-right: 8px;
  color: var(--blue-600);
  content: "—";
}

.audience {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 110%, rgba(20, 117, 255, 0.28), transparent 36%),
    var(--navy-900);
}

.audience::after {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(117, 176, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(117, 176, 255, 0.025),
    0 0 0 110px rgba(117, 176, 255, 0.018);
}

.audience-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.05fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.audience h2 {
  color: var(--white);
}

.audience h2 span {
  color: #8fc2ff;
  font-weight: 430;
}

.audience-copy > p:not(.section-kicker) {
  margin: 28px 0;
  color: #afbed4;
  font-size: 1.03rem;
}

.audience-list {
  border-top: 1px solid rgba(151, 190, 244, 0.2);
}

.audience-list > div {
  display: grid;
  min-height: 98px;
  padding: 19px 0;
  grid-template-columns: 42px minmax(155px, 0.7fr) 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(151, 190, 244, 0.2);
}

.audience-list span {
  color: #5f7da8;
  font-size: 0.67rem;
  font-weight: 900;
}

.audience-list strong {
  color: var(--white);
  font-size: 1.06rem;
}

.audience-list small {
  color: #91a1ba;
  line-height: 1.45;
}

.process {
  background: var(--surface);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.2fr;
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.process-intro {
  position: sticky;
  top: 118px;
}

.process-intro > p:not(.section-kicker) {
  margin: 29px 0 0;
  color: var(--slate);
  font-size: 1.02rem;
}

.process-promise {
  margin-top: 48px;
  padding: 23px;
  background: var(--white);
  border-left: 3px solid var(--blue-600);
  box-shadow: 0 12px 30px rgba(20, 40, 75, 0.06);
}

.process-promise span,
.process-promise strong {
  display: block;
}

.process-promise span {
  margin-bottom: 7px;
  color: var(--blue-700);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-promise strong {
  color: var(--navy-800);
  font-size: 0.92rem;
  line-height: 1.55;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: grid;
  padding: 42px 0 45px;
  grid-template-columns: 64px 1fr;
  gap: 25px;
  border-top: 1px solid var(--line);
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-number {
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
}

.process-step div > p:not(.process-label) {
  margin: 15px 0;
  color: var(--slate);
}

.deliverable {
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 850;
}

.work {
  overflow: hidden;
  background: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.work-card {
  min-width: 0;
}

.browser-frame {
  overflow: hidden;
  background: #eaf0f8;
  border: 1px solid #d6deeb;
  border-radius: 13px;
  box-shadow: 0 16px 38px rgba(15, 34, 69, 0.09);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.work-card:hover .browser-frame {
  box-shadow: 0 23px 52px rgba(15, 34, 69, 0.15);
  transform: translateY(-4px);
}

.browser-bar {
  display: flex;
  height: 32px;
  padding: 0 11px;
  align-items: center;
  gap: 5px;
  background: #f5f7fa;
  border-bottom: 1px solid #dfe4ec;
}

.browser-bar i {
  width: 6px;
  height: 6px;
  background: #c4ccd8;
}

.browser-bar span {
  margin-left: 7px;
  color: #8a95a5;
  font-size: 0.51rem;
}

.browser-preview {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--white);
}

.browser-preview::after {
  position: absolute;
  inset: 0;
  content: "";
}

.browser-preview iframe {
  width: calc(100% + 16px);
  max-width: none;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.work-card-copy {
  display: flex;
  padding: 22px 4px 0;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
}

.work-card-copy p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.work-card-copy h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.work-card-copy a {
  flex: 0 0 auto;
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 900;
  text-decoration: none;
}

.work-disclaimer {
  margin: 43px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.about {
  padding-bottom: 92px;
  background: var(--blue-50);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(65px, 9vw, 130px);
}

.about-lead {
  margin: 31px 0 0;
  color: var(--slate);
  font-size: 1.08rem;
}

.about-stories {
  border-top: 1px solid #cbd9eb;
}

.about-card {
  padding: 34px 0 38px;
  border-bottom: 1px solid #cbd9eb;
}

.about-card > span {
  color: var(--blue-700);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-card h3 {
  margin: 10px 0 14px;
  color: var(--navy-900);
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.about-card p {
  margin: 0;
  color: var(--slate);
}

.principles {
  display: grid;
  margin-top: 86px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #c8d8eb;
  border-left: 1px solid #c8d8eb;
}

.principles div {
  display: flex;
  min-height: 112px;
  padding: 22px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #c8d8eb;
  border-bottom: 1px solid #c8d8eb;
}

.principles strong {
  color: var(--blue-600);
  font-size: 0.7rem;
}

.principles span {
  color: var(--navy-800);
  font-size: 0.85rem;
  font-weight: 850;
}

.contact {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.15fr;
  align-items: start;
  gap: clamp(70px, 10vw, 145px);
}

.contact h2 {
  color: var(--white);
}

.contact h2 span {
  color: #8fc2ff;
  font-weight: 430;
}

.contact-copy > p:not(.section-kicker) {
  margin: 29px 0;
  color: #adbed7;
  font-size: 1.03rem;
}

.availability {
  display: flex;
  padding: 15px 17px;
  align-items: center;
  gap: 11px;
  color: #c6d5e9;
  background: rgba(9, 45, 96, 0.62);
  border: 1px solid rgba(100, 164, 255, 0.2);
  border-radius: 8px;
  font-size: 0.77rem;
}

.availability i {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #51d4a5;
  box-shadow: 0 0 0 5px rgba(81, 212, 165, 0.1);
}

.contact-direct {
  display: grid;
  margin-top: 34px;
  gap: 15px;
}

.contact-direct a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  text-decoration: none;
}

.contact-direct small {
  color: #7e91ae;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct strong {
  font-size: 0.85rem;
}

.contact-panel {
  padding: clamp(28px, 4vw, 45px);
  color: var(--ink);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.26);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 21px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #23324a;
  font-size: 0.76rem;
  font-weight: 850;
}

.field label span {
  color: var(--blue-600);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #ccd6e4;
  border-radius: 7px;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 130px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(22, 129, 255, 0.13);
}

.field small {
  display: block;
  margin-top: 6px;
  color: #78859a;
  font-size: 0.68rem;
  line-height: 1.45;
}

.consent {
  display: grid;
  margin: 4px 0 24px;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: #59677b;
  font-size: 0.72rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--blue-600);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.form-footer p {
  max-width: 175px;
  margin: 0;
  color: #778499;
  font-size: 0.63rem;
  line-height: 1.45;
}

.form-status {
  margin-top: 20px;
  padding: 0;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-status:not(:empty) {
  padding: 11px 13px;
}

.form-status.is-success {
  color: #0f694f;
  background: #e7f8f1;
  border: 1px solid #bce9d7;
}

.form-status.is-error {
  color: #942a37;
  background: #fff0f1;
  border: 1px solid #f2c5ca;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.noscript-note {
  color: var(--error);
  font-size: 0.8rem;
}

.site-footer {
  padding: 58px 0 28px;
  color: #c3cee0;
  background: #040c1b;
}

.footer-top {
  display: grid;
  padding-bottom: 44px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid #18243a;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-monogram {
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 8px;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 900;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-size: 0.93rem;
  line-height: 1.1;
}

.footer-brand small {
  margin-top: 3px;
  color: #71809b;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.footer-top > p {
  margin: 0;
  color: #7f8da4;
  font-size: 0.75rem;
  text-align: center;
}

.footer-top nav {
  display: flex;
  justify-content: flex-end;
  gap: 21px;
}

.footer-top nav a,
.footer-bottom a {
  color: #95a2b8;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-top nav a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #65738a;
  font-size: 0.68rem;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

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

@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .delivery-board {
    animation: board-float 6s ease-in-out infinite;
  }

  .pulse-dot {
    animation: pulse 1.8s ease-out infinite;
  }

  .hero-glow-one {
    animation: glow-drift 9s ease-in-out infinite alternate;
  }

  .js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js .reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .service-grid .reveal:nth-child(2),
  .work-grid .reveal:nth-child(2) {
    transition-delay: 80ms;
  }

  .service-grid .reveal:nth-child(3),
  .work-grid .reveal:nth-child(3) {
    transition-delay: 160ms;
  }
}

@keyframes board-float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes glow-drift {
  from { transform: translate3d(-15px, -8px, 0) scale(0.96); }
  to { transform: translate3d(25px, 16px, 0) scale(1.06); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(85, 162, 255, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(85, 162, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(85, 162, 255, 0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 17px;
  }

  .hero-layout {
    grid-template-columns: 1fr 400px;
    gap: 52px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 4.8rem);
  }

  .service-card {
    padding-inline: 26px;
  }

  .service-icon {
    margin-bottom: 56px;
  }

  .browser-preview {
    height: 300px;
  }

  .footer-top {
    grid-template-columns: 1fr 0.8fr;
  }

  .footer-top > p {
    text-align: right;
  }

  .footer-top nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .hero {
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .delivery-board {
    width: min(100%, 600px);
  }

  .capability-strip {
    margin-top: 65px;
  }

  .section-heading,
  .process-layout,
  .audience-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-heading > p {
    max-width: 620px;
  }

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

  .process-intro {
    position: static;
    max-width: 680px;
  }

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

  .work-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 13px);
  }

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

  .contact-copy {
    max-width: 680px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .brand-mark {
    flex-basis: 166px;
    width: 166px;
    height: 45px;
  }

  .brand-mark img {
    top: -28px;
    left: -21px;
    width: 198px;
  }

  .js .nav-toggle {
    display: block;
  }

  .js .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    height: calc(100dvh - var(--header-height));
    padding: 42px 25px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.99);
    overflow-y: auto;
  }

  .js .site-nav.is-open {
    display: flex;
  }

  .js .site-nav > a:not(.button) {
    padding: 16px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 1.2rem;
  }

  .js .site-nav .button {
    margin-top: 25px;
  }

  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 68px);
  }

  .hero h1 {
    font-size: clamp(3.05rem, 13vw, 5rem);
  }

  .capability-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .capability-strip i {
    display: none;
  }

  .intro-band {
    padding: 62px 0;
  }

  .intro-band-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section,
  .audience,
  .contact {
    padding: 92px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .service-card {
    min-height: 420px;
  }

  .browser-preview {
    height: 315px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: calc(var(--header-height) + 51px);
  }

  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    letter-spacing: -0.055em;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .delivery-board::before {
    display: none;
  }

  .board-top {
    grid-template-columns: 1fr auto;
  }

  .board-top > span:nth-child(2) {
    display: none;
  }

  .board-body {
    padding: 21px 17px;
  }

  .board-steps li {
    padding-inline: 7px;
    grid-template-columns: 40px 1fr 20px;
    gap: 10px;
  }

  .board-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .board-footer span:last-child {
    grid-column: 1 / -1;
  }

  .section-heading h2,
  .process-intro h2,
  .audience h2,
  .about h2,
  .contact h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

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

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 44px;
  }

  .audience-list > div {
    grid-template-columns: 34px 1fr;
  }

  .audience-list small {
    grid-column: 2;
  }

  .process-step {
    grid-template-columns: 45px 1fr;
    gap: 11px;
  }

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

  .work-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .browser-preview {
    height: 360px;
  }

  .work-card-copy {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .principles div {
    min-height: 100px;
    padding: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-panel {
    padding: 27px 20px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .form-footer p {
    max-width: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top > p {
    text-align: left;
  }

  .footer-top nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .container,
  .header-inner {
    width: min(calc(100% - 26px), var(--max-width));
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .browser-preview {
    height: 315px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .delivery-board,
  .contact,
  .site-footer,
  .hero-grid,
  .hero-glow {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
    color: var(--ink);
    background: var(--white);
  }

  .hero h1,
  .hero h1 em {
    color: var(--ink);
  }

  .section,
  .audience {
    padding: 45px 0;
  }
}

.legal-page,
.utility-page {
  min-height: 100vh;
  background: var(--surface);
}

.legal-header {
  display: flex;
  width: min(calc(100% - 40px), 1180px);
  height: 82px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-header > a:last-child {
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.legal-main {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
  padding: 92px 0 110px;
}

.legal-title {
  margin-bottom: 62px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.legal-title h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(3rem, 8vw, 5.3rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.legal-title > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.legal-content {
  max-width: 760px;
}

.legal-content section + section {
  margin-top: 42px;
}

.legal-content h2 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: 1.38rem;
  letter-spacing: -0.025em;
}

.legal-content p {
  margin: 0;
  color: var(--slate);
}

.legal-content a {
  color: var(--blue-700);
  font-weight: 750;
}

.legal-footer {
  display: flex;
  min-height: 90px;
  padding: 25px max(20px, calc((100% - 1180px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8190a9;
  background: var(--navy-950);
}

.legal-footer p {
  margin: 0;
  font-size: 0.72rem;
}

.legal-footer a {
  color: #a7b7cf;
  font-size: 0.75rem;
  font-weight: 800;
}

.utility-main {
  display: grid;
  min-height: 100vh;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(8, 104, 247, 0.28), transparent 34%),
    var(--navy-900);
  place-items: center;
}

.utility-card {
  width: min(100%, 660px);
  padding: clamp(32px, 7vw, 65px);
  color: var(--ink);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.utility-card h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.5rem, 8vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.utility-card > p:not(.section-kicker) {
  margin: 25px 0 30px;
  color: var(--slate);
}

@media (max-width: 640px) {
  .legal-header,
  .legal-main {
    width: min(calc(100% - 30px), 900px);
  }

  .legal-header {
    height: 70px;
  }

  .legal-main {
    padding: 65px 0 80px;
  }

  .legal-title {
    margin-bottom: 45px;
  }
}
