@font-face {
  font-family: "Aeonik Pro";
  src: url("assets/fonts/AeonikProTRIAL-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik Pro";
  src: url("assets/fonts/AeonikProTRIAL-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik Pro";
  src: url("assets/fonts/AeonikProTRIAL-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik Pro";
  src: url("assets/fonts/AeonikProTRIAL-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050607;
  --black-blue: #071017;
  --panel: #101214;
  --line: rgba(244, 245, 239, 0.14);
  --line-strong: rgba(244, 245, 239, 0.26);
  --text: #f4f5ef;
  --muted: rgba(244, 245, 239, 0.62);
  --paper: #ebece5;
  --ink: #090b0d;
  --blue: #68c7ff;
  --deep-blue: #0b2f48;
  --mineral-blue: #89d4ff;
  --cyan: #bdf6ff;
  --violet: #9b9cff;
  --forest: #18332e;
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--text);
  font-family: "Aeonik Pro", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
}

body.motion-enabled:not(.is-ready) .site-shell {
  opacity: 0;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 1px solid rgba(244, 245, 239, 0.72);
  outline-offset: 4px;
}

button {
  border: 0;
}

.site-shell {
  overflow: clip;
  background: var(--black);
  opacity: 1;
  transition: opacity 900ms var(--ease-out);
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 16px;
  left: 16px;
  right: 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 50px;
  padding: 8px 10px;
  background: transparent;
  border: 0;
  transition: color 220ms ease;
}

.brand-mark {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header .brand-mark {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 360ms ease, transform 520ms var(--ease-out);
  will-change: opacity, transform;
}

body.logo-hidden:not(.menu-open) .site-header .brand-mark {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -72px, 0);
}

.brand-symbol {
  width: 42px;
  height: 42px;
  max-width: 42px;
  max-height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  transition: opacity 280ms ease;
}

body.is-ready .brand-symbol {
  animation: logo-settle 720ms ease 80ms both;
}

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

.menu-button {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-height: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.78rem;
  text-transform: none;
  box-shadow: none;
  transition: color 260ms ease;
}

.menu-open .menu-button {
  width: auto;
  min-height: 28px;
  padding: 0;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
}

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

.menu-button span {
  flex: 0 0 auto;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.menu-open .menu-button span {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.menu-button i {
  flex: 0 0 auto;
  position: relative;
  width: 22px;
  height: 14px;
}

.menu-button i::before,
.menu-button i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 260ms var(--ease), top 260ms var(--ease);
}

.menu-button i::before {
  top: 2px;
}

.menu-button i::after {
  top: 11px;
}

.menu-open .menu-button i::before {
  top: 7px;
  transform: rotate(45deg);
}

.menu-open .menu-button i::after {
  top: 7px;
  transform: rotate(-45deg);
}

.site-menu {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: block;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background:
    linear-gradient(120deg, rgba(104, 199, 255, 0.055), transparent 42%),
    linear-gradient(270deg, rgba(189, 246, 255, 0.045), transparent 46%),
    rgba(0, 0, 0, 0.98);
  transition: opacity 420ms var(--ease-out), visibility 0s linear 420ms;
}

.menu-open .site-menu {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms var(--ease-out), visibility 0s linear 0s;
}

.menu-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.72;
  transition: opacity 520ms ease;
}

.menu-open .menu-background {
  opacity: 1;
}

.menu-background::before {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: 12vh;
  width: 54vw;
  height: 34vh;
  opacity: 0.4;
  filter: blur(64px);
  background:
    linear-gradient(120deg, rgba(104, 199, 255, 0.13), transparent 72%);
}

.menu-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.36) 100%);
}

.menu-background span:first-child {
  display: none;
}

.menu-background span:last-child {
  display: none;
}

.menu-content {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100vw - 80px));
  padding: clamp(112px, 13vh, 148px) 0 0 clamp(28px, 3.6vw, 70px);
}

.menu-primary {
  display: grid;
  gap: 12px;
}

.menu-primary a {
  width: max-content;
  color: var(--text);
  font-size: clamp(2.3rem, 3.35vw, 3.85rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0;
  transform: translate3d(-18px, 14px, 0);
  transition: color 220ms ease, opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
  transition-delay: 0ms, calc(70ms + var(--menu-index, 0) * 46ms), calc(70ms + var(--menu-index, 0) * 46ms);
}

.menu-primary a:hover {
  color: var(--mineral-blue);
}

.menu-open .menu-primary a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.menu-primary a:nth-child(1) {
  --menu-index: 0;
}

.menu-primary a:nth-child(2) {
  --menu-index: 1;
}

.menu-primary a:nth-child(3) {
  --menu-index: 2;
}

.menu-primary a:nth-child(4) {
  --menu-index: 3;
}

.menu-primary a:nth-child(5) {
  --menu-index: 4;
}

.menu-primary a:nth-child(6) {
  --menu-index: 5;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 104px 24px 72px;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(220px, 34vh, 420px);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0) 68%),
    linear-gradient(
      180deg,
      rgba(5, 6, 7, 0) 0%,
      rgba(5, 6, 7, 0.04) 18%,
      rgba(5, 6, 7, 0.18) 42%,
      rgba(5, 6, 7, 0.58) 72%,
      #050607 100%
    );
}

