@font-face {
  font-family: "Inter";
  src: url("assets/fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/InterVariable-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --black: #020303;
  --white: #f7f8f8;
  --soft-white: #d8dcdc;
  --muted: #909899;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .18);
  --glass: rgba(15, 17, 18, .56);
  --glass-strong: rgba(16, 19, 20, .76);
  --accent: #a5f4f2;
  --accent-rgb: 165, 244, 242;
  --violet: #a6a0ff;
  --radius-lg: 2rem;
  --radius-md: 1.35rem;
  --content: min(1280px, calc(100% - 3rem));
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: #031011;
  background: var(--accent);
}

.ambient {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 12%, rgba(90, 110, 118, .12), transparent 32%),
    radial-gradient(circle at 12% 76%, rgba(48, 64, 68, .1), transparent 38%),
    #020303;
}

#fluid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .92;
  transform: translateZ(0);
}

#heart-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .72;
  mix-blend-mode: screen;
  z-index: 1;
  transform: translateZ(0);
}

.ambient-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 3, 3, .08), transparent 24%, rgba(2, 3, 3, .22)),
    radial-gradient(circle at var(--mouse-x, 68%) var(--mouse-y, 30%), transparent 0 7%, rgba(2, 3, 3, .05) 27%, transparent 48%);
}

.cursor-glow {
  position: absolute;
  width: 34rem;
  aspect-ratio: 1;
  left: var(--mouse-x, 68vw);
  top: var(--mouse-y, 28vh);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 255, 255, .075), rgba(var(--accent-rgb), .025) 32%, transparent 68%);
  mix-blend-mode: screen;
  will-change: transform;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.glass {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .018) 45%),
    var(--glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .09),
    0 30px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(28px) saturate(135%);
  -webkit-backdrop-filter: blur(28px) saturate(135%);
}

.page-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}

.page-progress i {
  display: block;
  width: var(--scroll-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #fff);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), .6);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 1rem;
  left: 50%;
  width: var(--content);
  transform: translateX(-50%);
}

.nav-shell {
  height: 4.15rem;
  padding: 0 .8rem 0 .9rem;
  border-radius: 1.35rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.15rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #050707;
  background: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: -.04em;
  transition: transform .35s ease, background .35s ease;
}

.brand:hover .brand-mark {
  transform: rotate(8deg);
  background: var(--accent);
}

.brand-name {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .28rem;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 3rem;
  background: rgba(0, 0, 0, .18);
}

.desktop-nav a {
  padding: .58rem .88rem;
  border-radius: 2rem;
  color: var(--muted);
  font-size: .69rem;
  font-weight: 500;
  transition: color .25s ease, background .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, .075);
}

.nav-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 2.65rem;
  padding: 0 1rem;
  border-radius: 2rem;
  color: #071011;
  background: var(--white);
  font-size: .7rem;
  font-weight: 650;
  transition: transform .25s ease, background .25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--accent);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

main,
.footer {
  position: relative;
  z-index: 2;
}

.section {
  width: var(--content);
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  padding: 10rem 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: clip;
}

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

.status-pill {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: max-content;
  margin-bottom: 2.4rem;
  padding: .62rem .85rem;
  border-radius: 2rem;
  color: var(--soft-white);
  font-size: .68rem;
}

.status-pill i {
  width: .48rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #8bffbd;
  box-shadow: 0 0 15px rgba(139, 255, 189, .8);
  animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
  50% { opacity: .35; }
}

.hero-title {
  max-width: min(100%, 78rem);
  margin: 0;
  padding: .06em .03em .1em 0;
  font-size: clamp(4.2rem, 8vw, 7.8rem);
  line-height: .95;
  letter-spacing: -.062em;
  font-weight: 580;
  overflow: visible;
}

.hero-title > span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(100deg, #fff 5%, #aeb7b8 50%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lower {
  max-width: 770px;
  margin: 3rem 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: end;
}

.hero-lower > p {
  margin: 0;
  color: #b7bdbd;
  font-size: clamp(.9rem, 1.15vw, 1.08rem);
  line-height: 1.7;
  letter-spacing: -.012em;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: .65rem;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  min-height: 3.15rem;
  padding: 0 1.15rem;
  border: 0;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  font-family: inherit;
  font-size: .72rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #071011;
  background: var(--white);
}

