@font-face {
  font-family: "Manrope";
  src: url("media/fonts/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --navy: #0b2235;
  --deep-blue: #13324a;
  --blue: #0a9cdb;
  --light-blue: #35b7f1;
  --ink: #142331;
  --muted: #66788a;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --sky: #eaf7fd;
  --line: rgba(11, 34, 53, 0.14);
  --line-strong: rgba(11, 34, 53, 0.25);
  --success: #087a55;
  --error: #b42318;
  --shadow: 0 24px 70px rgba(11, 34, 53, 0.11);
  --container: 1380px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 42px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(10, 156, 219, 0.35);
  outline-offset: 4px;
}

::selection {
  background: var(--light-blue);
  color: var(--navy);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  transform: translateY(-150%);
}

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

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

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

.narrow {
  width: min(calc(100% - 48px), 780px);
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 9vw, 130px) 0;
}

.section-compact {
  padding: clamp(54px, 7vw, 90px) 0;
}

.section-soft {
  background: var(--soft);
}

.section-sky {
  background: var(--sky);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow img {
  width: 22px;
  height: 22px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.07;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2.25vw, 30px);
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.65;
}

.text-large {
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.55;
}

.text-muted {
  color: var(--muted);
}

.text-blue {
  color: var(--blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(11, 34, 53, 0.06);
}

.nav-shell {
  width: min(calc(100% - 48px), 1380px);
  min-height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: clamp(176px, 17vw, 224px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(5px, 1vw, 12px);
}

.nav-links > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 0 12px;
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 750;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.nav-links > a:hover,
.nav-links > a[aria-current="page"] {
  background: var(--sky);
  color: var(--navy);
}

.nav-links > .nav-cta {
  margin-left: 4px;
  padding-inline: 19px;
  background: var(--blue);
  color: #fff;
}

.nav-links > .nav-cta:hover,
.nav-links > .nav-cta[aria-current="page"] {
  background: var(--navy);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle-inner {
  width: 21px;
  display: grid;
  gap: 5px;
}

.nav-toggle-inner span {
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--navy);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

.hero {
  padding: 18px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 650px minmax(500px, 1fr);
  align-items: start;
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(43px, 4.4vw, 60px);
}

.hero-copy .lead {
  max-width: 550px;
  margin-bottom: 34px;
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: center;
  border-radius: 110px 20px 110px 20px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: -18px;
  bottom: 32px;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 20px 6px 20px 20px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 16px 38px rgba(11, 34, 53, 0.2);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 23px;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 200ms var(--ease),
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button img {
  width: 19px;
  height: 19px;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(10, 156, 219, 0.22);
}

.button-primary:hover {
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(11, 34, 53, 0.2);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--paper);
}

.button-secondary:hover {
  border-color: var(--blue);
}

.button-dark {
  background: var(--navy);
  color: #fff;
}

.button-dark:hover {
  background: var(--blue);
}

.button-light {
  background: #fff;
  color: var(--navy);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--light-blue);
  color: var(--blue);
  font-weight: 800;
}

.text-link img {
  width: 18px;
  height: 18px;
}

.service-ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--sky);
}

.service-ribbon-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  align-items: stretch;
}

.ribbon-intro,
.ribbon-link {
  min-height: 232px;
  padding: 35px 30px;
}

.ribbon-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0;
}

.ribbon-intro p {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ribbon-intro strong {
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
}

.ribbon-link {
  border-left: 1px solid var(--line);
  transition:
    background-color 180ms ease,
    transform 200ms var(--ease);
}

.ribbon-link:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-3px);
}

.ribbon-link img {
  width: 42px;
  height: 42px;
  margin-bottom: 21px;
}

.ribbon-link strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 19px;
}

.ribbon-link span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.split-reverse > :first-child {
  order: 2;
}

.split-copy {
  max-width: 590px;
}

.split-copy .lead {
  margin-bottom: 30px;
}

.about-direct .split-copy {
  max-width: 880px;
}

.service-process .split-copy {
  max-width: 880px;
}

.split-media {
  position: relative;
  margin: 0;
}

.split-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 32px 90px 32px 32px;
  box-shadow: var(--shadow);
}

