:root {
  --blue-950: #052f55;
  --blue-900: #083b6a;
  --blue-800: #0a477f;
  --blue-700: #0d5d9f;
  --blue-600: #1478bd;
  --blue-100: #dcecf7;
  --logo-blue: #155386;
  --ink: #132332;
  --muted: #5f6f7d;
  --line: #d9e1e7;
  --paper: #ffffff;
  --mist: #f3f6f8;
  --steel: #aeb8c2;
  --amber: #ef9e2f;
  --shadow: 0 22px 60px rgba(5, 47, 85, 0.14);
  --radius-cut: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Montserrat, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 12px 18px;
  color: #fff;
  background: var(--blue-950);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow.light {
  color: #c9e3f5;
}

.section-title {
  max-width: 820px;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2.15rem, 5vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(5, 47, 85, 0.09);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(5, 47, 85, 0.1);
}

.nav-shell {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo {
  width: 183px;
  height: 56px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.desktop-nav > a:not(.nav-cta) {
  position: relative;
  padding: 31px 0 29px;
  color: #526473;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  color: #fff;
  background: var(--blue-700);
  clip-path: var(--radius-cut);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.nav-cta:hover {
  background: var(--blue-950);
  transform: translateY(-2px);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(5, 47, 85, 0.22);
}

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

.button.outline {
  border: 1px solid var(--blue-700);
  color: var(--blue-700);
  background: transparent;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--blue-950);
  background: #fff;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button span {
  margin: 5px 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.mobile-nav[hidden] {
  display: none;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 126px));
  overflow: hidden;
  color: #fff;
  background: var(--blue-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 800ms ease, transform 6s ease, visibility 800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 34, 60, 0.96) 0%, rgba(5, 47, 85, 0.78) 42%, rgba(5, 47, 85, 0.18) 80%),
    linear-gradient(0deg, rgba(4, 32, 55, 0.42), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: min(760px, calc(100svh - 126px));
  align-items: center;
  padding: 78px 0 120px;
}

.hero-copy {
  max-width: 720px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-copy.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: #c6e0f2;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 52px;
  height: 3px;
  content: "";
  background: var(--blue-600);
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(3.2rem, 7.3vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero h1 em {
  color: #c7d5df;
  font-style: normal;
}

.hero p {
  max-width: 610px;
  margin: 26px 0 34px;
  color: #e5edf3;
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.slider-controls {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 45px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slide-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slide-dot {
  width: 38px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.slide-dot[aria-current="true"] {
  width: 68px;
  background: #fff;
}

.slide-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(5, 47, 85, 0.2);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.slide-arrow:hover,
.slide-arrow:focus-visible {
  color: var(--blue-950);
  background: #fff;
  transform: translateY(-2px);
}

.slide-count {
  min-width: 58px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.slide-count strong {
  color: #fff;
  font-size: 0.86rem;
}

.hero-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 260px;
  height: 150px;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 28px 28px;
}

.trust-strip {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1040px, calc(100% - 40px));
  margin: -58px auto 0;
  padding: 28px;
  color: #fff;
  background: var(--blue-700);
  box-shadow: var(--shadow);
  clip-path: var(--radius-cut);
}

.trust-item {
  padding: 10px 28px;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.05em;
}

.trust-item span {
  color: #d5e5f0;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 130px) 0;
  overflow: hidden;
}

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

.section.dark {
  color: #fff;
  background: var(--blue-950);
}

.section.dark .section-title,
.section.dark .section-lead {
  color: #fff;
}

.dot-field {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  opacity: 0.45;
  background-image: radial-gradient(var(--steel) 1.4px, transparent 1.4px);
  background-size: 14px 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(46px, 8vw, 100px);
}

.split.single {
  grid-template-columns: minmax(0, 820px);
}

.split.reverse .media {
  order: 2;
}

.split.reverse .copy {
  order: 1;
}

.media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  box-shadow: var(--shadow);
  clip-path: var(--radius-cut);
}

.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.media:hover img {
  transform: scale(1.035);
}

.media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 47, 85, 0.35), transparent 62%);
}

.copy h2 {
  margin: 0 0 22px;
  color: var(--blue-950);
  font-size: clamp(2.25rem, 4.5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--blue-700);
  color: var(--blue-700);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

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

.card {
  position: relative;
  min-height: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 40px rgba(5, 47, 85, 0.06);
  clip-path: var(--radius-cut);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.card-number {
  display: block;
  margin-bottom: 26px;
  color: var(--blue-600);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.card h3 {
  margin: 0 0 14px;
  color: var(--blue-950);
  font-size: 1.28rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

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

.project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-950);
  clip-path: var(--radius-cut);
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.project-card img.source-screenshot,
.media img.source-screenshot {
  right: auto;
  width: 156%;
  max-width: none;
}

.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(4, 31, 55, 0.97) 0%, rgba(4, 31, 55, 0.08) 70%);
}

.project-card:hover img {
  transform: scale(1.045);
}

.project-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 30px;
}

.project-card span {
  color: #c7e0f1;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 10px 0 0;
  font-size: 1.55rem;
}

.project-card b {
  display: inline-block;
  margin-top: 20px;
  color: #d7e8f3;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-overview {
  background:
    linear-gradient(90deg, rgba(217, 225, 231, 0.45) 1px, transparent 1px),
    linear-gradient(rgba(217, 225, 231, 0.45) 1px, transparent 1px),
    var(--mist);
  background-size: 52px 52px;
}

.project-overview .section-head {
  max-width: 900px;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
}

.project-facts.single {
  grid-template-columns: minmax(220px, 0.5fr);
  background: transparent;
}

.project-facts div {
  padding: 20px 16px;
  background: var(--mist);
}

.project-facts strong {
  display: block;
  color: var(--blue-700);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}

.project-facts span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.institutional-band {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 115px) 0;
  color: #fff;
  background: var(--blue-950);
}

.institutional-band::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  content: "";
  transform: rotate(45deg);
}