.button-primary:hover {
  background: var(--accent);
}

.button-secondary {
  color: var(--soft-white);
}

.hero-proof {
  position: relative;
  z-index: 2;
  margin-top: auto;
  min-height: 6.2rem;
  padding: .8rem;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.35fr;
}

.hero-proof > div {
  min-width: 0;
  padding: .7rem 1.1rem;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: end;
  gap: .8rem;
}

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

.hero-proof strong {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: .8;
  letter-spacing: -.06em;
  font-weight: 420;
}

.hero-proof > div > span {
  color: var(--muted);
  font-size: .6rem;
  line-height: 1.4;
}

.live-readout {
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: .15rem 1rem !important;
}

.live-readout > small {
  color: var(--muted);
  font-size: .55rem;
}

.live-readout b {
  font-size: .85rem;
  font-weight: 520;
}

.live-readout i {
  grid-row: 1 / 3;
  grid-column: 2;
  height: 1.1rem;
  display: flex;
  align-items: end;
  gap: 3px;
}

.live-readout em {
  width: 2px;
  height: 45%;
  background: var(--accent);
  animation: signal 1s ease-in-out infinite alternate;
}

.live-readout em:nth-child(2) { height: 100%; animation-delay: -.3s; }
.live-readout em:nth-child(3) { height: 65%; animation-delay: -.7s; }
.live-readout em:nth-child(4) { height: 85%; animation-delay: -.5s; }

@keyframes signal {
  to { height: 20%; opacity: .35; }
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 34rem;
  aspect-ratio: 1;
  right: -10rem;
  top: 14%;
  animation: orbit 30s linear infinite;
}

.orbit-two {
  width: 14rem;
  aspect-ratio: 1;
  right: 4rem;
  top: 27%;
  border-style: dashed;
  animation: orbit 19s linear infinite reverse;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.statement {
  min-height: 82vh;
  padding: 10rem 0;
  display: grid;
  grid-template-columns: .25fr 1.5fr .55fr;
  gap: 4rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

.section-label {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.section-label > span {
  display: grid;
  place-items: center;
  width: 1.75rem;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  font-size: .54rem;
}

.section-label > p {
  margin: 0;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 520;
}

.statement-copy p {
  max-width: 940px;
  margin: -.8rem 0 0;
  font-size: clamp(3rem, 6.5vw, 6.7rem);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 470;
}

.statement-aside {
  padding-top: .5rem;
}

.statement-aside > p {
  margin: 0;
  color: #a9b0b0;
  font-size: .82rem;
  line-height: 1.7;
}

.focus-list {
  margin-top: 2.3rem;
  display: grid;
}

.focus-list > span {
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft-white);
  font-size: .7rem;
}

.work,
.capabilities,
.timeline {
  padding: 9rem 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: .4fr 1.25fr .55fr;
  gap: 3rem;
  align-items: end;
}

.section-heading.compact {
  grid-template-columns: .4fr 1.8fr;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6rem);
  line-height: .93;
  letter-spacing: -.065em;
  font-weight: 510;
}

.section-heading h2 span {
  color: var(--muted);
}

.section-heading > p {
  margin: 0 0 .35rem;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.65;
}

.case-study {
  --glass-x: 50%;
  --glass-y: 35%;
  --glass-shift-x: 0px;
  --glass-shift-y: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 16, .42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 14px 32px rgba(0, 0, 0, .13);
  contain: layout paint style;
  content-visibility: auto;
  contain-intrinsic-size: 44rem;
}

.case-study::before,
.bento-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .075), transparent 33%, rgba(var(--accent-rgb), .045) 68%, rgba(255, 255, 255, .025)),
    rgba(10, 14, 15, .22);
  backdrop-filter: blur(7px) saturate(135%);
  -webkit-backdrop-filter: blur(7px) saturate(135%);
  transform: translate(var(--glass-shift-x), var(--glass-shift-y)) scale(1.018);
  transition: transform .22s ease-out, background .3s ease;
}

