:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-manrope: Arial, Helvetica, sans-serif;
  --navy-950: #061a2f;
  --navy-900: #08233e;
  --navy-800: #0c2c4a;
  --cyan: #06b4c7;
  --cyan-dark: #0794a5;
  --turquoise: #18c6c1;
  --white: #ffffff;
  --gray-50: #f4f7f9;
  --gray-100: #eaf0f3;
  --gray-200: #d7e1e6;
  --slate: #52677a;
  --ink: #0b2239;
  --content: min(1240px, calc(100vw - 112px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

p {
  line-height: 1.75;
}

h1,
h2,
h3 {
  font-family: var(--font-manrope), var(--font-geist-sans), Arial, sans-serif;
  font-weight: 750;
  letter-spacing: -0.035em;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 5.5vw, 5.45rem);
  line-height: 1.03;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  line-height: 1.13;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.3;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.header-inner {
  align-items: center;
  display: flex;
  height: 96px;
  justify-content: space-between;
  margin: 0 auto;
  width: var(--content);
}

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

.brand-mark {
  fill: var(--navy-900);
  height: 57px;
  width: 57px;
}

.brand-mark .cyan {
  fill: var(--cyan);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: var(--navy-900);
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brand-name > span {
  color: var(--cyan);
}

.brand-tagline {
  color: var(--slate);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  margin-top: 0.42rem;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(1.15rem, 2.15vw, 2.45rem);
}

.desktop-nav a {
  color: var(--navy-900);
  font-size: 0.91rem;
  font-weight: 700;
  position: relative;
}

.desktop-nav a::after {
  background: var(--cyan);
  bottom: -0.7rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

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

.mobile-menu {
  display: none;
}

.home-hero,
.page-hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 690px;
}

.home-hero-copy,
.page-hero-copy {
  align-items: flex-start;
  background:
    radial-gradient(circle at 17% 12%, rgba(6, 180, 199, 0.1), transparent 25%),
    linear-gradient(140deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) max(4rem, calc((100vw - 1240px) / 2));
  padding-right: clamp(4rem, 6vw, 7rem);
  position: relative;
  z-index: 2;
}

.home-hero-copy::after,
.page-hero-copy::after {
  background-image: radial-gradient(rgba(6, 180, 199, 0.24) 1px, transparent 1px);
  background-size: 14px 14px;
  bottom: 2.5rem;
  content: "";
  height: 75px;
  opacity: 0.35;
  position: absolute;
  right: 2.5rem;
  width: 75px;
}

.home-hero-copy h1,
.page-hero-copy h1 {
  max-width: 720px;
}

.hero-intro,
.page-intro {
  color: #d6e2e8;
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  line-height: 1.6;
  margin: 1.8rem 0 2rem;
  max-width: 650px;
}

.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.55rem;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

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

.button.primary {
  background: var(--cyan);
  color: var(--navy-950);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--turquoise);
}

.button.secondary {
  border-color: var(--cyan);
  color: var(--navy-900);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(6, 180, 199, 0.09);
}

.button.outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button.outline-light:hover,
.button.outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--white);
}

.text-link {
  color: var(--navy-900);
  display: inline-flex;
  font-weight: 800;
  gap: 0.65rem;
  margin-top: 2.5rem;
}

.text-link span {
  color: var(--cyan);
  transition: transform 160ms ease;
}

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

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

.hero-proof {
  border-top: 1px solid rgba(6, 180, 199, 0.58);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 4.25rem;
  padding-top: 1.4rem;
  width: min(100%, 600px);
}

.hero-proof > div {
  align-items: center;
  display: flex;
  gap: 0.9rem;
}

.hero-proof strong {
  color: var(--cyan);
  font-family: var(--font-manrope), sans-serif;
  font-size: 1.55rem;
}

.hero-proof span {
  color: #d3e0e6;
  font-size: 0.9rem;
  line-height: 1.4;
}

.home-hero-media,
.page-hero-media,
.split-media,
.statement-band {
  overflow: hidden;
  position: relative;
}