.institutional-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.institutional-intro h2 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.institutional-points {
  display: grid;
  gap: 0;
}

.institutional-points article {
  display: grid;
  grid-template-columns: 44px 0.65fr 1.35fr;
  gap: 18px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.institutional-points span {
  color: #75b7df;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.institutional-points strong {
  color: #fff;
}

.institutional-points p {
  margin: 0;
  color: #b9cbd7;
  font-size: 0.9rem;
  line-height: 1.7;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.feature-band-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.feature-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band-copy {
  display: grid;
  place-items: center;
  padding: clamp(52px, 8vw, 110px);
  color: #fff;
  background: var(--blue-700);
}

.feature-band-copy.deep {
  background: var(--blue-950);
}

.feature-band-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.feature-band-copy p {
  max-width: 580px;
  margin: 0 0 28px;
  color: #e2edf4;
  line-height: 1.8;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--blue-950);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 34, 60, 0.95), rgba(5, 47, 85, 0.6) 52%, rgba(5, 47, 85, 0.12));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 0 70px;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  margin-bottom: 26px;
  color: #c9dce9;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.page-hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: #e4edf3;
  font-size: 1.08rem;
  line-height: 1.75;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.pillar {
  padding: 28px;
  border-top: 3px solid var(--blue-600);
  background: #fff;
  box-shadow: 0 12px 35px rgba(5, 47, 85, 0.07);
}

.pillar strong {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-950);
}

.pillar span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
}

.timeline::before {
  position: absolute;
  top: 16px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding: 50px 28px 0 0;
}

.timeline-item::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 5px solid #fff;
  border-radius: 50%;
  content: "";
  background: var(--blue-600);
  box-shadow: 0 0 0 1px var(--blue-600);
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 1.05rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(42px, 8vw, 100px);
  align-items: start;
}

.contact-options-section {
  position: relative;
  z-index: 8;
  margin-top: -38px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  box-shadow: var(--shadow);
  clip-path: var(--radius-cut);
}

.contact-option {
  min-height: 250px;
  padding: 34px;
  border-right: 1px solid var(--line);
  background: #fff;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-option:last-child {
  border-right: 0;
}

a.contact-option:hover {
  background: var(--mist);
  transform: translateY(-4px);
}