.case-study::after,
.bento-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(225, 255, 253, .13);
  background:
    radial-gradient(
      circle at var(--glass-x) var(--glass-y),
      rgba(255, 255, 255, .22) 0,
      rgba(var(--accent-rgb), .08) 11%,
      transparent 28%
    ),
    linear-gradient(145deg, rgba(255, 255, 255, .2), transparent 18% 76%, rgba(var(--accent-rgb), .14));
  background-blend-mode: screen;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    inset 1px 0 0 rgba(143, 231, 238, .05),
    inset 0 -1px 0 rgba(151, 130, 255, .08);
  opacity: .58;
  transition: opacity .25s ease;
}

.case-study > *,
.bento-card > * {
  position: relative;
  z-index: 1;
}

.case-study:hover::after,
.bento-card:hover::after {
  opacity: 1;
}

.case-feature {
  min-height: 43rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
}

.ml-feature {
  margin-bottom: 1.2rem;
}

.case-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 48%, rgba(var(--accent-rgb), .13), transparent 28%),
    rgba(0, 0, 0, .28);
}

.vibration-system {
  background:
    radial-gradient(circle at 37% 43%, rgba(var(--accent-rgb), .14), transparent 30%),
    linear-gradient(155deg, rgba(166, 160, 255, .055), transparent 48%),
    rgba(0, 0, 0, .28);
}

.signal-axis {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48%;
  height: 1px;
  background: rgba(255, 255, 255, .12);
}

.vibration-wave {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 27%;
  height: 42%;
  opacity: .9;
  background-repeat: repeat-x;
  background-size: 20rem 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.wave-raw {
  background-image: url("data:image/svg+xml,%3Csvg width='320' height='180' viewBox='0 0 320 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 91 C8 80 13 105 20 89 S31 69 39 93 S50 117 58 88 S69 56 78 94 S88 127 98 87 S110 51 120 96 S132 126 142 84 S154 51 165 98 S177 123 188 82 S201 55 211 99 S224 117 235 84 S249 64 260 97 S275 108 287 87 S305 73 320 91' fill='none' stroke='%23a5f4f2' stroke-opacity='.82'/%3E%3C/svg%3E");
  animation: vibration-drift 9s linear infinite;
  filter: drop-shadow(0 0 7px rgba(var(--accent-rgb), .36));
}

.wave-filtered {
  top: 35%;
  height: 26%;
  opacity: .32;
  background-image: url("data:image/svg+xml,%3Csvg width='320' height='120' viewBox='0 0 320 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 C20 22 40 98 60 60 S100 22 120 60 S160 98 180 60 S220 22 240 60 S280 98 320 60' fill='none' stroke='%23a6a0ff'/%3E%3C/svg%3E");
  animation: vibration-drift 13s linear infinite reverse;
}

@keyframes vibration-drift {
  to { background-position-x: 20rem; }
}

.frequency-marker {
  position: absolute;
  bottom: 18%;
  display: grid;
  justify-items: center;
  gap: .45rem;
  color: #778081;
  font-size: .5rem;
}

.frequency-marker i {
  width: 1px;
  height: 2.8rem;
  background: linear-gradient(transparent, rgba(var(--accent-rgb), .55));
}

.frequency-50 { left: 20%; }
.frequency-100 { left: 37%; }
.frequency-200 { left: 68%; }

.model-path {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 7%;
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #7c8585;
  font-size: .5rem;
}

.model-path i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), .12), rgba(var(--accent-rgb), .5));
}

.classification-readout {
  position: absolute;
  right: 7%;
  top: 16%;
  width: 10.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background: rgba(5, 10, 11, .72);
  backdrop-filter: blur(14px);
}

.classification-readout > small,
.classification-readout > span {
  display: block;
  color: #727b7c;
  font-size: .48rem;
}

