:root {
  --navy: #053d57;
  --navy-deep: #032c3e;
  --cream: #f8f8f2;
  --white: #ffffff;
  --mist: #eaf0f1;
  --ink-soft: rgba(5, 61, 87, 0.7);
  --line: rgba(5, 61, 87, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 70px rgba(3, 44, 62, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--navy);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--navy);
  color: var(--white);
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

img {
  display: block;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-pad {
  padding: clamp(88px, 10vw, 148px) clamp(24px, 6vw, 96px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 10px clamp(22px, 5vw, 74px);
  background: rgba(248, 248, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid var(--navy);
  background: var(--navy);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  padding: 15px 0;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links > a:not(.nav-cta):hover::after,
.nav-links > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta span,
.button span,
.text-link span {
  transition: transform 200ms ease;
}

.nav-cta:hover span,
.button:hover span,
.text-link:hover span {
  transform: translate(3px, -2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  border: 1px solid var(--navy);
  background: transparent;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  min-height: calc(100vh - 82px);
  background:
    linear-gradient(rgba(5, 61, 87, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 61, 87, 0.045) 1px, transparent 1px),
    var(--cream);
  background-size: 42px 42px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 126px) clamp(28px, 6vw, 92px);
}

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: currentColor;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(4rem, 7vw, 7.9rem);
  font-weight: 760;
}

.hero h1 span {
  display: inline-block;
  color: var(--navy);
  font-weight: 300;
}

.hero-intro {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.hero-cta {
  flex-shrink: 0;
  max-width: 100%;
  padding-inline: clamp(14px, 2vw, 24px);
  gap: clamp(8px, 1.4vw, 16px);
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  max-width: 100%;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-actions .text-link {
  flex-shrink: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 680px;
  margin-top: clamp(44px, 6vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-metrics div {
  min-width: 0;
  padding: 18px 16px 18px 0;
  border-right: 1px solid var(--line);
}

.hero-metrics div + div {
  padding-left: 18px;
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 7px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-metrics span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(5, 61, 87, 0.1);
}

.hero-visual {
  --mx: 0px;
  --my: 0px;
  --mx-back: 0px;
  --my-back: 0px;
  --mx-side: 0px;
  --my-side: 0px;
  --mx-panel: 0px;
  --my-panel: 0px;
  --mx-mobile: 0px;
  --my-mobile: 0px;
  --mx-card: 0px;
  --my-card: 0px;
  --mx-reverse: 0px;
  --my-reverse: 0px;
  --grid-x: 0px;
  --grid-y: 0px;
  --rx: 0deg;
  --ry: 0deg;
  --gx: 50%;
  --gy: 50%;
  position: relative;
  min-height: 650px;
  margin: clamp(26px, 3vw, 48px) clamp(26px, 4vw, 66px) clamp(26px, 3vw, 48px) 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #07384f 0%, #032838 55%, #041d2b 100%);
  box-shadow: var(--shadow);
  perspective: 1200px;
}

.visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(rgba(248, 248, 242, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 248, 242, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: scale(1.08) translate(var(--grid-x), var(--grid-y));
  transition: transform 380ms ease-out;
}

.visual-grid::before,
.visual-grid::after {
  content: "+";
  position: absolute;
  color: rgba(248, 248, 242, 0.72);
  font-size: 1.4rem;
  font-weight: 300;
}

.visual-grid::before {
  top: 24px;
  left: 24px;
}

.visual-grid::after {
  right: 24px;
  bottom: 106px;
}

.visual-glow {
  position: absolute;
  z-index: -1;
  inset: -20%;
  background:
    radial-gradient(circle at var(--gx) var(--gy), rgba(83, 190, 221, 0.3), transparent 25%),
    radial-gradient(circle at 78% 18%, rgba(248, 248, 242, 0.12), transparent 28%);
}

.steel-beam {
  position: absolute;
  z-index: 0;
  height: 28px;
  border: 1px solid rgba(248, 248, 242, 0.25);
  background: linear-gradient(180deg, #75909b 0%, #294c5d 42%, #173b4c 58%, #6f8994 100%);
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.28);
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.steel-beam::before,
.steel-beam::after {
  content: "";
  position: absolute;
  right: -8px;
  left: -8px;
  height: 8px;
  border: 1px solid rgba(248, 248, 242, 0.22);
  background: linear-gradient(90deg, #1c4152, #76919c 48%, #234859);
}

.steel-beam::before {
  top: -8px;
}

.steel-beam::after {
  bottom: -8px;
}

.steel-beam > span {
  position: absolute;
  inset: 5px 9px;
  background:
    radial-gradient(circle, rgba(248, 248, 242, 0.55) 0 2px, transparent 2.5px) 0 50% / 38px 100% repeat-x;
}

.beam-back {
  top: 23%;
  right: -15%;
  width: 75%;
  opacity: 0.56;
  transform: translate(var(--mx-back), var(--my-back)) rotate(-28deg);
}

.beam-side {
  right: -21%;
  bottom: 28%;
  width: 68%;
  opacity: 0.42;
  transform: translate(var(--mx-side), var(--my-side)) rotate(43deg);
}

.design-window {
  position: absolute;
  z-index: 3;
  top: 17%;
  left: 10%;
  width: 67%;
  min-width: 430px;
  overflow: hidden;
  color: var(--navy);
  border: 1px solid rgba(248, 248, 242, 0.65);
  background: var(--cream);
  box-shadow: 0 34px 65px rgba(0, 0, 0, 0.35);
  transform: translate(var(--mx-panel), var(--my-panel)) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.design-window-bar,
.design-window-nav,
.design-window-stats {
  display: flex;
  align-items: center;
}

.design-window-bar {
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  color: var(--white);
  background: var(--navy-deep);
}

.window-brand {
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.design-window-nav {
  justify-content: flex-end;
  min-height: 38px;
  gap: 17px;
  padding: 0 16px;
  color: rgba(5, 61, 87, 0.64);
  border-bottom: 1px solid var(--line);
  font-size: 0.48rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.design-window-nav b {
  padding: 7px 9px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.design-window-body {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 270px;
}

.window-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px clamp(22px, 3vw, 38px);
}

.window-message small {
  margin-bottom: 13px;
  color: rgba(5, 61, 87, 0.6);
  font-size: 0.48rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.window-message strong {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.15vw, 3.25rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.copy-line {
  display: block;
  width: 62%;
  height: 6px;
  margin-top: 7px;
  background: rgba(5, 61, 87, 0.16);
}

.copy-line-long {
  width: 88%;
}

.window-message em {
  width: max-content;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--navy);
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.window-structure {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(rgba(248, 248, 242, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 248, 242, 0.12) 1px, transparent 1px),
    var(--navy);
  background-size: 22px 22px;
}

.girder-section {
  position: relative;
  width: 56%;
  height: 68%;
  filter: drop-shadow(12px 16px 12px rgba(0, 0, 0, 0.22));
  animation: girder-breathe 5s ease-in-out infinite;
}

.girder-flange,
.girder-web {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, #a2b3ba, #426474 50%, #8ca2ab);
  border: 1px solid rgba(248, 248, 242, 0.4);
}

.girder-flange {
  right: 0;
  left: 0;
  height: 20%;
}

.girder-flange-top {
  top: 0;
}

.girder-flange-bottom {
  bottom: 0;
}

.girder-web {
  top: 16%;
  bottom: 16%;
  left: 43%;
  width: 14%;
}

.girder-bolt {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--cream);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px rgba(5, 61, 87, 0.4);
}

.bolt-a {
  top: 34%;
}

.bolt-b {
  bottom: 34%;
}

.dimension {
  position: absolute;
  color: rgba(248, 248, 242, 0.72);
  font-size: 0.43rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dimension-top {
  top: 16px;
  left: 20px;
}

.dimension-side {
  right: -27px;
  bottom: 60px;
  transform: rotate(90deg);
}

.design-window-stats {
  min-height: 44px;
  border-top: 1px solid var(--line);
}

.design-window-stats span {
  flex: 1;
  padding: 10px 14px;
  border-right: 1px solid var(--line);
  color: rgba(5, 61, 87, 0.62);
  font-size: 0.48rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.design-window-stats span:last-child {
  border-right: 0;
}

.design-window-stats b {
  margin-right: 4px;
  color: var(--navy);
  font-size: 0.72rem;
}

.mobile-window {
  position: absolute;
  z-index: 5;
  bottom: 13%;
  left: 5%;
  width: 166px;
  min-height: 310px;
  padding: 31px 18px 18px;
  overflow: hidden;
  color: var(--navy);
  border: 5px solid var(--navy-deep);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.38);
  transform: translate(var(--mx-mobile), var(--my-mobile)) rotate(-3deg);
  transition: transform 300ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.mobile-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 34px;
  height: 4px;
  background: var(--navy-deep);
  border-radius: 99px;
  transform: translateX(-50%);
}

.mobile-label {
  font-size: 0.42rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-window > strong {
  display: block;
  margin: 12px 0 18px;
  font-size: 1.18rem;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.mobile-beam {
  position: relative;
  height: 58px;
  margin: 0 -18px 18px;
  overflow: hidden;
  background:
    linear-gradient(rgba(248, 248, 242, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 248, 242, 0.16) 1px, transparent 1px),
    var(--navy);
  background-size: 15px 15px;
}

.mobile-beam > span {
  position: absolute;
  top: 24px;
  left: 15%;
  width: 74%;
  height: 9px;
  background: #8ca2ab;
  box-shadow: 0 -6px 0 -2px #bdc8cc, 0 6px 0 -2px #496b7a;
  transform: rotate(-8deg);
}

.mobile-line {
  display: block;
  height: 5px;
  margin-bottom: 7px;
  background: rgba(5, 61, 87, 0.15);
}

.mobile-line-a {
  width: 88%;
}

.mobile-line-b {
  width: 63%;
}

.mobile-button {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-card {
  position: absolute;
  z-index: 6;
  top: 10%;
  right: 4%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  min-width: 205px;
  padding: 14px 15px;
  color: var(--navy);
  border: 1px solid rgba(5, 61, 87, 0.2);
  background: rgba(248, 248, 242, 0.95);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transform: translate(var(--mx-card), var(--my-card));
  transition: transform 280ms cubic-bezier(0.2, 0.75, 0.2, 1);
  animation: card-float 4s ease-in-out infinite;
}

.system-pulse {
  width: 9px;
  height: 9px;
  background: #56a882;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(86, 168, 130, 0.14);
  animation: pulse-ring 2.2s ease-out infinite;
}

.system-card small,
.system-card strong {
  display: block;
}

.system-card small {
  color: rgba(5, 61, 87, 0.58);
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-card strong {
  margin-top: 2px;
  font-size: 0.72rem;
}

.system-card > b {
  font-size: 0.9rem;
}

.beam-detail {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 18%;
  width: 190px;
  color: rgba(248, 248, 242, 0.78);
  transform: translate(var(--mx-reverse), var(--my-reverse));
  transition: transform 360ms ease-out;
}

.beam-detail-label,
.beam-detail > span:last-child {
  display: block;
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.beam-detail-rule {
  position: relative;
  height: 1px;
  margin: 9px 0;
  background: rgba(248, 248, 242, 0.45);
}

.beam-detail-rule::before,
.beam-detail-rule::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(248, 248, 242, 0.6);
  transform: rotate(45deg);
}

.beam-detail-rule::before {
  left: 0;
}

.beam-detail-rule::after {
  right: 0;
}

@keyframes girder-breathe {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes card-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 5px rgba(86, 168, 130, 0.14); }
  50% { box-shadow: 0 0 0 9px rgba(86, 168, 130, 0.03); }
}

.hero-stamp {
  position: absolute;
  z-index: 7;
  top: 24px;
  left: 24px;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  color: var(--navy);
  background: var(--cream);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-stamp strong {
  position: absolute;
  font-size: 2.2rem;
  font-weight: 300;
}

.hero-stamp span:first-child {
  align-self: start;
  margin-top: 18px;
}

.hero-stamp span:last-child {
  align-self: end;
  margin-bottom: 18px;
}

.hero-project-label {
  z-index: 8;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px 28px;
  color: var(--white);
  border-top: 1px solid var(--line-light);
  background: rgba(3, 44, 62, 0.74);
  backdrop-filter: blur(12px);
}

.hero-project-label span,
.hero-project-label strong {
  display: block;
}

.hero-project-label span {
  margin-bottom: 5px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-project-label strong {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.corner {
  z-index: 9;
  position: absolute;
  width: 38px;
  height: 38px;
  border-color: var(--cream);
  pointer-events: none;
}

.corner-a {
  top: 16px;
  left: 16px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.corner-b {
  right: 16px;
  bottom: 98px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.ticker {
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.ticker-track {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: center;
  min-height: 68px;
  gap: clamp(20px, 3vw, 54px);
  padding: 0 24px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticker-track [aria-hidden="true"] {
  display: none;
}

.ticker-track b {
  color: var(--navy);
  font-size: 0.55rem;
}

.proof-band {
  background: var(--navy);
  color: var(--white);
}

.proof-band > .section-kicker {
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.68);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1450px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.proof-grid article {
  min-height: 260px;
  padding: 36px clamp(22px, 3vw, 44px);
  border-right: 1px solid var(--line-light);
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid var(--line-light);
  font-size: 0.72rem;
  font-weight: 800;
}

.proof-grid h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  font-weight: 600;
}

.proof-grid p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.projects {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  max-width: 1450px;
  margin: 0 auto clamp(50px, 7vw, 88px);
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  font-weight: 650;
}

.section-note {
  max-width: 390px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.project-section-note {
  max-width: 560px;
  margin-top: 25px;
  font-size: 0.95rem;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  padding-bottom: 6px;
}

.project-filters button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-filters button:hover,
.project-filters button.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  max-width: 1450px;
  margin: 0 auto;
}

.project-card {
  grid-column: span 6;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(3, 44, 62, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.project-card.project-featured {
  grid-column: 1 / -1;
}

.project-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
  color: var(--navy);
  text-align: left;
}

.project-featured .project-image {
  aspect-ratio: 2.15 / 1;
}

.project-image img {
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.project-card:hover .project-image img {
  transform: scale(1.025);
}

.project-preview-trigger:focus-visible {
  outline: 4px solid var(--navy);
  outline-offset: -4px;
}

.project-number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
}

.project-preview-label,
.project-open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(5, 61, 87, 0.25);
}

.project-preview-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-open {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

.project-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  min-height: 134px;
  padding: 25px 27px 27px;
}

.project-meta p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  font-weight: 650;
}

.project-meta > span {
  max-width: 190px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
}

.services {
  background: var(--navy);
  color: var(--white);
}

.section-heading.light h2,
.section-heading.light .section-kicker {
  color: var(--white);
}

.section-heading.light .section-note {
  color: rgba(255, 255, 255, 0.65);
}

.services-list {
  max-width: 1450px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
}

.services-list article {
  display: grid;
  grid-template-columns: 62px minmax(260px, 1.25fr) minmax(220px, 0.8fr) 42px;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  min-height: 210px;
  padding: 30px 8px;
  border-bottom: 1px solid var(--line-light);
  transition: background-color 200ms ease, padding 200ms ease;
}

.services-list article:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.service-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-light);
  font-size: 0.7rem;
  font-weight: 800;
}

.services-list h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 560;
}

.services-list p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-list li {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line-light);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-arrow {
  font-size: 1.3rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  gap: clamp(54px, 8vw, 126px);
  align-items: center;
  background: var(--white);
}

.about-media {
  position: relative;
  min-height: clamp(560px, 60vw, 820px);
  overflow: hidden;
  background: var(--mist);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(3, 44, 62, 0.62));
}

.about-media img {
  object-fit: cover;
}

.about-media-tag {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  padding: 23px 28px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(3, 44, 62, 0.78);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about-copy {
  max-width: 680px;
  padding-right: clamp(0px, 3vw, 52px);
}

.about-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 5.7vw, 6.4rem);
  font-weight: 650;
}

.about-lead {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.45;
}

.about-copy > p:not(.section-kicker):not(.about-lead) {
  color: var(--ink-soft);
  line-height: 1.75;
}

.about-points {
  display: grid;
  gap: 0;
  margin: 32px 0 34px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.about-points li {
  position: relative;
  padding: 15px 0 15px 25px;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
}

.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 900;
}

.process {
  background: var(--cream);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1450px;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.process-list li > span {
  display: block;
  margin-bottom: 86px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.3vw, 2.6rem);
  font-weight: 650;
}

.process-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.manifesto {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.manifesto > img {
  object-fit: cover;
}

.manifesto-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 44, 62, 0.95), rgba(3, 44, 62, 0.48)),
    linear-gradient(180deg, transparent, rgba(3, 44, 62, 0.52));
}

.manifesto-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 1450px);
  padding: 0 clamp(24px, 6vw, 96px);
}

.manifesto-copy .section-kicker {
  color: rgba(255, 255, 255, 0.66);
}

.manifesto blockquote {
  max-width: 1050px;
  margin: 0 0 44px;
  font-size: clamp(3rem, 6.8vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.button-light {
  color: var(--navy);
  border-color: var(--cream);
  background: var(--cream);
}

.button-light:hover {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(60px, 9vw, 150px);
  background: var(--navy);
  color: var(--white);
}

.contact-intro {
  align-self: start;
  padding-top: 10px;
}

.contact-intro .section-kicker {
  color: rgba(255, 255, 255, 0.66);
}

.contact-intro h2 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 7rem);
  font-weight: 650;
}

.contact-intro p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-intro > a {
  display: inline-flex;
  gap: 12px;
  margin-top: 22px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 54px);
  color: var(--navy);
  background: var(--cream);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.contact-form label > span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(5, 61, 87, 0.28);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--navy);
  padding: 13px 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(5, 61, 87, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 1px 0 var(--navy);
}

.form-submit {
  justify-self: start;
  margin-top: 10px;
}

.form-note {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.footer {
  padding: 54px clamp(24px, 6vw, 96px) 26px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: 1450px;
  margin: 0 auto;
  padding-bottom: 44px;
}

.footer-brand {
  display: block;
  width: 84px;
  height: 84px;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-main > p {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.footer-links {
  display: flex;
  gap: 26px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1450px;
  margin: 0 auto;
  padding-top: 22px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-preview-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: var(--cream);
}

.project-preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.project-preview-toolbar > div {
  min-width: 0;
}

.project-preview-toolbar span,
.project-preview-toolbar strong {
  display: block;
}

.project-preview-toolbar > div > span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-preview-toolbar strong {
  overflow: hidden;
  font-size: clamp(0.92rem, 1.5vw, 1.25rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-preview-toolbar button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 15px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-preview-toolbar button:hover,
.project-preview-toolbar button:focus-visible {
  color: var(--navy);
  background: var(--white);
}

.project-preview-toolbar button span {
  font-size: 1.2rem;
}

.project-preview-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-copy {
    min-height: 720px;
  }

  .hero-visual {
    min-height: 680px;
    margin: 0 clamp(24px, 6vw, 70px) clamp(52px, 7vw, 82px);
  }

  .about {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .services-list article {
    grid-template-columns: 52px minmax(0, 1fr) minmax(180px, 0.65fr) 32px;
    gap: 24px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-intro {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  .section-pad {
    padding: 72px 20px;
  }

  .site-header {
    min-height: 70px;
    padding: 9px 18px;
  }

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

  .brand-name {
    font-size: 0.92rem;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 69px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--navy);
    box-shadow: 0 16px 40px rgba(3, 44, 62, 0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a:not(.nav-cta) {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 14px;
  }

  .hero {
    min-height: 0;
    background-size: 32px 32px;
  }

  .hero-copy {
    min-height: auto;
    padding: 78px 20px 60px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.4rem);
  }

  .hero-intro {
    margin-top: 26px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }

  .hero-cta {
    font-size: clamp(0.64rem, 3.2vw, 0.76rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 42px;
    border-bottom: 0;
  }

  .hero-metrics div,
  .hero-metrics div + div {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics strong {
    margin: 0;
  }

  .hero-foot {
    margin-top: 28px;
  }

  .hero-visual {
    min-height: 520px;
    margin: 0 20px 54px;
  }

  .design-window {
    top: 15%;
    left: 9%;
    width: 83%;
    min-width: 0;
  }

  .design-window-bar {
    min-height: 38px;
    padding: 0 12px;
  }

  .window-brand {
    font-size: 0.5rem;
  }

  .design-window-nav {
    min-height: 32px;
    gap: 8px;
    padding: 0 10px;
  }

  .design-window-nav span {
    display: none;
  }

  .design-window-nav b {
    margin-left: auto;
    font-size: 0.42rem;
  }

  .design-window-body {
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 220px;
  }

  .window-message {
    padding: 22px 16px;
  }

  .window-message small {
    font-size: 0.4rem;
  }

  .window-message strong {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .window-message em {
    font-size: 0.42rem;
  }

  .dimension-side {
    display: none;
  }

  .design-window-stats span {
    padding: 8px 6px;
    font-size: 0.38rem;
  }

  .design-window-stats b {
    display: block;
    font-size: 0.58rem;
  }

  .mobile-window {
    bottom: 12%;
    left: 3%;
    width: 120px;
    min-height: 238px;
    padding: 27px 12px 12px;
    border-width: 4px;
    border-radius: 17px;
  }

  .mobile-window > strong {
    margin: 9px 0 13px;
    font-size: 0.88rem;
  }

  .mobile-beam {
    height: 44px;
    margin: 0 -12px 13px;
  }

  .mobile-beam > span {
    top: 18px;
  }

  .system-card {
    top: 7%;
    right: 3%;
    min-width: 164px;
    padding: 10px 11px;
  }

  .system-card strong {
    font-size: 0.61rem;
  }

  .hero-stamp {
    top: 12px;
    left: 12px;
    width: 82px;
    height: 82px;
    font-size: 0.5rem;
  }

  .hero-stamp span:first-child {
    margin-top: 14px;
  }

  .hero-stamp span:last-child {
    margin-bottom: 14px;
  }

  .hero-stamp strong {
    font-size: 1.7rem;
  }

  .beam-detail {
    display: none;
  }

  .hero-project-label {
    padding: 18px 16px;
  }

  .beam-back {
    top: 20%;
    width: 94%;
  }

  .beam-side {
    right: -34%;
    width: 92%;
  }

  .ticker-track {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .ticker-track span {
    display: grid;
    min-height: 54px;
    place-items: center;
    padding: 10px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .ticker-track b {
    display: none;
  }

  .proof-band > .section-kicker {
    margin-bottom: 30px;
  }

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

  .proof-grid article {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .proof-grid article > span {
    margin-bottom: 30px;
  }

  .section-heading {
    display: block;
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .project-section-note {
    margin-top: 20px;
  }

  .project-filters {
    justify-content: flex-start;
    margin-top: 30px;
  }

  .project-grid {
    display: block;
  }

  .project-card {
    margin-bottom: 28px;
  }

  .project-featured .project-image,
  .project-image {
    aspect-ratio: 16 / 10;
  }

  .project-preview-label {
    right: 12px;
    bottom: 12px;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.6rem;
  }

  .project-number {
    top: 12px;
    left: 12px;
  }

  .project-meta {
    display: block;
    min-height: 0;
    padding: 22px;
  }

  .project-meta > span {
    display: block;
    max-width: none;
    margin-top: 12px;
    text-align: left;
  }

  .services-list article {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .services-list article:hover {
    padding: 28px 0;
  }

  .services-list article > div {
    grid-column: 2;
  }

  .services-list ul {
    grid-column: 2;
  }

  .service-arrow {
    display: none;
  }

  .services-list h3 {
    font-size: 2.35rem;
  }

  .about {
    display: block;
  }

  .about-media {
    min-height: 510px;
  }

  .about-copy {
    padding: 66px 20px 72px;
  }

  .about-copy h2 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 250px;
  }

  .process-list li > span {
    margin-bottom: 54px;
  }

  .manifesto {
    min-height: 610px;
    padding: 0;
  }

  .manifesto-copy {
    padding: 0 20px;
  }

  .manifesto blockquote {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .contact {
    gap: 48px;
  }

  .contact-intro h2 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .contact-form {
    padding: 26px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 42px 20px 24px;
  }

  .footer-main {
    grid-template-columns: auto 1fr;
    gap: 24px;
  }

  .footer-main > p {
    font-size: 1.5rem;
  }

  .footer-links {
    grid-column: 1 / -1;
    flex-wrap: wrap;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
  }

  .project-preview-toolbar {
    min-height: 68px;
    padding: 9px 12px;
  }

  .project-preview-toolbar > div > span {
    display: none;
  }

  .project-preview-toolbar button {
    min-height: 40px;
    padding: 0 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* Static HTML export helpers */
[hidden] {
  display: none !important;
}

.project-card.is-filtered-in {
  animation: static-card-in 360ms ease both;
}

@keyframes static-card-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