.contact-option > span {
  color: var(--blue-600);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-option h2 {
  margin: 24px 0 14px;
  color: var(--blue-950);
  font-size: 1.38rem;
}

.contact-option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-option b {
  display: inline-block;
  margin-top: 22px;
  color: var(--blue-700);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: var(--blue-700);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item small {
  display: block;
  margin-bottom: 6px;
  color: var(--steel);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  color: var(--blue-950);
  line-height: 1.6;
}

.form-card {
  padding: clamp(30px, 5vw, 58px);
  background: var(--mist);
  clip-path: var(--radius-cut);
}

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

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

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

.field label {
  color: var(--blue-950);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cdd9e2;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: #fff;
  padding: 14px 15px;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 136px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(20, 120, 189, 0.13);
}

.form-note,
.status-message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.status-message {
  min-height: 20px;
  color: var(--blue-700);
  font-weight: 750;
}

.fpv-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-card .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin: 52px 0 14px;
  color: var(--blue-950);
  font-size: 1.6rem;
}

.legal h3 {
  margin: 32px 0 10px;
  color: var(--blue-950);
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.85;
}

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

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

.cta-band .container {
  display: flex;
  min-height: 290px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.site-footer {
  position: relative;
  padding: 76px 0 28px;
  color: #fff;
  background: var(--logo-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.5fr;
  gap: 70px;
  padding-bottom: 56px;
}

.footer-copy {
  max-width: 320px;
  margin: 24px 0 0;
  color: #d8e5ef;
  font-size: 0.88rem;
  line-height: 1.75;
}

.footer-title {
  margin: 0 0 24px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.footer-links a,
.footer-contact {
  color: #d8e5ef;
  font-size: 0.84rem;
  line-height: 1.6;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #d8e5ef;
  font-size: 0.72rem;
  line-height: 1.6;
}

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

.floating-whatsapp,
.scroll-top {
  position: fixed;
  right: 20px;
  z-index: 70;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 28px rgba(5, 47, 85, 0.24);
}

.floating-whatsapp {
  bottom: 22px;
  background: #18a957;
}

.scroll-top {
  right: 84px;
  bottom: 22px;
  cursor: pointer;
  background: var(--blue-700);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp svg,
.scroll-top svg {
  width: 24px;
  height: 24px;
}

/* Página Empresa — adaptação web fiel ao portfólio institucional aprovado. */
.fpv-company-portfolio {
  --portfolio-blue: #024382;
  --portfolio-navy: #0d2b4a;
  --portfolio-gold: #c9a84c;
  --portfolio-white: #e8edf2;
  color: var(--portfolio-navy);
  background: #fff;
}

.fpv-company-portfolio__about {
  padding: clamp(76px, 8vw, 124px) 0 0;
  border-top: 5px solid var(--portfolio-gold);
  background: #fff;
}

.fpv-company-portfolio__content {
  width: min(1060px, calc(100% - 40px));
}

.fpv-company-portfolio__heading {
  margin: 0;
  color: var(--portfolio-navy);
  font-size: clamp(2.6rem, 4.5vw, 3.9rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.fpv-company-portfolio__heading::after {
  display: block;
  width: 88px;
  height: 3px;
  margin-top: 18px;
  content: "";
  background: var(--portfolio-gold);
}

.fpv-company-portfolio__heading--secondary {
  margin-top: clamp(70px, 8vw, 112px);
  font-size: clamp(2.35rem, 4vw, 3.5rem);
}

.fpv-company-portfolio__heading--light {
  color: #fff;
}

.fpv-company-portfolio__body {
  max-width: 1020px;
  margin-top: clamp(38px, 5vw, 62px);
  color: var(--portfolio-navy);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.85;
  text-align: justify;
  text-wrap: pretty;
}

.fpv-company-portfolio__body p {
  margin: 0;
}

.fpv-company-portfolio__body p + p {
  margin-top: 24px;
}

.fpv-company-portfolio__pillars {
  max-width: 1020px;
  margin-top: 40px;
}

.fpv-company-portfolio__pillar {
  padding: 0;
}

.fpv-company-portfolio__pillar + .fpv-company-portfolio__pillar {
  margin-top: 32px;
}

.fpv-company-portfolio__pillar h3,
.fpv-company-portfolio__pillar p {
  margin: 0;
}

.fpv-company-portfolio__pillar h3 {
  color: var(--portfolio-navy);
  font-size: 1.12rem;
  font-weight: 800;
}

.fpv-company-portfolio__pillar p {
  margin-top: 12px;
  color: #465b6d;
  font-size: 1rem;
  line-height: 1.75;
}

.fpv-company-portfolio .fpv-company-portfolio__media {
  position: relative;
  width: 100%;
  margin: clamp(58px, 7vw, 94px) auto 0 !important;
  overflow: hidden;
  background: var(--portfolio-navy);
}

.fpv-company-portfolio__media--about {
  height: clamp(330px, 42vw, 555px);
}

.fpv-company-portfolio__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fpv-company-portfolio__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 46px 24px 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.45;
  background: linear-gradient(0deg, rgba(5, 47, 85, 0.86), rgba(5, 47, 85, 0));
}

.fpv-company-portfolio__services {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 9vw, 132px) 0 clamp(76px, 8vw, 116px);
  border-top: 5px solid var(--portfolio-gold);
  color: var(--portfolio-white);
  background: var(--portfolio-blue);
}

.fpv-company-portfolio__services::after {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: 190px;
  height: 190px;
  content: "";
  opacity: 0.16;
  background-image: radial-gradient(circle, #fff 1.4px, transparent 1.6px);
  background-size: 14px 14px;
  pointer-events: none;
}

.fpv-company-portfolio__service-list {
  max-width: 1020px;
  margin-top: clamp(42px, 5vw, 66px);
}

.fpv-company-portfolio__service {
  padding: 0 0 30px;
}

.fpv-company-portfolio__service + .fpv-company-portfolio__service {
  margin-top: 30px;
}

.fpv-company-portfolio__service h3,
.fpv-company-portfolio__service p {
  margin: 0;
}

.fpv-company-portfolio__service h3 {
  color: var(--portfolio-gold);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
}

.fpv-company-portfolio__service p {
  max-width: 920px;
  margin-top: 10px;
  color: var(--portfolio-white);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.75;
  text-align: justify;
  text-wrap: pretty;
}

.fpv-company-portfolio__service-media {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: clamp(58px, 7vw, 90px) auto 0;
}

.fpv-company-portfolio__service-media .fpv-company-portfolio__media {
  width: 100%;
  margin-top: 0 !important;
}

.fpv-company-portfolio__service-media .fpv-company-portfolio__media + .fpv-company-portfolio__media {
  margin-top: 24px !important;
}

.fpv-company-portfolio__service-media .fpv-company-portfolio__media:first-child {
  aspect-ratio: 1126 / 337;
}

.fpv-company-portfolio__service-media .fpv-company-portfolio__media:last-child {
  aspect-ratio: 1202 / 545;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 30px;
  color: #fff;
  text-align: center;
  background: var(--blue-950);
}

.not-found h1 {
  margin: 0;
  font-size: clamp(4rem, 15vw, 10rem);
  line-height: 0.8;
}

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

  .desktop-nav > a:not(.nav-cta) {
    font-size: 0.62rem;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    inset: 86px 0 0;
    z-index: 79;
    display: grid;
    align-content: start;
    padding: 20px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 16px 10px;
    border-bottom: 1px solid var(--line);
    color: var(--blue-950);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .split,
  .contact-grid,
  .institutional-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .media,
  .split.reverse .copy {
    order: initial;
  }

  .media {
    min-height: 430px;
  }

  .cards,
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .contact-option {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-option:last-child {
    border-bottom: 0;
  }

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

  .feature-band.reverse .feature-band-media {
    order: 2;
  }

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

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

}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

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

  .brand-logo {
    width: 160px;
    height: auto;
  }

  .mobile-nav {
    inset: 76px 0 0;
  }

  .hero,
  .hero-content {
    min-height: 690px;
  }

  .hero-content {
    align-items: end;
    padding: 110px 0 150px;
  }

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

  .hero-slide::after {
    background: linear-gradient(0deg, rgba(4, 31, 55, 0.98) 6%, rgba(5, 47, 85, 0.6) 66%, rgba(5, 47, 85, 0.18));
  }

  .slider-controls {
    right: auto;
    bottom: 100px;
    left: 15px;
    gap: 8px;
  }

  .slide-arrow {
    width: 38px;
    height: 38px;
  }

  .slide-count {
    display: none;
  }

  .slide-dot {
    width: 22px;
  }

  .slide-dot[aria-current="true"] {
    width: 42px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: -64px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .section-head,
  .cta-band .container,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cards,
  .project-grid,
  .pillars,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .project-card {
    min-height: 390px;
  }

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

  .institutional-points article {
    grid-template-columns: 36px 1fr;
  }

  .institutional-points p {
    grid-column: 2;
  }

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

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

  .timeline::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .timeline-item {
    padding: 0 0 32px 38px;
  }

  .timeline-item::before {
    top: 4px;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }

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

  .scroll-top {
    display: none;
  }

  .fpv-company-portfolio__content {
    width: min(100% - 30px, 1180px);
  }

  .fpv-company-portfolio__heading {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
    letter-spacing: -0.035em;
  }

  .fpv-company-portfolio__heading--secondary {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .fpv-company-portfolio__body {
    line-height: 1.72;
    text-align: left;
  }

  .fpv-company-portfolio__service p {
    text-align: left;
  }

  .fpv-company-portfolio__pillar {
    padding: 0;
  }

  .fpv-company-portfolio__media--about {
    height: 300px;
  }

  .fpv-company-portfolio__media figcaption {
    padding: 38px 16px 14px;
    font-size: 0.74rem;
  }

  .fpv-company-portfolio__services::after {
    display: none;
  }

  .fpv-company-portfolio__service-media .fpv-company-portfolio__media:first-child,
  .fpv-company-portfolio__service-media .fpv-company-portfolio__media:last-child {
    min-height: 230px;
    aspect-ratio: auto;
  }
}

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