.classification-readout > strong {
  display: block;
  margin: .55rem 0 .35rem;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.verification-strip {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.verification-strip > div {
  display: grid;
  gap: .25rem;
}

.verification-strip > div + div {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.verification-strip strong {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -.04em;
}

.verification-strip span,
.validation-note {
  color: var(--muted);
  font-size: .52rem;
  line-height: 1.45;
}

.case-actions {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.case-link {
  padding-bottom: .25rem;
  border-bottom: 1px solid rgba(var(--accent-rgb), .45);
  color: var(--accent);
  font-size: .62rem;
  font-weight: 600;
}

.case-link:hover {
  border-color: var(--accent);
}

.visual-grid {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.system-ring {
  position: absolute;
  border: 1px solid rgba(var(--accent-rgb), .2);
  border-radius: 50%;
}

.ring-a {
  inset: 15%;
  animation: orbit 32s linear infinite;
}

.ring-b {
  inset: 26%;
  border-style: dashed;
  animation: orbit 23s linear infinite reverse;
}

.system-ring::after {
  content: "";
  position: absolute;
  width: .4rem;
  aspect-ratio: 1;
  top: 9%;
  left: 24%;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), .8);
}

.system-hand {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 15rem;
  height: 22rem;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.palm,
.finger {
  position: absolute;
  border: 1px solid rgba(213, 252, 252, .5);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .2), rgba(6, 12, 13, .5));
  box-shadow: inset 0 0 30px rgba(var(--accent-rgb), .08);
}

.palm {
  left: 26%;
  bottom: 3%;
  width: 52%;
  height: 48%;
  border-radius: 42% 42% 34% 34%;
}

.finger {
  width: 15%;
  bottom: 47%;
  border-radius: 3rem;
  transform-origin: bottom;
}

.f1 { left: 8%; height: 41%; transform: rotate(-25deg); }
.f2 { left: 25%; height: 53%; transform: rotate(-8deg); }
.f3 { left: 42%; height: 63%; }
.f4 { left: 59%; height: 57%; transform: rotate(7deg); }
.f5 { left: 75%; height: 45%; transform: rotate(16deg); }

.sensor-path {
  position: absolute;
  width: 12rem;
  height: 5rem;
  border-top: 1px solid rgba(var(--accent-rgb), .25);
  border-radius: 50%;
}

.sensor-path i {
  position: absolute;
  width: .38rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent);
  animation: path-node 4s ease-in-out infinite;
}

.path-one { left: 8%; top: 30%; transform: rotate(16deg); }
.path-two { right: 8%; bottom: 23%; transform: rotate(196deg); }

@keyframes path-node {
  0%, 100% { left: 5%; top: -.2rem; }
  50% { left: 90%; top: .6rem; }
}

.visual-meta {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  top: 1.3rem;
  display: flex;
  justify-content: space-between;
  color: #697273;
  font-size: .56rem;
  font-weight: 520;
}

.case-copy {
  padding: clamp(2.2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-kicker {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .6rem;
}

.case-copy h3 {
  margin: 2.5rem 0 1.5rem;
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 500;
}

.case-copy > p,
.small-copy > p {
  margin: 0;
  color: #aeb5b5;
  font-size: .79rem;
  line-height: 1.7;
}

.case-points {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.case-points li {
  position: relative;
  padding: .72rem 0 .72rem 1.15rem;
  border-bottom: 1px solid var(--line);
  color: var(--soft-white);
  font-size: .68rem;
}

.case-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: .32rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
}

.project-details {
  margin: 1.65rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.project-details > div {
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: .85rem;
  background: rgba(255, 255, 255, .025);
}

.project-details dt {
  margin: 0 0 .45rem;
  color: var(--accent);
  font-size: .52rem;
  font-weight: 620;
}

.project-details dd {
  margin: 0;
  color: #98a1a1;
  font-size: .59rem;
  line-height: 1.55;
}

.tag-row {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.tag-row > span {
  padding: .48rem .65rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  color: #9ba3a3;
  font-size: .55rem;
  font-weight: 520;
}

.award-note {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--soft-white);
  font-size: .65rem;
  line-height: 1.45;
}

.award-note i {
  display: grid;
  place-items: center;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #071011;
  background: var(--accent);
  font-style: normal;
}

.case-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.case-small {
  min-height: 36rem;
  display: grid;
  grid-template-rows: 1.15fr .85fr;
}

.small-visual {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), .1), transparent 36%),
    rgba(0, 0, 0, .24);
}

.small-copy {
  padding: 2rem;
}

.small-copy > span {
  color: var(--muted);
  font-size: .57rem;
}

.small-copy h3 {
  margin: 1.3rem 0 .9rem;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 510;
}

.mini-details {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .5rem;
}

.mini-details li {
  position: relative;
  padding-left: .9rem;
  color: #8f9899;
  font-size: .6rem;
  line-height: 1.45;
}

.mini-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: .28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .75);
}

