:root {
  --night: #07111d;
  --midnight: #10243d;
  --deep-blue: #17365c;
  --blue: #78afff;
  --blue-soft: #cfe2ff;
  --paper: #ffffff;
  --porcelain: #f7f8f5;
  --mist: #e8eee9;
  --warm: #eee3d4;
  --ink: #12233a;
  --muted: #657384;
  --line: rgba(18, 35, 58, 0.13);
  --line-light: rgba(255, 255, 255, 0.18);
  --glass-dark: rgba(7, 17, 29, 0.58);
  --glass-light: rgba(255, 255, 255, 0.74);
  --shadow: 0 26px 80px rgba(7, 17, 29, 0.2);
  --section: min(1180px, calc(100% - 44px));
  --hero-height: calc(100svh - 42px);
  color-scheme: light;
  font-family:
    "Avenir Next", "Neue Haas Grotesk Text", "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(232, 238, 233, 0.72), rgba(247, 248, 245, 0) 520px),
    var(--porcelain);
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(120, 175, 255, 0.22);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 35, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 58, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.46), transparent 68%);
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button {
  border: 0;
  font: inherit;
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

section[id] {
  scroll-margin-top: 104px;
}

.skip-link {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  top: max(12px, env(safe-area-inset-top));
  z-index: 100;
  padding: 10px 12px;
  background: var(--paper);
  color: var(--night);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 48px));
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--paper));
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: var(--section);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(7, 17, 29, 0.48);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.78);
  transform: translateX(-50%);
  backdrop-filter: blur(24px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(18, 35, 58, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 54px rgba(7, 17, 29, 0.14);
  color: rgba(18, 35, 58, 0.72);
}

.brand,
.site-nav,
.button-row,
.pillar-list,
.site-footer nav,
.carousel-controls {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  padding: 2px 4px;
  color: var(--paper);
  font-weight: 820;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  color: var(--midnight);
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.site-nav a,
.nav-cta,
.button,
.text-link {
  min-height: 40px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 760;
}

.site-nav a {
  padding: 10px 11px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--paper);
  transform: translateY(-1px);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-scrolled .site-nav a.is-active,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible,
.site-header.is-open .site-nav a.is-active {
  background: rgba(120, 175, 255, 0.16);
  color: var(--midnight);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--night);
  background: var(--paper);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  color: var(--paper);
  background: var(--midnight);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
}

.hero {
  min-height: var(--hero-height);
  background: var(--night);
}

.hero-carousel {
  position: relative;
  min-height: var(--hero-height);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: 32px;
  min-height: var(--hero-height);
  padding: 180px max(28px, calc((100% - 1180px) / 2)) 92px;
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.018);
  transition:
    opacity 620ms ease,
    transform 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slide::before {
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.hero-slide::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, 0.86), rgba(7, 17, 29, 0.45) 43%, rgba(7, 17, 29, 0.24)),
    linear-gradient(180deg, rgba(7, 17, 29, 0.28), rgba(7, 17, 29, 0.78));
}

.hero-slide-home::before {
  background-image: url("assets/home-innovation.png");
}

.hero-slide-design::before {
  background-image: url("assets/home-design.png");
}

.hero-slide-innovation::before {
  background-image: url("assets/innovation-concepts.png");
}

