:root {
  --blue-950: #061025;
  --blue-900: #05193c;
  --blue-850: #07204c;
  --blue-800: #082c66;
  --cyan: #03abf2;
  --cyan-2: #0cc8ff;
  --white: #faf6f4;
  --muted: #c4c8d2;
  --muted-2: #8e9192;
  --line: rgba(3, 171, 242, 0.32);
  --line-soft: rgba(250, 246, 244, 0.12);
  --glass: rgba(5, 25, 60, 0.74);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius: 20px;
  --radius-lg: 36px;
  --container: 1500px;
  --pad: clamp(24px, 5vw, 88px);
  --section-pad-tight: clamp(82px, 8vw, 128px);
  --section-pad-default: clamp(96px, 10vw, 148px);
  --section-pad-roomy: clamp(112px, 12vw, 168px);
  --section-pad-bottom-tight: clamp(54px, 5vw, 78px);
  --section-pad-bottom-default: clamp(68px, 6vw, 96px);
  --section-pad-bottom-roomy: clamp(76px, 7vw, 112px);
  --section-pad-hero-top: clamp(80px, 11vh, 142px);
  --section-pad-hero-bottom: clamp(54px, 7vh, 86px);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--blue-950);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--cyan); color: var(--blue-950); }

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--cyan);
  color: var(--blue-950);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}