.fpga-chip {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 6rem;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(45deg);
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), .45);
  background: rgba(3, 8, 9, .8);
  color: var(--accent);
  font-size: .65rem;
}

.fpga-chip::before,
.fpga-chip::after {
  content: "";
  position: absolute;
  width: 240%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), .2), transparent);
}

.fpga-chip::after {
  transform: rotate(90deg);
}

.fpga-state {
  position: absolute;
  color: #677071;
  font-size: .52rem;
}

.s0 { left: 20%; top: 25%; }
.s1 { right: 20%; top: 25%; }
.s2 { left: 24%; bottom: 25%; }
.s3 { right: 24%; bottom: 25%; }

.pwm-wave {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 2rem;
  display: flex;
  align-items: end;
  gap: 3px;
}

.pwm-wave i {
  flex: 1;
  height: 20%;
  background: rgba(var(--accent-rgb), .35);
}

.pwm-wave i:nth-child(2) { height: 40%; }
.pwm-wave i:nth-child(3) { height: 60%; }
.pwm-wave i:nth-child(4) { height: 80%; }
.pwm-wave i:nth-child(5) { height: 100%; }

.register-code {
  position: absolute;
  inset: 0;
  max-width: 100%;
  padding: 2rem;
  display: grid;
  align-content: space-around;
  color: rgba(var(--accent-rgb), .07);
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 650;
  transform: rotate(-7deg) scale(1.15);
}

.mcu {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 8rem;
  height: 10rem;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), .4);
  border-radius: .65rem;
  color: var(--accent);
  background: rgba(7, 17, 18, .82);
  box-shadow: 0 0 40px rgba(var(--accent-rgb), .07);
  text-align: center;
  font-size: .68rem;
  line-height: 1.25;
}

.board-trace {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), .3));
}

.embedded-system .t1 { width: 25%; left: 8%; top: 32%; }
.embedded-system .t2 { width: 25%; right: 8%; top: 52%; transform: rotate(180deg); }
.embedded-system .t3 { width: 21%; left: 12%; bottom: 24%; }

/* ── cli-explainer visual ──────────────────────────────────────────────── */

.cli-explainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  gap: 1.1rem;
  background:
    radial-gradient(circle at 60% 40%, rgba(var(--accent-rgb), .07), transparent 55%),
    rgba(0, 0, 0, .28);
}

.cli-bar {
  display: flex;
  gap: .42rem;
}

.cli-bar i {
  display: block;
  width: .65rem;
  aspect-ratio: 1;
  border-radius: 50%;
}

.cli-bar i:first-child  { background: rgba(255, 95,  87,  .55); }
.cli-bar i:nth-child(2) { background: rgba(255, 189, 46,  .55); }
.cli-bar i:nth-child(3) { background: rgba(39,  201, 63,  .55); }

.cli-cmd-line {
  font-family: 'Courier New', monospace;
  font-size: .68rem;
  color: var(--soft-white);
  letter-spacing: .01em;
}

.cli-dollar {
  color: var(--accent);
}

.cli-detect-row {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.cli-detect-row span {
  padding: .15rem .5rem;
  border-radius: 2rem;
  border: 1px solid rgba(var(--accent-rgb), .3);
  color: var(--accent);
  font-size: .5rem;
  font-family: monospace;
  background: rgba(var(--accent-rgb), .07);
}

.cli-output-lines {
  display: flex;
  flex-direction: column;
  gap: .42rem;
}

.cli-output-lines span {
  font-size: .54rem;
  color: rgba(var(--accent-rgb), .6);
  font-family: 'Courier New', monospace;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}

.cli-output-lines span::before {
  content: "→";
  position: absolute;
  left: 0;
  color: rgba(var(--accent-rgb), .35);
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bento-card {
  --glass-x: 50%;
  --glass-y: 35%;
  --glass-shift-x: 0px;
  --glass-shift-y: 0px;
  min-height: 18rem;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: rgba(12, 16, 17, .38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .09),
    0 10px 26px rgba(0, 0, 0, .12);
  transition: transform .35s ease, border-color .35s ease;
  contain: layout paint style;
  content-visibility: auto;
  contain-intrinsic-size: 18rem;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), .28);
}