.hero-content {
  max-width: 840px;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero-slide.is-active .hero-content,
.hero-slide.is-active .slide-panel {
  animation: heroReveal 720ms ease both;
}

.hero-slide.is-active .slide-panel {
  animation-delay: 120ms;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
.hero h2 {
  max-width: 920px;
  margin: 0 0 22px;
  color: var(--paper);
  font-size: clamp(3.35rem, 7vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  color: var(--midnight);
  font-size: clamp(2.2rem, 4.3vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  color: var(--midnight);
  font-size: 1.16rem;
  line-height: 1.22;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.12rem, 1.8vw, 1.48rem);
  line-height: 1.5;
  font-weight: 620;
}

.button-row {
  gap: 12px;
  flex-wrap: wrap;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  padding: 0 18px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--night);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.slide-panel {
  align-self: end;
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 360px;
  margin-bottom: 72px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 17, 29, 0.48);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  text-align: center;
  backdrop-filter: blur(20px);
}

.slide-panel span,
.card-number,
.contact-card span {
  color: rgba(120, 175, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-panel strong {
  font-size: 1.36rem;
}

.slide-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.58;
}

.carousel-controls {
  position: absolute;
  right: max(28px, calc((100% - 1180px) / 2));
  bottom: 34px;
  z-index: 5;
  gap: 12px;
}

.carousel-arrow,
.carousel-dots button {
  cursor: pointer;
  color: var(--paper);
}

.carousel-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.carousel-arrow span {
  transform: translateY(-1px);
  font-size: 1.7rem;
  line-height: 1;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition:
    width 180ms ease,
    background 180ms ease;
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--paper);
}

.section {
  width: var(--section);
  margin: 0 auto;
  padding: 112px 0;
}

.section-soft {
  width: 100%;
  max-width: none;
  padding: 112px max(22px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.9), rgba(232, 238, 233, 0.78)),
    var(--mist);
  border-top: 1px solid rgba(18, 35, 58, 0.07);
  border-bottom: 1px solid rgba(18, 35, 58, 0.07);
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 58px;
}

.reverse {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.section-copy p,
.statement p,
.info-card p,
.process-list p,
.feature-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.statement,
.identity-card,
.info-card,
.process-list article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(18, 35, 58, 0.09);
}

.statement {
  padding: 32px;
  background: var(--glass-light);
  backdrop-filter: blur(14px);
}

.identity-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.identity-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.identity-card div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.identity-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.identity-card dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-card dd {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 780;
  line-height: 1.32;
}

.statement p {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(1.2rem, 2.05vw, 1.7rem);
  line-height: 1.42;
}

.feature-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  min-height: 720px;
  background: var(--night);
  color: var(--paper);
}

.feature-photo {
  min-height: 720px;
  background-position: center;
  background-size: cover;
}

.feature-photo-living {
  background-image: url("assets/home-design.png");
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px max(28px, calc((100vw - 1180px) / 2)) 96px 64px;
}

.feature-copy h2,
.section-dark h2,
.contact-section h2 {
  color: var(--paper);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.pillar-list {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pillar-list span,
.compatibility-grid span {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 720;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  min-height: 292px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.info-card:hover,
.info-card:focus-within,
.process-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 175, 255, 0.5);
  box-shadow: 0 24px 58px rgba(18, 35, 58, 0.14);
}

.card-number {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--muted);
}

.creative-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.creative-panel {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  min-height: 520px;
  padding: clamp(42px, 5vw, 72px);
  overflow: hidden;
  color: var(--paper);
  text-align: center;
}

.creative-panel::before,
.creative-panel::after {
  content: "";
  position: absolute;
  inset: 0;
}

.creative-panel::before {
  z-index: -2;
  background-position: center;
  background-size: cover;
  transition: transform 700ms ease;
}

.creative-panel::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.34), rgba(7, 17, 29, 0.82)),
    radial-gradient(circle at center, rgba(7, 17, 29, 0.08), rgba(7, 17, 29, 0.76) 72%);
}

.creative-panel:hover::before {
  transform: scale(1.045);
}

.creative-panel-home::before {
  background-image: url("assets/home-innovation.png");
}

.creative-panel-concepts::before {
  background-image: url("assets/innovation-concepts.png");
}

.creative-panel h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(2rem, 3.3vw, 3.9rem);
}

.creative-panel > div {
  display: grid;
  justify-items: center;
  max-width: min(680px, 100%);
}

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