.section {
  position: relative;
  min-height: auto;
  overflow: clip;
  --section-pad-top: var(--section-pad-default);
  --section-pad-bottom: var(--section-pad-bottom-default);
}
#sobre { --section-pad-top: var(--section-pad-roomy); --section-pad-bottom: var(--section-pad-bottom-roomy); }
#beneficios { --section-pad-top: var(--section-pad-roomy); --section-pad-bottom: var(--section-pad-bottom-roomy); }
#produtos { --section-pad-top: var(--section-pad-default); --section-pad-bottom: var(--section-pad-bottom-roomy); }
#processo { --section-pad-top: var(--section-pad-default); --section-pad-bottom: var(--section-pad-bottom-default); }
#projetos { --section-pad-top: var(--section-pad-roomy); --section-pad-bottom: var(--section-pad-bottom-roomy); }
#contato { --section-pad-top: clamp(110px, 12vw, 160px); --section-pad-bottom: var(--section-pad-bottom-tight); }
.panel {
  padding-block: var(--section-pad-top) var(--section-pad-bottom);
  background:
    radial-gradient(circle at 78% 18%, rgba(3,171,242,.12), transparent 35%),
    radial-gradient(circle at 8% 76%, rgba(3,171,242,.10), transparent 32%),
    linear-gradient(135deg, #061025 0%, #05193c 58%, #062044 100%);
}
.panel::before,
.panel::after,
.hero::after,
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.panel::before,
.hero::after,
.contact::after {
  background-image:
    linear-gradient(rgba(3,171,242,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3,171,242,.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 8% 25%, #000, transparent 34%);
  opacity: .75;
}
.panel::after {
  right: -5%;
  left: auto;
  width: 42%;
  background:
    linear-gradient(145deg, transparent 20%, rgba(3,171,242,.14) 20.25%, transparent 20.6%),
    linear-gradient(145deg, transparent 32%, rgba(3,171,242,.10) 32.25%, transparent 32.6%),
    linear-gradient(145deg, transparent 44%, rgba(3,171,242,.08) 44.25%, transparent 44.6%);
  opacity: .7;
}
.panel-alt {
  background:
    radial-gradient(circle at 82% 50%, rgba(3,171,242,.13), transparent 32%),
    linear-gradient(135deg, #041126 0%, #05193c 52%, #061025 100%);
}
.panel-clean {
  min-height: auto;
  background:
    linear-gradient(180deg, #061025 0%, #07204c 100%);
}
#produtos {
  background:
    linear-gradient(90deg, rgba(3,171,242,.08) 1px, transparent 1px),
    linear-gradient(180deg, #07162f 0%, #061025 100%);
  background-size: 120px 120px, auto;
}
#projetos {
  background:
    radial-gradient(circle at 14% 22%, rgba(3,171,242,.12), transparent 28%),
    linear-gradient(135deg, #041126 0%, #061025 62%, #08224c 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background .28s ease, border-color .28s ease, padding .28s ease, backdrop-filter .28s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(6, 16, 37, .82);
  border-color: var(--line-soft);
  backdrop-filter: blur(20px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 58px;
  padding: 8px 0;
}
.brand img {
  width: auto;
  height: clamp(38px, 3.2vw, 46px);
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  margin-left: auto;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(250, 246, 244, .82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.btn::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan) 0%, #0b89ff 100%);
  box-shadow: 0 18px 42px rgba(3, 171, 242, .24);
}
.btn-secondary {
  background: rgba(250, 246, 244, .03);
  border-color: rgba(250, 246, 244, .32);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 22px 52px rgba(3, 171, 242, .34); }
.btn-secondary:hover { border-color: var(--cyan); }
.header-cta { min-height: 48px; padding-inline: 24px; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(250,246,244,.04);
  color: var(--white);
  padding: 12px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 96px;
  background:
    radial-gradient(circle at 75% 20%, rgba(3,171,242,.20), transparent 34%),
    radial-gradient(circle at 8% 18%, rgba(3,171,242,.12), transparent 30%),
    linear-gradient(135deg, #061025 0%, #05193c 45%, #061025 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 34%, rgba(3,171,242,.18), transparent 28%),
    linear-gradient(110deg, rgba(6,16,37,.98) 0%, rgba(6,16,37,.94) 42%, rgba(6,16,37,.48) 68%, rgba(6,16,37,.20) 100%);
  opacity: .92;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(114deg, #061025 0 47%, transparent 47.2% 100%);
  opacity: .54;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
  padding-block: var(--section-pad-hero-top) var(--section-pad-hero-bottom);
}
.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.section-kicker span {
  color: var(--cyan);
  margin-right: 10px;
}
h1, h2, h3, p { margin-top: 0; }
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: .96;
  text-transform: uppercase;
}
h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(52px, 7.2vw, 112px);
}
h1 span,
h2 span { color: var(--cyan); }
.hero-copy h1 span { display: inline-block; color: var(--cyan); }
.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(250, 246, 244, .82);
  font-size: clamp(18px, 1.55vw, 22px);
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: clamp(28px, 3.4vw, 44px);
}
.hero-proof article {
  min-width: min(190px, 100%);
  padding: 11px 14px;
  border: 1px solid rgba(250,246,244,.10);
  border-radius: 8px;
  background: rgba(250,246,244,.025);
}
.hero-proof strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-proof span {
  display: block;
  color: rgba(250,246,244,.62);
  font-size: 12px;
  line-height: 1.35;
}
.hero-media {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(3,171,242,.28);
  border-radius: 44px 0 44px 160px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateZ(0);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,16,37,.08), rgba(6,16,37,.34));
  z-index: 1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}
.glass-card {
  background: linear-gradient(145deg, rgba(5,25,60,.84), rgba(6,16,37,.74));
  border: 1px solid rgba(3,171,242,.35);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.project-card {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  width: min(320px, calc(100% - 68px));
  padding: 24px;
  border-radius: 18px;
}
.project-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.project-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}
.project-card p {
  margin: 0;
  color: rgba(250,246,244,.72);
  font-size: 14px;
}
.icon,
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.icon svg,
.step-icon svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(48px, 8vw, 126px);
}
.split-grid-reverse { grid-template-columns: minmax(420px, 1.1fr) minmax(0, .9fr); }
.content-block h2,
.about-head h2,
.benefits-head h2,
.benefits-list h2,
.section-heading h2,
.projects-head h2,
.contact-copy h2 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(42px, 5vw, 72px);
}
.content-block > p:not(.section-kicker),
.about-head > p:not(.section-kicker),
.contact-copy > p,
.projects-head > p {
  max-width: 680px;
  color: rgba(250,246,244,.78);
  font-size: clamp(17px, 1.35vw, 20px);
}
.about-layout {
  position: relative;
  z-index: 1;
}
.about-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .55fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 70px);
}
.about-head .section-kicker {
  grid-column: 1;
}
.about-head h2 {
  grid-column: 1;
  max-width: 940px;
  margin-bottom: 0;
}
.about-head > p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-bottom: 6px;
  padding-left: 32px;
  border-left: 3px solid var(--cyan);
}
.execution-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 clamp(34px, 4vw, 54px);
  border: 1px solid rgba(250,246,244,.10);
  background: rgba(250,246,244,.10);
}
.execution-pillars article {
  min-height: 180px;
  padding: clamp(20px, 2.2vw, 30px);
  background: rgba(5,25,60,.58);
}
.execution-pillars .icon {
  margin-bottom: 18px;
}
.execution-pillars .icon svg {
  width: 32px;
  height: 32px;
}
.execution-pillars h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.execution-pillars p {
  margin: 0;
  color: rgba(250,246,244,.68);
  font-size: 14px;
  line-height: 1.45;
}
.about-board {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: stretch;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding-block: clamp(26px, 4vw, 44px);
}
.about-photo {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(3,171,242,.26);
  border-radius: 8px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,16,37,.24), rgba(6,16,37,.62));
}
.triad {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.triad article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 8px;
  align-items: start;
  padding: 0 0 24px;
  border-right: 0;
  border-bottom: 1px solid var(--line-soft);
}
.triad article + article { padding: 24px 0; }
.triad article:last-child { padding-bottom: 0; border-bottom: 0; }
.triad h3 {
  grid-column: 2;
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.25;
}
.triad .icon {
  grid-row: 1 / span 2;
}
.triad p {
  grid-column: 2;
  margin: 0;
  max-width: 520px;
  color: rgba(250,246,244,.68);
  font-size: 14px;
  line-height: 1.55;
}
.photo-arc {
  position: relative;
  margin: 0;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(3,171,242,.24);
  border-radius: 170px 26px 26px 170px;
  box-shadow: var(--shadow);
}
.photo-arc-large { min-height: 690px; border-radius: 240px 20px 20px 240px; }
.photo-arc img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.photo-arc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,16,37,.45), transparent 55%);
}