.hero-art,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-art {
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.08), rgba(5, 6, 7, 0.9)),
    #050607;
  transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0);
  will-change: transform;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("assets/hrighresbg.gif") center / cover no-repeat;
  opacity: 1;
  mix-blend-mode: screen;
  filter: saturate(0.86) contrast(1.12);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.16), rgba(5, 6, 7, 0.2) 44%, rgba(5, 6, 7, 0.86)),
    radial-gradient(ellipse at center, transparent 20%, rgba(5, 6, 7, 0.34) 82%);
}

.hero-grid {
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(244, 245, 239, 0.16) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, rgba(244, 245, 239, 0.13) 1px, transparent 1px) 0 0 / 100% 25%;
  mask-image: linear-gradient(180deg, black, transparent 80%);
  transform: translate3d(0, calc(var(--parallax-y, 0) * -0.35px), 0);
  will-change: transform;
}

.light-arc {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 245, 239, 0.76), rgba(104, 199, 255, 0.36), transparent);
  transform-origin: center;
  filter: blur(0.2px);
  opacity: 0;
  animation: arc-drift 7.5s ease-in-out infinite alternate;
}

.arc-one {
  top: 58%;
  transform: rotate(-7deg);
  animation-delay: 600ms;
}

.arc-two {
  top: 66%;
  transform: rotate(-2deg);
  animation-delay: 950ms;
}

.arc-three {
  top: 38%;
  transform: rotate(13deg);
  height: 72px;
  background: linear-gradient(90deg, transparent, rgba(104, 199, 255, 0.18), transparent);
  filter: blur(12px);
  animation-delay: 1200ms;
}

.orbital-field {
  position: absolute;
  width: 42vw;
  min-width: 420px;
  aspect-ratio: 0.72;
  right: 8vw;
  top: 13vh;
  border-radius: 0;
  background:
    radial-gradient(circle at 55% 28%, rgba(137, 212, 255, 0.72), transparent 6%),
    radial-gradient(ellipse at 50% 46%, rgba(137, 212, 255, 0.4), transparent 22%),
    linear-gradient(180deg, rgba(104, 199, 255, 0.24), rgba(5, 6, 7, 0) 54%),
    #050607;
  box-shadow: inset 0 0 0 1px rgba(244, 245, 239, 0.08);
  opacity: 0.48;
  filter: blur(0.2px);
  transform: translate3d(0, calc(var(--parallax-y, 0) * 0.42px), 0);
  will-change: transform;
}

.hero-section .hero-grid,
.hero-section .light-arc,
.hero-section .orbital-field {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(1320px, calc(100vw - 96px));
  margin: 0 auto;
  text-align: center;
}

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

h1 {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(3.1rem, 8.2vw, 9rem);
  line-height: 0.88;
  font-weight: 300;
  text-wrap: balance;
}

.hero-content h1 {
  max-width: none;
  font-size: clamp(2.75rem, 4.25vw, 4.8rem);
  line-height: 0.92;
  white-space: nowrap;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(244, 245, 239, 0.28);
  border-radius: 999px;
  color: var(--text);
  background: rgba(5, 6, 7, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 0.86rem;
  line-height: 1;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 420ms var(--ease-out);
}

.contact-form button:hover {
  border-color: rgba(189, 246, 255, 0.58);
  background: rgba(189, 246, 255, 0.08);
  transform: translate3d(0, -1px, 0);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.6vw, 5.6rem);
  line-height: 0.92;
  font-weight: 300;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 0.96;
  font-weight: 300;
}

p {
  color: var(--muted);
  line-height: 1.45;
}

.minimal-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(92px, 11vh, 132px) 24px;
  border-top: 1px solid rgba(244, 245, 239, 0.08);
  background: #050607;
}

.minimal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.78;
  background:
    linear-gradient(135deg, rgba(104, 199, 255, 0.085), transparent 34%),
    linear-gradient(315deg, rgba(189, 246, 255, 0.055), transparent 42%);
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
}

.about-section::before {
  background:
    linear-gradient(125deg, rgba(104, 199, 255, 0.075), transparent 38%),
    linear-gradient(300deg, rgba(24, 51, 46, 0.22), transparent 46%);
}

.product-section {
  background:
    linear-gradient(180deg, rgba(104, 199, 255, 0.045), transparent 44%),
    #050607;
}

.product-section::before {
  background:
    linear-gradient(145deg, rgba(189, 246, 255, 0.075), transparent 40%),
    linear-gradient(315deg, rgba(104, 199, 255, 0.06), transparent 44%);
}