.home-hero-media,
.page-hero-media {
  background: #111d28;
  min-height: 690px;
}

.parallax-image {
  height: 120%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: -10%;
  transform: translate3d(0, 0, 0) scale(1.08);
  transition: transform 60ms linear;
  width: 100%;
  will-change: transform;
}

.home-hero-media::after,
.page-hero-media::after {
  background: linear-gradient(90deg, rgba(6, 26, 47, 0.22), transparent 35%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.scan-lines {
  background: repeating-linear-gradient(0deg, transparent 0, transparent 5px, rgba(6, 180, 199, 0.05) 6px);
  inset: 0;
  opacity: 0.55;
  position: absolute;
}

.inspection-marker {
  border: 1px solid var(--cyan);
  height: 38px;
  position: absolute;
  width: 38px;
}

.inspection-marker::before,
.inspection-marker::after {
  background: var(--cyan);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.inspection-marker::before {
  height: 1px;
  width: 76px;
}

.inspection-marker::after {
  height: 76px;
  width: 1px;
}

.marker-one {
  left: 31%;
  top: 42%;
}

.marker-two {
  bottom: 24%;
  right: 22%;
  transform: scale(0.72);
}

.trust-bar {
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  color: var(--slate);
  display: flex;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  justify-content: center;
  min-height: 98px;
  padding: 1.25rem 4rem;
}

.trust-bar p {
  color: var(--cyan-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-bar span {
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 9rem) 0;
  width: var(--content);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 5rem;
  grid-template-columns: 1.35fr 0.65fr;
  margin-bottom: 4rem;
}

.section-heading h2 {
  max-width: 770px;
}

.section-heading > p {
  color: var(--slate);
  margin: 0;
}

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

.service-card {
  background: var(--gray-50);
  min-height: 300px;
  padding: 2.3rem;
  position: relative;
  transition: background 200ms ease, transform 200ms ease;
}

.service-card:hover {
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 35, 62, 0.08);
  transform: translateY(-4px);
  z-index: 2;
}

.service-card > span,
.expertise-grid article > span,
.values-section article > span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin: 4.2rem 0 1rem;
}

.service-card p,
.post-card p,
.expertise-grid p {
  color: var(--slate);
  font-size: 0.96rem;
  margin-bottom: 0;
}

.statement-band {
  align-items: center;
  display: flex;
  min-height: 620px;
  padding: 6rem max(4rem, calc((100vw - 1240px) / 2));
}

.statement-band .parallax-image {
  height: 135%;
  top: -17%;
}

.statement-overlay {
  background:
    linear-gradient(90deg, rgba(6, 26, 47, 0.98) 0%, rgba(6, 26, 47, 0.84) 46%, rgba(6, 26, 47, 0.25) 100%);
  inset: 0;
  position: absolute;
}

.statement-content {
  color: var(--white);
  max-width: 750px;
  position: relative;
  z-index: 2;
}

.statement-content h2 {
  margin-bottom: 2.4rem;
}

.process-line {
  counter-reset: process;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-line::before {
  background: var(--gray-200);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 27px;
}

.process-line article {
  position: relative;
}

.process-line article > span {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan-dark);
  display: flex;
  font-size: 0.73rem;
  font-weight: 800;
  height: 54px;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  width: 54px;
  z-index: 2;
}

.process-line h3 {
  margin-bottom: 0.9rem;
}

.process-line p {
  color: var(--slate);
  font-size: 0.94rem;
}

.split-section {
  background: var(--gray-50);
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 720px;
}

.split-media {
  min-height: 720px;
}

.split-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem clamp(4rem, 8vw, 9rem);
}

.split-copy > p:not(.eyebrow) {
  color: var(--slate);
  margin: 1.6rem 0;
}

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

.check-list li {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 0.85rem;
}

.check-list li::before {
  align-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan-dark);
  content: "✓";
  display: flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.post-grid {
  gap: 1.2rem;
}

.post-card {
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 2.3rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.post-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.post-card > span {
  color: var(--cyan-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 3.7rem;
  text-transform: uppercase;
}

.post-card h3,
.post-card h2 {
  font-size: 1.42rem;
}

.post-card a {
  color: var(--navy-900);
  font-weight: 800;
  margin-top: auto;
}

.post-card a span {
  color: var(--cyan);
}

.cta-section {
  align-items: center;
  background: var(--navy-900);
  color: var(--white);
  display: grid;
  gap: 4rem;
  grid-template-columns: 90px 1fr auto;
  padding: 5.5rem max(4rem, calc((100vw - 1240px) / 2));
}

.cta-section h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  max-width: 810px;
}

.cta-section p:not(.eyebrow) {
  color: #cedbe2;
  margin-bottom: 0;
  max-width: 720px;
}

.cta-pixels {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(3, 20px);
  transform: rotate(-7deg);
}

.cta-pixels i {
  background: var(--cyan);
  border-radius: 3px;
  height: 20px;
}

.cta-pixels i:nth-child(2),
.cta-pixels i:nth-child(4) {
  background: rgba(255, 255, 255, 0.8);
}

.page-hero {
  min-height: 545px;
}

.page-hero-copy,
.page-hero-media {
  min-height: 545px;
}

.page-hero-copy h1 {
  font-size: clamp(2.75rem, 4.4vw, 4.65rem);
}

.measure-lines {
  border: 1px solid rgba(6, 180, 199, 0.55);
  bottom: 20%;
  height: 90px;
  position: absolute;
  right: 14%;
  width: 90px;
}

.measure-lines::before,
.measure-lines::after {
  background: rgba(6, 180, 199, 0.65);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.measure-lines::before {
  height: 1px;
  width: 160px;
}

.measure-lines::after {
  height: 160px;
  width: 1px;
}

.soft-section {
  background: var(--gray-50);
  margin: 0;
  padding-left: max(4rem, calc((100vw - 1240px) / 2));
  padding-right: max(4rem, calc((100vw - 1240px) / 2));
  width: 100%;
}

.two-column-copy {
  display: grid;
  gap: 7rem;
  grid-template-columns: 0.85fr 1.15fr;
}

.two-column-copy > div:last-child {
  color: var(--slate);
}

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

.detail-list p {
  border-bottom: 1px solid var(--gray-200);
  color: var(--ink);
  font-weight: 700;
  margin: 0;
  padding: 1rem 0;
}

.timeline {
  margin: 0 auto;
  max-width: 980px;
}

.timeline article {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: 88px 1fr;
  padding: 0 0 4rem;
  position: relative;
}

.timeline article:not(:last-child)::before {
  background: var(--gray-200);
  bottom: 0;
  content: "";
  left: 43px;
  position: absolute;
  top: 70px;
  width: 1px;
}

.timeline-number {
  align-items: center;
  background: var(--navy-900);
  border-radius: 50%;
  color: var(--cyan);
  display: flex;
  font-weight: 800;
  height: 88px;
  justify-content: center;
  width: 88px;
}

.timeline h2 {
  font-size: 2rem;
  margin: 0.6rem 0 0.65rem;
}

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

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

.expertise-grid article {
  background: var(--gray-50);
  min-height: 275px;
  padding: 2.6rem;
}

.expertise-grid h2 {
  font-size: 1.8rem;
  margin: 3.3rem 0 0.8rem;
}

.technical-band {
  background: var(--navy-900);
  color: var(--white);
  display: grid;
  gap: 6rem;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 7rem max(4rem, calc((100vw - 1240px) / 2));
}

.technical-facts {
  display: grid;
}

.technical-facts p {
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  display: grid;
  gap: 2rem;
  grid-template-columns: 150px 1fr;
  margin: 0;
  padding: 1.25rem 0;
}

.technical-facts strong {
  color: var(--cyan);
}

.technical-facts span {
  color: #cedbe2;
}

.post-card.featured {
  min-height: 410px;
}

.article-header {
  background: var(--navy-900);
  color: var(--white);
  padding: 6rem max(4rem, calc((100vw - 980px) / 2)) 7rem;
}

.article-header .eyebrow {
  margin-top: 4.5rem;
}

.article-header h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  max-width: 950px;
}

.article-intro {
  color: #d3e0e6;
  font-size: 1.25rem;
  margin: 2rem 0 0;
  max-width: 800px;
}

.article-image {
  height: 500px;
  overflow: hidden;
}

.article-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.article-body {
  margin: 0 auto;
  max-width: 800px;
  padding: 6rem 2rem;
}

.article-body section {
  margin-bottom: 3.3rem;
}

.article-body h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.article-body p {
  color: var(--slate);
  font-size: 1.08rem;
}

.article-body aside {
  background: var(--gray-50);
  border-left: 4px solid var(--cyan);
  margin-top: 4rem;
  padding: 2rem;
}

.story-grid {
  align-items: start;
  display: grid;
  gap: 7rem;
  grid-template-columns: 0.65fr 1.35fr;
}

.story-number {
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  padding: 2rem 4rem 2rem 0;
}

.story-number strong {
  color: var(--cyan-dark);
  font-family: var(--font-manrope), sans-serif;
  font-size: clamp(5rem, 9vw, 8.5rem);
  line-height: 1;
}

.story-number span {
  color: var(--slate);
  font-weight: 700;
  margin-top: 1rem;
}

.story-copy > p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.08rem;
}

.values-section {
  background: var(--gray-50);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(4rem, calc((100vw - 1240px) / 2)) 7rem;
}

.values-section article {
  background: var(--white);
  min-height: 300px;
  padding: 2.5rem;
}

.values-section h2 {
  font-size: 1.7rem;
  margin: 4rem 0 1rem;
}

.values-section p {
  color: var(--slate);
}

.contact-section {
  display: grid;
  gap: 7rem;
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--slate);
}

