:root {
  color-scheme: light;
  --ink: #080b10;
  --ink-soft: #121821;
  --paper: #f4f6f8;
  --white: #ffffff;
  --muted: #66717f;
  --line: rgba(10, 15, 22, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --accent: #ff542b;
  --accent-dark: #d93a15;
  --ice: #aee8e6;
  --glass: rgba(10, 14, 20, 0.58);
  --glass-light: rgba(255, 255, 255, 0.72);
  --radius: 8px;
  --max: 1400px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-dark: 0 32px 100px rgba(0, 0, 0, 0.3);
  --shadow-light: 0 24px 70px rgba(31, 40, 52, 0.14);
}

*,
*::before,
*::after {
  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: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  margin-bottom: 24px;
  font-family: Unbounded, Inter, sans-serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: 72px;
}

h2 {
  font-size: 52px;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.2;
}

em {
  color: var(--accent);
  font-style: normal;
}

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

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.glass-panel {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow-dark), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker > span {
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.kicker--dark {
  color: #505b67;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 40px), var(--max));
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 10, 15, 0.42);
  color: var(--white);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
  transition: top 240ms var(--ease), background-color 240ms var(--ease), border-color 240ms var(--ease);
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(7, 10, 15, 0.86);
  border-color: rgba(255, 255, 255, 0.12);
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 3px;
}

.brand span,
.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Unbounded, Inter, sans-serif;
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 220ms var(--ease), background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

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

.btn:active {
  transform: scale(0.98);
}

.btn--header {
  min-height: 48px;
  padding: 12px 15px;
  background: var(--white);
  color: var(--ink);
}

.btn--primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(255, 84, 43, 0.22);
}

.btn--primary:hover {
  background: #ff6b48;
  box-shadow: 0 18px 48px rgba(255, 84, 43, 0.32);
}

.btn--glass {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line-light);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 700px;
  height: 88svh;
  max-height: 900px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--white);
}

.hero__media,
.hero__shade,
.hero__frame {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.82) contrast(1.04);
  transform: scale(1.02);
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.95) 0%, rgba(5, 8, 13, 0.76) 46%, rgba(5, 8, 13, 0.18) 78%),
    linear-gradient(180deg, rgba(5, 8, 13, 0.4) 0%, rgba(5, 8, 13, 0.04) 45%, rgba(5, 8, 13, 0.82) 100%);
}

.hero__frame {
  z-index: -1;
  width: calc(100% - 48px);
  max-width: var(--max);
  margin: 112px auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__frame::before,
.hero__frame::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 3px;
  background: var(--accent);
}

.hero__frame::before {
  top: -2px;
  left: 0;
}

.hero__frame::after {
  right: 0;
  bottom: -2px;
}

.hero__content {
  width: min(calc(100% - 80px), 1320px);
  height: 100%;
  margin: 0 auto;
  padding: 150px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  grid-template-rows: 1fr auto;
  gap: 32px 48px;
  align-items: center;
}

.hero__copy {
  align-self: center;
  max-width: 980px;
}

.hero__copy h1 em {
  display: block;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-passport {
  align-self: end;
  padding: 24px;
  color: var(--white);
  transition: transform 320ms var(--ease);
}

.passport__head,
.lead-form__head,
.price-board__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.passport__head i,
.lead-form__head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 84, 43, 0.14);
}

.hero-passport > p {
  margin: 22px 0 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.hero-passport > strong {
  display: block;
  margin-bottom: 20px;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 58px;
  line-height: 1;
}

.hero-passport > strong small {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.hero-passport dl {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.hero-passport dl div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-passport dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.hero-passport dd {
  margin: 0;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  overflow: hidden;
}

.hero-stats > div {
  min-height: 104px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats > div:last-child {
  border-right: 0;
}

.hero-stats dt {
  font-family: Unbounded, Inter, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.hero-stats__cta {
  background: rgba(255, 84, 43, 0.92);
  color: var(--ink);
}

.hero-stats__cta dd {
  color: rgba(8, 11, 16, 0.68);
}

.capability-strip {
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
}

.capability-strip > div {
  width: min(calc(100% - 40px), var(--max));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.capability-strip i {
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.section {
  padding: 120px max(24px, calc((100% - var(--max)) / 2));
}

.story {
  background: var(--paper);
}

.story__heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 60px;
}

.story__heading .kicker {
  margin-top: 14px;
}

.story__heading h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  gap: 64px;
  align-items: center;
}

.story__visual {
  position: relative;
  min-height: 560px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce1e5;
}

.story__visual > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.story__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 7, 10, 0.64));
  pointer-events: none;
}

.story__visual figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 520px;
  padding: 22px;
  color: var(--white);
}

.story__visual figcaption span,
.service-feature__copy > span,
.project__content > span,
.tech-band span,
.trust__quote > span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.story__visual figcaption strong {
  display: block;
  max-width: 420px;
  font-size: 20px;
  line-height: 1.3;
}

.story__intro {
  margin-bottom: 36px;
  color: #3c4652;
  font-size: 20px;
  line-height: 1.65;
}

.story__numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: 30px;
  background: var(--line);
  border: 1px solid var(--line);
}