.benefits-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, .7fr);
  grid-template-areas:
    "head rail"
    "list rail";
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.benefits-head {
  grid-area: head;
}
.benefits-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}
.benefits-rail {
  grid-area: rail;
  position: sticky;
  top: 126px;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(3,171,242,.24);
  border-radius: 8px 8px 120px 8px;
  box-shadow: var(--shadow);
}
.benefits-rail img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.benefits-rail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,16,37,.08), rgba(6,16,37,.70));
}
.benefits-rail figcaption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
}
.benefits-rail strong,
.benefits-rail span {
  display: block;
}
.benefits-rail strong {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.benefits-rail span {
  max-width: 420px;
  color: rgba(250,246,244,.82);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.25;
}
.benefits-list {
  position: relative;
  z-index: 1;
  grid-area: list;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.benefit-item {
  display: block;
  max-width: none;
  min-height: 236px;
  padding: 26px;
  border: 1px solid rgba(250,246,244,.12);
  border-bottom: 1px solid rgba(250,246,244,.12);
  border-radius: 8px;
  background: rgba(5,25,60,.38);
}
.benefit-item .icon {
  margin-bottom: 24px;
  border-right: 0;
  height: auto;
  justify-content: flex-start;
}
.benefit-item h3 {
  margin: 0 0 6px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(18px, 1.55vw, 23px);
}
.benefit-item p {
  margin: 0;
  color: rgba(250,246,244,.74);
  font-size: 17px;
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(42px, 5vw, 64px);
}
.section-heading::after,
.content-block::after,
.benefits-list::after {
  content: "";
  display: block;
  width: 130px;
  height: 3px;
  margin-top: 30px;
  background: var(--cyan);
}
.card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.solution-card {
  border: 1px solid rgba(3,171,242,.35);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(5,25,60,.68), rgba(6,16,37,.92));
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(3,171,242,.72);
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}
.solution-card img {
  width: 100%;
  aspect-ratio: 1.28 / .78;
  object-fit: cover;
  border-bottom: 1px solid rgba(3,171,242,.26);
}
.solution-card div { padding: 28px; }
.solution-meta {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.solution-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}
.solution-card p {
  min-height: 78px;
  color: rgba(250,246,244,.72);
  font-size: 17px;
}
.solution-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}
.solution-card a::after { content: "→"; margin-left: 10px; font-size: 18px; }

.timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  margin-top: clamp(58px, 7vw, 86px);
}
.timeline::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.step-card {
  position: relative;
  text-align: center;
}
.step-icon {
  width: 128px;
  height: 128px;
  margin-inline: auto;
  border: 1px solid rgba(3,171,242,.45);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,171,242,.12), rgba(5,25,60,.42));
  box-shadow: inset 0 0 0 12px rgba(3,171,242,.05);
}
.step-icon svg { width: 56px; height: 56px; }
.step-card strong {
  display: block;
  margin: 22px 0 8px;
  color: rgba(3,171,242,.80);
  font-size: 34px;
  line-height: 1;
}
.step-card h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 17px;
}
.step-card p {
  margin: 0;
  color: rgba(250,246,244,.70);
  font-size: 15px;
}

.projects-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 64px;
  align-items: end;
  margin-bottom: 54px;
}
.projects-head > p {
  padding-left: 36px;
  border-left: 3px solid var(--cyan);
}
.gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr .94fr .94fr;
  grid-auto-rows: minmax(230px, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(250,246,244,.15);
  border-radius: 10px;
  background: var(--blue-900);
}
.gallery-large { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,16,37,.62));
  opacity: .9;
  transition: opacity .3s ease;
}
.gallery-caption {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: var(--white);
}
.gallery-caption strong,
.gallery-caption em {
  display: block;
}
.gallery-caption strong {
  margin-bottom: 5px;
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.1;
  text-transform: uppercase;
}
.gallery-caption em {
  color: rgba(250,246,244,.68);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.04); }
.gallery-item:hover::after { opacity: .98; }