.contact-section {
  background:
    linear-gradient(150deg, rgba(104, 199, 255, 0.055), transparent 38%),
    #050607;
  color: var(--text);
}

.contact-section::before {
  opacity: 0.72;
  background:
    linear-gradient(115deg, rgba(104, 199, 255, 0.06), transparent 42%),
    linear-gradient(260deg, rgba(189, 246, 255, 0.04), transparent 48%);
}

.minimal-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  text-align: center;
}

.minimal-copy p {
  margin: 0 0 clamp(18px, 3vh, 32px);
  color: rgba(244, 245, 239, 0.46);
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  line-height: 1;
}

.minimal-copy h2 {
  max-width: 15ch;
  margin: 0 auto;
  font-size: clamp(3rem, 5.35vw, 6.4rem);
  line-height: 0.9;
}

.minimal-copy span {
  display: block;
  width: min(760px, 100%);
  margin: clamp(22px, 3.2vh, 34px) auto 0;
  color: rgba(244, 245, 239, 0.58);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.44;
  text-wrap: balance;
}

.section-notes,
.product-list,
.enterprise-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, 100%);
  margin: clamp(34px, 6vh, 72px) auto 0;
  border: 1px solid rgba(244, 245, 239, 0.1);
  background: rgba(244, 245, 239, 0.08);
}