.story__numbers div {
  padding: 22px;
  background: var(--white);
}

.story__numbers strong,
.story__numbers span {
  display: block;
}

.story__numbers strong {
  font-family: Unbounded, Inter, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.story__numbers span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

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

.check-list li {
  position: relative;
  padding: 16px 0 16px 26px;
  border-top: 1px solid var(--line);
  font-weight: 650;
}

.check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
}

.section-heading--light {
  color: var(--white);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.58);
}

.services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(24px, calc((100% - var(--max)) / 2));
  width: 170px;
  height: 4px;
  background: var(--accent);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
}

.service-feature {
  position: relative;
  grid-column: span 7;
  grid-row: span 2;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.service-feature:hover > img,
.project:hover > img {
  transform: scale(1.035);
}

.service-feature__shade,
.project__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 15, 0.02) 30%, rgba(7, 10, 15, 0.78) 100%);
}

.service-feature__copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 640px;
  padding: 24px;
  color: var(--white);
}

.service-feature__copy h3 {
  font-family: Unbounded, Inter, sans-serif;
  font-size: 34px;
}

.service-feature__copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.service-card {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  transition: transform 240ms var(--ease), background-color 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(174, 232, 230, 0.34);
  background: rgba(255, 255, 255, 0.085);
}

.service-card--accent {
  border-color: transparent;
  background: var(--accent);
  color: var(--ink);
}

.service-card--accent:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: #ff623d;
}

.service-card--wide {
  grid-column: span 5;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-color: rgba(174, 232, 230, 0.2);
  background: rgba(174, 232, 230, 0.08);
}

.service-card__number {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
  font-weight: 800;
}

.service-card--accent .service-card__number {
  color: rgba(8, 11, 16, 0.52);
}

.service-card h3 {
  margin-top: 18px;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.service-card--accent p {
  color: rgba(8, 11, 16, 0.68);
}

.service-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}

.projects {
  background: var(--paper);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 320px;
  gap: 16px;
}

.project {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d8dee3;
  box-shadow: var(--shadow-light);
}

.project--hero {
  grid-column: span 8;
  grid-row: span 2;
}

.project--wide {
  grid-column: span 6;
}

.project > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.project__content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 18px;
  color: var(--white);
}

.project--hero .project__content {
  left: 24px;
  right: auto;
  bottom: 24px;
  width: min(520px, calc(100% - 48px));
  padding: 24px;
}

.project__content h3 {
  margin-bottom: 6px;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 19px;
}

.project--hero .project__content h3 {
  font-size: 32px;
}

.project__content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.project__content dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 20px 0 0;
  background: rgba(255, 255, 255, 0.14);
}

.project__content dl div {
  padding: 14px 0 0;
  background: rgba(10, 14, 20, 0.28);
}

.project__content dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.project__content dd {
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.process {
  position: relative;
  background: var(--ink-soft);
  color: var(--white);
}

.process::after {
  content: "";
  position: absolute;
  top: 0;
  right: max(24px, calc((100% - var(--max)) / 2));
  width: 34%;
  max-width: 460px;
  height: 1px;
  background: var(--ice);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 0 80px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.process-track li {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--ink-soft);
}

.process-track li:hover {
  background: rgba(174, 232, 230, 0.06);
}

.process-track span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.process-track strong {
  margin-top: auto;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 22px;
}

.process-track p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.tech-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.tech-band img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: contain;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
}

.tech-band div {
  padding: 44px;
}

.tech-band h3 {
  max-width: 620px;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 32px;
}

.tech-band p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.54);
}

.prices {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  background: var(--white);
}

.prices__intro {
  position: sticky;
  top: 120px;
}