.contact {
  min-height: auto;
  padding-block: var(--section-pad-top) var(--section-pad-bottom);
  background:
    radial-gradient(circle at 82% 24%, rgba(3,171,242,.14), transparent 34%),
    linear-gradient(135deg, #061025 0%, #05193c 54%, #061025 100%);
}
.contact-bg {
  position: absolute;
  inset: 0;
}
.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 18%, rgba(3,171,242,.12) 18.15%, transparent 18.55%),
    linear-gradient(145deg, transparent 34%, rgba(3,171,242,.08) 34.15%, transparent 34.45%),
    linear-gradient(90deg, rgba(6,16,37,.88) 0%, rgba(5,25,60,.48) 52%, rgba(6,16,37,.76) 100%);
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .82fr);
  gap: clamp(48px, 8vw, 126px);
  align-items: center;
}
.contact-copy h2 { max-width: 760px; }
.contact-copy > p { margin-bottom: 38px; }
.contact-info {
  display: grid;
  gap: 10px;
  max-width: 700px;
  margin-top: 24px;
  color: rgba(250,246,244,.76);
  font-style: normal;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.5;
}
.contact-info a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: fit-content;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: .02em;
}
.contact-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(50px, 6vw, 80px);
  max-width: 860px;
}
.contact-badges article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding-right: 22px;
  border-right: 1px solid var(--line-soft);
}
.contact-badges article + article { padding-left: 22px; }
.contact-badges article:last-child { border-right: 0; }
.contact-badges p {
  margin: 0;
  color: rgba(250,246,244,.72);
  font-size: 14px;
}
.contact-form {
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--radius);
}
.contact-map {
  position: relative;
  grid-column: 1 / -1;
  min-height: clamp(320px, 34vw, 480px);
  margin-top: clamp(10px, 2vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(3,171,242,.34);
  border-radius: 8px;
  background: rgba(5,25,60,.42);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: saturate(.86) contrast(1.02);
}
.contact-map a {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(3,171,242,.46);
  border-radius: 8px;
  background: rgba(6,16,37,.88);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}
.form-head h3 {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: clamp(24px, 2vw, 32px);
}
.form-head p {
  color: rgba(250,246,244,.72);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  margin-bottom: 16px;
}
label span {
  display: block;
  margin-bottom: 8px;
  color: rgba(250,246,244,.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(250,246,244,.20);
  border-radius: 8px;
  background: rgba(6,16,37,.32);
  color: var(--white);
  padding: 18px 20px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(250,246,244,.72) 50%),
    linear-gradient(135deg, rgba(250,246,244,.72) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 17px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}
input::placeholder,
textarea::placeholder { color: rgba(250,246,244,.46); }
input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(3,171,242,.12);
  background: rgba(6,16,37,.55);
}
select option {
  color: var(--blue-950);
  background: var(--white);
}
textarea { resize: vertical; }
.form-submit { width: 100%; margin-top: 8px; }
.form-note {
  margin: 22px 0 0;
  color: rgba(250,246,244,.55);
  text-align: center;
  font-size: 13px;
}
.form-note.success { color: var(--cyan); }

.footer {
  border-top: 1px solid var(--line-soft);
  background: #030b19;
  padding-block: 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 28px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 8px 0;
}
.footer-brand img {
  width: auto;
  height: clamp(38px, 3.2vw, 46px);
}
.footer p {
  margin: 0;
  color: rgba(250,246,244,.58);
  font-size: 14px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}
.footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(250,246,244,.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.footer-legal a:hover {
  color: var(--cyan);
}

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 82% 14%, rgba(3,171,242,.12), transparent 30%),
    linear-gradient(135deg, #061025 0%, #05193c 54%, #061025 100%);
}
.legal-header {
  border-bottom: 1px solid var(--line-soft);
}
.legal-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.legal-main {
  padding-block: clamp(70px, 9vw, 124px);
}
.legal-document {
  max-width: 920px;
}
.legal-document .section-kicker {
  margin-bottom: 18px;
}
.legal-document h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
}
.legal-updated {
  margin-bottom: clamp(34px, 5vw, 58px);
  color: rgba(250,246,244,.58);
}
.legal-document section {
  padding-block: 28px;
  border-top: 1px solid var(--line-soft);
}
.legal-document h2 {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0;
  line-height: 1.08;
}
.legal-document p,
.legal-document li {
  color: rgba(250,246,244,.74);
  font-size: 16px;
  line-height: 1.7;
}
.legal-document ul {
  margin: 0;
  padding-left: 20px;
}
.legal-document a {
  color: var(--cyan);
  font-weight: 800;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .header-cta { display: none; }
  .brand img { height: clamp(36px, 4vw, 42px); }
  .nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { display: none; }
  .hero { align-items: start; }
  .hero-grid { padding-bottom: 52px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .timeline::before { display: none; }
  .about-head,
  .about-board,
  .benefits-layout {
    grid-template-columns: 1fr;
  }
  .execution-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .benefits-layout {
    grid-template-areas:
      "head"
      "rail"
      "list";
  }
  .benefits-rail {
    position: relative;
    top: auto;
    min-height: 420px;
    border-radius: 8px 8px 90px 8px;
  }
}

@media (max-width: 980px) {
  :root { --pad: 24px; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: rgba(6,16,37,.96);
    backdrop-filter: blur(24px);
    transform: translateY(-100%);
    transition: transform .32s ease;
  }
  .menu-open .nav { transform: translateY(0); }
  .nav-link { font-size: 18px; }
  .header-inner { min-height: 76px; }
  .brand { min-height: 54px; padding-block: 8px; }
  .brand img { height: clamp(34px, 9vw, 40px); }
  .hero { padding-top: 76px; }
  h1 { font-size: clamp(48px, 14vw, 72px); }
  .split-grid,
  .split-grid-reverse,
  .contact-grid,
  .projects-head {
    grid-template-columns: 1fr;
  }
  .about-head {
    display: block;
  }
  .about-head h2 {
    margin-bottom: 24px;
  }
  .about-head > p:not(.section-kicker) {
    padding-left: 24px;
  }
  .about-board {
    display: block;
  }
  .about-photo {
    min-height: 320px;
    margin-bottom: 26px;
  }
  .benefits-list {
    grid-template-columns: 1fr 1fr;
  }
  .photo-arc,
  .photo-arc-large {
    min-height: 460px;
    border-radius: 40px;
  }
  .triad,
  .contact-badges { grid-template-columns: 1fr; }
  .execution-pillars article {
    min-height: 150px;
  }
  .hero-proof { max-width: 620px; }
  .triad article,
  .triad article + article,
  .contact-badges article,
  .contact-badges article + article {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .triad article:last-child,
  .contact-badges article:last-child { border-bottom: 0; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-row: span 1; grid-column: span 2; }
}

@media (max-width: 720px) {
  :root {
    --section-pad-tight: 72px;
    --section-pad-default: 82px;
    --section-pad-roomy: 92px;
    --section-pad-bottom-tight: 42px;
    --section-pad-bottom-default: 52px;
    --section-pad-bottom-roomy: 62px;
    --section-pad-hero-top: 72px;
    --section-pad-hero-bottom: 26px;
  }
  .section { min-height: auto; }
  .hero { min-height: 100svh; }
  .hero-bg {
    background:
      radial-gradient(circle at 50% 10%, rgba(3,171,242,.16), transparent 38%),
      linear-gradient(180deg, rgba(6,16,37,.88), rgba(6,16,37,.96));
  }
  .hero-actions,
  .contact-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .execution-pillars {
    grid-template-columns: 1fr;
  }
  .execution-pillars article {
    min-height: auto;
  }
  .content-block h2,
  .benefits-list h2,
  .section-heading h2,
  .projects-head h2,
  .contact-copy h2 {
    font-size: clamp(36px, 12vw, 54px);
  }
  .benefit-item { grid-template-columns: 58px 1fr; }
  .benefit-item .icon svg { width: 34px; height: 34px; }
  .hero-proof { margin-top: 26px; }
  .benefits-list {
    grid-template-columns: 1fr;
  }
  .benefits-rail {
    min-height: 320px;
    border-radius: 8px 8px 64px 8px;
  }
  .benefit-item {
    min-height: auto;
    padding: 22px;
  }
  .triad article {
    grid-template-columns: 52px minmax(0, 1fr);
  }
  .triad p {
    max-width: none;
  }
  .card-grid,
  .timeline,
  .gallery,
  .form-row { grid-template-columns: 1fr; }
  .gallery-large { grid-column: auto; }
  .contact-form { padding: 24px; }
  .contact-map a {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    text-align: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-brand {
    min-height: 54px;
    padding-block: 8px;
  }
  .footer-brand img {
    height: clamp(34px, 9vw, 40px);
  }
  .footer-legal {
    justify-content: center;
  }
  .legal-header-inner {
    min-height: 76px;
  }
  .legal-document h1 {
    font-size: clamp(38px, 11vw, 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
