:root {
  --blue: #1970bf;
  --navy: #1c3664;
  --accent: #f07f17;
  --gold: #ffcc33;
  --white: #fff;
  --black: #000;
  --ink: #111318;
  --muted: #5f6670;
  --line: #dee2e6;
  --header: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

#navbar {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  color: var(--white);
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

#navbar.scrolled,
#navbar.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 1px 18px rgba(0, 0, 0, .08);
  backdrop-filter: blur(16px);
}

.nav-main {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 60px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: currentColor;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  color: currentColor;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  background: currentColor;
  left: 50%;
  top: 50%;
  transform-origin: center;
}

.brand-mark::before {
  width: 8px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 5px;
}

.brand-mark::after {
  width: 52px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 5px;
}

.brand-mark span::before {
  width: 8px;
  height: 52px;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 5px;
}

.brand-mark span::after {
  width: 8px;
  height: 52px;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-radius: 5px;
}

.brand-mark span {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, currentColor 0 18%, transparent 19% 31%, currentColor 32% 39%, transparent 40%);
}

.brand-wordmark {
  max-width: 470px;
  color: currentColor;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -14px;
  right: -14px;
  top: 42px;
  height: 30px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 42px;
  padding: 0 9px;
  color: currentColor;
  background: transparent;
  border: 0;
  font-size: .88rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-link:focus {
  outline: none;
}

.nav-link:focus-visible {
  outline: none;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 0;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.45);
  transform-origin: center;
  transition: opacity .2s ease, transform .2s ease;
}

.nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link,
.nav-item.open .nav-link {
  color: currentColor;
}

.nav-item:hover .nav-link::before,
.nav-item:focus-within .nav-link::before,
.nav-item.open .nav-link::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-item.open .nav-link::after {
  transform: translateY(2px) rotate(225deg);
}

.dropdown {
  position: absolute;
  top: 58px;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 30px;
  min-width: 310px;
  padding: 24px;
  color: currentColor;
  background: rgba(0, 0, 0, .18);
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
  transform: translateX(-50%) translateY(12px);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

#navbar.scrolled .dropdown,
#navbar.menu-open .dropdown {
  background: rgba(255, 255, 255, .86);
}

.dropdown.compact {
  grid-template-columns: 1fr;
  min-width: 180px;
}

.nav-item.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown p {
  margin: 0 0 10px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dropdown a {
  display: block;
  margin: 8px 0;
  color: currentColor;
  font-size: .86rem;
  font-weight: 300;
}

.dropdown a:hover {
  color: var(--gold);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  position: fixed;
  right: 18px;
  z-index: 102;
  width: 48px;
  height: 48px;
  padding: 0;
  color: currentColor;
  background: rgba(0, 0, 0, .22);
  border: 0;
  border-radius: 50%;
  backdrop-filter: blur(12px);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.slides {
  position: relative;
  min-height: inherit;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .5s ease, visibility .5s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: softZoom 12s ease-out both;
}

.visual {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header) + 34px) clamp(22px, 7.4vw, 120px) 82px;
  color: var(--white);
  background-color: #12151a;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .04) 58%, rgba(0, 0, 0, .18)),
    var(--bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.diagram-hero,
.gallery-hero {
  background-color: #15191d;
}

.diagram-hero {
  background-size: cover;
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .02) 40%),
    radial-gradient(circle at 80% 50%, transparent 0 32%, rgba(0, 0, 0, .22) 76%);
  pointer-events: none;
}

.hero-slider .visual {
  align-items: flex-end;
  padding-bottom: 18vh;
}

.visual-right {
  justify-content: flex-end;
}

.gallery-hero {
  padding-top: 148px;
}

.bottom-copy {
  align-items: flex-end;
  padding-bottom: 9vh;
}

.caption {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  padding: clamp(26px, 3.2vw, 42px);
  color: var(--white);
  background: rgba(18, 20, 23, .42);
  border-radius: 15px;
  box-shadow: 0 16px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px) saturate(115%);
}

.caption-wide {
  width: min(1500px, 74vw);
}

.caption.small {
  width: min(640px, 100%);
  padding: clamp(24px, 3vw, 38px);
}

.caption.no-border {
  background: rgba(0, 0, 0, .16);
  box-shadow: none;
  backdrop-filter: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(1.9rem, 2.8vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
}

h1 span,
h2 span {
  font-weight: 100;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.4rem);
  font-weight: 800;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 700;
}