.prices__intro h2 {
  font-size: 44px;
}

.prices__intro > p:not(.kicker) {
  color: var(--muted);
}

.prices__intro .btn {
  margin-top: 18px;
}

.price-board {
  overflow: auto;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-dark);
}

.price-board__top {
  min-width: 640px;
  padding: 22px 24px;
}

.price-board__top strong {
  color: var(--white);
  font-size: 12px;
}

.price-board table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.price-board th,
.price-board td {
  padding: 15px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  font-size: 13px;
}

.price-board thead th {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  text-transform: uppercase;
}

.price-board th:last-child,
.price-board td:last-child {
  text-align: right;
  font-weight: 800;
  white-space: nowrap;
}

.price-board .table-section th {
  padding-top: 24px;
  padding-bottom: 10px;
  background: rgba(255, 84, 43, 0.1);
  color: var(--accent);
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
}

.price-board tbody tr:not(.table-section):hover {
  background: rgba(255, 255, 255, 0.045);
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  background: var(--paper);
}

.trust__quote,
.trust__facts {
  min-height: 500px;
  border-radius: var(--radius);
}

.trust__quote {
  display: flex;
  flex-direction: column;
  padding: 48px;
  background: var(--accent);
}

.trust__quote > span {
  color: rgba(8, 11, 16, 0.56);
}

.trust__quote blockquote {
  max-width: 700px;
  margin: auto 0;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.24;
}

.trust__quote p {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 700;
}

.trust__facts {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.trust__facts > div {
  display: grid;
  grid-template-columns: 48px 180px 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust__facts > div:last-child {
  border-bottom: 0;
}

.trust__facts span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.trust__facts strong {
  font-family: Unbounded, Inter, sans-serif;
  font-size: 18px;
}

.trust__facts p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.contact {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.contact__media,
.contact__shade {
  position: absolute;
  inset: 0;
}

.contact__media {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.93) 0%, rgba(5, 8, 13, 0.72) 48%, rgba(5, 8, 13, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 8, 13, 0.25), rgba(5, 8, 13, 0.76));
}

.contact__inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: 90px;
  align-items: center;
}

.contact__copy h2 {
  max-width: 820px;
  font-size: 54px;
}

.contact__copy > p:not(.kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.contact-links a {
  min-width: 240px;
  min-height: 76px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background-color 180ms ease, transform 180ms var(--ease);
}

.contact-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
}

.contact-links small,
.contact-links strong {
  display: block;
}

.contact-links small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.contact-links strong {
  margin-top: 4px;
}

.lead-form {
  display: grid;
  gap: 10px;
  padding: 28px;
}

.lead-form__head {
  margin-bottom: 12px;
}

.lead-form label {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.lead-form textarea {
  min-height: 94px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--ice);
  background: rgba(255, 255, 255, 0.12);
}

.lead-form .btn {
  margin-top: 8px;
}

.form-note {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  line-height: 1.45;
}

.site-footer {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto auto;
  gap: 40px;
  align-items: center;
  padding: 52px max(24px, calc((100% - var(--max)) / 2));
  background: #05070b;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.brand--footer {
  color: var(--white);
}

.site-footer > p {
  margin-bottom: 0;
}

.site-footer > div {
  display: grid;
  gap: 4px;
}

.site-footer > a:last-child {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

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

.simple-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
}

