:root {
  color-scheme: dark;
  --ink: #f4f4f0;
  --muted: #b9bbb6;
  --soft: #858a84;
  --paper: #e8e8e1;
  --black: #080909;
  --panel: #111313;
  --earth: #3a2b20;
  --olive: #353b2d;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --accent: #d7dad3;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 12% 16%, rgba(53, 59, 45, 0.34), transparent 32%),
    radial-gradient(circle at 88% 76%, rgba(58, 43, 32, 0.28), transparent 30%),
    #080909;
  background-size: 108px 108px, 108px 108px, auto, auto, auto;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: no-preference) and (hover: hover) and (pointer: fine) {
  body {
    animation: surface-drift 18s linear infinite;
  }
}

body::selection {
  background: var(--paper);
  color: var(--black);
}

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

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 46px);
  background: linear-gradient(180deg, rgba(8, 9, 9, 0.88), rgba(8, 9, 9, 0));
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  color: var(--ink);
}

.brand-logo {
  width: 42px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(244, 244, 240, 0.2));
}

.brand-wordmark {
  width: clamp(118px, 11vw, 166px);
  height: auto;
  filter: drop-shadow(0 0 10px rgba(244, 244, 240, 0.12));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  border-bottom: 1px solid transparent;
  padding-block: 6px;
  transition: color 160ms ease, border-color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--accent);
  color: var(--ink);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  contain: layout paint;
}

.hero-shade,
.signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.signal-canvas {
  z-index: -1;
  opacity: 0.92;
  mix-blend-mode: screen;
  pointer-events: none;
  contain: strict;
}

.hero-shade {
  z-index: 0;
  background:
    radial-gradient(circle at 72% 44%, rgba(244, 244, 240, 0.14), transparent 30%),
    radial-gradient(circle at 20% 22%, rgba(53, 59, 45, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(8, 9, 9, 0.94) 0%, rgba(8, 9, 9, 0.68) 48%, rgba(8, 9, 9, 0.88) 100%),
    linear-gradient(180deg, rgba(8, 9, 9, 0.22) 0%, rgba(8, 9, 9, 0.78) 100%);
  pointer-events: none;
}

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

.hero::before {
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(244, 244, 240, 0.18) 49%, rgba(244, 244, 240, 0.28) 50%, rgba(244, 244, 240, 0.18) 51%, transparent 100%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 7px);
  opacity: 0.2;
  transform: translateX(-100%);
}

.hero::after {
  z-index: 2;
  top: 16%;
  right: clamp(20px, 5vw, 72px);
  width: min(38vw, 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
  opacity: 0.52;
}

@media (prefers-reduced-motion: no-preference) {
  .hero::after {
    animation: orbital-frame 12s linear infinite;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.58fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  width: min(100%, var(--max));
  margin: auto;
  padding: 138px clamp(20px, 5vw, 54px) 96px;
}

.hero-copy-block {
  max-width: 720px;
}

.hero-logo {
  width: clamp(104px, 14vw, 184px);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 26px rgba(244, 244, 240, 0.22));
}

.hero-wordmark {
  width: min(100%, clamp(300px, 42vw, 640px));
  height: auto;
  margin-bottom: 28px;
  filter:
    drop-shadow(0 0 26px rgba(244, 244, 240, 0.18))
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.42));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(4.7rem, 15vw, 10.8rem);
  font-weight: 900;
  line-height: 0.86;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.14);
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  font-weight: 850;
  line-height: 0.95;
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.65;
}

.hero-copy {
  max-width: 560px;
  color: #f0f0eb;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  padding: 0 22px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--paper);
  color: var(--black);
  box-shadow: 0 0 34px rgba(244, 244, 240, 0.14);
}