.split-media.media-portrait img {
  height: 680px;
}

.home-pricing {
  padding-top: 70px;
}

.home-price-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.home-price-title {
  display: grid;
  grid-template-columns: 116px 1fr;
  align-items: center;
  gap: 30px;
}

.home-price-title h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
}

.price-symbol {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
}

.price-symbol img {
  width: 54px;
  height: 54px;
}

.home-price-copy p {
  color: var(--muted);
  font-size: 18px;
}

.home-price-copy .button {
  margin-top: 12px;
}

.manifesto {
  padding: clamp(52px, 7vw, 88px);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #fff;
}

.manifesto h2,
.manifesto h3 {
  color: #fff;
}

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

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 110px);
}

.manifesto-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.manifesto-copy strong {
  color: #fff;
}

.principle-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.principle-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.principle-list span {
  color: var(--light-blue);
  font-weight: 800;
}

.principle-list h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.principle-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

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

.story-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  border-top: 2px solid var(--line);
}

.story-card:hover {
  border-color: var(--blue);
}

.story-index {
  margin-bottom: 50px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.story-card p {
  color: var(--muted);
}

.story-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.agile-values-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 88%, rgba(53, 183, 241, 0.14) 0 120px, transparent 122px),
    var(--paper);
}

.agile-values {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.agile-values-intro {
  position: sticky;
  top: 132px;
}

.agile-values-intro .lead {
  font-size: 18px;
}

.agile-values-intro .text-link {
  margin-top: 30px;
}

.agile-value-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agile-value-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 72px minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  min-height: 138px;
  padding: 28px clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(11, 34, 53, 0.08);
  border-radius: 28px 68px 28px 28px;
  background: var(--soft);
  box-shadow: 0 16px 42px rgba(11, 34, 53, 0.06);
}

.agile-value-list li:nth-child(even) {
  border-radius: 68px 28px 28px 28px;
  background: var(--sky);
}

.agile-value-list strong {
  color: var(--navy);
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.agile-value-list li > span:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.agile-value-bridge {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.agile-value-list li:nth-child(even) .agile-value-bridge {
  transform: rotate(7deg);
}

.process-list {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-list article {
  counter-increment: process;
  min-height: 265px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.process-list article:first-child {
  padding-left: 0;
}

.process-list article:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-list article::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 55px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-list h3 {
  font-size: 22px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.reference-list {
  display: grid;
  gap: 24px;
}

.reference-story {
  width: min(100%, 800px);
}

.reference-story-right {
  margin-left: auto;
}

.reference-story .split-copy {
  max-width: none;
}

.reference-story .reference-logo {
  margin-bottom: 24px;
}

.section-link {
  margin: 32px 0 0;
}

.reference-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 38px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

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

.reference-logo {
  width: 180px;
  height: auto;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
}

.reference-item h3 {
  margin-bottom: 8px;
}

.reference-item p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  overflow: hidden;
  background: var(--blue);
  color: #fff;
}

.cta-band-grid {
  min-height: 410px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 60px;
}

.cta-band h2 {
  max-width: 750px;
  color: #fff;
}

.cta-band p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
}

.cta-band-media {
  align-self: stretch;
}

.cta-band-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  border-radius: 90px 0 0 18px;
}

.page-hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(68px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
}

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

.page-hero-text .page-hero-copy {
  max-width: 900px;
}

.reference-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(53, 183, 241, 0.2) 0 100px, transparent 102px),
    linear-gradient(135deg, #fff 0%, var(--sky) 100%);
}

.reference-hero::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -155px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(10, 156, 219, 0.22);
  border-radius: 50%;
}

.reference-hero .page-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
}

.reference-hero .page-hero-copy {
  max-width: 900px;
}

.reference-hero h1 {
  font-size: clamp(43px, 5.3vw, 70px);
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(44px, 5.7vw, 74px);
}

.page-hero .lead {
  margin-bottom: 30px;
}

.page-hero-media {
  margin: 0;
}

.page-hero-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 32px 100px 32px 32px;
  box-shadow: var(--shadow);
}

.service-detail-list {
  display: grid;
  gap: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 120px 0.75fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  padding: 55px 0;
  border-top: 1px solid var(--line);
}

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