.contact-copy .button {
  margin: 1.2rem 0;
}

.contact-email {
  color: var(--cyan-dark);
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-checklist {
  background: var(--gray-50);
  padding: 3rem;
}

.contact-checklist > p {
  font-weight: 800;
  margin-top: 0;
}

.response-note {
  border-top: 1px solid var(--gray-200);
  margin-top: 2.4rem;
  padding-top: 1.8rem;
}

.response-note p {
  color: var(--slate);
  margin-bottom: 0;
}

.site-footer {
  background: var(--navy-950);
  color: var(--white);
  padding: 6rem max(4rem, calc((100vw - 1240px) / 2)) 2rem;
}

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

.site-footer .brand-tagline {
  color: #a9bbc6;
}

.site-footer .brand-mark {
  fill: var(--white);
}

.footer-grid {
  display: grid;
  gap: 7rem;
  grid-template-columns: 1.5fr 0.6fr 0.9fr;
}

.footer-grid > div:first-child > p {
  color: #aebec8;
  max-width: 430px;
}

.footer-grid h2 {
  color: var(--cyan);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-grid a {
  color: #d7e2e8;
}

.footer-grid p {
  color: #aebec8;
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #879daa;
  display: flex;
  font-size: 0.78rem;
  justify-content: space-between;
  margin-top: 5rem;
  padding-top: 1.5rem;
}

@media (max-width: 1080px) {
  :root {
    --content: min(100% - 56px, 1080px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    cursor: pointer;
    display: grid;
    gap: 5px;
    list-style: none;
    padding: 0.75rem;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    background: var(--navy-900);
    height: 2px;
    width: 27px;
  }

  .mobile-menu nav {
    background: var(--white);
    box-shadow: 0 20px 45px rgba(8, 35, 62, 0.14);
    display: flex;
    flex-direction: column;
    min-width: 240px;
    padding: 1rem;
    position: absolute;
    right: 0;
    top: 52px;
  }

  .mobile-menu nav a {
    border-bottom: 1px solid var(--gray-100);
    font-weight: 700;
    padding: 0.85rem;
  }

  .home-hero,
  .page-hero {
    grid-template-columns: 58% 42%;
  }

  .home-hero-copy,
  .page-hero-copy {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .section-heading {
    gap: 2rem;
  }

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

  .footer-grid {
    gap: 3.5rem;
  }
}

@media (max-width: 760px) {
  :root {
    --content: calc(100% - 36px);
  }

  .header-inner {
    height: 78px;
  }

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

  .brand-name {
    font-size: 1.62rem;
  }

  .brand-tagline {
    font-size: 0.45rem;
    letter-spacing: 0.1em;
  }

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

  .home-hero-copy,
  .page-hero-copy {
    min-height: auto;
    padding: 5rem 1.35rem;
  }

  .home-hero-media,
  .page-hero-media {
    min-height: 410px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

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

  .trust-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
  }

  .trust-bar p {
    margin: 0 0 0.5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section-heading,
  .two-column-copy,
  .technical-band,
  .story-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .two-column-copy,
  .story-grid,
  .contact-section {
    gap: 2.5rem;
  }

  .card-grid,
  .post-grid,
  .expertise-grid,
  .values-section {
    grid-template-columns: 1fr;
  }

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

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

  .process-line::before {
    bottom: 0;
    height: auto;
    left: 27px;
    right: auto;
    top: 0;
    width: 1px;
  }

  .process-line article {
    padding-left: 80px;
  }

  .process-line article > span {
    left: 0;
    position: absolute;
  }

  .statement-band {
    min-height: 560px;
    padding: 4rem 1.5rem;
  }

  .statement-overlay {
    background: rgba(6, 26, 47, 0.86);
  }

  .split-media {
    min-height: 440px;
  }

  .split-copy {
    padding: 4.5rem 1.5rem;
  }

  .cta-section {
    gap: 2rem;
    grid-template-columns: 1fr;
    padding: 4.5rem 1.5rem;
  }

  .cta-pixels {
    grid-template-columns: repeat(3, 14px);
  }

  .cta-pixels i {
    height: 14px;
  }

  .soft-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .technical-band {
    gap: 3rem;
    padding: 5rem 1.5rem;
  }

  .technical-facts p {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }

  .article-header {
    padding: 4rem 1.5rem;
  }

  .article-image {
    height: 330px;
  }

  .story-number {
    border-bottom: 1px solid var(--gray-200);
    border-right: 0;
    padding: 0 0 2.5rem;
  }

  .values-section {
    padding: 0 1.5rem 5rem;
  }

  .contact-checklist {
    padding: 2rem 1.4rem;
  }

  .site-footer {
    padding: 4.5rem 1.5rem 2rem;
  }

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

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

  .parallax-image {
    transform: scale(1.08) !important;
  }
}

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

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

  .parallax-image {
    transform: scale(1.08) !important;
  }
}


.form-section {
  align-items: start;
  display: grid;
  gap: clamp(2.5rem, 7vw, 7rem);
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}
.form-intro { position: sticky; top: 130px; }
.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: clamp(1.5rem, 4vw, 3.5rem);
}
.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-form label {
  color: var(--navy-900);
  display: grid;
  font-size: .92rem;
  font-weight: 750;
  gap: .55rem;
  margin-bottom: 1.25rem;
}
.contact-form input,
.contact-form textarea {
  background: white;
  border: 1px solid #b8c8d1;
  border-radius: 2px;
  color: var(--ink);
  font: inherit;
  padding: .9rem 1rem;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6,180,199,.16);
  outline: none;
}
.privacy-check {
  align-items: start;
  display: flex !important;
  font-weight: 500 !important;
  grid-template-columns: auto 1fr;
}
.privacy-check input { margin-top: .25rem; width: auto; }
.honeypot { height: 0; left: -9999px; overflow: hidden; position: absolute; }
.form-note { color: var(--slate); font-size: .82rem; margin-bottom: 0; }
.form-status {
  display: none;
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
}
.form-status.success { background: #e4f7f3; color: #075e55; display: block; }
.form-status.error { background: #fff0ed; color: #8a2f1f; display: block; }
@media (max-width: 800px) {
  .form-section, .form-grid { grid-template-columns: 1fr; }
  .form-intro { position: static; }
}