:root {
  --ink: #f4f7f8;
  --muted: #91a6b7;
  --navy-950: #020d16;
  --navy-900: #031522;
  --navy-850: #061b29;
  --line: rgba(69, 181, 204, 0.2);
  --cyan: #25c5d8;
  --teal: #10879a;
  --teal-light: #1baec0;
  --amber: #ffad16;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

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

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

main {
  min-width: 320px;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 61%, rgba(0, 170, 206, 0.18), transparent 28%),
    linear-gradient(115deg, #03111c 0%, #031522 52%, #00101c 100%);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 250px 1fr 160px;
  align-items: center;
  min-height: 105px;
  padding: 0 4.25%;
  border-bottom: 1px solid rgba(107, 160, 180, 0.23);
  background: rgba(2, 13, 22, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: block;
  width: 202px;
  height: 74px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand img {
  display: block;
  width: 202px;
  height: auto;
}

.brand-caption {
  position: absolute;
  top: 45px;
  left: 101px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #8599a8;
  font-size: 6.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-caption small {
  font-size: inherit;
  letter-spacing: inherit;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.desktop-nav button {
  position: relative;
  border: 0;
  background: transparent;
  color: #f1f5f7;
  cursor: pointer;
  font-size: 13px;
  font-weight: 660;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav button::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: 180ms ease;
}

.desktop-nav button:hover::after,
.desktop-nav button.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  border: 1px solid rgba(36, 196, 218, 0.58);
  border-radius: 5px;
  background: rgba(2, 25, 38, 0.62);
  color: var(--cyan);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.header-contact:hover {
  border-color: var(--cyan);
  background: rgba(28, 186, 207, 0.11);
}

.menu-button {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 59%;
  max-width: 900px;
  padding: 82px 0 190px 4.25%;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--teal-light);
  font-size: 13px;
  font-weight: 680;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #f6f7f7;
  font-size: clamp(66px, 6.25vw, 94px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero-lead {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 390;
  line-height: 1.55;
}

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

.primary-action {
  min-height: 64px;
  padding: 0 32px;
  border: 0;
  border-right: 3px solid var(--amber);
  border-radius: 3px;
  background: linear-gradient(90deg, #138598, #0d768a);
  box-shadow: 0 12px 35px rgba(0, 153, 183, 0.13);
  color: #f7fbfc;
  cursor: pointer;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease;
}

.primary-action:hover {
  filter: brightness(1.13);
  transform: translateY(-2px);
}

.text-action {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 54px;
  padding: 0 3px;
  border: 0;
  border-bottom: 1px solid rgba(32, 196, 218, 0.6);
  background: transparent;
  color: #1ec1d8;
  cursor: pointer;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-action svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

.text-action:hover svg {
  transform: translateX(5px);
}

.hero-art {
  position: absolute;
  z-index: 1;
  inset: 105px 0 0 29%;
  overflow: hidden;
  pointer-events: none;
}

.hero-art::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-900) 0%, rgba(3, 21, 34, 0.82) 13%, transparent 46%),
    linear-gradient(0deg, rgba(2, 13, 22, 0.65) 0%, transparent 34%);
  content: "";
}

.hero-art-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-maritime-network.webp");
  background-position: 58% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(1.08) contrast(1.06);
}

.hero-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 140, 168, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 140, 168, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 48%, #000);
}

.route-node {
  position: absolute;
  z-index: 5;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(35, 214, 235, 0.95);
  animation: pulse 3.2s ease-in-out infinite;
}

.node-one { top: 29%; left: 58%; }
.node-two { top: 62%; left: 77%; animation-delay: 1s; }
.node-three {
  top: 54%;
  left: 42%;
  background: var(--amber);
  box-shadow: 0 0 14px rgba(255, 173, 22, 0.8);
  animation-delay: 1.7s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.65; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.2); }
}

.market-strip {
  position: absolute;
  z-index: 7;
  right: 4.25%;
  bottom: 66px;
  left: 4.25%;
  display: grid;
  grid-template-columns: 1fr 1px 0.84fr 1px 0.9fr 1px 1.42fr;
  align-items: center;
  gap: 4%;
  padding: 14px 1.5%;
  border-top: 1px solid rgba(132, 177, 192, 0.27);
  border-bottom: 1px solid rgba(132, 177, 192, 0.22);
}

.market-strip::before,
.market-strip::after {
  width: 1px;
  height: 30px;
  background: rgba(132, 177, 192, 0.35);
  content: "";
}

.market-strip::before { grid-column: 2; grid-row: 1; }
.market-strip::after { grid-column: 4; grid-row: 1; }

.market-strip button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(35, 181, 208, 0.32);
  border-radius: 4px;
  background: rgba(2, 21, 33, 0.7);
  color: #eef4f6;
  cursor: pointer;
  font-size: 12px;
  font-weight: 660;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.market-strip button:nth-of-type(1) { grid-column: 1; }
.market-strip button:nth-of-type(2) { grid-column: 3; }
.market-strip button:nth-of-type(3) { grid-column: 5; }
.market-strip button:nth-of-type(4) { grid-column: 7; }

.market-strip button:hover {
  border-color: rgba(37, 197, 216, 0.8);
  background: rgba(13, 82, 101, 0.55);
  transform: translateY(-2px);
}

.market-strip svg {
  width: 25px;
  min-width: 25px;
  height: 25px;
  fill: rgba(14, 134, 154, 0.75);
  stroke: #20adc2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.content-section {
  position: relative;
  padding: 118px 6.2%;
}

.section-heading {
  max-width: 850px;
}

.section-heading h2,
.contact-intro h2 {
  margin: 0;
  color: #f3f7f8;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 320;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.66fr);
  align-items: end;
  gap: 80px;
  max-width: none;
}

.split-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  gap: 9%;
  background:
    linear-gradient(90deg, rgba(25, 120, 144, 0.05) 1px, transparent 1px),
    #f1f5f5;
  background-size: 72px 72px;
  color: #08202f;
}