.service-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--sky);
}

.service-icon img {
  width: 42px;
  height: 42px;
}

.service-detail h2 {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 44px);
}

.service-detail-copy p {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 18px;
  height: 18px;
  background: url("media/icons/check.svg") center / contain no-repeat;
}

.reference-section {
  background: #fff;
}

.reference-showcase-list {
  display: grid;
  gap: clamp(38px, 6vw, 72px);
}

.reference-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 82px);
  border-radius: 38px 120px 38px 38px;
}

.reference-showcase-sky {
  background: var(--sky);
}

.reference-showcase-dark {
  border-radius: 120px 38px 38px 38px;
  background: var(--navy);
  color: #fff;
}

.reference-project-number {
  position: absolute;
  top: -44px;
  right: 42px;
  color: rgba(10, 156, 219, 0.1);
  font-size: clamp(150px, 22vw, 300px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 1;
  user-select: none;
}

.reference-showcase-dark .reference-project-number {
  color: rgba(53, 183, 241, 0.08);
}

.reference-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(48px, 8vw, 110px);
}

.reference-showcase-copy {
  max-width: 760px;
}

.reference-brand-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 38px;
}

.reference-brand-row > span:last-child {
  display: grid;
  gap: 2px;
}

.reference-brand-row .eyebrow {
  margin: 0;
}

.reference-brand-row strong {
  color: var(--navy);
  font-size: 17px;
}

.reference-logo-frame {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 12px;
  border: 1px solid rgba(11, 34, 53, 0.08);
  border-radius: 24px 42px 24px 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(11, 34, 53, 0.08);
}

.reference-logo-frame .reference-logo {
  width: 100%;
  max-height: 68px;
  object-position: center;
}

.reference-showcase h2 {
  max-width: 720px;
}

.reference-showcase .lead {
  max-width: 720px;
}

.reference-showcase-dark h2,
.reference-showcase-dark h3,
.reference-showcase-dark .reference-brand-row strong {
  color: #fff;
}

.reference-showcase-dark .reference-insight h3 {
  color: var(--navy);
}

.reference-showcase-dark .lead {
  color: rgba(255, 255, 255, 0.7);
}

.reference-showcase-dark .check-list {
  color: rgba(255, 255, 255, 0.9);
}

.reference-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.reference-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(11, 34, 53, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.reference-showcase-dark .reference-tags span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.reference-insight {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(11, 34, 53, 0.08);
  border-radius: 28px 70px 28px 28px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(11, 34, 53, 0.1);
  color: var(--ink);
  transform: rotate(-1deg);
}

.reference-showcase-dark .reference-insight {
  background: var(--sky);
  transform: rotate(1deg);
}

.reference-insight-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  background: var(--sky);
}

.reference-showcase-dark .reference-insight-icon {
  background: #fff;
}

.reference-insight-icon img {
  width: 28px;
  height: 28px;
}

.reference-insight .eyebrow {
  margin-bottom: 14px;
}

.reference-insight h3 {
  font-size: clamp(23px, 2.3vw, 31px);
}

.reference-insight p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.price-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 110px);
}

.price-intro h2 {
  max-width: 550px;
}

.price-copy {
  max-width: 670px;
}

.price-copy p {
  color: var(--muted);
  font-size: 18px;
}

.price-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-path {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.price-path.featured {
  border-color: var(--blue);
  background: var(--sky);
}

.price-path .eyebrow {
  margin-bottom: 35px;
}

.price-path h3 {
  font-size: 27px;
}

.price-path p {
  color: var(--muted);
}

.price-path strong {
  display: block;
  margin-top: 30px;
  color: var(--navy);
}

.factor-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 55px;
  border-top: 1px solid var(--line);
}

.factor-list article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.factor-list span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.factor-list h3 {
  margin: 12px 0 8px;
  font-size: 21px;
}

.factor-list p {
  margin: 0;
  color: var(--muted);
}