.button-secondary {
  background: rgba(8, 9, 9, 0.18);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.hero-product {
  position: relative;
  margin: 0;
  width: min(100%, 430px);
  justify-self: end;
  transform: translate3d(0, 0, 0);
  transition: transform 360ms ease-out;
  will-change: transform;
}

.product-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(244, 244, 240, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(13, 15, 15, 0.76);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.product-frame::before,
.product-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.product-frame::before {
  inset: 14px;
  border: 1px solid rgba(244, 244, 240, 0.12);
}

.product-frame::after {
  inset: 0;
  background: radial-gradient(circle at 50% 34%, rgba(244, 244, 240, 0.18), transparent 38%);
  mix-blend-mode: screen;
}

.product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.08);
}

.product-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 43%, rgba(255, 255, 255, 0.22) 50%, transparent 57%, transparent 100%);
  transform: translateX(-120%);
  pointer-events: none;
}

.hero-product figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(244, 244, 240, 0.16);
  border-top: 0;
  padding: 14px 16px;
  background: rgba(8, 9, 9, 0.72);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-product figcaption strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.launch-orb {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 4vw, 64px);
  bottom: clamp(78px, 9vw, 118px);
  display: grid;
  place-items: center;
  width: clamp(172px, 20vw, 268px);
  aspect-ratio: 1;
  pointer-events: none;
  overflow: visible;
}

.orb-ring,
.orb-core {
  grid-area: 1 / 1;
}

.orb-ring {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(244, 244, 240, 0.36);
  border-radius: 50%;
  box-shadow:
    0 0 34px rgba(244, 244, 240, 0.12),
    inset 0 0 28px rgba(244, 244, 240, 0.06);
  transform-origin: center;
}

.orb-ring-one {
  border-left-color: transparent;
  border-bottom-color: rgba(244, 244, 240, 0.08);
  animation:
    rotate-orb 9s linear infinite,
    ring-pulse 2.35s ease-in-out infinite;
}

.orb-ring-two {
  width: 78%;
  height: 78%;
  border-top-color: transparent;
  border-right-color: rgba(244, 244, 240, 0.12);
  transform: rotate(23deg);
  animation:
    rotate-orb-reverse 7s linear infinite,
    ring-pulse 2.35s ease-in-out infinite reverse;
}

.orb-core {
  display: grid;
  place-items: center;
  width: 68%;
  height: 68%;
  border: 1px solid rgba(244, 244, 240, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(244, 244, 240, 0.24), rgba(244, 244, 240, 0.02) 42%, transparent 70%),
    rgba(8, 9, 9, 0.5);
  box-shadow:
    0 18px 80px rgba(0, 0, 0, 0.46),
    0 0 48px rgba(244, 244, 240, 0.12);
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  transform: scale(1);
  transform-origin: center;
  animation: pulse-core 2.35s ease-in-out infinite;
}

.orb-kicker,
.orb-core span:last-child {
  color: var(--soft);
  font-size: clamp(0.55rem, 1.1vw, 0.68rem);
  font-weight: 800;
}

.orb-core strong {
  max-width: 9ch;
  color: var(--ink);
  font-size: clamp(1.38rem, 3.2vw, 2.45rem);
  font-weight: 950;
  line-height: 0.88;
  text-shadow: 0 0 22px rgba(244, 244, 240, 0.4);
  animation: text-pulse 2.35s ease-in-out infinite;
}

.ticker {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(244, 244, 240, 0.2);
  border-bottom: 1px solid rgba(244, 244, 240, 0.16);
  background: rgba(8, 9, 9, 0.74);
  backdrop-filter: blur(16px);
  contain: paint;
}

.ticker-track {
  --marquee-speed: 28s;
  display: flex;
  width: max-content;
  color: var(--ink);
  font-size: clamp(0.76rem, 1.4vw, 1rem);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-move var(--marquee-speed) linear infinite;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  padding-block: 14px;
}

.ticker-group span {
  display: inline-flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  padding-inline: clamp(18px, 2.4vw, 34px);
}

.ticker-group span::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
}