.section-notes div,
.product-list article,
.enterprise-steps div {
  min-height: clamp(220px, 22vh, 290px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(22px, 2.2vw, 36px);
  background:
    linear-gradient(145deg, rgba(189, 246, 255, 0.055), transparent 46%),
    rgba(5, 6, 7, 0.72);
  text-align: left;
}

.image-placeholder {
  width: 100%;
  min-height: clamp(116px, 12vw, 168px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 clamp(18px, 2.4vh, 30px);
  padding: 16px;
  border: 1px dashed rgba(244, 245, 239, 0.22);
  background:
    linear-gradient(135deg, rgba(189, 246, 255, 0.045), transparent 44%),
    rgba(244, 245, 239, 0.025);
}

.image-placeholder span {
  width: auto;
  margin: 0;
  color: rgba(244, 245, 239, 0.7);
  font-size: 0.74rem;
  line-height: 1;
}

.image-placeholder small {
  width: min(320px, 100%);
  color: rgba(244, 245, 239, 0.42);
  font-size: clamp(0.78rem, 0.86vw, 0.9rem);
  line-height: 1.34;
}

.section-notes strong,
.product-list strong {
  color: var(--text);
  font-size: clamp(1.06rem, 1.15vw, 1.28rem);
  font-weight: 400;
  line-height: 1;
}

.section-notes small,
.product-list small,
.enterprise-steps small {
  display: block;
  max-width: 100%;
  color: rgba(244, 245, 239, 0.5);
  font-size: clamp(0.82rem, 0.92vw, 0.98rem);
  line-height: 1.36;
}

.product-copy h2 {
  max-width: 15ch;
}

.product-list {
  background: rgba(137, 212, 255, 0.1);
}

.product-list article {
  background:
    linear-gradient(145deg, rgba(104, 199, 255, 0.075), transparent 42%),
    rgba(5, 6, 7, 0.76);
}

.product-list em {
  color: rgba(244, 245, 239, 0.34);
  font-style: normal;
  font-size: 0.78rem;
  line-height: 1;
}

.people-section {
  position: relative;
  background:
    linear-gradient(130deg, rgba(104, 199, 255, 0.055), transparent 42%),
    linear-gradient(300deg, rgba(24, 51, 46, 0.18), transparent 48%),
    #050607;
}

.split-copy h2 {
  max-width: 19ch;
}

.people-section .minimal-copy {
  width: min(1500px, calc(100vw - 48px));
  transform: translateY(clamp(-92px, -8vh, -48px));
}

.people-section .minimal-copy > span {
  width: min(760px, 100%);
}

.people-visual {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: clamp(58px, 8vh, 112px);
  width: min(1500px, 88vw);
  min-height: clamp(160px, 21vw, 340px);
  margin: 0;
  padding: clamp(18px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-50%);
  border: 1px dashed rgba(244, 245, 239, 0.2);
  background:
    linear-gradient(135deg, rgba(189, 246, 255, 0.045), transparent 40%),
    linear-gradient(315deg, rgba(104, 199, 255, 0.035), transparent 46%),
    rgba(244, 245, 239, 0.025);
  text-align: left;
}

.people-visual span {
  color: rgba(244, 245, 239, 0.7);
  font-size: 0.78rem;
  line-height: 1;
}

.people-visual small {
  width: min(520px, 100%);
  color: rgba(244, 245, 239, 0.44);
  font-size: clamp(0.82rem, 0.92vw, 1rem);
  line-height: 1.38;
}

.enterprise-section {
  background:
    linear-gradient(145deg, rgba(104, 199, 255, 0.06), transparent 44%),
    linear-gradient(315deg, rgba(189, 246, 255, 0.05), transparent 44%),
    #050607;
}

.enterprise-copy h2 {
  max-width: 14ch;
}

.enterprise-steps {
  background: rgba(244, 245, 239, 0.075);
}

.enterprise-steps div {
  background:
    linear-gradient(180deg, rgba(244, 245, 239, 0.055), transparent 42%),
    rgba(5, 6, 7, 0.74);
}

.enterprise-steps em {
  color: var(--text);
  font-style: normal;
  font-size: clamp(1.06rem, 1.15vw, 1.28rem);
  line-height: 1;
}

.work-layout {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
}

.work-layout .minimal-copy {
  width: 100%;
  text-align: left;
}

.work-layout .minimal-copy h2,
.work-layout .minimal-copy span {
  margin-left: 0;
  margin-right: 0;
}

.contact-copy p,
.contact-copy span {
  color: rgba(244, 245, 239, 0.58);
}

.contact-copy h2 {
  color: var(--text);
  max-width: 20ch;
  font-size: clamp(2.8rem, 4.7vw, 5.6rem);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(244, 245, 239, 0.12);
  background:
    linear-gradient(145deg, rgba(104, 199, 255, 0.065), transparent 48%),
    rgba(244, 245, 239, 0.045);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: rgba(244, 245, 239, 0.56);
  font-size: 0.82rem;
  line-height: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(244, 245, 239, 0.14);
  border-radius: 0;
  padding: 0 12px;
  color: var(--text);
  background: rgba(5, 6, 7, 0.42);
  font: inherit;
  font-size: 0.96rem;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(189, 246, 255, 0.5);
  background: rgba(5, 6, 7, 0.62);
}

.contact-form .form-wide,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form button {
  width: max-content;
  cursor: pointer;
  color: var(--text);
}

.form-status {
  min-height: 1em;
  margin: 0;
  color: rgba(244, 245, 239, 0.52);
  font-size: 0.84rem;
  line-height: 1.3;
}

.contact-form ::placeholder {
  color: rgba(244, 245, 239, 0.34);
}

.gradient-showcase {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 108px 24px 92px;
  background: #050607;
  border-bottom: 1px solid var(--line);
}

.showcase-heading {
  width: min(1500px, calc(100vw - 48px));
  margin: 0 auto clamp(28px, 4vh, 44px);
  text-align: center;
}

.showcase-heading p,
.section-heading p {
  width: min(560px, 100%);
  margin: 16px auto 0;
  color: rgba(244, 245, 239, 0.54);
  font-size: clamp(0.98rem, 1.2vw, 1.18rem);
  line-height: 1.36;
}

.showcase-heading h2,
.section-heading h2 {
  font-size: clamp(3rem, 4.65vw, 5.55rem);
  line-height: 0.92;
  font-weight: 300;
  text-transform: none;
  white-space: nowrap;
}

.showcase-panels {
  display: grid;
  grid-template-columns: 2.8fr 0.7fr 0.7fr 0.7fr;
  gap: 12px;
  min-height: clamp(390px, 54vh, 580px);
  transition: grid-template-columns 760ms var(--ease-out);
  will-change: grid-template-columns;
}

.showcase-panels:has(.showcase-panel:nth-child(1):hover),
.showcase-panels:has(.showcase-panel:nth-child(1):focus-visible) {
  grid-template-columns: 2.8fr 0.7fr 0.7fr 0.7fr;
}

.showcase-panels:has(.showcase-panel:nth-child(2):hover),
.showcase-panels:has(.showcase-panel:nth-child(2):focus-visible) {
  grid-template-columns: 0.7fr 2.8fr 0.7fr 0.7fr;
}

.showcase-panels:has(.showcase-panel:nth-child(3):hover),
.showcase-panels:has(.showcase-panel:nth-child(3):focus-visible) {
  grid-template-columns: 0.7fr 0.7fr 2.8fr 0.7fr;
}

.showcase-panels:has(.showcase-panel:nth-child(4):hover),
.showcase-panels:has(.showcase-panel:nth-child(4):focus-visible) {
  grid-template-columns: 0.7fr 0.7fr 0.7fr 2.8fr;
}

.showcase-panel {
  position: relative;
  display: grid;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  min-height: clamp(390px, 54vh, 580px);
  padding: clamp(22px, 2.4vw, 42px);
  border: 1px solid rgba(244, 245, 239, 0.08);
  text-align: center;
  cursor: default;
  transition: border-color 420ms ease, opacity 520ms ease, transform 700ms var(--ease-out);
}

.showcase-panels:has(.showcase-panel:hover) .showcase-panel,
.showcase-panels:has(.showcase-panel:focus-visible) .showcase-panel {
  opacity: 0.74;
}

.showcase-panels:has(.showcase-panel:hover) .showcase-panel:hover,
.showcase-panels:has(.showcase-panel:focus-visible) .showcase-panel:focus-visible {
  opacity: 1;
}

.wing-panel:hover,
.product-card:hover {
  border-color: rgba(244, 245, 239, 0.24);
  transform: translate3d(0, -4px, 0);
}

.showcase-panel:hover,
.showcase-panel:focus-visible {
  border-color: rgba(244, 245, 239, 0.28);
}

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

.showcase-panel::before {
  opacity: 0.52;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.4) 0 1px, transparent 2px) 0 0 / 18px 18px,
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.18), transparent 32%);
  mix-blend-mode: screen;
  transition: opacity 620ms ease, transform 900ms var(--ease-out);
}