.bento-wide {
  grid-column: span 2;
}

.bento-index {
  color: #788080;
  font-size: .55rem;
}

.bento-card h3 {
  margin: 0 0 .7rem;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  letter-spacing: -.045em;
  font-weight: 510;
}

.bento-card p {
  max-width: 26rem;
  margin: 0;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.65;
}

.bento-signal {
  position: absolute;
  left: 45%;
  right: 2rem;
  top: 2rem;
  bottom: 2rem;
}

.bento-signal svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bento-signal path {
  fill: none;
  stroke: rgba(var(--accent-rgb), .55);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 7px rgba(var(--accent-rgb), .4));
  stroke-dasharray: 8 8;
  animation: dash 8s linear infinite;
}

@keyframes dash {
  to { stroke-dashoffset: -64; }
}

.bento-accent {
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), .1), rgba(166, 160, 255, .035)),
    rgba(12, 16, 17, .38);
}

.orb {
  position: absolute;
  width: 10rem;
  aspect-ratio: 1;
  right: -2rem;
  top: -2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, #fff, var(--accent) 10%, #645eff 42%, transparent 70%);
  opacity: .55;
  filter: blur(.5px);
  box-shadow: 0 0 50px rgba(99, 93, 255, .3);
}

/* ── bento 02: orbiting hardware rings ───────────────────────────────────── */
.bento-hw-art {
  position: absolute;
  right: -2rem;
  bottom: -2.5rem;
  width: 12rem;
  aspect-ratio: 1;
  pointer-events: none;
}

.hw-ring {
  position: absolute;
  border-radius: 50%;
}

.hw-ring.r1 {
  inset: 0;
  border: 1px solid rgba(var(--accent-rgb), .18);
  animation: orbit 30s linear infinite;
}

.hw-ring.r1::after {
  content: "";
  position: absolute;
  width: .42rem;
  aspect-ratio: 1;
  top: 8%;
  left: 22%;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), .85);
}

.hw-ring.r2 {
  inset: 22%;
  border: 1px dashed rgba(var(--accent-rgb), .24);
  animation: orbit 20s linear infinite reverse;
}

.hw-ring.r2::after {
  content: "";
  position: absolute;
  width: .28rem;
  aspect-ratio: 1;
  bottom: 8%;
  right: 12%;
  border-radius: 50%;
  background: rgba(166, 160, 255, .85);
  box-shadow: 0 0 10px rgba(166, 160, 255, .6);
}

/* ── bento 03: ghosted code keyword cloud ────────────────────────────────── */
.bento-code-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bento-code-art span {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  user-select: none;
  line-height: 1;
}

.bento-code-art span:nth-child(1) {
  font-size: 4.8rem;
  color: rgba(var(--accent-rgb), .09);
  right: -.5rem;
  top: .8rem;
  transform: rotate(-10deg);
}

.bento-code-art span:nth-child(2) {
  font-size: 1.9rem;
  color: rgba(166, 160, 255, .1);
  right: 1.8rem;
  top: 52%;
  transform: rotate(5deg);
}

.bento-code-art span:nth-child(3) {
  font-size: 2.8rem;
  color: rgba(var(--accent-rgb), .08);
  right: -.2rem;
  bottom: 1.2rem;
  transform: rotate(-5deg);
}

.bento-code-art span:nth-child(4) {
  font-size: 2.2rem;
  color: rgba(var(--accent-rgb), .055);
  right: 3.8rem;
  top: 2rem;
  transform: rotate(4deg);
}