.company-section .eyebrow,
.markets-section .eyebrow,
.approach-section .eyebrow {
  color: #087f93;
}

.company-section .section-heading h2,
.markets-section .section-heading h2,
.approach-section .section-heading h2 {
  color: #08202f;
}

.company-copy {
  padding-top: 47px;
  color: #45606f;
  font-size: 18px;
  line-height: 1.75;
}

.company-copy p { margin: 0 0 22px; }

.positioning-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 45px;
  border: 1px solid rgba(12, 99, 120, 0.18);
  background: rgba(12, 99, 120, 0.18);
}

.positioning-grid article {
  min-height: 230px;
  padding: 32px;
  background: rgba(250, 252, 252, 0.96);
}

.positioning-grid span,
.service-topline span:first-child,
.process-line article > span {
  color: #158da0;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.12em;
}

.positioning-grid h3,
.services-grid h3,
.process-line h3 {
  margin: 54px 0 14px;
  font-size: 23px;
  font-weight: 520;
  letter-spacing: -0.02em;
}

.positioning-grid p,
.services-grid p,
.process-line p {
  margin: 0;
  color: #5e7480;
  font-size: 15px;
  line-height: 1.7;
}

.services-section {
  background:
    radial-gradient(circle at 85% 80%, rgba(7, 129, 157, 0.12), transparent 28%),
    var(--navy-900);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 70px;
  border: 1px solid rgba(55, 161, 184, 0.23);
  background: rgba(55, 161, 184, 0.23);
}

.services-grid article {
  min-height: 330px;
  padding: 32px;
  background: rgba(4, 23, 36, 0.96);
  transition: 180ms ease;
}

.services-grid article:hover {
  background: #082a3c;
  transform: translateY(-4px);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cyan);
}

.services-grid h3 {
  margin-top: 110px;
  color: #f0f5f6;
}

.services-grid p { color: var(--muted); }

.markets-section {
  background: #e9efef;
  color: #08202f;
}

.market-explorer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 520px;
  margin-top: 70px;
  border: 1px solid rgba(12, 99, 120, 0.22);
  background: #f9fbfb;
}

.market-tabs {
  border-right: 1px solid rgba(12, 99, 120, 0.18);
}

.market-tabs button {
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 25%;
  padding: 20px 32px;
  border: 0;
  border-bottom: 1px solid rgba(12, 99, 120, 0.15);
  background: transparent;
  color: #244858;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-align: left;
  text-transform: uppercase;
  transition: 180ms ease;
}

.market-tabs button:last-child { border-bottom: 0; }

.market-tabs button.active,
.market-tabs button:hover {
  background: #062231;
  color: #f2f7f8;
}

