:root {
  --ink: #080a0c;
  --muted: #5d656d;
  --paper: #f6f7f8;
  --white: #fff;
  --line: #dce1e5;
  --max: 1180px;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 48px, var(--max)); margin: 0 auto; }

.header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(8,10,12,.08);
  backdrop-filter: blur(14px);
  transition: padding .25s ease, box-shadow .25s ease;
}
.header.scrolled {
  padding-block: 14px;
  box-shadow: 0 8px 28px rgba(8,10,12,.08);
}
.nav {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; line-height: 1; }
.brand img { width: 118px; height: auto; display: block; mix-blend-mode: multiply; }
.footer-brand img { width: 132px; }
.nav-links { display: flex; justify-content: center; align-items: center; gap: clamp(18px,3vw,40px); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.button {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button.ghost { background: rgba(255,255,255,.72); color: var(--ink); border-color: rgba(8,10,12,.22); }
.button.white { border-color: transparent; }
.whatsapp-icon { width: 17px; height: 17px; flex: 0 0 auto; fill: currentColor; }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid rgba(8,10,12,.18); background: var(--white); border-radius: var(--radius); }

.hero {
  min-height: calc(100vh - 88px);
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper);
}
.hero-content {
  min-height: calc(100vh - 88px);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 44%) 1fr;
  align-items: center;
  pointer-events: none;
}
.hero-copy {
  max-width: 610px;
  padding: clamp(38px, 6vw, 78px) clamp(24px, 4vw, 54px) clamp(38px, 6vw, 78px) 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(246,247,248,.97) 72%, rgba(246,247,248,0) 100%);
  pointer-events: auto;
}
.hero-content h1 { max-width: 560px; margin: 0 0 28px; font-size: clamp(44px, 6.4vw, 76px); line-height: .98; letter-spacing: 0; }
.hero-content p { max-width: 445px; color: #29313a; font-size: 17px; line-height: 1.65; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-media {
  position: absolute;
  inset: 0 0 0 35%;
  overflow: hidden;
  background: #dfe4e8;
}
.hero-media:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(246,247,248,.82) 10%, rgba(246,247,248,.08) 33%, rgba(246,247,248,0) 62%);
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.03);
  animation: heroFade 15s infinite;
}
.slide-two { animation-delay: 5s; }
.slide-three { animation-delay: 10s; }
.slide-one { object-position: 62% center; }
.slide-two { object-position: 68% center; }
.slide-three { object-position: 66% center; }
@keyframes heroFade {
  0% { opacity: 0; transform: scale(1.04); }
  7% { opacity: 1; }
  31% { opacity: 1; }
  39% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1); }
}