/* ── bento 04: FSM state nodes ───────────────────────────────────────────── */
.bento-fsm-art {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 7.5rem;
  height: 7rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.bento-fsm-art i {
  position: absolute;
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), .26);
  background: rgba(var(--accent-rgb), .04);
}

.bento-fsm-art i::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .1);
}

.bento-fsm-art .sn1 {
  left: 0;
  top: 0;
  animation: fsm-pulse 3.4s ease-in-out infinite;
}

.bento-fsm-art .sn2 {
  right: 0;
  top: 0;
  animation: fsm-pulse 3.4s ease-in-out .9s infinite;
}

.bento-fsm-art .sn3 {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  animation: fsm-pulse 3.4s ease-in-out 1.8s infinite;
}

@keyframes fsm-pulse {
  0%, 100% {
    border-color: rgba(var(--accent-rgb), .26);
    box-shadow: none;
  }
  50% {
    border-color: rgba(var(--accent-rgb), .6);
    box-shadow: 0 0 18px rgba(var(--accent-rgb), .2);
  }
}

.timeline .section-label {
  margin-bottom: 4rem;
}

.timeline-list {
  border-top: 1px solid var(--line);
}

.timeline-row {
  min-height: 13rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: .3fr .85fr .85fr;
  gap: 3rem;
  align-items: start;
}

.timeline-row > time {
  color: var(--accent);
  font-size: .67rem;
  font-weight: 550;
}

.timeline-row > div > small {
  color: var(--muted);
  font-size: .56rem;
}

.timeline-row h3 {
  max-width: 28rem;
  margin: .7rem 0 0;
  font-size: clamp(1.5rem, 2.8vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 500;
}

.timeline-row > p {
  max-width: 29rem;
  margin: 0;
  color: #a7aeae;
  font-size: .77rem;
  line-height: 1.7;
}

.contact {
  min-height: 92vh;
  padding: 8rem 0 2rem;
  display: flex;
  align-items: center;
}

.contact-card {
  width: 100%;
  min-height: 37rem;
  padding: clamp(2rem, 7vw, 6.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 35rem;
  aspect-ratio: 1;
  left: 50%;
  bottom: -25rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .14);
  filter: blur(80px);
}

.contact-label {
  position: relative;
  color: var(--accent);
  font-size: .62rem;
  font-weight: 550;
}

.contact-card h2 {
  position: relative;
  margin: 2rem 0;
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 520;
}

.contact-card > p {
  position: relative;
  max-width: 38rem;
  margin: 0;
  color: #abb2b2;
  font-size: .82rem;
  line-height: 1.7;
}

.contact-actions {
  position: relative;
  margin-top: 2.5rem;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .22s ease;
}

.contact-modal[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--accent-rgb), .12), transparent 22rem),
    rgba(2, 5, 6, .76);
  backdrop-filter: blur(18px);
}

.contact-modal__panel {
  position: relative;
  width: min(100%, 36rem);
  max-height: min(44rem, calc(100vh - 2.5rem));
  overflow: auto;
  padding: clamp(1.35rem, 4vw, 2rem);
  border-radius: var(--radius-md);
  transform: translateY(0) scale(1);
  transition: transform .22s ease;
}

.contact-modal[aria-hidden="true"] .contact-modal__panel {
  transform: translateY(14px) scale(.98);
}

.contact-modal__close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 2.25rem;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--soft-white);
  background: rgba(255, 255, 255, .045);
  font: inherit;
  cursor: pointer;
}

.contact-modal__label {
  color: var(--accent);
  font-size: .62rem;
  font-weight: 550;
}

.contact-modal h2 {
  margin: 1.2rem 2.5rem .8rem 0;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 520;
}

.contact-modal p {
  max-width: 28rem;
  margin: 0 0 1.5rem;
  color: #aab3b3;
  font-size: .78rem;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: .85rem;
}

.contact-form label {
  display: grid;
  gap: .38rem;
}

.contact-form label span {
  color: #c4cccc;
  font-size: .62rem;
  font-weight: 560;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: .85rem;
  padding: .9rem .95rem;
  color: var(--soft-white);
  background: rgba(0, 0, 0, .24);
  font: inherit;
  font-size: .8rem;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(var(--accent-rgb), .72);
  background: rgba(0, 0, 0, .34);
}