.market-tabs button span {
  color: #20adc2;
  font-size: 23px;
  text-align: center;
}

.market-tabs button b { font-weight: 650; }

.market-tabs button i {
  color: var(--cyan);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  text-align: right;
}

.market-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 60px 8%;
  background: linear-gradient(120deg, rgba(2, 16, 25, 0.96), rgba(3, 40, 56, 0.9));
  color: #f0f5f6;
}

.market-panel::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 166, 192, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 166, 192, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, #000, transparent 84%);
}

.market-panel > *:not(.panel-map) {
  position: relative;
  z-index: 2;
}

.market-panel .eyebrow { margin-bottom: 18px; }

.market-panel h3 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 330;
  letter-spacing: -0.04em;
}

.market-panel > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #a3b5bf;
  font-size: 17px;
  line-height: 1.7;
}

.market-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.market-panel li {
  padding: 9px 14px;
  border: 1px solid rgba(42, 189, 211, 0.36);
  border-radius: 2px;
  color: #dbe7ea;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.market-panel small {
  max-width: 650px;
  color: #728d9b;
  font-size: 11px;
  line-height: 1.55;
}

.panel-map {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.map-line {
  position: absolute;
  width: 65%;
  height: 65%;
  border: 1px solid rgba(30, 198, 218, 0.33);
  border-radius: 50%;
}

.line-a { top: -36%; right: -4%; }
.line-b { top: -24%; right: 19%; border-color: rgba(255, 173, 22, 0.25); }

.map-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(37, 197, 216, 0.7);
}

.dot-a { top: 21%; right: 13%; }
.dot-b { top: 16%; right: 41%; background: var(--amber); }
.dot-c { top: 35%; right: 32%; }

.approach-section {
  background: #f7f9f9;
  color: #08202f;
}

.approach-section .split-heading > p { color: #58707c; }

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
  border-top: 1px solid rgba(11, 98, 119, 0.24);
}

.process-line article {
  position: relative;
  padding: 38px 32px 32px 0;
}

.process-line article::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(16, 135, 154, 0.09);
  content: "";
}

.process-line article:last-child::before {
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(255, 173, 22, 0.1);
}

.process-line h3 {
  margin-top: 38px;
  color: #0a2838;
}

.role-boundary {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  margin-top: 80px;
  padding: 48px;
  background: #062231;
  color: #f2f6f7;
}

.role-boundary .eyebrow {
  margin-bottom: 16px;
  color: var(--cyan);
}

.role-boundary h3 {
  margin: 0;
  font-size: 33px;
  font-weight: 360;
  letter-spacing: -0.03em;
}

.role-boundary > p {
  margin: 0;
  color: #a2b6bf;
  font-size: 16px;
  line-height: 1.8;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 9%;
  background:
    radial-gradient(circle at 0 100%, rgba(9, 151, 179, 0.2), transparent 30%),
    #031522;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-note {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(54, 169, 192, 0.27);
}

.contact-note span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-note p {
  margin: 10px 0 0;
  color: #b8c6cc;
  font-size: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 42px;
  border: 1px solid rgba(47, 173, 197, 0.25);
  background: rgba(4, 29, 43, 0.8);
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #cbd6da;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(121, 172, 188, 0.38);
  border-radius: 0;
  background: rgba(3, 19, 30, 0.62);
  color: #f0f5f6;
  font-size: 14px;
  letter-spacing: 0;
  outline: none;
  text-transform: none;
  transition: border-color 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 15px;
}

.contact-form textarea {
  resize: vertical;
  padding: 15px;
  line-height: 1.6;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--cyan);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #708792;
}

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

.form-footer p {
  max-width: 320px;
  margin: 0;
  color: #718791;
  font-size: 11px;
  line-height: 1.5;
}

.form-footer .primary-action { min-width: 172px; }

.form-success {
  padding: 13px 16px;
  border-left: 2px solid var(--cyan);
  background: rgba(22, 156, 177, 0.12);
  color: #bde8ed;
  font-size: 13px;
  line-height: 1.5;
}

.form-success.is-error {
  border-color: rgba(214, 91, 91, 0.45);
  color: #ffd0d0;
}

.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-field {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 12px !important;
  line-height: 1.55;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.consent-field input {
  width: 16px;
  height: 16px;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--teal);
}

.primary-action:disabled {
  cursor: wait;
  opacity: 0.62;
}