.showcase-panel::after {
  background: linear-gradient(180deg, transparent, rgba(5, 6, 7, 0.78));
}

.showcase-panel:hover::before,
.wing-panel:hover::before,
.product-card:hover::before {
  opacity: 0.7;
  transform: scale(1.03);
}

.showcase-panel h3,
.showcase-panel p {
  position: relative;
  z-index: 1;
}

.showcase-panel h3 {
  font-size: clamp(1rem, 1.15vw, 1.25rem);
  font-weight: 300;
  text-transform: none;
}

.showcase-panel p {
  width: min(24ch, 100%);
  margin: 0 auto;
  color: rgba(244, 245, 239, 0.52);
  font-size: clamp(0.78rem, 0.88vw, 0.94rem);
  line-height: 1.34;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity 420ms ease, transform 520ms var(--ease-out);
}

.showcase-panel:first-child p,
.showcase-panel:hover p,
.showcase-panel:focus-visible p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.showcase-panels:has(.showcase-panel:hover) .showcase-panel:first-child:not(:hover) p,
.showcase-panels:has(.showcase-panel:focus-visible) .showcase-panel:first-child:not(:focus-visible) p {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}

.panel-blue {
  background:
    radial-gradient(circle at 20% 16%, rgba(189, 246, 255, 0.7), transparent 22%),
    radial-gradient(circle at 28% 78%, rgba(30, 98, 136, 0.82), transparent 36%),
    linear-gradient(160deg, #0c3449, #030506 54%, #061114);
}

.panel-forest {
  background:
    radial-gradient(circle at 68% 48%, rgba(189, 246, 255, 0.36), transparent 2%, transparent 24%),
    linear-gradient(160deg, #12322b, #070b0b 56%, #081819);
}

.panel-core {
  background:
    radial-gradient(ellipse at 50% 12%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 18%),
    radial-gradient(ellipse at 50% 66%, rgba(255, 255, 255, 0.08), transparent 40%),
    #08090a;
}

.panel-core h3 {
  max-width: 18ch;
}

.panel-cyan {
  background:
    radial-gradient(circle at 72% 64%, rgba(104, 199, 255, 0.68), transparent 24%),
    radial-gradient(circle at 44% 20%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(150deg, #061114, #0b3b52 52%, #050607);
}

.section {
  width: min(1640px, 100%);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: clamp(82px, 10vh, 112px) 24px;
}

.section-heading {
  width: min(1500px, calc(100vw - 48px));
  margin: 0 auto clamp(30px, 5vh, 54px);
  text-align: center;
}

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

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

.wing-grid,
.product-grid {
  width: min(1500px, calc(100vw - 48px));
  margin: 0 auto;
}

.wing-panel,
.product-card {
  position: relative;
  min-height: clamp(300px, 25vw, 400px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(22px, 2.2vw, 34px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 84%, rgba(104, 199, 255, 0.5), transparent 18%),
    linear-gradient(145deg, rgba(104, 199, 255, 0.18), transparent 38%),
    var(--panel);
  transition: border-color 420ms ease, transform 700ms var(--ease-out);
}

.wing-panel::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background:
    linear-gradient(90deg, rgba(244, 245, 239, 0.18) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(180deg, rgba(244, 245, 239, 0.14) 1px, transparent 1px) 0 0 / 32px 32px;
  mask-image: linear-gradient(180deg, transparent, black 18%, transparent 88%);
  transition: opacity 620ms ease, transform 900ms var(--ease-out);
}

.wing-panel::after,
.product-card::after {
  content: "";
  position: absolute;
  right: -20%;
  top: 8%;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(189, 246, 255, 0.32);
  border-radius: 50%;
  background: radial-gradient(circle, transparent 48%, rgba(104, 199, 255, 0.1) 49%, transparent 58%);
  transition: transform 900ms var(--ease-out), opacity 620ms ease;
}

.wing-panel:hover::after,
.product-card:hover::after {
  opacity: 0.86;
  transform: scale(1.04);
}

.wing-panel.is-bright {
  background:
    radial-gradient(circle at 74% 22%, rgba(137, 212, 255, 0.5), transparent 18%),
    linear-gradient(150deg, rgba(155, 156, 255, 0.18), transparent 38%),
    linear-gradient(330deg, rgba(189, 246, 255, 0.12), transparent 44%),
    var(--panel);
}

.wing-panel.is-deep {
  background:
    radial-gradient(circle at 80% 16%, rgba(189, 246, 255, 0.38), transparent 18%),
    radial-gradient(circle at 18% 88%, rgba(104, 199, 255, 0.26), transparent 24%),
    linear-gradient(150deg, rgba(24, 51, 46, 0.48), transparent 42%),
    #07090a;
}

.wing-panel h3,
.product-card h3,
.wing-panel p,
.product-card p {
  position: relative;
  z-index: 1;
}

.wing-panel h3,
.product-card h3 {
  font-size: clamp(1.3rem, 1.75vw, 2.15rem);
  line-height: 0.96;
}

.wing-panel p,
.product-card p,
.principles-frame p {
  width: min(34ch, 100%);
  margin: 14px 0 0;
  color: rgba(244, 245, 239, 0.54);
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  line-height: 1.38;
}

.image-break {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 82px 24px;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.05), rgba(5, 6, 7, 0.92)),
    radial-gradient(ellipse at 28% 92%, rgba(104, 199, 255, 0.46), transparent 36%),
    radial-gradient(ellipse at 82% 88%, rgba(189, 246, 255, 0.22), transparent 30%),
    linear-gradient(120deg, rgba(17, 47, 42, 0.72), transparent 34%),
    #071015;
}

.image-break::before,
.image-break::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 245, 239, 0.72), transparent);
}