.intro-section,
.identity-section,
.drop-section {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 54px);
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.intro-section {
  display: grid;
  gap: 42px;
}

.section-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.6fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.section-copy p:not(.eyebrow) {
  margin-bottom: 8px;
}

.preview-lead {
  display: grid;
  gap: 24px;
}

.preview-sample {
  position: relative;
  margin: 0;
  width: min(100%, 420px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 35%, rgba(244, 244, 240, 0.1), transparent 36%),
    #0b0d0d;
}

.preview-sample::after {
  display: none;
}

.preview-sample img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(10px, 2vw, 18px);
  filter: saturate(0.9) contrast(1.06);
}

.preview-sample figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-tile {
  position: relative;
  display: grid;
  min-height: 500px;
  overflow: hidden;
  background: #0d0f0f;
}

.product-tile:nth-child(3) {
  background: linear-gradient(180deg, rgba(58, 43, 32, 0.28), #0d0f0f 70%);
}

.product-tile:nth-child(4) {
  background: linear-gradient(180deg, rgba(53, 59, 45, 0.34), #0d0f0f 70%);
}

.product-tile img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 520ms ease, filter 520ms ease;
}

.product-tile:hover img {
  filter: saturate(0.95) contrast(1.14);
  transform: scale(1.045);
}

.product-tile div {
  align-self: end;
  padding: 26px;
}

.product-tile span {
  display: block;
  margin-bottom: 34px;
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-tile p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.identity-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 0.76fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.identity-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101111;
}

.identity-media::after {
  display: none;
}

.identity-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.identity-copy p {
  max-width: 580px;
}

.signal-list {
  display: grid;
  gap: 1px;
  margin: 34px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.signal-list div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 24px;
  padding: 22px;
  background: rgba(17, 19, 19, 0.84);
}

.signal-list dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.drop-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.drop-section h2 {
  max-width: 720px;
}

.drop-section p {
  max-width: 650px;
  margin-bottom: 0;
}

.drop-section .button {
  flex: 0 0 auto;
}

.site-footer {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(20px, 5vw, 54px) 46px;
  color: var(--soft);
}

.site-footer .brand-link {
  min-height: 34px;
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (prefers-reduced-motion: no-preference) {
  .hero-product {
    animation: product-float 6.8s ease-in-out infinite;
  }

  .launch-orb {
    animation: float-module 5.8s ease-in-out infinite;
  }
}

@keyframes surface-drift {
  from {
    background-position: 0 0, 0 0, center, center, center;
  }

  to {
    background-position: 108px 0, 0 108px, center, center, center;
  }
}

@keyframes scan-pass {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  16% {
    opacity: 0.2;
  }

  46% {
    opacity: 0.1;
  }

  68%,
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes orbital-frame {
  from {
    transform: rotate(45deg) scale(0.98);
  }

  50% {
    transform: rotate(50deg) scale(1.04);
  }

  to {
    transform: rotate(45deg) scale(0.98);
  }
}

@keyframes material-sheen {
  0%,
  42% {
    transform: translateX(-115%);
  }

  66%,
  100% {
    transform: translateX(115%);
  }
}

@keyframes product-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes float-module {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-18px) translateX(-8px);
  }
}

@keyframes rotate-orb {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-orb-reverse {
  from {
    transform: rotate(23deg);
  }

  to {
    transform: rotate(-337deg);
  }
}

@keyframes pulse-core {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.085);
  }
}