footer {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 40px;
  min-height: 150px;
  padding: 28px 6.2%;
  border-top: 1px solid rgba(79, 159, 179, 0.22);
  background: #020d16;
  color: #6e8793;
  font-size: 12px;
}

.footer-brand {
  transform: scale(0.86);
  transform-origin: left center;
}

footer p {
  margin: 0;
  line-height: 1.6;
}

footer > span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 210px 1fr 140px;
    padding-right: 3%;
    padding-left: 3%;
  }

  .desktop-nav { gap: 2.4rem; }
  .hero-content { width: 66%; padding-left: 4%; }
  .hero h1 { font-size: clamp(61px, 7vw, 78px); }
  .market-strip { right: 3%; left: 3%; gap: 2%; }
  .market-strip button { padding: 0 10px; font-size: 10.5px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid article { min-height: 280px; }
  .services-grid h3 { margin-top: 72px; }
}

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

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 92px;
  }

  .brand { width: 180px; height: 66px; }
  .brand img { width: 180px; }
  .brand-caption { top: 40px; left: 90px; font-size: 5.8px; }
  .header-contact { display: none; }

  .menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(36, 196, 218, 0.45);
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 22px;
    height: 1px;
    background: var(--cyan);
  }

  .desktop-nav {
    position: absolute;
    top: 92px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 5% 22px;
    border-bottom: 1px solid rgba(64, 169, 191, 0.25);
    background: rgba(2, 13, 22, 0.98);
  }

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

  .desktop-nav button {
    min-height: 54px;
    text-align: left;
  }

  .desktop-nav button::after { bottom: 5px; }
  .hero-art { inset: 92px -34% 0 14%; opacity: 0.75; }

  .hero-content {
    width: 90%;
    max-width: 680px;
    padding: 78px 5% 250px;
  }

  .hero-content::before {
    position: absolute;
    z-index: -1;
    inset: 32px -10% 180px 0;
    background: radial-gradient(circle at 25% 45%, rgba(3, 21, 34, 0.96), rgba(3, 21, 34, 0.55) 45%, transparent 75%);
    content: "";
  }

  .hero h1 { font-size: clamp(53px, 9vw, 72px); }

  .market-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    bottom: 32px;
    padding: 14px 0;
  }

  .market-strip::before,
  .market-strip::after { display: none; }

  .market-strip button:nth-of-type(n) {
    grid-column: auto;
    min-height: 46px;
  }

  .content-section { padding: 90px 5%; }

  .company-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .company-copy { padding-top: 0; }
  .positioning-grid { grid-template-columns: 1fr; }
  .positioning-grid article { min-height: 190px; }
  .positioning-grid h3 { margin-top: 38px; }
  .split-heading { grid-template-columns: 1fr; gap: 30px; }
  .market-explorer { grid-template-columns: 1fr; }

  .market-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(12, 99, 120, 0.18);
  }

  .market-tabs button {
    min-height: 100px;
    border-right: 1px solid rgba(12, 99, 120, 0.15);
  }

  .market-panel { min-height: 480px; }
  .process-line { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .role-boundary { grid-template-columns: 1fr; gap: 28px; }
  footer { grid-template-columns: 1fr; gap: 20px; text-align: left; }
}

@media (max-width: 620px) {
  .hero { min-height: 940px; }
  .hero-content { width: 100%; padding-top: 64px; }
  .eyebrow { font-size: 10.5px; letter-spacing: 0.16em; }
  .hero h1 { font-size: clamp(43px, 13.5vw, 61px); line-height: 1.08; }
  .hero-lead { margin-top: 27px; font-size: 17px; }
  .hero-lead br { display: none; }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
    margin-top: 34px;
  }

  .primary-action { min-height: 58px; }
  .text-action { align-self: flex-start; }
  .market-strip { grid-template-columns: 1fr; bottom: 26px; }
  .market-strip button:nth-child(4) { display: none; }
  .content-section { padding: 74px 5%; }
  .section-heading h2, .contact-intro h2 { font-size: 39px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid article { min-height: 250px; }
  .market-tabs { grid-template-columns: 1fr; }
  .market-tabs button { min-height: 78px; }
  .market-panel { min-height: 520px; padding: 45px 7%; }
  .process-line { grid-template-columns: 1fr; }
  .role-boundary { padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .primary-action { width: 100%; }
}

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