.simple-page__content {
  width: min(720px, 100%);
  padding: 40px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.simple-page__content--wide {
  width: min(920px, 100%);
}

.simple-page__content h1 {
  font-size: 42px;
}

.simple-page__content h2 {
  margin-top: 32px;
  font-family: Inter, sans-serif;
  font-size: 24px;
}

.simple-page__content p,
.simple-page__content li {
  color: rgba(255, 255, 255, 0.68);
}

.brand-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 44px;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav a {
    padding-inline: 10px;
  }

  .phone-link {
    display: none;
  }

  .hero__content {
    width: min(calc(100% - 64px), 1240px);
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px 32px;
  }

  .hero-passport > strong {
    font-size: 48px;
  }

  .story__grid {
    gap: 40px;
  }

  .service-feature {
    grid-column: span 8;
  }

  .service-card,
  .service-card--wide {
    grid-column: span 4;
  }

  .project {
    grid-column: span 6;
  }

  .project--hero {
    grid-column: span 12;
  }

  .project--wide {
    grid-column: span 6;
  }

  .trust__facts > div {
    grid-template-columns: 38px 130px 1fr;
    gap: 16px;
    padding-inline: 24px;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(7, 10, 15, 0.94);
    box-shadow: var(--shadow-dark);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

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

  .site-nav a {
    padding-inline: 14px;
  }

  .header-actions {
    justify-self: end;
  }

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

  .hero {
    height: auto;
    max-height: none;
  }

  .hero__content {
    min-height: 790px;
    padding-top: 138px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero-passport {
    width: min(420px, 100%);
    justify-self: end;
  }

  .hero-stats {
    grid-column: 1;
  }

  .story__heading,
  .story__grid,
  .section-heading,
  .prices,
  .trust,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .story__heading,
  .section-heading {
    gap: 18px;
  }

  .story__heading .kicker {
    margin-top: 0;
  }

  .story__grid {
    gap: 42px;
  }

  .services-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .service-feature {
    grid-column: 1 / -1;
    min-height: 520px;
  }

  .service-card,
  .service-card--wide {
    grid-column: span 1;
    min-height: 260px;
  }

  .service-card--wide {
    grid-column: 1 / -1;
  }

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

  .prices {
    gap: 42px;
  }

  .prices__intro {
    position: static;
  }

  .trust__quote,
  .trust__facts {
    min-height: 430px;
  }

  .contact__inner {
    gap: 48px;
  }

  .lead-form {
    width: min(600px, 100%);
  }

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

@media (max-width: 720px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 21px;
  }

  .section {
    padding: 84px 20px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    min-height: 62px;
    gap: 8px;
    padding: 7px 7px 7px 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand small,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .hero {
    min-height: 88svh;
  }

  .hero__media {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 8, 13, 0.58) 0%, rgba(5, 8, 13, 0.68) 44%, rgba(5, 8, 13, 0.94) 100%),
      linear-gradient(90deg, rgba(5, 8, 13, 0.62), transparent);
  }

  .hero__frame {
    width: calc(100% - 24px);
    margin-top: 88px;
  }

  .hero__content {
    width: calc(100% - 40px);
    min-height: 88svh;
    padding: 118px 0 20px;
    gap: 24px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .hero-passport {
    display: none;
  }

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

  .hero-stats > div {
    min-height: 82px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stats dt {
    font-size: 21px;
  }

  .capability-strip > div {
    min-height: 84px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
    padding: 12px 0;
    font-size: 10px;
  }

  .capability-strip {
    position: relative;
    z-index: 4;
    margin-top: -28px;
  }

  .capability-strip i {
    display: none;
  }

  .story__heading,
  .section-heading {
    margin-bottom: 36px;
  }

  .story__visual,
  .story__visual > img {
    min-height: 440px;
  }

  .story__visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
  }

  .story__intro {
    font-size: 17px;
  }

  .services-bento {
    grid-template-columns: 1fr;
  }

  .service-feature,
  .service-card,
  .service-card--wide {
    grid-column: 1;
  }

  .service-feature {
    min-height: 500px;
  }

  .service-feature__copy {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }

  .service-feature__copy h3 {
    font-size: 26px;
  }

  .service-card--wide {
    flex-direction: column;
    align-items: stretch;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .project,
  .project--hero,
  .project--wide {
    grid-column: 1;
    grid-row: auto;
    min-height: 440px;
  }

  .project--hero {
    min-height: 540px;
  }

  .project--hero .project__content {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 20px;
  }

  .project--hero .project__content h3 {
    font-size: 26px;
  }

  .process-track {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }

  .process-track li {
    min-height: 200px;
  }

  .tech-band {
    grid-template-columns: 1fr;
  }

  .tech-band img {
    min-height: 240px;
  }

  .tech-band div {
    padding: 28px;
  }

  .tech-band h3 {
    font-size: 25px;
  }

  .prices__intro h2 {
    font-size: 34px;
  }

  .trust__quote {
    min-height: 420px;
    padding: 30px;
  }

  .trust__quote blockquote {
    font-size: 26px;
  }

  .trust__facts {
    min-height: auto;
  }

  .trust__facts > div {
    min-height: 150px;
    grid-template-columns: 36px 1fr;
    gap: 8px 16px;
  }

  .trust__facts p {
    grid-column: 2;
  }

  .contact {
    min-height: 0;
  }

  .contact__shade {
    background: linear-gradient(180deg, rgba(5, 8, 13, 0.78), rgba(5, 8, 13, 0.94));
  }

  .contact__inner {
    width: calc(100% - 40px);
    padding: 84px 0;
  }

  .contact__copy h2 {
    font-size: 36px;
  }

  .contact__copy > p:not(.kicker) {
    font-size: 16px;
  }

  .contact-links {
    display: grid;
  }

  .contact-links a {
    min-width: 0;
  }

  .lead-form {
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 48px 20px;
  }
}

@media (max-width: 720px) and (max-height: 720px) {
  .hero__content {
    padding-top: 98px;
  }

  .hero__lead {
    display: none;
  }

  .hero__actions {
    margin-top: 16px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .hero__content {
    width: calc(100% - 32px);
  }

  .hero__actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-stats > div {
    padding-inline: 12px;
  }

  .hero-stats dt {
    font-size: 18px;
  }

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

  .story__visual,
  .story__visual > img {
    min-height: 390px;
  }

  .price-board {
    margin-inline: -20px;
    border-radius: 0;
  }
}

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

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* V4: cinematic cover and horizontal project journey. */
.hero {
  min-height: 760px;
  height: 94svh;
  max-height: 980px;
}

.hero__media {
  object-position: center 58%;
  filter: saturate(0.92) contrast(1.06);
  transform: scale(1.035);
  animation: hero-drift 16s var(--ease) both;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 8, 14, 0.96) 0%, rgba(4, 8, 14, 0.82) 42%, rgba(4, 8, 14, 0.2) 72%, rgba(4, 8, 14, 0.3) 100%),
    linear-gradient(180deg, rgba(4, 8, 14, 0.32) 0%, rgba(4, 8, 14, 0.02) 46%, rgba(4, 8, 14, 0.88) 100%);
}

.hero__frame {
  margin-top: 106px;
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(4, 8, 14, 0.18);
}

.hero__frame::before {
  width: 112px;
}

.hero__content {
  width: min(calc(100% - 96px), 1320px);
  padding-top: 150px;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px 52px;
}

.hero__copy {
  max-width: 900px;
}

.hero__copy h1 {
  margin-bottom: 26px;
  font-size: 76px;
}

.hero__copy h1 > span,
.hero__copy h1 em {
  display: block;
}

.hero__copy h1 em {
  width: max-content;
  max-width: 100%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.16em;
  font-style: italic;
  font-weight: 600;
  line-height: 0.92;
}

.hero__lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
}

.hero__proof li {
  position: relative;
  padding-left: 15px;
}

.hero__proof li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--accent);
}