.caption.small h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  text-transform: uppercase;
}

p {
  margin: 18px 0 0;
  max-width: 1120px;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.58;
}

.caption.small p {
  font-size: clamp(.98rem, 1.25vw, 1.2rem);
}

.kicker {
  margin: 14px 0 0;
  color: var(--accent);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

time {
  display: block;
  margin: 14px 0 0;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 26px;
  color: currentColor;
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: clamp(.86rem, 1vw, 1rem);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.btn::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 16px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.btn:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, .12);
}

.btn.accent {
  min-height: 44px;
  padding: 10px 20px;
  color: var(--accent);
  border-color: var(--accent);
  background: transparent;
}

.slider-nav {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
}

.hero-slider > .slider-nav {
  display: none;
}

.slider-nav > button {
  width: 45px;
  height: 45px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
}

.slider-nav > button::before,
.down-indicator::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  margin: auto;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
}

.slider-nav > button:first-child::before {
  transform: rotate(135deg);
}

.slider-nav > button:last-child::before {
  transform: rotate(-45deg);
}

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

.dots button {
  width: 30px;
  height: 3px;
  padding: 0;
  background: rgba(255, 255, 255, .45);
  border: 0;
}

.dots button.active {
  background: var(--white);
}

.down-indicator {
  position: fixed;
  z-index: 8;
  left: 50%;
  bottom: 28px;
  width: 80px;
  height: 62px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  mix-blend-mode: exclusion;
  transform: translateX(-50%);
}

.down-indicator::before {
  width: 54px;
  height: 54px;
  border-width: 6px;
  transform: rotate(45deg);
}

.down-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.project-pipeline {
  display: grid;
  grid-template-columns: minmax(330px, 34%) minmax(0, 1fr);
  min-height: 100vh;
  background: var(--white);
}

.pipeline-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(24px, 3.5vw, 58px);
}

.pipeline-copy h2 {
  color: var(--ink);
}

.pipeline-copy p:not(.kicker) {
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.stat-grid div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-icon {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  object-fit: contain;
}

.stat-grid strong {
  display: block;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.stat-grid span:last-child {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.project-slider {
  min-height: 100vh;
}

.video-band {
  background-position: center;
}

.video-band::before,
.new-projects::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .28);
}

.gallery-slider {
  min-height: 100vh;
}

.gallery-heading {
  position: absolute;
  z-index: 6;
  top: calc(var(--header) + 22px);
  left: clamp(22px, 5vw, 80px);
  color: var(--white);
}

.gallery-heading h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
}

.new-projects {
  align-items: center;
}

.detail-template .project-pipeline {
  grid-template-columns: minmax(330px, 34%) minmax(0, 1fr);
}

.detail-panel {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(24px, 4.2vw, 72px);
  background: #f6f8fa;
}

.detail-panel h3 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
  text-transform: uppercase;
}

.detail-panel p {
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  min-height: 150px;
  padding: 24px;
  background: var(--white);
  border-left: 5px solid var(--accent);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .08);
}

.feature-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.feature-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.52;
}

.detail-link-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.detail-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.detail-link-list a::after {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  margin-top: 5px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.detail-link-list a:hover {
  color: var(--blue);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.source-grid a {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0c1018);
  border-radius: 15px;
}

.source-grid strong {
  display: block;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.source-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
}

.site-footer {
  padding: 54px clamp(22px, 5vw, 72px) 28px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.footer-mark {
  width: 100px;
  height: 100px;
  color: var(--navy);
  background:
    radial-gradient(circle, var(--gold) 0 13%, transparent 14% 24%, currentColor 25% 31%, transparent 32%),
    linear-gradient(0deg, transparent 45%, currentColor 45% 55%, transparent 55%),
    linear-gradient(90deg, transparent 45%, currentColor 45% 55%, transparent 55%),
    linear-gradient(45deg, transparent 46%, currentColor 46% 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, currentColor 46% 54%, transparent 54%);
  border-radius: 50%;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  font-size: .86rem;
}

.social-links a:hover {
  color: var(--blue);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(6, minmax(100px, 1fr));
  gap: 24px;
}

.footer-columns h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.footer-columns a {
  display: block;
  margin: 8px 0;
  color: var(--black);
  font-size: .92rem;
}

.footer-columns a:hover {
  color: var(--blue);
  text-decoration: none;
}

.copyright {
  max-width: 1280px;
  margin: 32px auto 0;
  color: var(--black);
  font-size: .85rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.video-popup,
.subscribe-popup {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: var(--white);
  background: rgba(0, 0, 0, .84);
}

.video-popup[hidden],
.subscribe-popup[hidden] {
  display: none;
}

.video-frame,
.subscribe-card {
  position: relative;
  width: min(920px, 100%);
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 70px);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 204, 51, .24), transparent 22%),
    #0a0d12;
  border: 1px solid rgba(255, 255, 255, .18);
}