.panel-copy {
  max-width: 560px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.text-link {
  width: fit-content;
  min-width: 0;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.section-dark {
  width: 100%;
  max-width: none;
  padding: 112px max(22px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(130deg, rgba(120, 175, 255, 0.17), rgba(7, 17, 29, 0) 45%),
    var(--night);
  color: var(--paper);
}

.section-dark .section-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .button-primary,
.contact-section .button-primary {
  color: var(--night);
  background: var(--paper);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.process-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 860;
}

.process-list h3 {
  color: var(--paper);
}

.process-list p {
  color: rgba(255, 255, 255, 0.68);
}

.compatibility-section {
  text-align: center;
}

.compatibility-section .section-heading {
  margin-right: auto;
  margin-left: auto;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.compatibility-grid span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 86px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(18, 35, 58, 0.72);
  overflow-wrap: anywhere;
}

.compatibility-grid strong {
  color: var(--midnight);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  width: 100%;
  max-width: none;
  padding: 112px max(22px, calc((100% - 1180px) / 2));
  color: var(--paper);
  background: var(--midnight);
}

.contact-section .eyebrow {
  color: var(--blue);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 32px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  color: var(--paper);
  font-style: normal;
}

.contact-card strong {
  font-size: 1.32rem;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.58);
}

.contact-card a {
  overflow-wrap: anywhere;
  color: var(--paper);
  font-weight: 760;
}

.contact-card .button-row {
  margin-top: 14px;
}

.contact-card .button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.beta-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
  line-height: 1.62;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: var(--section);
  margin: 0 auto;
  padding: 30px 0 42px;
  color: rgba(18, 35, 58, 0.66);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--midnight);
}

.site-footer nav {
  align-self: start;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-weight: 760;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(232, 238, 233, 0.8), rgba(247, 248, 245, 0) 540px),
    var(--porcelain);
}

.legal-main {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
  padding: 148px 0 92px;
}

.legal-hero {
  margin-bottom: 32px;
}

.legal-hero h1 {
  max-width: 760px;
  color: var(--midnight);
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.legal-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.legal-stack {
  display: grid;
  gap: 16px;
}

.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(18, 35, 58, 0.08);
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.52rem, 3vw, 2.4rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  padding-left: 1.25rem;
}

.legal-card a {
  color: var(--deep-blue);
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

@media (max-width: 1280px) {
  .hero-slide {
    grid-template-columns: 1fr;
  }

  .slide-panel {
    display: none;
  }

  .carousel-controls {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-header.is-open {
    grid-template-columns: 1fr auto;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .nav-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .site-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.is-open .site-nav a,
  .site-header.is-open .nav-cta {
    justify-content: center;
    width: 100%;
  }

  .hero-slide,
  .split-grid,
  .contact-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    align-items: end;
  }

  .build-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-photo {
    min-height: 460px;
  }

  .feature-copy {
    padding: 76px max(22px, calc((100vw - 1180px) / 2));
  }

  .compatibility-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --section: min(100% - 28px, 1180px);
  }

  html {
    scroll-padding-top: 124px;
  }

  section[id] {
    scroll-margin-top: 124px;
  }

  .site-header {
    top: max(10px, env(safe-area-inset-top));
    gap: 10px;
  }

  .brand span {
    max-width: 190px;
  }

  .hero-slide {
    padding: 156px 18px 92px;
  }

  h1,
  .hero h2 {
    margin-bottom: 24px;
    font-size: clamp(2.24rem, 10.2vw, 3.38rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.08rem);
    line-height: 1.02;
  }

  .slide-panel {
    display: none;
  }

  .carousel-controls {
    right: auto;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
  }

  .section,
  .section-soft,
  .section-dark,
  .contact-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-soft {
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .split-grid,
  .contact-grid {
    gap: 48px;
  }

  .build-grid,
  .creative-stack,
  .compatibility-grid {
    grid-template-columns: 1fr;
  }

  .feature-photo,
  .creative-panel {
    min-height: 420px;
  }

  .feature-copy,
  .creative-panel {
    padding: 42px 22px;
  }

  .info-card {
    min-height: 230px;
  }

  .card-number {
    margin-bottom: 34px;
  }

  .statement,
  .identity-card,
  .contact-card,
  .info-card,
  .process-list article {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
  }

  .legal-main {
    width: var(--section);
    padding-top: 132px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    max-width: 160px;
  }

  .button {
    width: 100%;
  }

  .pillar-list {
    align-items: stretch;
    justify-content: stretch;
  }

  .pillar-list span {
    width: 100%;
    text-align: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-slide {
    transform: none;
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