.image-break::before {
  top: 48%;
  transform: rotate(-5deg);
}

.image-break::after {
  top: 55%;
  transform: rotate(3deg);
  opacity: 0.42;
}

.image-break div {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.product-card {
  min-height: clamp(300px, 24vw, 390px);
}

.media-stack h3 {
  max-width: 13ch;
}

.media-wallace {
  background:
    radial-gradient(circle at 18% 18%, rgba(189, 246, 255, 0.85), transparent 18%),
    radial-gradient(circle at 46% 56%, rgba(104, 199, 255, 0.32), transparent 26%),
    linear-gradient(160deg, rgba(104, 199, 255, 0.34), transparent 44%),
    linear-gradient(20deg, rgba(155, 156, 255, 0.22), transparent 34%),
    #070b0f;
}

.media-data {
  background:
    radial-gradient(circle at 78% 28%, rgba(189, 246, 255, 0.62), transparent 18%),
    radial-gradient(circle at 18% 80%, rgba(104, 199, 255, 0.28), transparent 26%),
    linear-gradient(145deg, rgba(137, 212, 255, 0.2), transparent 40%),
    linear-gradient(315deg, rgba(104, 199, 255, 0.22), transparent 38%),
    #0c0e0f;
}

.media-stack {
  background:
    radial-gradient(circle at 34% 26%, rgba(189, 246, 255, 0.52), transparent 18%),
    radial-gradient(circle at 78% 76%, rgba(155, 156, 255, 0.22), transparent 28%),
    linear-gradient(155deg, rgba(104, 199, 255, 0.2), transparent 42%),
    #08090a;
}

.principles-section {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 112px 24px;
  background: var(--paper);
  color: var(--ink);
}

.principles-frame {
  width: min(1180px, 100%);
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(5, 6, 7, 0.13);
  background:
    linear-gradient(135deg, rgba(104, 199, 255, 0.2), transparent 34%),
    #f4f5ef;
}

.principles-frame h2 {
  max-width: 19ch;
  font-size: clamp(2.4rem, 4.2vw, 5.2rem);
}

.principles-frame p {
  max-width: 36ch;
  color: rgba(9, 11, 13, 0.58);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(620px, 1fr);
  grid-template-areas:
    "brand nav"
    "bottom bottom";
  align-items: start;
  column-gap: clamp(72px, 12vw, 220px);
  row-gap: clamp(48px, 7vh, 86px);
  min-height: 0;
  padding: clamp(52px, 5.2vw, 82px) clamp(28px, 5.6vw, 88px) 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: none;
  background: #050607;
}

.footer-brand {
  grid-area: brand;
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  width: max-content;
}

.footer-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-mark span {
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0;
}

.footer-brand p {
  width: min(310px, 100%);
  margin: 0;
  color: rgba(244, 245, 239, 0.48);
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  line-height: 1.36;
  text-transform: none;
}

.footer-brand-contact {
  width: max-content;
  max-width: 100%;
  margin-top: -8px;
  color: rgba(244, 245, 239, 0.62);
  font-size: 0.78rem;
  line-height: 1.25;
}

.footer-nav {
  grid-area: nav;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-self: end;
  width: min(760px, 100%);
  gap: clamp(34px, 5vw, 82px);
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav h2 {
  margin: 0 0 8px;
  color: rgba(244, 245, 239, 0.46);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1;
}

.footer-nav a {
  width: max-content;
  max-width: 100%;
  color: rgba(244, 245, 239, 0.72);
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  line-height: 1.18;
  transition: color 200ms ease;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-contact {
  color: var(--text);
  border-bottom: 1px solid rgba(244, 245, 239, 0.32);
  line-height: 1.2;
  transition: color 220ms ease, border-color 220ms ease;
}

.footer-contact:hover {
  color: var(--mineral-blue);
  border-color: rgba(137, 212, 255, 0.72);
}

.footer-bottom {
  grid-area: bottom;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 245, 239, 0.08);
  color: rgba(244, 245, 239, 0.38);
  font-size: 0.78rem;
  line-height: 1.2;
  white-space: nowrap;
}

.legal-page {
  min-height: 100svh;
  display: grid;
  align-content: start;
  gap: clamp(42px, 7vh, 88px);
  padding: clamp(24px, 4.8vw, 72px);
  background:
    linear-gradient(135deg, rgba(104, 199, 255, 0.055), transparent 34%),
    linear-gradient(315deg, rgba(244, 245, 239, 0.035), transparent 42%),
    #050607;
  color: var(--text);
}

.legal-hero {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(82px, 12vh, 154px);
  padding-bottom: clamp(38px, 6vh, 76px);
  border-bottom: 1px solid rgba(244, 245, 239, 0.1);
}

.legal-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-topline > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 34px);
}