.hero__rail {
  position: absolute;
  top: 50%;
  right: max(14px, calc((100vw - var(--max)) / 2 - 34px));
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.hero__rail i {
  width: 1px;
  height: 72px;
  background: linear-gradient(transparent, var(--accent), transparent);
}

.hero-passport {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%),
    rgba(6, 11, 18, 0.54);
}

.hero-passport::before,
.journey-card__content::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  pointer-events: none;
}

.passport__stamp {
  position: absolute;
  top: 58px;
  right: 22px;
  color: rgba(255, 255, 255, 0.36);
  font-family: Unbounded, Inter, sans-serif;
  font-size: 9px;
  font-weight: 600;
  writing-mode: vertical-rl;
}

.hero-stats {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 58%),
    rgba(5, 10, 17, 0.6);
}

@keyframes hero-drift {
  from { transform: scale(1.08); }
  to { transform: scale(1.035); }
}

.projects {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(9, 14, 21, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 14, 21, 0.045) 1px, transparent 1px),
    #edf1f4;
  background-size: 72px 72px;
}

.projects::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(24px, calc((100% - var(--max)) / 2));
  width: 1px;
  background: rgba(8, 11, 16, 0.1);
  pointer-events: none;
}

.projects__heading h2 {
  max-width: 860px;
}

.projects__heading h2 em {
  display: block;
  width: max-content;
  max-width: 100%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08em;
  font-style: italic;
  font-weight: 600;
}

.journey-nav > p {
  margin: 0 0 24px;
  color: var(--muted);
}