.play-mark {
  width: 86px;
  height: 86px;
  margin-bottom: 24px;
  border: 2px solid var(--white);
  border-radius: 50%;
  position: relative;
}

.play-mark::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 26px solid var(--white);
}

.close-video {
  position: fixed;
  top: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.close-video::before,
.close-video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.close-video::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-video::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.subscribe-card {
  width: min(520px, 100%);
  min-height: auto;
  color: var(--ink);
  background: var(--white);
}

.subscribe-card h2 {
  color: var(--ink);
}

.subscribe-card label {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
}

.subscribe-card input {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid var(--line);
}

@keyframes softZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 1118px) {
  .nav-main {
    padding-right: 80px;
  }

  .brand-wordmark {
    max-width: calc(100vw - 160px);
    font-size: clamp(1rem, 4vw, 1.65rem);
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    position: fixed;
    right: 0;
    top: calc(var(--header) + 8px);
    width: min(430px, calc(100vw - 28px));
    max-height: calc(100vh - var(--header) - 28px);
    display: block;
    overflow: auto;
    padding: 20px;
    color: var(--white);
    background: rgba(0, 0, 0, .72);
    border-radius: 25px 0 0 25px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .32);
    backdrop-filter: blur(28px);
    opacity: 0;
    pointer-events: none;
    transform: translateX(105%);
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav-list.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-item {
    display: block;
  }

  .nav-item::after {
    display: none;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 12px;
    color: inherit;
  }

  .nav-link::before {
    display: none;
  }

  .nav-item.open .nav-link::after {
    transform: translateY(2px) rotate(225deg);
  }

  #navbar.menu-open .dropdown,
  #navbar.scrolled .dropdown,
  .dropdown {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    min-width: 0;
    padding: 4px 0 16px 18px;
    color: inherit;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border-left: 1px solid rgba(255, 255, 255, .24);
  }

  #navbar.menu-open .nav-item.open .dropdown,
  #navbar.scrolled .nav-item.open .dropdown,
  .nav-item.open .dropdown {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown p {
    margin: 12px 0 7px;
    font-size: .82rem;
    letter-spacing: .12em;
  }

  .dropdown a {
    color: inherit;
    margin: 7px 0;
    opacity: .82;
  }

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

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

  .pipeline-copy {
    min-height: 68vh;
  }

  .detail-panel {
    min-height: auto;
  }

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

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

  .footer-columns {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header: 78px;
  }

  .nav-main {
    padding-left: 16px;
  }

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

  .brand-mark::before,
  .brand-mark span::before {
    height: 42px;
    width: 6px;
  }

  .brand-mark::after,
  .brand-mark span::after {
    width: 42px;
    height: 6px;
  }

  .visual {
    padding: calc(var(--header) + 22px) 18px 72px;
  }

  .hero-slider .visual {
    padding-bottom: 86px;
  }

  .caption,
  .caption.small {
    width: 100%;
    padding: 24px;
    border-radius: 12px;
  }

  .caption-wide {
    width: 100%;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3.2rem);
  }

  p {
    font-size: 1rem;
  }

  .actions {
    gap: 12px;
  }

  .btn {
    min-height: 52px;
    padding: 13px 20px;
    font-size: .86rem;
  }

  .slider-nav {
    bottom: 18px;
  }

  .down-indicator {
    display: none;
  }

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

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

  .gallery-heading {
    top: calc(var(--header) + 12px);
    left: 18px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

@media (max-width: 430px) {
  .brand-wordmark {
    white-space: normal;
    line-height: 1.05;
    letter-spacing: .12em;
  }

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