:root {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #171719;
  background: #fafbfd;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  --pink: #d366ac;
  --muted: #686870;
  --body: 18px;
  --title: clamp(42px, calc(5vw + 4px), 72px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  isolation: isolate;
  overflow-x: clip;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 250ms ease;
}
a:hover {
  color: var(--pink);
}
a:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 6px;
  border-radius: 4px;
}
::selection {
  background: #efc9e3;
}
.background,
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.background {
  z-index: -2;
  background:
    radial-gradient(ellipse at 20% 30%, #bfdbfe68, transparent 45%),
    radial-gradient(ellipse at 75% 25%, #e9d5ff68, transparent 45%),
    radial-gradient(ellipse at 65% 75%, #fecdd368, transparent 45%), #fafbfd;
}
.background canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.7452;
}
.background.is-ready {
  background: #fafbfd;
}
.grain {
  z-index: -1;
  opacity: 0.035;
  background: url("./grain.svg") repeat;
}
.navigation {
  max-width: 1280px;
  width: calc(100% - 80px);
  margin: auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.signature {
  font-weight: 750;
  font-size: 22px;
}
.signature span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 10px;
}
nav {
  display: flex;
  gap: 28px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 15px;
  z-index: 20;
  background: white;
  padding: 15px;
}
.skip:focus {
  top: 15px;
}
.hero,
.section {
  max-width: 1180px;
  width: calc(100% - 80px);
  margin: auto;
}
.hero {
  position: relative;
  isolation: isolate;
  padding: 100px 0 110px;
  text-align: center;
}
h1 {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(68px, calc(9vw + 4px), 136px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
  font-weight: 700;
}
.name-word {
  display: inline-block;
  position: relative;
}
.name-word::after {
  content: attr(data-scramble);
  position: absolute;
  inset: 0;
  color: #171719;
  transform: scaleX(var(--scramble-scale, 1));
  transform-origin: left center;
}
.name-word.is-scrambling {
  color: transparent;
}
.hero-light {
  position: absolute;
  inset: -30px -30px 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero-light::before,
.hero-light::after {
  content: "";
  position: absolute;
  width: 85%;
  height: 75%;
  left: 5%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    #d366ac38,
    #a1c4fd24 40%,
    transparent 70%
  );
  animation: light-drift 14s ease-in-out infinite alternate;
}
.hero-light::after {
  left: 30%;
  top: 25%;
  background: radial-gradient(
    ellipse,
    #8adcd842,
    #c0a8f52b 40%,
    transparent 70%
  );
  animation-delay: -7s;
  animation-direction: alternate-reverse;
}
@keyframes light-drift {
  from {
    transform: translate(-12%, -12%) rotate(-20deg) scale(0.85);
  }
  to {
    transform: translate(12%, 15%) rotate(20deg) scale(1.25);
  }
}
.period {
  color: var(--pink);
}
p {
  font-size: var(--body);
  line-height: 1.65;
  color: var(--muted);
  margin: 14px 0;
}
.hero-role {
  color: #171719;
  font-weight: 700;
}
.hero p:last-child {
  margin-bottom: 0;
}
.hero a {
  color: #171719;
}
.section {
  padding: 80px 0;
}
h2 {
  font-size: var(--title);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 900;
  margin: 0 0 38px;
}
h3 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin: 0 0 15px;
}
.muted {
  color: var(--muted);
}
em {
  font-family: Georgia, serif;
  font-weight: 450;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.split p:first-child {
  margin-top: 0;
}
.analogue {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 55px;
  margin-top: 48px;
  padding: 30px;
  background: rgb(255 255 255 / 64%);
  border-radius: 24px;
}
.analogue h3 {
  align-self: center;
  font-size: clamp(32px, calc(3vw + 4px), 44px);
}
.analogue p:first-child {
  margin-top: 0;
}
.analogue p:last-child {
  margin-bottom: 0;
}
.intro-copy {
  max-width: none;
}
.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin: 48px 0 0;
  text-align: center;
}
.numbers strong {
  font-size: clamp(65px, 8vw, 105px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.2;
}
.numbers h3 {
  margin: 8px 0;
}
.count-scramble {
  display: inline-block;
  min-width: 2ch;
  font-variant-numeric: tabular-nums;
}
.contact h2 a {
  display: inline-block;
}
.numbers p {
  margin: 0 auto;
  max-width: 310px;
}
.section-intro {
  margin-bottom: 42px;
}
.product {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  align-items: center;
  gap: 45px;
  padding: 35px;
  margin: 18px 0;
  border-radius: 28px;
  background: rgb(255 255 255 / 80%);
}
.product-copy {
  min-width: 0;
}
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin: 0 0 14px;
}
.product h3 {
  font-size: var(--title);
  margin: 0 0 20px;
}
.product-copy p:not(.eyebrow) {
  font-size: var(--body);
}
.product-image {
  min-width: 0;
  filter: drop-shadow(0 18px 20px #19191b1a);
}
.product-image img {
  display: block;
  width: 100%;
  height: auto;
}
.text-link {
  display: inline-block;
  font-size: var(--body);
  margin-top: 8px;
  color: #171719;
}
.press {
  max-width: none;
  margin: 34px 0 42px;
}
.press a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
p strong {
  font-weight: 700;
  color: #37373d;
}
.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
  text-align: center;
}
.people p {
  margin: 0;
}
.stack dl {
  margin: 0;
  display: grid;
  gap: 18px;
}
.stack dl > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  font-size: var(--body);
  line-height: 1.6;
}
.stack dt {
  font-weight: 550;
}
.stack dd {
  margin: 0;
  color: var(--muted);
}
.contact {
  padding-bottom: 65px;
}
.contact-email {
  font-size: 26px;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
  display: inline-block;
  margin-top: 10px;
}
.contact-links {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  font-size: var(--body);
}
footer {
  max-width: 1180px;
  width: calc(100% - 80px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 20px 0 30px;
  font-size: 14px;
  color: var(--muted);
}
.enhanced .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 400ms ease,
    transform 400ms ease;
}
.enhanced .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 760px) {
  :root {
    --body: 17px;
  }
  .navigation,
  .hero,
  .section,
  footer {
    width: calc(100% - 40px);
  }
  .navigation {
    padding: 22px 0;
  }
  .signature span {
    display: none;
  }
  nav {
    gap: 18px;
    font-size: 13px;
  }
  .hero {
    padding: 60px 0 70px;
  }
  .hero-light {
    left: -20px;
    right: -20px;
  }
  .hero h1 {
    font-size: clamp(62px, calc(13vw + 4px), 94px);
  }
  .section {
    padding: 52px 0;
  }
  .split,
  .analogue,
  .press {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .analogue {
    padding: 24px;
    margin-top: 20px;
  }
  .numbers {
    gap: 38px;
    grid-template-columns: 1fr;
  }
  .numbers > div {
    display: block;
  }
  .numbers strong {
    grid-row: span 2;
    font-size: 64px;
  }
  .numbers h3 {
    font-size: 28px;
    margin: 5px 0;
  }
  .numbers p {
    max-width: 310px;
  }
  .product {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
    margin: 16px 0;
  }
  .product-image {
    grid-row: 1;
  }
  .people {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .stack dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .contact-links {
    flex-direction: column;
    gap: 12px;
  }
  .contact-email {
    font-size: 22px;
  }
  footer {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.brand {
  color: var(--pink);
}
h2 {
  background: linear-gradient(125deg, #171719 20%, #686870 85%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
h2 .muted {
  color: inherit;
}
.interactive-word {
  display: inline-block;
  white-space: nowrap;
}
.interactive-letter {
  display: inline-block;
  transition: transform 250ms ease;
}
.smoothlok p {
  max-width: 800px;
}
.product {
  position: relative;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}
.product.amp,
.product.hush {
  grid-template-columns: 1.2fr 0.9fr;
}
.product.amp .product-image,
.product.hush .product-image {
  grid-column: 1;
  grid-row: 1;
}
.product.amp .product-copy,
.product.hush .product-copy {
  grid-column: 2;
  grid-row: 1;
}
.card-glass {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background: #eef1f52b;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  transition:
    opacity 250ms ease,
    backdrop-filter 250ms ease,
    -webkit-backdrop-filter 250ms ease;
}
.card-glass.active {
  opacity: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.product.spotlight {
  z-index: 6;
  transform: scale(1.015);
  box-shadow: 0 24px 65px #17171918;
}
.expand-card,
.close-card {
  font: inherit;
  color: #171719;
  border: 0;
  border-radius: 30px;
  padding: 11px 18px;
  background: #f0edf2;
  cursor: pointer;
  transition:
    transform 250ms ease,
    background 250ms ease;
}
.expand-card {
  display: block;
  margin-top: 20px;
  font-size: 14px;
}
.expand-card:hover,
.close-card:hover {
  transform: scale(1.04);
  background: #e9dfeb;
}
button:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}
.product-dialog {
  border: 0;
  padding: 24px;
  border-radius: 28px;
  width: min(1280px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  background: #fffffff5;
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}
.product-dialog.shown {
  opacity: 1;
  transform: scale(1);
}
.product-dialog::backdrop {
  background: #eef1f575;
  backdrop-filter: blur(10px);
}
.close-card {
  display: block;
  margin-left: auto;
  position: sticky;
  top: 0;
  z-index: 2;
}
.product-dialog .product {
  margin: 0;
  background: transparent;
  padding: 24px 10px;
  transform: none;
}
html.card-open {
  overflow: hidden;
}
.enhanced .product:not(.visible) .product-image {
  transform: scale(0.96);
  opacity: 0;
}
.product-image {
  transition:
    transform 600ms ease,
    opacity 600ms ease;
}
.product-copy {
  transition: opacity 400ms ease 100ms;
}
.enhanced .product:not(.visible) .product-copy {
  opacity: 0;
}
@media (max-width: 760px) {
  .product.amp,
  .product.hush {
    grid-template-columns: 1fr;
  }
  .product.amp .product-copy,
  .product.hush .product-copy {
    grid-column: 1;
    grid-row: 2;
  }
  .product-dialog {
    padding: 16px;
  }
  .product-dialog .product {
    padding: 24px 0 0;
  }
}
/* Editorial direction: quiet surfaces, generous spacing, product-led imagery. */
:root {
  color: #0a0a0a;
  background: #fff;
  --muted: #666;
  --title: clamp(40px, 4.6vw, 68px);
}
body {
  background: #fff;
}
.navigation {
  padding: 32px 0;
}
.hero {
  padding: 110px 0 130px;
  text-align: left;
}
.hero h1 {
  font-size: clamp(64px, 8.9vw, 136px);
  font-weight: 600;
  letter-spacing: -0.055em;
  margin-bottom: 44px;
}
.hero-role {
  max-width: 640px;
  font-size: 23px;
  line-height: 1.45;
  font-weight: 500;
}
.hero p:last-child {
  margin-top: 24px;
}
.section {
  padding-top: 110px;
  padding-bottom: 110px;
}
h2 {
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 48px;
  background: linear-gradient(125deg, #0a0a0a, #666);
  background-clip: text;
  -webkit-background-clip: text;
}
h3 {
  font-weight: 600;
  letter-spacing: -0.025em;
}
.split {
  gap: 80px;
}
.analogue {
  margin-top: 64px;
  padding: 48px;
  background: #f4f4f4;
  border-radius: 16px;
}
.analogue h3 {
  line-height: 1.2;
}
#shipped,
.smoothlok,
.contact {
  width: 100%;
  max-width: none;
  padding-left: max(40px, calc((100% - 1180px) / 2));
  padding-right: max(40px, calc((100% - 1180px) / 2));
  background: #0a0a0a;
  color: #fff;
}
#shipped h2,
.smoothlok h2,
.contact h2 {
  background: none;
  color: #fff;
}
#shipped p,
.smoothlok p,
.contact p {
  color: #bbb;
}
#shipped strong,
.smoothlok strong {
  color: #fff;
}
.smoothlok .text-link,
.contact a {
  color: #fff;
}
.smoothlok .text-link:hover,
.contact a:hover {
  color: var(--pink);
}
.numbers {
  margin-top: 72px;
  gap: 64px;
}
.numbers strong {
  font-weight: 700;
}
.numbers h3 {
  font-size: 26px;
}
.work .section-intro {
  max-width: 900px;
  margin-bottom: 64px;
}
.product {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 48px;
  margin: 28px 0;
  gap: 60px;
  cursor: pointer;
}
.product h3 {
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 600;
}
.product-image {
  filter: drop-shadow(0 22px 25px #0a0a0a15);
}
.expand-card {
  background: #0a0a0a;
  color: white;
  padding: 13px 20px;
}
.expand-card:hover {
  background: #292929;
}
.card-glass {
  background: #ffffff26;
}
.product.spotlight-layer {
  z-index: 6;
}
.product.spotlight {
  z-index: 6;
}
.enhanced .product.visible.spotlight {
  transform: scale(1.015);
}
.product-dialog {
  background: #fff;
  border-radius: 20px;
}
.product-dialog .product {
  cursor: default;
}
.product-dialog .product-copy p + p {
  margin-top: 24px;
}
.product-dialog .product {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.product-dialog .product-image {
  position: sticky;
  top: 70px;
}
.ownership,
.stack {
  background: #fff;
}
.recognition {
  padding-top: 70px;
}
.people {
  margin-top: 56px;
}
.stack dl {
  gap: 28px;
}
.stack dl > div {
  grid-template-columns: 260px 1fr;
}
.contact {
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact-email {
  font-size: clamp(22px, 3vw, 40px);
}
footer {
  padding-top: 32px;
  padding-bottom: 32px;
}
.enhanced .reveal {
  transition-duration: 550ms;
}
.enhanced .product.reveal {
  transition:
    opacity 550ms ease,
    transform 250ms ease,
    box-shadow 250ms ease;
}
@media (max-width: 900px) {
  .split {
    gap: 36px;
  }
  .product {
    padding: 28px;
    gap: 28px;
  }
}
@media (max-width: 760px) {
  .hero {
    padding: 70px 0 80px;
  }
  .hero h1 {
    font-size: clamp(58px, 13vw, 94px);
    margin-bottom: 32px;
  }
  .hero-role {
    font-size: 20px;
  }
  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  #shipped,
  .smoothlok,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }
  h2 {
    margin-bottom: 32px;
  }
  .analogue {
    padding: 28px;
    margin-top: 36px;
  }
  .numbers {
    margin-top: 44px;
    gap: 40px;
  }
  .product {
    padding: 24px;
    margin: 20px 0;
  }
  .work .section-intro {
    margin-bottom: 40px;
  }
  .product-dialog .product {
    grid-template-columns: 1fr;
  }
  .product-dialog .product-image {
    position: static;
  }
  .stack dl > div {
    grid-template-columns: 1fr;
  }
}
/* Portrait hero and accessible technical selector. */
.navigation {
  width: 100%;
  max-width: none;
  padding: 28px max(40px, calc((100% - 1180px) / 2));
  background: #0a0a0a;
  color: #fff;
}
.signature span {
  color: #aaa;
}
.hero {
  width: 100%;
  max-width: none;
  padding: 64px max(40px, calc((100% - 1180px) / 2)) 90px;
  background: #0a0a0a;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  overflow: clip;
}
.hero-copy {
  min-width: 0;
  transform: translateY(var(--hero-copy-y, 0px));
}
.hero h1 {
  font-size: clamp(64px, 7.8vw, 112px);
  letter-spacing: -0.055em;
  color: #fff;
  background: linear-gradient(125deg, #fff, #a0a0a0);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero .name-word {
  color: transparent;
  background: linear-gradient(125deg, #fff 10%, #aaa 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero .name-word:last-of-type {
  color: #bbb;
}
.hero .name-word.is-scrambling {
  color: transparent;
  background: none;
}
.hero .name-word::after {
  color: #fff;
}
.hero-role {
  color: #fff;
  font-size: 21px;
}
.hero p,
.hero a,
.hero strong {
  color: #ccc;
}
.hero-portrait {
  min-width: 0;
  transform: translateY(var(--hero-image-y, 0px));
}
.hero-portrait img {
  width: 100%;
  height: clamp(430px, 45vw, 630px);
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 40px;
  display: block;
}
#approach {
  position: relative;
  background: #fff;
}
.product h3,
.smoothlok h2 {
  font-weight: 800;
}
.recognition,
.stack {
  width: 100%;
  max-width: none;
  padding-left: max(40px, calc((100% - 1180px) / 2));
  padding-right: max(40px, calc((100% - 1180px) / 2));
  background: #0a0a0a;
  color: #fff;
}
.recognition h2,
.stack h2 {
  background: none;
  color: #fff;
}
.recognition p,
.recognition p strong {
  color: #bbb;
}
.recognition .people h3 {
  color: #fff;
}
.section {
  padding-top: 96px;
  padding-bottom: 96px;
}
.technical-interactive {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px 90px;
}
.technical-interactive h2 {
  grid-column: 1/-1;
  margin-bottom: 8px;
}
.technical-interactive dl {
  display: block;
}
.technical-interactive dl > div {
  display: block;
}
.technical-interactive dt button {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border: 0;
  background: none;
  color: #868686;
  font: inherit;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 250ms ease;
}
.technical-interactive dt button span {
  font-size: 16px;
  font-weight: 400;
}
.technical-interactive .selected button {
  color: #fff;
}
.technical-interactive .selected button span {
  color: var(--pink);
}
.technical-interactive dd {
  display: none;
}
.technical-panel {
  align-self: start;
  position: sticky;
  top: 70px;
  padding-top: 24px;
  transition:
    opacity 125ms ease,
    transform 125ms ease;
}
.technical-panel.changing {
  opacity: 0;
  transform: translateY(6px);
}
.technical-caption {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 24px;
}
.technical-value {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin: 0;
}
.product-dialog .product {
  align-items: center;
}
.product-dialog .product-image {
  position: static;
  align-self: center;
}
.floating-contact-card {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid #ffffffe6;
  border-radius: 999px;
  background: #ffffffd1;
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 34px #1e1e1e14;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    background-color 250ms ease;
}
.floating-contact-card:hover,
.floating-contact-card:focus-visible {
  transform: translateY(-2px);
  background: #ffffffe6;
  box-shadow: 0 18px 38px #1e1e1e1f;
  color: #0a0a0a;
}
.social-links {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #0a0a0a;
}
.social-links svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
footer {
  flex-wrap: wrap;
  padding-bottom: 88px;
}
.plugin-cursor {
  position: fixed;
  z-index: 9;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #d366ac;
  color: #fff;
  display: grid;
  place-items: center;
  font: 32px/1 sans-serif;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) scale(0.85);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}
.plugin-cursor.visible {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
@media (max-width: 760px) {
  .navigation {
    padding: 22px 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px 64px;
  }
  .hero h1 {
    font-size: clamp(62px, 15vw, 96px);
  }
  .hero-portrait img {
    height: 440px;
    max-height: 65vh;
    border-radius: 30px;
  }
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .recognition,
  .stack {
    padding-left: 20px;
    padding-right: 20px;
  }
  .technical-interactive {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .technical-interactive .selected dd {
    display: block;
    padding: 0 0 24px;
    color: #ccc;
  }
  .technical-panel {
    display: none;
  }
}
/* Unified interaction/layout refinements. */
.hero .name-word,
.hero .name-word:last-of-type {
  color: inherit;
  background: none;
}
.hero .name-word::after {
  content: none;
}
.scramble-visual {
  display: inline-block;
  white-space: nowrap;
  transform-origin: left center;
  background: linear-gradient(125deg, #fff, #aaa);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero p,
.hero a,
.hero strong {
  color: #fff;
}
.hero a,
.hero a strong,
.text-link {
  transition: color 250ms ease;
}
.hero a:hover,
.hero a:hover strong,
.hero a:focus-visible,
.hero a:focus-visible strong,
.text-link:hover,
.text-link:focus-visible {
  color: var(--pink);
}
.hero {
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(#0a0a0a, #fff);
  pointer-events: none;
}
.analogue {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
}
.analogue h3 {
  font-size: clamp(22px, 2.25vw, 32px);
}
.analogue-line {
  white-space: nowrap;
  display: inline-block;
}
.news-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  padding-bottom: 32px;
}
.news-banner h2 {
  margin: 0;
  color: #fff;
  background: none;
  white-space: nowrap;
}
.news-track {
  display: flex;
  width: max-content;
  animation: news-scroll 30s linear infinite;
}
.news-track > span {
  padding-right: 80px;
}
@keyframes news-scroll {
  to {
    transform: translateX(-50%);
  }
}
.news-banner.paused .news-track {
  animation-play-state: paused;
}
.news-pause {
  position: absolute;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  color: #ccc;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  padding: 4px;
}
.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.product-actions .expand-card,
.product-actions .text-link {
  margin: 0;
}
.technical-interactive {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px 56px;
}
.technical-interactive dt button {
  justify-content: flex-start;
  gap: 12px;
  font-size: clamp(22px, 2.3vw, 32px);
}
.technical-interactive dt button span {
  font-size: 0.65em;
  align-self: flex-start;
  padding-top: 3px;
}
.technical-interactive dt button:hover,
.technical-interactive dt button:focus-visible {
  color: var(--pink);
}
.technical-interactive dt button span {
  transition: color 250ms ease;
}
.technical-panel {
  padding: 40px;
  min-height: 360px;
  border-radius: 40px;
  background: linear-gradient(135deg, #ffffffed, #ffffffc9);
  backdrop-filter: blur(20px);
}
.technical-caption {
  color: #555;
}
.technical-value {
  color: #0a0a0a;
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.45;
}
.recognition {
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 48%,
    #0a0a0a 78%,
    #0a0a0a 100%
  );
}
.recognition h2 {
  color: #0a0a0a;
}
.recognition .press,
.recognition .press strong {
  color: #333;
}
.recognition .people {
  margin-top: 160px;
}
@media (max-width: 760px) {
  .navigation {
    flex-wrap: wrap;
    gap: 20px;
  }
  .navigation nav {
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero::after {
    height: 40px;
  }
  .analogue {
    grid-template-columns: 1fr;
  }
  .analogue h3 {
    font-size: clamp(21px, 5.4vw, 32px);
  }
  .technical-interactive {
    grid-template-columns: 1fr;
  }
  .recognition {
    background: linear-gradient(
      to bottom,
      #fff 0%,
      #fff 38%,
      #0a0a0a 56%,
      #0a0a0a 100%
    );
  }
  .recognition .people {
    margin-top: 140px;
  }
}
/* Compact footer and flat section backgrounds. */
.floating-contact-card {
  transition:
    opacity 250ms ease,
    transform 250ms ease,
    background-color 250ms ease;
}
.floating-contact-card.footer-visible {
  opacity: 0;
  pointer-events: none;
}
.hero::after {
  display: none;
}
.recognition {
  background: #fff;
  color: #0a0a0a;
}
.recognition .people h3 {
  color: #0a0a0a;
}
.recognition .people p {
  color: #666;
}
.recognition .people {
  margin-top: 48px;
}
.hero-portrait img {
  transition: transform 250ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .hero-portrait img:hover {
    transform: scale(1.03);
  }
}
.scramble-original {
  display: inline-block;
}
.scrambling .scramble-original {
  visibility: hidden;
}
.scramble-visual {
  position: absolute;
  left: 50%;
  top: 0;
  transform-origin: center;
}
.analogue h3 {
  font-size: clamp(24px, calc(2.25vw + 2px), 34px);
  color: #0a0a0a;
  background: none;
}
.product h3 {
  color: #0a0a0a;
  background: none;
}
.numbers h3 {
  color: var(--pink);
}
.news-track > span {
  background: linear-gradient(110deg, #fff 20%, #f5ddeb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.product-dialog .text-link {
  display: inline-block;
  color: var(--pink);
  transform-origin: left center;
  transition:
    transform 250ms ease,
    color 250ms ease;
}
.product-dialog .text-link:hover,
.product-dialog .text-link:focus-visible {
  transform: scale(1.1);
}
.technical-panel {
  position: static;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  text-align: center;
}
.technical-value {
  color: #fff;
}
footer {
  height: 64px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
footer > a {
  grid-column: 1;
  grid-row: 1;
}
footer > span {
  grid-column: 2;
  grid-row: 1;
}
footer .social-links {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
  margin: 0;
  gap: 12px;
}
@media (max-width: 760px) {
  .analogue h3 {
    font-size: clamp(23px, calc(5.4vw + 2px), 34px);
  }
  .technical-panel {
    display: none;
  }
  footer {
    height: auto;
    min-height: 88px;
    padding: 12px 0;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
  }
  footer > span {
    grid-column: 1;
    grid-row: 2;
    font-size: 12px;
  }
  footer .social-links {
    grid-column: 2;
    grid-row: 1 / 3;
    gap: 0;
  }
  footer .social-links a {
    width: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .news-track {
    display: block;
    width: auto;
    white-space: normal;
  }
  .news-track > span {
    padding: 0;
  }
  .news-track > span + span,
  .news-pause {
    display: none;
  }
  .enhanced .product:not(.visible) .product-image,
  .enhanced .product:not(.visible) .product-copy {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
  .enhanced .reveal {
    opacity: 1;
    transform: none;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