.legal-mark,
.legal-topline a,
.legal-footer a {
  color: rgba(244, 245, 239, 0.76);
  font-size: 0.84rem;
  line-height: 1;
}

.legal-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  color: var(--text);
}

.legal-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.legal-topline a:not(.legal-mark),
.legal-footer a {
  border-bottom: 1px solid rgba(244, 245, 239, 0.22);
  transition: color 200ms ease, border-color 200ms ease;
}

.legal-topline a:hover,
.legal-footer a:hover {
  color: var(--text);
  border-color: rgba(244, 245, 239, 0.48);
}

.legal-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: clamp(28px, 7vw, 120px);
}

.legal-intro > p {
  grid-column: 1 / -1;
  margin: 0 0 -10px;
  color: rgba(244, 245, 239, 0.42);
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  line-height: 1;
}

.legal-intro h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.3rem, 8.4vw, 9.2rem);
  font-weight: 300;
  line-height: 0.88;
}

.legal-intro span {
  display: block;
  max-width: 520px;
  color: rgba(244, 245, 239, 0.58);
  font-size: clamp(1rem, 1.18vw, 1.24rem);
  line-height: 1.46;
}

.legal-copy {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 112px);
}

.legal-meta {
  display: grid;
  align-content: start;
  gap: 8px;
  color: rgba(244, 245, 239, 0.42);
  font-size: 0.78rem;
  line-height: 1.2;
}

.legal-meta strong {
  color: rgba(244, 245, 239, 0.76);
  font-weight: 400;
}

.legal-copy section {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 72px);
  padding: clamp(24px, 3.2vh, 42px) 0;
  border-top: 1px solid rgba(244, 245, 239, 0.1);
}

.legal-copy section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.legal-copy h2 {
  margin: 0;
  color: rgba(244, 245, 239, 0.88);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  font-weight: 400;
  line-height: 1.15;
}

.legal-copy p {
  margin: 0;
  color: rgba(244, 245, 239, 0.58);
  font-size: clamp(0.98rem, 1.03vw, 1.1rem);
  line-height: 1.56;
}

.legal-copy a {
  color: var(--text);
  border-bottom: 1px solid rgba(244, 245, 239, 0.34);
}

.legal-footer {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: clamp(24px, 4vh, 44px);
  border-top: 1px solid rgba(244, 245, 239, 0.1);
  color: rgba(244, 245, 239, 0.42);
  font-size: 0.8rem;
  line-height: 1.25;
}

body.motion-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.motion-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.motion-enabled .showcase-panel[data-reveal],
body.motion-enabled .wing-panel[data-reveal],
body.motion-enabled .product-card[data-reveal],
body.motion-enabled .principles-frame[data-reveal] {
  transform: translate3d(0, 52px, 0) scale(0.985);
}

body.motion-enabled .showcase-panel[data-reveal].is-visible,
body.motion-enabled .wing-panel[data-reveal].is-visible,
body.motion-enabled .product-card[data-reveal].is-visible,
body.motion-enabled .principles-frame[data-reveal].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.showcase-panel[data-reveal]:nth-child(2),
.wing-panel[data-reveal]:nth-child(2),
.product-card[data-reveal]:nth-child(2) {
  --reveal-delay: 90ms;
}

.showcase-panel[data-reveal]:nth-child(3),
.wing-panel[data-reveal]:nth-child(3),
.product-card[data-reveal]:nth-child(3) {
  --reveal-delay: 150ms;
}

.showcase-panel[data-reveal]:nth-child(4) {
  --reveal-delay: 210ms;
}