@keyframes ring-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes text-pulse {
  0%,
  100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

@keyframes ticker-move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333333%);
  }
}

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

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

  .ticker-track {
    animation: ticker-move 42s linear infinite !important;
  }

  .orb-ring-one {
    animation:
      rotate-orb 14s linear infinite,
      ring-pulse 3.6s ease-in-out infinite !important;
  }

  .orb-ring-two {
    animation:
      rotate-orb-reverse 12s linear infinite,
      ring-pulse 3.6s ease-in-out infinite reverse !important;
  }

  .orb-core,
  .orb-core strong {
    animation-duration: 3.6s !important;
    animation-iteration-count: infinite !important;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 86svh;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 68% 48%, rgba(244, 244, 240, 0.12), transparent 30%),
      linear-gradient(90deg, rgba(8, 9, 9, 0.92) 0%, rgba(8, 9, 9, 0.7) 100%),
      linear-gradient(180deg, rgba(8, 9, 9, 0.2) 0%, rgba(8, 9, 9, 0.78) 100%);
  }

  .hero-content,
  .section-copy,
  .identity-section {
    grid-template-columns: 1fr;
  }

  .section-copy {
    align-items: start;
  }

  .preview-sample img {
    height: 100%;
  }

  .hero-product {
    justify-self: start;
    max-width: 560px;
  }

  .product-frame img {
    object-fit: contain;
    background: #0b0d0d;
  }

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

  .product-tile {
    min-height: auto;
  }

  .product-tile img {
    height: 310px;
    object-fit: contain;
    background:
      radial-gradient(circle at 50% 34%, rgba(244, 244, 240, 0.08), transparent 36%),
      #0b0d0d;
  }

  .identity-media,
  .identity-media img {
    min-height: 420px;
  }

  .identity-media img {
    object-fit: contain;
    background: #0b0d0d;
  }

  .drop-section {
    display: grid;
    align-items: start;
  }

  .launch-orb {
    right: clamp(18px, 4vw, 34px);
    bottom: 64px;
    width: clamp(150px, 34vw, 210px);
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    justify-items: center;
    justify-content: center;
    display: grid;
    gap: 10px;
    padding: 14px 16px 10px;
    background:
      linear-gradient(180deg, rgba(8, 9, 9, 0.94), rgba(8, 9, 9, 0.78)),
      rgba(8, 9, 9, 0.84);
    border-bottom: 1px solid rgba(244, 244, 240, 0.12);
    backdrop-filter: blur(6px);
  }

  .brand-link {
    justify-content: center;
  }

  .main-nav {
    justify-content: center;
    width: min(100%, 360px);
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-content {
    padding-top: 86px;
    padding-bottom: 228px;
  }

  .hero-product {
    width: min(100%, 340px);
    max-width: 340px;
    justify-self: center;
  }

  .product-frame {
    aspect-ratio: 4 / 3;
  }

  .product-frame img {
    height: 100%;
    padding: 10px;
  }

  h1 {
    font-size: clamp(4.2rem, 22vw, 6.8rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.35rem);
  }

  .button {
    width: 100%;
  }

  .hero-product figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .launch-orb {
    left: 50%;
    right: auto;
    bottom: 58px;
    width: 160px;
    transform: translateX(-50%);
  }

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

  .preview-sample img {
    height: 100%;
    padding: 10px;
  }

  .preview-sample figcaption {
    left: 12px;
    bottom: 10px;
  }

  .product-tile img {
    height: auto;
    aspect-ratio: 4 / 3;
    padding: 10px;
  }

  .identity-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .identity-media img {
    min-height: 0;
    height: 100%;
    padding: 10px;
  }

  .signal-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    display: grid;
  }

  /* Performance: eliminar efectos costosos en mobile */
  .signal-canvas {
    mix-blend-mode: normal;
  }

  .ticker {
    backdrop-filter: none;
    background: rgba(8, 9, 9, 0.92);
  }

  .button-secondary {
    backdrop-filter: none;
    background: rgba(28, 30, 30, 0.92);
  }

  .orb-core {
    backdrop-filter: blur(6px);
  }

  @media (prefers-reduced-motion: no-preference) {
    .launch-orb {
      animation: float-module-mobile 5.8s ease-in-out infinite;
    }
  }
}

@keyframes float-module-mobile {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-16px);
  }
}