.contact-form input[name="_honey"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form .button {
  margin-top: .35rem;
  justify-self: start;
}

body.modal-open {
  overflow: hidden;
}

.footer {
  width: var(--content);
  margin: 0 auto;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #707979;
  font-size: .58rem;
}

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

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

@media (max-width: 1000px) {
  :root {
    --content: min(100% - 2rem, 1280px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

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

  .menu-toggle {
    justify-self: end;
    width: 2.55rem;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .035);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .menu-toggle i {
    width: 1.1rem;
    height: 1px;
    background: var(--white);
    transition: transform .3s ease;
  }

  .menu-toggle[aria-expanded="true"] i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-nav {
    margin-top: .55rem;
    padding: .7rem;
    border-radius: 1.2rem;
    display: grid;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }

  .mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .mobile-nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    color: var(--soft-white);
    font-size: .75rem;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .statement-copy p {
    max-width: 850px;
  }

  .statement-aside {
    max-width: 33rem;
    margin-left: auto;
  }

  .section-heading,
  .section-heading.compact {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .section-heading > p {
    max-width: 32rem;
  }

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

  .case-visual {
    min-height: 35rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .timeline-row > p {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --content: calc(100% - 1.25rem);
    --radius-lg: 1.4rem;
  }

  .site-header {
    top: .65rem;
  }

  .nav-shell {
    height: 3.9rem;
    border-radius: 1.15rem;
  }

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

  .hero {
    min-height: 100svh;
    padding: 8rem 0 1rem;
  }

  .status-pill {
    margin-bottom: 2rem;
    font-size: .58rem;
  }

  .hero-title {
    padding-right: 0;
    font-size: clamp(3.25rem, 14.5vw, 4.6rem);
    line-height: .97;
    letter-spacing: -.055em;
  }

  .hero-lower {
    margin-top: 2.3rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-lower > p {
    max-width: 27rem;
    font-size: .83rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    flex: 1;
    min-width: 0;
    font-size: .65rem;
  }

  .hero-proof {
    margin-top: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof > div {
    min-height: 5rem;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof > div:nth-child(2) {
    border-right: 0;
  }

  .hero-proof > div:nth-child(3),
  .hero-proof > div:nth-child(4) {
    border-bottom: 0;
  }

  .hero-proof strong {
    font-size: 1.8rem;
  }

  .hero-proof > div > span {
    font-size: .5rem;
  }

  .live-readout {
    display: none !important;
  }

  .statement,
  .work,
  .capabilities,
  .timeline {
    padding: 6rem 0;
  }

  .statement {
    min-height: auto;
  }

  .statement-copy p {
    font-size: 12.7vw;
  }

  .section-heading {
    margin-bottom: 2.7rem;
  }

  .section-heading h2 {
    font-size: 12.5vw;
  }

  .case-visual {
    min-height: 29rem;
  }

  .system-hand {
    width: 11rem;
    height: 17rem;
  }

  .case-copy {
    padding: 1.5rem;
  }

  .project-details,
  .verification-strip {
    grid-template-columns: 1fr;
  }

  .verification-strip > div + div {
    padding-left: 0;
    padding-top: .8rem;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .classification-readout {
    right: 5%;
    top: 17%;
    width: 9.5rem;
  }

  .case-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-copy h3 {
    font-size: 11vw;
  }

  .case-grid,
  .bento {
    grid-template-columns: 1fr;
  }

  .case-small {
    min-height: 35rem;
  }

  .bento-wide {
    grid-column: auto;
  }

  .bento-signal {
    opacity: .36;
    left: 20%;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .timeline-row > p {
    grid-column: auto;
  }

  .contact {
    min-height: 80vh;
    padding-top: 4rem;
  }

  .contact-card {
    min-height: 33rem;
    padding: 2rem 1.2rem;
  }

  .contact-card h2 {
    font-size: 13vw;
  }

  .footer {
    flex-direction: column;
    gap: .9rem;
    text-align: center;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }
}

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .case-study::before,
  .bento-card::before {
    transform: none !important;
  }
}