@keyframes logo-settle {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes arc-drift {
  from {
    opacity: 0.2;
    translate: -1.2% 0;
  }

  to {
    opacity: 0.58;
    translate: 1.2% 0;
  }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: 100svh;
    padding-top: 92px;
    padding-bottom: 52px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .gradient-showcase {
    min-height: 100svh;
    padding: 82px 16px;
  }

  .showcase-panels,
  .wing-grid,
  .product-grid,
  .section-notes,
  .product-list,
  .enterprise-steps {
    grid-template-columns: 1fr;
  }

  .showcase-panels {
    min-height: 0;
    gap: 8px;
    transition: none;
  }

  .showcase-panels:has(.showcase-panel:nth-child(1):hover),
  .showcase-panels:has(.showcase-panel:nth-child(1):focus-visible),
  .showcase-panels:has(.showcase-panel:nth-child(2):hover),
  .showcase-panels:has(.showcase-panel:nth-child(2):focus-visible),
  .showcase-panels:has(.showcase-panel:nth-child(3):hover),
  .showcase-panels:has(.showcase-panel:nth-child(3):focus-visible),
  .showcase-panels:has(.showcase-panel:nth-child(4):hover),
  .showcase-panels:has(.showcase-panel:nth-child(4):focus-visible) {
    grid-template-columns: 1fr;
  }

  .showcase-panels:has(.showcase-panel:hover) .showcase-panel,
  .showcase-panels:has(.showcase-panel:focus-visible) .showcase-panel {
    opacity: 1;
  }

  .showcase-panel p,
  .showcase-panels:has(.showcase-panel:hover) .showcase-panel:first-child:not(:hover) p,
  .showcase-panels:has(.showcase-panel:focus-visible) .showcase-panel:first-child:not(:focus-visible) p {
    opacity: 1;
    transform: none;
  }

  .section {
    min-height: 100svh;
    padding: 76px 16px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .showcase-heading h2 {
    white-space: normal;
  }

  .showcase-panel,
  .wing-panel,
  .product-card {
    min-height: 300px;
  }

  .image-break {
    min-height: 100svh;
    padding: 70px 16px;
  }

  .principles-section {
    min-height: 100svh;
    padding: 76px 16px;
  }

  .minimal-section {
    min-height: 100svh;
    padding: 82px 16px;
  }

  .minimal-copy {
    width: min(720px, calc(100vw - 32px));
  }

  .minimal-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 10.8vw, 4.4rem);
  }

  .section-notes,
  .product-list,
  .enterprise-steps {
    margin-top: 30px;
  }

  .section-notes div,
  .product-list article,
  .enterprise-steps div {
    min-height: 220px;
  }

  .image-placeholder {
    min-height: 132px;
    margin-bottom: 18px;
  }

  .people-visual {
    width: min(720px, calc(100vw - 32px));
    min-height: 180px;
  }

  .work-layout {
    width: min(720px, calc(100vw - 32px));
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .work-layout .minimal-copy {
    text-align: center;
  }

  .work-layout .minimal-copy h2,
  .work-layout .minimal-copy span {
    margin-left: auto;
    margin-right: auto;
  }

  .principles-frame {
    min-height: 340px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "bottom";
    align-items: start;
    min-height: 0;
    column-gap: 0;
    row-gap: 38px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: stretch;
    width: 100%;
    gap: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    white-space: normal;
  }

  .legal-page {
    gap: 46px;
    padding: 26px 18px 64px;
  }

  .legal-hero {
    gap: 74px;
  }

  .legal-intro,
  .legal-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-meta,
  .legal-copy section {
    grid-column: 1;
  }

  .legal-copy section {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 540px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .brand-mark span:last-child {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header .brand-symbol {
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
    flex-basis: 38px;
  }

  .menu-button,
  .menu-open .menu-button {
    width: auto;
    min-height: 28px;
    justify-content: center;
    padding: 0;
  }

  .menu-button span {
    display: none;
  }

  .menu-content {
    width: calc(100vw - 44px);
    padding: 108px 0 0 22px;
  }

  .menu-primary {
    gap: 13px;
  }

  .menu-primary a {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .legal-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .legal-topline > div {
    justify-content: flex-start;
  }

  .legal-intro h1 {
    font-size: clamp(3.1rem, 16vw, 4.9rem);
  }

  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 3.8rem);
    line-height: 0.9;
  }

  .hero-content {
    width: min(360px, calc(100vw - 32px));
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 7.7vw, 2.15rem);
    line-height: 1.06;
    white-space: normal;
  }

  h2 {
    font-size: clamp(2.35rem, 10.8vw, 3.4rem);
  }

  .showcase-heading h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }

  .principles-frame h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 0.94;
  }

  .minimal-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.65rem);
    line-height: 0.92;
  }

  .minimal-copy span {
    font-size: 0.98rem;
  }

  .people-visual {
    width: min(520px, calc(100vw - 28px));
    min-height: 170px;
    padding: 16px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .contact-form button {
    width: 100%;
  }
}

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

  body.motion-enabled:not(.is-ready) .site-shell,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-art,
  .hero-grid,
  .orbital-field {
    transform: none !important;
  }
}