.journey-nav__row {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.journey-count {
  color: var(--muted);
  font-family: Unbounded, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.journey-count strong {
  color: var(--ink);
  font-size: 28px;
}

.journey-controls {
  display: flex;
  gap: 8px;
}

.journey-controls button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(8, 11, 16, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.journey-controls button:hover:not(:disabled) {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.journey-controls button:disabled {
  opacity: 0.32;
  cursor: default;
}

.project-journey {
  width: 100vw;
  display: flex;
  gap: 20px;
  margin-left: calc(50% - 50vw);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2)) 24px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(8, 11, 16, 0.22) transparent;
  scrollbar-width: thin;
}

.project-journey:focus-visible {
  outline-offset: -4px;
}

.project-journey::-webkit-scrollbar {
  height: 6px;
}

.project-journey::-webkit-scrollbar-thumb {
  background: rgba(8, 11, 16, 0.22);
}

.journey-card {
  position: relative;
  flex: 0 0 min(80vw, 1180px);
  min-width: 0;
  height: min(70svh, 700px);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(8, 11, 16, 0.12);
  border-radius: var(--radius);
  background: var(--ink-soft);
  box-shadow: 0 32px 90px rgba(21, 31, 43, 0.2);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.journey-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.journey-card:hover > img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.035);
}

.journey-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 15, 0.52) 0%, transparent 58%),
    linear-gradient(180deg, transparent 40%, rgba(5, 9, 15, 0.72) 100%);
  pointer-events: none;
}

.journey-card__index {
  position: absolute;
  top: 24px;
  right: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Unbounded, Inter, sans-serif;
  font-size: 86px;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.3);
}

.journey-card__content {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(540px, calc(100% - 48px));
  overflow: hidden;
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
    rgba(5, 10, 17, 0.64);
  color: var(--white);
}

.journey-card__content > span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-card__content h3 {
  margin: 9px 0 0;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 32px;
}

.journey-card__content dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0 0;
}

.journey-card__content dl div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.journey-card__content dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.journey-card__content dd {
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.journey-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(8, 11, 16, 0.14);
  transform: translateZ(0);
}

.journey-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: transform 380ms var(--ease);
}

@media (max-width: 1180px) {
  .hero__copy h1 {
    font-size: 60px;
  }

  .hero__content {
    width: min(calc(100% - 72px), 1240px);
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px 32px;
  }

  .hero__rail {
    display: none;
  }
}

@media (max-width: 960px) {
  .hero {
    height: auto;
    max-height: none;
  }

  .hero__content {
    min-height: 860px;
    grid-template-columns: 1fr;
  }

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

  .journey-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
  }

  .journey-nav > p {
    margin: 0;
  }

  .journey-nav__row {
    gap: 16px;
  }

  .journey-card {
    flex-basis: 86vw;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 780px;
  }

  .hero__media {
    object-position: 68% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(4, 8, 14, 0.56) 0%, rgba(4, 8, 14, 0.68) 40%, rgba(4, 8, 14, 0.96) 100%),
      linear-gradient(90deg, rgba(4, 8, 14, 0.76), rgba(4, 8, 14, 0.12));
  }

  .hero__content {
    width: calc(100% - 40px);
    min-height: 780px;
    padding: 112px 0 18px;
    gap: 20px;
  }

  .hero__copy h1 {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .hero__copy h1 em {
    font-size: 1.12em;
  }

  .hero__proof {
    margin-top: 20px;
    gap: 7px 16px;
    font-size: 9px;
  }

  .hero-stats {
    align-self: end;
  }

  .projects {
    padding-inline: 20px;
  }

  .projects::before {
    left: 20px;
  }

  .projects__heading h2 em {
    width: auto;
  }

  .journey-nav {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .journey-nav__row {
    width: 100%;
  }

  .project-journey {
    gap: 12px;
    padding: 0 20px 18px;
    scroll-padding-inline: 20px;
  }

  .journey-card {
    flex-basis: 88vw;
    height: 540px;
    min-height: 0;
  }

  .journey-card__index {
    top: 18px;
    right: 18px;
    font-size: 54px;
  }

  .journey-card__content {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 20px;
  }

  .journey-card__content h3 {
    font-size: 25px;
  }

  .journey-card__content dl {
    gap: 16px;
    margin-top: 18px;
  }

  .journey-footer {
    gap: 12px;
  }
}

@media (max-width: 460px) {
  .hero__copy h1 {
    font-size: 34px;
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero__proof li:last-child {
    flex-basis: 100%;
  }

  .journey-count strong {
    font-size: 24px;
  }

  .journey-controls button {
    width: 48px;
    height: 48px;
  }

  .journey-card {
    height: 500px;
  }

  .journey-card__content h3 {
    font-size: 22px;
  }

  .journey-footer > span {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero__media {
    animation: none;
  }

  .project-journey {
    scroll-behavior: auto;
  }
}