.quote {
  margin: 0;
  padding-left: 32px;
  border-left: 4px solid var(--light-blue);
  color: var(--navy);
  font-size: clamp(23px, 3vw, 39px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.about-facts div:first-child {
  padding-left: 0;
}

.about-facts div:last-child {
  border-right: 0;
}

.about-facts dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(54px, 8vw, 110px);
}

.contact-aside {
  position: sticky;
  top: 130px;
}

.contact-aside .lead {
  margin-bottom: 34px;
}

.contact-detail {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

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

.contact-detail span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  color: var(--navy);
  font-weight: 800;
}

.contact-form {
  padding: clamp(30px, 4vw, 54px);
  border-radius: var(--radius-lg);
  background: var(--soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.field {
  display: grid;
  gap: 9px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field > span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.field input,
.field select {
  min-height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 190px;
  padding: 15px 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(10, 156, 219, 0.12);
}

.field small {
  color: var(--muted);
}

.checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.checkbox input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--blue);
}

.checkbox label {
  color: var(--muted);
  font-size: 14px;
}

.checkbox a {
  color: var(--blue);
  text-decoration: underline;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.form-status {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.form-status[data-state="loading"] {
  color: var(--blue);
}

.legal {
  padding: clamp(60px, 8vw, 110px) 0;
}

.legal h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.legal h2 {
  margin-top: 50px;
  font-size: clamp(27px, 3vw, 38px);
}

.legal h3 {
  margin-top: 32px;
  font-size: 22px;
}

.legal a {
  color: var(--blue);
  text-decoration: underline;
}

.legal ul {
  padding-left: 22px;
}

.not-found-main {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
  width: min(calc(100% - 48px), 1040px);
  margin-inline: auto;
  padding: 70px 0;
}

.not-found-brand img {
  width: 100%;
  height: auto;
  max-width: 320px;
}

.not-found-main h1 {
  font-size: clamp(48px, 7vw, 86px);
}

.not-found-main p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  padding: 70px 0 28px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 60px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 220px;
  height: auto;
  margin-bottom: 24px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
}

.footer-brand p {
  max-width: 430px;
}

.footer-column strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
}

.footer-column a {
  display: block;
  margin: 9px 0;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--light-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms var(--ease),
    transform 650ms var(--ease);
}

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

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

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

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

@media (max-width: 1080px) {
  body.nav-open .site-header {
    height: 100svh;
    background: var(--paper);
  }

  .nav-shell {
    min-height: 78px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    padding: 28px 24px 50px;
    background: var(--paper);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links > a {
    min-height: 56px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 0;
    font-size: 18px;
  }

  .nav-links > a:hover,
  .nav-links > a[aria-current="page"] {
    background: transparent;
    color: var(--blue);
  }

  .nav-links > .nav-cta {
    min-height: 58px;
    justify-content: center;
    margin: 24px 0 0;
    border: 0;
    border-radius: 14px;
    padding: 0 20px;
    background: var(--blue);
    color: #fff;
  }

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

  .hero {
    padding: 42px 0 70px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy,
  .page-hero-copy {
    max-width: 820px;
  }

  .hero-media img {
    height: auto;
    min-height: 460px;
    aspect-ratio: 1.5;
  }

  .page-hero-media img {
    height: auto;
    aspect-ratio: 1.6;
  }

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

  .ribbon-intro {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 30px 0 15px;
  }

  .ribbon-link:first-of-type {
    border-left: 0;
  }

  .manifesto-grid,
  .price-intro,
  .home-price-grid {
    grid-template-columns: 1fr;
  }

  .reference-showcase-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .reference-insight {
    max-width: 680px;
  }

  .manifesto-grid {
    gap: 10px;
  }

  .agile-values {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .agile-values-intro {
    position: static;
    max-width: 820px;
  }

  .service-detail {
    grid-template-columns: 90px 0.8fr 1.2fr;
    gap: 30px;
  }

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

  .contact-aside {
    position: static;
  }
}

@media (max-width: 800px) {
  .container,
  .narrow,
  .nav-shell {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(40px, 11vw, 62px);
  }

  h2 {
    font-size: clamp(32px, 8vw, 46px);
  }

  .hero-media img {
    height: auto;
    min-height: 390px;
    aspect-ratio: 1.25;
    border-radius: 65px 16px 65px 16px;
  }

  .hero-note {
    right: 14px;
    bottom: 14px;
  }

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

  .ribbon-link {
    min-height: 0;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .ribbon-link img {
    grid-row: 1 / 3;
    margin: 0;
  }

  .ribbon-link strong,
  .ribbon-link span {
    grid-column: 2;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .reference-showcase {
    padding: 42px 30px;
    border-radius: 30px 78px 30px 30px;
  }

  .reference-showcase-dark {
    border-radius: 78px 30px 30px 30px;
  }

  .reference-project-number {
    top: -20px;
    right: 24px;
  }

  .reference-insight,
  .reference-showcase-dark .reference-insight {
    transform: none;
  }

  .split-media img,
  .split-media.media-portrait img {
    height: auto;
    aspect-ratio: 1.1;
  }

  .split-reverse > :first-child {
    order: 0;
  }

  .home-price-title {
    grid-template-columns: 82px 1fr;
    gap: 20px;
  }

  .price-symbol {
    width: 82px;
    height: 82px;
  }

  .price-symbol img {
    width: 40px;
    height: 40px;
  }

  .manifesto {
    padding: 42px 26px;
    border-radius: 28px;
  }

  .story-grid,
  .price-paths {
    grid-template-columns: 1fr;
  }

  .story-card {
    min-height: 280px;
  }

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

  .process-list article,
  .process-list article:first-child,
  .process-list article:last-child {
    min-height: 230px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-list article:nth-child(2n) {
    border-right: 0;
  }

  .process-list article::before {
    margin-bottom: 35px;
  }

  .reference-item {
    grid-template-columns: 1fr;
  }

  .reference-logo {
    grid-column: 1 / -1;
  }

  .cta-band-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 65px;
  }

  .cta-band-media {
    margin-right: -18px;
  }

  .cta-band-media img {
    min-height: 320px;
    border-radius: 70px 0 0 0;
  }

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

  .service-detail h2 {
    align-self: center;
  }

  .service-detail-copy {
    grid-column: 1 / -1;
  }

  .factor-list {
    grid-template-columns: 1fr;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts div,
  .about-facts div:first-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-facts div:last-child {
    border-bottom: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .not-found-main {
    grid-template-columns: 1fr;
  }

  .not-found-brand img {
    max-width: 230px;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow,
  .nav-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell {
    min-height: 72px;
  }

  .nav-links {
    top: 72px;
  }

  .brand img {
    width: 174px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .eyebrow {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .lead {
    font-size: 17px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-media img {
    height: auto;
    min-height: 340px;
    aspect-ratio: 0.95;
    object-position: center;
  }

  .hero-note {
    max-width: 190px;
    font-size: 12px;
  }

  .ribbon-link {
    padding: 28px 12px;
  }

  .manifesto {
    margin-inline: -3px;
  }

  .home-price-title {
    grid-template-columns: 1fr;
  }

  .principle-list article {
    grid-template-columns: 42px 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list article,
  .process-list article:first-child,
  .process-list article:last-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
  }

  .process-list article::before {
    margin-bottom: 20px;
  }

  .reference-item {
    gap: 22px;
  }

  .reference-hero {
    background:
      radial-gradient(circle at 102% 8%, rgba(53, 183, 241, 0.18) 0 76px, transparent 78px),
      linear-gradient(145deg, #fff 0%, var(--sky) 100%);
  }

  .reference-brand-row {
    align-items: flex-start;
    gap: 14px;
  }

  .reference-logo-frame {
    width: 76px;
    height: 76px;
    border-radius: 20px 34px 20px 20px;
  }

  .reference-showcase {
    padding: 34px 20px;
  }

  .reference-insight {
    padding: 28px 22px;
    border-radius: 24px 52px 24px 24px;
  }

  .reference-tags {
    margin-top: 28px;
  }

  .agile-value-list li {
    grid-template-columns: 1fr;
    gap: 13px;
    min-height: 0;
    padding: 26px 22px;
  }

  .agile-value-bridge,
  .agile-value-list li:nth-child(even) .agile-value-bridge {
    width: auto;
    height: auto;
    justify-self: start;
    padding: 6px 10px;
    border-radius: 999px;
    transform: none;
  }

  .reference-logo {
    width: 150px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .contact-form {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