.section { padding: clamp(58px, 8vw, 104px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}
.section-head.compact { align-items: center; }
.eyebrow {
  margin: 0;
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e8ecef;
  color: #1a2026;
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
}
.eyebrow:before { content: "#"; color: #7d8790; font-weight: 900; }
.eyebrow:not(.plain):after { display: none; }
h2 { margin: 14px 0 0; max-width: 660px; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: 0; }
.section-intro {
  max-width: 740px;
  margin: 18px 0 0;
  color: #4d5964;
  font-size: 17px;
  line-height: 1.65;
}
.text-link { display: inline-flex; align-items: center; gap: 16px; font-size: 12px; font-weight: 850; text-transform: uppercase; white-space: nowrap; }

.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.project-card,
.solution-tile {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #1a2229;
}
.project-facade { background-image: url("assets/sol-clean-fachada.png?v=2"); background-position: center; }
.project-fleet { background-image: url("assets/sol-clean-frota.png?v=2"); background-position: center; }
.project-container { background-image: url("assets/sol-clean-container.png?v=2"); background-position: center; }
.project-ambient { background-image: url("assets/sol-clean-ambientacao.png?v=2"); background-position: center; }
.solution-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.solution-tile {
  min-height: 330px;
  background-size: cover;
}
.solution-corporate,
.solution-special,
.solution-light,
.solution-transformation {
  background-size: cover;
}
.solution-corporate { background-image: url("assets/sol-comunicacao-web.jpg"); background-position: center; }
.solution-special { background-image: url("assets/sol-especiais-web.jpg"); background-position: center; }
.solution-light { background-image: url("assets/sol-luminosos-web.jpg"); background-position: center; }
.solution-transformation { background-image: url("assets/sol-transformacao-card-web.jpg?v=1"); background-position: left center; }
.project-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,.82) 100%);
  transition: background .35s ease;
}
.solution-tile:before,
.visual:before,
.cta-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,.82) 100%);
  transform: scale(1.02);
  transition: transform .45s ease;
}
.project-card:hover:before,
.solution-tile:hover:before,
.solution-card:hover .visual:before,
.promo-grid a:hover .visual:before { transform: scale(1.09); }
.project-card:after,
.solution-tile:after { content: ""; position: absolute; inset: auto 0 0; height: 54%; background: linear-gradient(transparent, rgba(0,0,0,.78)); }
.project-card .project-info,
.solution-tile span {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--white);
  transform: translateY(0);
  transition: transform .35s ease;
}
.project-card strong,
.solution-tile strong { display: block; font-size: 18px; line-height: 1.16; }
.project-card em,
.solution-tile em {
  width: max-content;
  max-width: 100%;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
.project-card:hover .project-info,
.solution-tile:hover span { transform: translateY(-12px); }
.project-card:hover em,
.solution-tile:hover em { opacity: 1; transform: translateY(0); }

.solution-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.solution-card { display: grid; gap: 15px; min-width: 0; }
.visual { display: block; position: relative; overflow: hidden; min-height: 178px; border-radius: var(--radius); background: var(--tone); }
.solution-card strong { display: block; min-height: 42px; font-size: 16px; line-height: 1.18; }
.solution-card > span { font-size: 22px; }
.icon { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(8,10,12,.35); border-radius: 50%; font-size: 14px; }

.tone-facade { --tone: #26333d; }
.tone-fleet { --tone: #2d5f8b; }
.tone-container { --tone: #687887; }
.tone-wayfinding { --tone: #b8a995; }
.tone-ambient { --tone: #9d927f; }
.tone-special { --tone: #1b2c38; }
.tone-banner { --tone: #bec9c9; }
.tone-paper { --tone: #d7dade; }
.tone-card { --tone: #c7c8c6; }

.numbers { padding: 48px 0; background: #eceff2; }
.number-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.number-grid div { min-height: 100px; padding: 14px 40px; display: grid; align-content: center; border-right: 1px solid rgba(8,10,12,.14); }
.number-grid div:last-child { border-right: 0; }
.number-grid strong { font-size: clamp(38px, 5vw, 56px); line-height: 1; font-weight: 500; }
.number-grid span { margin-top: 10px; color: #343b43; font-size: 14px; }
.map-stat { justify-items: start; }
.brazil-map {
  width: 82px;
  height: 82px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.segment-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 22px; padding-bottom: 0; border-bottom: 0; }
.segment-grid a { min-height: 86px; display: grid; gap: 10px; place-items: center; text-align: center; font-size: 13px; font-weight: 750; }
.segment-grid b { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(8,10,12,.25); border-radius: 50%; background: rgba(255,255,255,.58); }
.segment-grid svg { width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.segment-more { margin: 28px 0 0; text-align: center; color: #5f6871; font-size: 16px; font-weight: 850; text-transform: uppercase; }
.visibility-panel {
  margin: clamp(52px, 7vw, 86px) calc(50% - 50vw) 0;
  padding: clamp(54px, 7vw, 88px) max(24px, calc((100vw - var(--max)) / 2));
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) .95fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  cursor: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(135deg, #050607 0%, #101317 48%, #050607 100%);
  box-shadow:
    0 -34px 60px rgba(8,10,12,.18),
    0 34px 64px rgba(8,10,12,.18),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(255,255,255,.06);
  transition: background-position .7s ease, box-shadow .45s ease;
}
.visibility-panel:before,
.visibility-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.visibility-panel:before {
  background: linear-gradient(90deg, rgba(255,255,255,.08), transparent 42%, rgba(255,255,255,.05));
  transform: translateX(-18%);
  opacity: .7;
  transition: transform .9s ease;
}
.visibility-panel:after {
  inset: -1px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
}
.visibility-panel:hover {
  box-shadow:
    0 -42px 72px rgba(8,10,12,.24),
    0 42px 76px rgba(8,10,12,.24),
    inset 0 1px 0 rgba(255,255,255,.11),
    inset 0 -1px 0 rgba(255,255,255,.08);
}
.visibility-panel:hover:before { transform: translateX(18%); }
.visibility-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--white);
  mix-blend-mode: difference;
  pointer-events: none;
  opacity: 0;
  z-index: 20;
  transform: translate3d(-50%, -50%, 0) scale(.75);
  transition: opacity .18s ease, transform .18s ease;
}
.visibility-panel.is-cursor-active .visibility-cursor {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}
.visibility-panel .eyebrow {
  color: var(--ink);
  background: rgba(255,255,255,.88);
}
.visibility-panel .eyebrow:before { color: #68727c; }
.visibility-statement,
.visibility-copy { position: relative; z-index: 1; }
.visibility-statement h2 span { display: block; }
.visibility-statement h2 span:nth-child(1),
.visibility-statement h2 span:nth-child(3) { color: rgba(255,255,255,.28); }
.visibility-statement h2 span:nth-child(2) { color: rgba(255,255,255,.95); }
.visibility-statement h2 span:nth-child(4) { color: rgba(255,255,255,.82); }
.visibility-statement h2 span {
  transform: translateY(0);
  transition: color .45s ease, transform .45s ease;
}
.visibility-panel:hover .visibility-statement h2 span:nth-child(1),
.visibility-panel:hover .visibility-statement h2 span:nth-child(3) {
  color: rgba(255,255,255,.42);
}
.visibility-panel:hover .visibility-statement h2 span:nth-child(2),
.visibility-panel:hover .visibility-statement h2 span:nth-child(4) {
  transform: translateX(10px);
}
.visibility-panel h2 {
  margin-top: 14px;
  max-width: 650px;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: .98;
  color: var(--white);
}
.visibility-copy {
  display: grid;
  gap: 18px;
  padding-left: clamp(24px, 4vw, 56px);
  border-left: 1px solid rgba(255,255,255,.22);
}
.visibility-copy p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}
.visibility-copy .button {
  width: max-content;
  margin-top: 14px;
  color: var(--ink);
  background: var(--white);
}
.visibility-copy .button:hover { background: #d8dde1; }
.process-grid { display: grid; grid-template-columns: .95fr repeat(5, 1fr); gap: 22px; padding-top: 46px; }
.process-title h2 { max-width: 320px; font-size: clamp(28px, 3.2vw, 40px); }
.process-grid article {
  min-height: 176px;
  padding: 4px 0 0 18px;
  border-left: 1px solid rgba(8,10,12,.18);
}
.process-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.process-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: contrast(1.12);
}
.process-grid small { display: block; font-weight: 900; margin-bottom: 10px; }
.process-grid strong { display: block; margin-bottom: 12px; font-size: 17px; }
.process-grid p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }

.promo-section { padding-top: 0; }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promo-card {
  display: grid;
  gap: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}
.promo-visual {
  position: relative;
  min-height: auto;
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  display: block;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  filter: saturate(1.12) contrast(1.06);
  transition: transform .35s ease, filter .35s ease;
}
.promo-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(0,0,0,.18));
  opacity: .65;
}
.promo-card:hover .promo-visual {
  transform: translateY(-2px);
  filter: saturate(1.2) contrast(1.08);
}
.promo-banners {
  background-image: url("assets/promo-banner-auto-prime-web.jpg?v=1");
  background-position: 46% 52%;
}
.promo-lona {
  background-image: url("assets/promo-lona-doce-momento-web.jpg?v=1");
  background-position: 52% 46%;
}
.promo-adesivos-etiquetas {
  background-image: url("assets/promo-adesivo-etiqueta-iron-web.jpg?v=1");
  background-position: 53% 48%;
}
.promo-folder-folhetos {
  background-image: url("assets/promo-folder-folheto-engefor-web.jpg?v=1");
  background-position: 44% 50%;
}
.promo-cartoes {
  background-image: url("assets/promo-cartoes-doce-momento-web.jpg?v=1");
  background-position: 40% 52%;
}
.promo-envelopamento-particular {
  background-image: url("assets/promo-envelopamento-particular-web.jpg?v=1");
  background-position: 50% 52%;
}
.promo-card span {
  display: grid;
  justify-items: center;
  gap: 10px;
  transform: translateY(0);
  transition: transform .32s ease;
}
.promo-card strong {
  font-size: 15px;
  line-height: 1.15;
}
.promo-card em {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .32s ease, transform .32s ease;
}
.promo-card:hover span { transform: translateY(-4px); }
.promo-card:hover em { opacity: 1; transform: translateY(0); }
.promo-more { margin: 28px 0 0; text-align: center; color: #5f6871; font-size: 16px; font-weight: 850; text-transform: uppercase; }

.contact-section { padding-top: 0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.45fr; gap: 28px; align-items: stretch; }
.testimonial { min-height: 310px; padding: clamp(30px, 5vw, 58px); display: grid; align-content: center; background: var(--white); border-radius: var(--radius); }
.quote { color: #9da5ad; font-size: 54px; line-height: .5; }
.review-list { display: grid; gap: 22px; }
.review-list article { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.review-list article:last-child { padding-bottom: 0; border-bottom: 0; }
.testimonial p { max-width: 390px; color: #3d454d; line-height: 1.55; }
.testimonial strong { display: block; margin-top: 12px; }
.testimonial small { color: var(--muted); }
.dots { display: flex; gap: 9px; margin-top: 28px; }
.dots i { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; opacity: .35; }
.dots i:first-child { opacity: 1; }
.cta-panel {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(34px, 6vw, 64px);
  border-radius: var(--radius);
  background: #111920;
  color: var(--white);
}
.cta-panel:before {
  content: "";
  position: absolute;
  inset: 0 0 0 43%;
  background: url("assets/cta-alphatec-web.jpg?v=1") center / cover no-repeat;
}
.cta-panel:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,10,13,.98) 0%, rgba(7,10,13,.95) 42%, rgba(7,10,13,.18) 72%, rgba(7,10,13,0) 100%); }
.cta-panel > div { position: relative; z-index: 1; max-width: 520px; }
.cta-panel .eyebrow {
  color: var(--ink);
  background: rgba(255,255,255,.92);
}
.cta-panel .eyebrow:before { color: #5f6871; }
.cta-panel h2 { margin-top: 14px; font-size: clamp(34px, 4.5vw, 56px); }
.cta-panel p { max-width: 420px; color: rgba(255,255,255,.8); line-height: 1.6; }

.footer { padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.28fr 1fr 1fr 1fr 1.25fr; gap: 38px; align-items: start; }
.footer p { max-width: 260px; color: var(--muted); line-height: 1.6; font-size: 14px; }
.footer h3 { margin: 0 0 18px; font-size: 14px; }
.footer-grid div { display: grid; gap: 10px; }
.footer-grid a, .footer-grid span { color: #4d555d; font-size: 13px; }
.footer-grid strong { margin-top: 8px; font-size: 13px; }
.socials { display: flex !important; gap: 12px; margin-top: 16px; }
.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,.72);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.socials a:hover { transform: translateY(-2px); background: var(--white); border-color: rgba(8,10,12,.28); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.newsletter { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.5); }
.newsletter label { margin-top: 18px; min-height: 46px; display: grid; grid-template-columns: 1fr 46px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.newsletter input { min-width: 0; border: 0; padding: 0 14px; font: inherit; font-size: 13px; }
.newsletter button { border: 0; background: var(--ink); color: var(--white); font-weight: 900; }
.instagram-box p { margin: 0 0 18px; font-size: 13px; line-height: 1.55; }
.instagram-follow {
  min-height: 46px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  color: var(--white) !important;
  background: var(--ink);
  font-size: 12px !important;
  font-weight: 900;
  text-transform: uppercase;
}
.instagram-follow svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; color: #747c84; font-size: 12px; }

@media (max-width: 980px) {
  .nav { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-links, .nav > .button { display: none; }
  .menu-button { display: block; }
  .hero { min-height: auto; display: flex; flex-direction: column; }
  .hero-media { position: relative; inset: auto; height: clamp(360px, 58vw, 560px); order: 2; }
  .hero-media:before { background: linear-gradient(180deg, var(--paper) 0%, rgba(246,247,248,.1) 30%, rgba(246,247,248,0) 60%); }
  .hero-content { min-height: auto; display: block; padding-block: 56px 28px; order: 1; }
  .hero-copy { max-width: 680px; padding: 0; background: transparent; }
  .hero-content h1 { max-width: 650px; }
  .project-grid, .solution-grid, .solution-showcase, .promo-grid, .number-grid, .contact-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .segment-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-title { grid-column: 1 / -1; }
  .visibility-panel { grid-template-columns: 1fr; }
  .visibility-copy { padding-left: 0; border-left: 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--max)); }
  .header { padding-inline: 16px; }
  .brand img { width: 104px; }
  .hero-content { padding-block: 42px 22px; }
  .hero-content h1 { font-size: 42px; }
  .hero-media { height: 380px; }
  .hero-slide { object-position: center; }
  .slide-one { object-position: 72% center; }
  .slide-two { object-position: 70% center; }
  .slide-three { object-position: 64% center; }
  .actions { flex-direction: column; align-items: stretch; max-width: 320px; }
  .section-head, .project-grid, .solution-grid, .solution-showcase, .promo-grid, .number-grid, .segment-grid, .process-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .visibility-copy .button { width: 100%; }
  .visibility-panel { padding-block: 56px; cursor: auto; }
  .visibility-cursor { display: none; }
  .visibility-statement h2 span:nth-child(1),
  .visibility-statement h2 span:nth-child(3) { color: rgba(255,255,255,.36); }
  .project-card { min-height: 270px; }
  .project-card .project-info { transform: none; }
  .project-card em { opacity: 1; transform: none; }
  .solution-tile { min-height: 310px; }
  .solution-tile span { transform: none; }
  .solution-tile em { opacity: 1; transform: none; }
  .promo-card em { opacity: 1; transform: none; }
  .promo-card span { transform: none; }
  .promo-visual { aspect-ratio: 16 / 11; }
  .number-grid div { border-right: 0; border-bottom: 1px solid rgba(8,10,12,.14); padding-inline: 0; }
  .number-grid div:last-child { border-bottom: 0; }
  .footer-bottom { flex-direction: column; }
}
