@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #0b0f14;
  --bg-soft: #10151d;
  --surface: rgba(255, 255, 255, 0.048);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --ink: #eceff5;
  --text: #c8ccd8;
  --muted: #878c9e;
  --line: rgba(244, 245, 240, 0.13);
  --line-soft: rgba(244, 245, 240, 0.075);
  --violet: #8b7bff;
  --cyan: #86d7e8;
  --green: #b7e4c6;
  --amber: #d7bd86;
  --pink: #e3a6c4;
  --radius: 8px;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
  --font-body: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(128deg, var(--bg) 0%, #101720 44%, #080b10 100%),
    var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 16%, rgba(134, 215, 232, 0.08), transparent 30%),
    radial-gradient(circle at 62% 78%, rgba(227, 166, 196, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(244, 245, 240, 0.018), transparent 30%);
  opacity: 0.82;
  z-index: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 42%);
  z-index: 1;
}

.portal-grid-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(134, 215, 232, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 215, 232, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(139, 123, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 123, 255, 0.13) 1px, transparent 1px);
  background-size: 30px 30px, 30px 30px, 60px 60px, 60px 60px;
  background-position: 0 0, 0 0, 15px 15px, 15px 15px;
  -webkit-mask-image: radial-gradient(ellipse 580px 460px at var(--pgx, 50%) var(--pgy, 50%), black 0%, transparent 68%);
  mask-image: radial-gradient(ellipse 580px 460px at var(--pgx, 50%) var(--pgy, 50%), black 0%, transparent 68%);
  opacity: 0;
  transition: opacity 900ms ease;
  animation: portalDrift 14s linear infinite;
  animation-play-state: paused;
}

.portal-grid-layer.active {
  opacity: 1;
  animation-play-state: running;
}

@keyframes portalDrift {
  from { background-position: 0 0, 0 0, 15px 15px, 15px 15px; }
  to   { background-position: 30px 30px, 30px 30px, 45px 45px, 45px 45px; }
}

.tav-magic-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.66;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.03);
}

.magic-hud {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 3;
  transform: translateY(-50%);
  color: rgba(244, 245, 240, 0.34);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  pointer-events: none;
  animation: hudFade 6s ease-in-out infinite;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(39, 215, 255, 0.28);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--ink);
  color: #08090d;
  padding: 10px 14px;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.tav-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.012) 100%),
    rgba(9, 11, 15, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.072);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 4px 28px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.04);
  backdrop-filter: blur(28px) saturate(200%) brightness(1.04);
}

.nav-inner {
  width: min(1180px, calc(100% - 32px));
  height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-link img {
  width: 88px;
  height: auto;
  opacity: 0.88;
  transition: opacity 220ms ease;
}

.logo-link:hover img {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  isolation: isolate;
}

.nav-links a {
  position: relative;
  z-index: 1;
  color: rgba(244, 245, 240, 0.48);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
  transition:
    color 160ms ease,
    background 160ms ease,
    opacity 320ms ease,
    transform 360ms cubic-bezier(0.4, 0, 0.2, 1),
    max-width 420ms cubic-bezier(0.4, 0, 0.2, 1),
    padding-left 420ms cubic-bezier(0.4, 0, 0.2, 1),
    padding-right 420ms cubic-bezier(0.4, 0, 0.2, 1),
    margin-left 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:not(.nav-cta) {
  max-width: 200px;
  overflow: hidden;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-indicator {
  position: absolute;
  top: 2px;
  height: calc(100% - 4px);
  border-radius: 100px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(134, 215, 232, 0.1) 50%,
    rgba(255, 255, 255, 0.14) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 0 10px rgba(134, 215, 232, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition:
    left 560ms cubic-bezier(0.34, 1.2, 0.64, 1),
    width 560ms cubic-bezier(0.34, 1.2, 0.64, 1),
    opacity 180ms ease;
}

/* CTA — tinted glass within the pill */
.nav-links .nav-cta {
  margin-left: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  background:
    linear-gradient(135deg, rgba(134, 215, 232, 0.2) 0%, rgba(139, 123, 255, 0.14) 100%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(134, 215, 232, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 14px rgba(134, 215, 232, 0.08);
  padding: 6px 14px;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(134, 215, 232, 0.28) 0%, rgba(139, 123, 255, 0.2) 100%),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 0 0.5px rgba(134, 215, 232, 0.7),
    0 0 14px rgba(134, 215, 232, 0.22),
    0 0 32px rgba(134, 215, 232, 0.08);
}

/* absorption: all links collapse into the CTA on hover */
.nav-links:has(.nav-cta:hover) a:not(.nav-cta) {
  max-width: 0;
  padding-left: 0;
  padding-right: 0;
  opacity: 0;
  transform: translateX(10px) scale(0.7);
  pointer-events: none;
}

.nav-links:has(.nav-cta:hover) .nav-cta {
  margin-left: 0;
}

.nav-links:has(.nav-cta:hover) .nav-indicator {
  opacity: 0 !important;
  transition: opacity 180ms ease;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: rgba(244, 245, 240, 0.7);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 3.5px auto;
  background: currentColor;
  border-radius: 2px;
}

.nav-mobile-fab {
  display: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 190;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 13px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(37, 211, 102, 0.07)),
    rgba(9, 11, 15, 0.84);
  border: 1px solid rgba(37, 211, 102, 0.28);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 0 14px rgba(37, 211, 102, 0.1),
    0 4px 24px rgba(0, 0, 0, 0.38);
  transition:
    transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 200ms ease,
    box-shadow 220ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 0.5px rgba(37, 211, 102, 0.6),
    0 0 10px rgba(37, 211, 102, 0.2),
    0 0 26px rgba(37, 211, 102, 0.07),
    0 6px 28px rgba(0, 0, 0, 0.42);
}

.whatsapp-float svg {
  width: 18px;
  height: 18px;
  fill: rgba(37, 211, 102, 0.88);
  flex-shrink: 0;
}

@keyframes fabOrbit {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30%       { transform: translateY(-5px) rotate(1.5deg); }
  65%       { transform: translateY(-2px) rotate(-1deg); }
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  padding: 68px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--amber);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.06;
  font-weight: 600;
}

h1 {
  max-width: 12.5ch;
  font-size: clamp(32px, 4.7vw, 58px);
}

h2 {
  font-size: clamp(24px, 3.2vw, 38px);
}

h3 {
  font-size: clamp(17px, 1.7vw, 21px);
}

h4 {
  font-size: 16px;
}

.lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: #c4c8d4;
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.68;
}

.hero-actions,
.section-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.1;
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 200ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.16) 42%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(134, 215, 232, 0.58);
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 0 0.5px rgba(134, 215, 232, 0.45),
    0 0 8px rgba(134, 215, 232, 0.14),
    0 4px 18px rgba(0, 0, 0, 0.22);
}

.button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  color: var(--ink);
  border-color: rgba(134, 215, 232, 0.34);
  background:
    linear-gradient(135deg, rgba(134, 215, 232, 0.22), rgba(215, 189, 134, 0.16)),
    rgba(255, 255, 255, 0.055);
  background-size: 190% 190%;
  animation: gradientBreath 6.5s ease-in-out infinite;
}

.button.primary:hover {
  background:
    linear-gradient(135deg, rgba(134, 215, 232, 0.3), rgba(215, 189, 134, 0.22)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 0.5px rgba(134, 215, 232, 0.7),
    0 0 10px rgba(134, 215, 232, 0.22),
    0 0 28px rgba(134, 215, 232, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.2);
}

.button.dark {
  color: var(--ink);
  background: rgba(8, 9, 13, 0.55);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 32px;
}

.proof-item {
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.038);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.proof-item:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 189, 134, 0.26);
  background: rgba(255, 255, 255, 0.055);
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.signal-wall {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 12px;
  align-items: stretch;
}


.signal-frame,
.media-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #12151d;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.signal-frame::after,
.media-frame::after,
.project-media::after,
.podcast-art::after,
.episode-thumb::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(244, 245, 240, 0.12) 48%, transparent 66%);
  transform: translateX(-120%) rotate(2deg);
  mix-blend-mode: screen;
  animation: surfaceScan 8.4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.signal-frame {
  min-height: 440px;
  animation: frameDrift 7s ease-in-out infinite;
}

.signal-frame img,
.media-frame img,
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 600ms ease;
}

.signal-frame:hover,
.media-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 189, 134, 0.34);
  box-shadow: 0 30px 96px rgba(0, 0, 0, 0.44);
}

.signal-frame:hover img,
.media-frame:hover img,
.project-card:hover img {
  transform: scale(1.065);
  filter: saturate(1.04) contrast(1.03);
}

.signal-column {
  display: grid;
  gap: 12px;
}

.signal-tile {
  min-height: 150px;
}

.signal-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(8, 9, 12, 0.76);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.signal-overlay p {
  margin: 6px 0 0;
  color: #bbbfc9;
  font-size: 12px;
}

.home-signal-wall {
  isolation: isolate;
  grid-template-columns: minmax(0, 1.08fr) minmax(118px, 0.55fr);
  gap: 8px;
  height: clamp(390px, 42vw, 500px);
  padding: 8px;
  border: 1px solid rgba(244, 245, 240, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.026)),
    rgba(11, 15, 20, 0.48);
  box-shadow:
    0 24px 86px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-signal-wall::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(134, 215, 232, 0.2), transparent 34%),
    radial-gradient(circle at 22% 82%, rgba(227, 166, 196, 0.16), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(139, 123, 255, 0.12), transparent 44%);
  filter: blur(16px);
  opacity: 0.82;
}

.home-signal-wall > * {
  position: relative;
  z-index: 1;
}

.home-signal-wall .signal-frame {
  min-height: 0;
  border-color: rgba(244, 245, 240, 0.14);
  box-shadow: none;
  animation: none;
}

.home-signal-wall .signal-hero-main {
  height: 100%;
}

.home-signal-wall .signal-hero-main img {
  filter: saturate(1.08) contrast(1.04);
}

.home-signal-wall .signal-stack {
  grid-template-rows: 1.08fr 0.72fr 0.92fr;
  gap: 8px;
  min-height: 0;
}

.home-signal-wall .signal-tile {
  min-height: 0;
}

.home-signal-wall .signal-tile-tall img {
  object-position: 50% 38%;
}

.home-signal-wall .signal-overlay {
  right: auto;
  width: min(78%, 250px);
  background: rgba(8, 9, 12, 0.68);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.home-immersive-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 68px);
  background: #0b0f14;
  isolation: isolate;
}

.home-immersive-hero::before,
.home-immersive-hero::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
}

.home-immersive-hero::before {
  background:
    radial-gradient(circle at 78% 20%, rgba(134, 215, 232, 0.2), transparent 24%),
    radial-gradient(circle at 62% 76%, rgba(227, 166, 196, 0.18), transparent 26%),
    linear-gradient(130deg, rgba(244, 245, 240, 0.035), transparent 36%, rgba(134, 215, 232, 0.045));
  filter: blur(22px);
  opacity: 0.72;
  animation: immersiveCaustics 22s ease-in-out infinite alternate;
}

.home-immersive-hero::after {
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 245, 240, 0.18) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 34%, rgba(134, 215, 232, 0.22) 0 1px, transparent 1.5px),
    radial-gradient(circle at 42% 76%, rgba(227, 166, 196, 0.16) 0 1px, transparent 1.5px),
    linear-gradient(180deg, rgba(11, 15, 20, 0) 0%, rgba(11, 15, 20, 0.66) 100%);
  background-size: 180px 180px, 240px 240px, 210px 210px, 100% 100%;
  opacity: 0.36;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.home-immersive-hero .hero-grid {
  position: relative;
  z-index: 2;
  min-height: min(760px, calc(100svh - 122px));
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 0;
}

.home-immersive-hero .hero-copy {
  position: relative;
  z-index: 4;
  width: min(100%, 690px);
  max-width: 690px;
  min-width: 0;
  padding: clamp(42px, 8vw, 92px) 0 clamp(36px, 6vw, 76px);
}

.home-immersive-hero .hero-copy::before {
  content: "";
  position: absolute;
  inset: -56px -210px -52px -62px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 28% 48%, rgba(11, 15, 20, 0.96), rgba(11, 15, 20, 0.72) 48%, rgba(11, 15, 20, 0) 76%),
    linear-gradient(90deg, rgba(11, 15, 20, 0.86), rgba(11, 15, 20, 0.22) 66%, transparent);
  box-shadow: 30px 0 110px rgba(11, 15, 20, 0.38);
}

.home-immersive-hero h1 {
  max-width: 11.7ch;
  text-wrap: balance;
}

.home-immersive-hero .lead {
  max-width: 660px;
}

.home-immersive-hero .button {
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.home-immersive-hero .proof-row {
  max-width: 670px;
}

.home-immersive-hero .proof-item {
  min-height: 86px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.088), rgba(255, 255, 255, 0.032)),
    rgba(11, 15, 20, 0.36);
  border-color: rgba(244, 245, 240, 0.13);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.2);
}

.home-immersive-hero .home-signal-wall {
  position: absolute;
  inset: -18px -5vw -18px 34%;
  z-index: 1;
  display: block;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.home-immersive-hero .home-signal-wall::before {
  inset: 5% 0 1% 8%;
  background:
    linear-gradient(130deg, rgba(134, 215, 232, 0.08), transparent 34%, rgba(227, 166, 196, 0.08)),
    repeating-linear-gradient(115deg, rgba(244, 245, 240, 0.08) 0 1px, transparent 1px 42px);
  filter: blur(0);
  opacity: 0.42;
  mask-image: radial-gradient(ellipse at 58% 46%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 58% 46%, #000 0%, transparent 70%);
  animation: signalGridFloat 18s ease-in-out infinite alternate;
}

.home-immersive-hero .signal-frame {
  position: absolute;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border-color: rgba(244, 245, 240, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.028)),
    rgba(11, 15, 20, 0.38);
  box-shadow:
    0 28px 88px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  animation: immersiveFloat 9s ease-in-out infinite;
}

.home-immersive-hero .signal-frame:hover {
  transform: perspective(900px) rotateY(-10deg);
  border-color: rgba(134, 215, 232, 0.36);
  box-shadow:
    -4px 4px 28px rgba(0, 0, 0, 0.52),
    0 0 22px rgba(134, 215, 232, 0.14),
    inset 1px 0 0 rgba(255, 255, 255, 0.1);
}

.home-immersive-hero .signal-frame img {
  opacity: 0.84;
  filter: saturate(1.14) contrast(1.04);
}

.home-immersive-hero .signal-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(134, 215, 232, 0.08), transparent 42%, rgba(227, 166, 196, 0.08));
  mix-blend-mode: screen;
}

.home-immersive-hero .signal-frame::after {
  opacity: 0.52;
  animation-duration: 10.8s;
}

.home-immersive-hero .signal-hero-main {
  right: 4%;
  top: 4%;
  width: min(58vw, 700px);
  height: min(63vh, 560px);
  transform: rotate(-1.4deg);
}

.home-immersive-hero .signal-column {
  display: contents;
}

.home-immersive-hero .signal-tile-tall {
  left: 24%;
  top: 14%;
  width: min(23vw, 250px);
  height: min(34vh, 300px);
  transform: rotate(2.2deg);
  animation-delay: -2.8s;
}

.home-immersive-hero .signal-stack .signal-tile:nth-child(2) {
  right: 2%;
  bottom: 12%;
  width: min(27vw, 310px);
  height: min(22vh, 190px);
  transform: rotate(2deg);
  animation-delay: -4.6s;
}

.home-immersive-hero .signal-stack .signal-tile:nth-child(3) {
  left: 38%;
  bottom: 2%;
  width: min(20vw, 230px);
  height: min(27vh, 240px);
  transform: rotate(-2.6deg);
  animation-delay: -6.2s;
}

.home-immersive-hero .signal-overlay {
  z-index: 6;
  left: 16px;
  right: auto;
  bottom: 16px;
  width: min(260px, calc(100% - 32px));
  border-color: rgba(244, 245, 240, 0.18);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(11, 15, 20, 0.46);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.signal-hud-layer,
.signal-hud-layer span {
  position: absolute;
  pointer-events: none;
}

.signal-hud-layer {
  inset: 0;
  z-index: 4;
}

.signal-thread {
  height: 1px;
  transform-origin: center;
  background: linear-gradient(90deg, transparent, rgba(134, 215, 232, 0.42), rgba(227, 166, 196, 0.3), transparent);
  opacity: 0.58;
  filter: drop-shadow(0 0 14px rgba(134, 215, 232, 0.22));
  animation: signalSweep 8.8s ease-in-out infinite;
}

.signal-thread-a {
  left: 17%;
  top: 27%;
  width: 70%;
  transform: rotate(-12deg);
}

.signal-thread-b {
  left: 25%;
  bottom: 25%;
  width: 58%;
  transform: rotate(18deg);
  animation-delay: -3.5s;
}

.signal-glass {
  border: 1px solid rgba(244, 245, 240, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(11, 15, 20, 0.28);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 36px rgba(0, 0, 0, 0.22);
  animation: immersiveFloat 10.5s ease-in-out infinite;
}

.signal-glass::before,
.signal-glass::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(90deg, rgba(134, 215, 232, 0.32), transparent);
}

.signal-glass::before {
  top: 14px;
}

.signal-glass::after {
  top: 27px;
  opacity: 0.55;
}

.signal-glass-a {
  right: 14%;
  top: 68%;
  width: 150px;
  height: 64px;
  animation-delay: -1.8s;
}

.signal-glass-b {
  left: 22%;
  top: 52%;
  width: 116px;
  height: 92px;
  animation-delay: -5.4s;
}

.signal-wave {
  right: 24%;
  bottom: 33%;
  width: 210px;
  height: 48px;
  border: 1px solid rgba(244, 245, 240, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(134, 215, 232, 0.28) 6% 7%, transparent 7% 12%, rgba(227, 166, 196, 0.22) 12% 13%, transparent 13% 19%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018));
  background-size: 32px 100%, 100% 100%;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0.72;
  animation: waveFloat 7.4s ease-in-out infinite;
}

.section {
  padding: 82px 0;
}

.section.compact {
  padding: 56px 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}

.section-header > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 12px;
}

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

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

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

.card,
.service-card,
.plan-card,
.project-card,
.step,
.contact-panel,
.profile-card,
.metric-card,
.filter-bar {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.036);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: transform 420ms ease, border-color 420ms ease, background 420ms ease, box-shadow 540ms ease;
}

.card,
.service-card,
.plan-card,
.project-card {
  position: relative;
  overflow: hidden;
}

.card,
.service-card,
.plan-card,
.step,
.contact-panel,
.profile-card,
.metric-card {
  padding: 19px;
}

.card:hover,
.service-card:hover,
.plan-card:hover,
.step:hover,
.profile-card:hover,
.metric-card:hover {
  transform: translateY(-3px);
  border-color: rgba(134, 215, 232, 0.55);
  background:
    linear-gradient(180deg, rgba(134, 215, 232, 0.04), rgba(255, 255, 255, 0.038)),
    rgba(255, 255, 255, 0.044);
  box-shadow:
    0 0 0 0.5px rgba(134, 215, 232, 0.65),
    0 0 7px rgba(134, 215, 232, 0.18),
    0 0 22px rgba(134, 215, 232, 0.06),
    0 16px 48px rgba(0, 0, 0, 0.28);
}

.service-card {
  min-height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-kicker,
.price-label,
.project-type {
  display: inline-flex;
  width: fit-content;
  color: var(--amber);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-card p,
.plan-card p,
.card p,
.step p,
.profile-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.tag-list,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.pill-list li,
.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: #b4b9c6;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 600;
}

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

.plan-card {
  position: relative;
  min-height: 395px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border-color: rgba(215, 189, 134, 0.38);
  background:
    linear-gradient(180deg, rgba(215, 189, 134, 0.11), transparent 42%),
    rgba(255, 255, 255, 0.06);
}

.plan-card.featured:hover {
  border-color: rgba(215, 189, 134, 0.68);
  background:
    linear-gradient(180deg, rgba(215, 189, 134, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.065);
  box-shadow:
    0 0 0 0.5px rgba(215, 189, 134, 0.72),
    0 0 9px rgba(215, 189, 134, 0.22),
    0 0 26px rgba(215, 189, 134, 0.08),
    0 16px 48px rgba(0, 0, 0, 0.28);
}

.plan-card .price {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.05;
}

.plan-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: #c6cfdd;
  font-size: 13px;
}

.plan-card .button {
  margin-top: auto;
}

.home-plans .plan-grid {
  gap: 14px;
}

.home-plans .plan-card {
  min-height: 304px;
  padding: 24px;
}

.home-plans .plan-card .price {
  margin-top: 18px;
  font-size: 20px;
}

.home-plans .plan-card p:not(.price) {
  max-width: 34ch;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

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

.project-card {
  overflow: hidden;
  text-decoration: none;
  transition: transform 420ms ease, border-color 420ms ease, background 420ms ease, box-shadow 540ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 189, 134, 0.6);
  background: rgba(255, 255, 255, 0.068);
  box-shadow:
    0 0 0 0.5px rgba(215, 189, 134, 0.7),
    0 0 8px rgba(215, 189, 134, 0.2),
    0 0 22px rgba(139, 123, 255, 0.09),
    0 22px 62px rgba(0, 0, 0, 0.32);
}

.project-card.is-hidden {
  display: none;
}

.project-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #12151d;
}

.project-body {
  padding: 16px;
}

.project-body h3 {
  margin-top: 0;
}

.project-body p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

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

.podcast-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  min-height: 260px;
}

.podcast-art {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
}

.podcast-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 600ms ease;
}

.podcast-card:hover .podcast-art img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.03);
}

.podcast-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.podcast-body p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.episode-card {
  overflow: hidden;
  text-decoration: none;
}

.episode-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
}

.episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.episode-card:hover .episode-thumb img {
  transform: scale(1.055);
}

.episode-card h3 {
  margin-top: 14px;
}

.episode-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* ── Reels section background ──────────────────────────── */
#reels {
  position: relative;
  isolation: isolate;
}

#reels::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(134, 215, 232, 0.06), transparent 65%);
}

/* ── Reel Carousel ─────────────────────────────────── */
.reel-carousel {
  position: relative;
  overflow: hidden;
  padding: 36px 0 20px;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.reel-track {
  display: flex;
  gap: 12px;
  align-items: center;
  will-change: transform;
}

.reel-slide {
  flex: 0 0 130px;
  opacity: 0.42;
  filter: saturate(0.82) contrast(0.96);
  transform: translateY(8px);
  cursor: pointer;
  transition:
    flex-basis 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.48s ease,
    filter 0.48s ease;
}

.reel-slide.reel-active {
  flex-basis: 300px;
  transform: translateY(0);
  opacity: 1;
  filter: none;
  cursor: default;
}

.reel-slide.reel-adjacent {
  flex-basis: 168px;
  transform: translateY(4px);
  opacity: 0.72;
  filter: saturate(0.94) contrast(1);
}

.reel-nav {
  position: absolute;
  top: 310px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(244, 245, 240, 0.2);
  background: rgba(8, 9, 13, 0.72);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.reel-nav:hover {
  background: rgba(244, 245, 240, 0.12);
  border-color: rgba(244, 245, 240, 0.4);
}

.reel-prev { left: 12px; }
.reel-next { right: 12px; }

.reel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
}

.reel-dot {
  padding: 0;
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(244, 245, 240, 0.2);
  cursor: pointer;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.reel-dot.active {
  background: var(--amber);
  width: 22px;
  border-radius: 4px;
}

/* ── Follow strip ───────────────────────────────────── */
.follow-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 28px 36px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.follow-strip-copy .eyebrow {
  margin-bottom: 4px;
}

.follow-strip-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.follow-strip-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.follow-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 24px 32px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.follow-cta > p {
  margin: 0;
  color: var(--muted);
}

.reel-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(134, 215, 232, 0.12), transparent 42%),
    #07080c;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.26);
}

.reel-slide.reel-active .reel-frame {
  border-color: rgba(134, 215, 232, 0.28);
  box-shadow:
    0 0 0 1px rgba(134, 215, 232, 0.12),
    0 28px 80px rgba(0, 0, 0, 0.48),
    0 -8px 40px rgba(134, 215, 232, 0.07);
}

.reel-slide:not(.reel-active) .reel-frame {
  border-color: rgba(244, 245, 240, 0.1);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.reel-frame::before,
.reel-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 12px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(244, 245, 240, 0.42), transparent);
}

.reel-frame::before {
  top: 12px;
}

.reel-frame::after {
  bottom: 12px;
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-slide:not(.reel-active) .reel-video {
  pointer-events: none;
}

/* Play icon overlay on non-active slides */
.reel-play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.reel-slide.reel-active .reel-play {
  opacity: 0;
}

.reel-slide:not(.reel-active) .reel-play {
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
}

.reel-play-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.reel-slide:not(.reel-active):hover .reel-play-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.22);
}

.reel-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 2px;
  opacity: 0;
  transition: max-height 0.42s ease, opacity 0.3s ease, padding 0.3s ease;
}

.reel-slide.reel-active .reel-body {
  max-height: 190px;
  padding: 14px 2px 4px;
  opacity: 1;
}

.reel-body h3 {
  margin-top: 0;
}

.reel-body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.spotify-grid {
  display: grid;
  gap: 14px;
}

.spotify-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid rgba(30, 215, 96, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(30, 215, 96, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.03)),
    rgba(8, 9, 13, 0.58);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.spotify-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(30, 215, 96, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(244, 245, 240, 0.05), transparent 38%);
  opacity: 0.56;
}

.spotify-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 215, 96, 0.36);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.34);
}

.spotify-copy,
.spotify-player {
  position: relative;
  z-index: 1;
}

.spotify-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding: 8px;
}

.spotify-program {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.spotify-program img {
  width: 116px;
  height: 116px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.spotify-program h3 {
  margin-top: 0;
}

.spotify-program p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.spotify-player {
  display: grid;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.18);
}

.spotify-frame {
  display: block;
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: var(--radius);
  background: #101010;
}

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

.embed-frame {
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: var(--radius);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  margin-bottom: 18px;
}

.filter-button {
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  background: transparent;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
}

.filter-button:hover,
.filter-button.active {
  color: var(--ink);
  border-color: var(--line-soft);
  background: rgba(255, 255, 255, 0.065);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  counter-reset: steps;
}

.step {
  counter-increment: steps;
  min-height: 205px;
}

.step::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 22px;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: center;
}

.quote-band {
  padding: 32px;
  border: 1px solid rgba(215, 189, 134, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 189, 134, 0.12), rgba(134, 215, 232, 0.08)),
    rgba(255, 255, 255, 0.05);
  animation: softPulse 7s ease-in-out infinite;
}

.quote-band p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.14;
}

.quote-band span {
  display: block;
  margin-top: 18px;
  color: #b4b9c6;
  font-size: 13px;
}

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

.profile-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: start;
}

.profile-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-panel form,
.brief-form {
  display: grid;
  gap: 12px;
}

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

label {
  display: grid;
  gap: 6px;
  color: #c7cfdd;
  font-size: 13px;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(8, 9, 13, 0.72);
  padding: 10px 11px;
}

textarea {
  min-height: 146px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(215, 189, 134, 0.52);
  box-shadow: 0 0 0 3px rgba(215, 189, 134, 0.12);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.site-footer {
  position: relative;
  padding: 0 0 44px;
  background: rgba(8, 9, 13, 0.9);
  overflow: hidden;
}

/* glow ambiental en el footer */
.site-footer::before {
  content: "";
  position: absolute;
  bottom: -40%;
  left: 50%;
  translate: -50% 0;
  width: 60%;
  height: 200px;
  background: radial-gradient(ellipse at center,
    rgba(134, 215, 232, 0.08) 0%,
    rgba(139, 123, 255, 0.06) 40%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}

.footer-divider {
  height: 1px;
  margin-bottom: 52px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(139, 123, 255, 0.3) 25%,
    rgba(134, 215, 232, 0.4) 50%,
    rgba(139, 123, 255, 0.3) 75%,
    transparent 100%
  );
  box-shadow: 0 0 18px rgba(134, 215, 232, 0.12);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-brand img {
  width: 120px;
  height: auto;
  opacity: 0.85;
  filter: drop-shadow(0 0 16px rgba(134, 215, 232, 0.15));
  transition: opacity 260ms ease, filter 260ms ease;
}

.footer-brand img:hover {
  opacity: 1;
  filter: drop-shadow(0 0 22px rgba(134, 215, 232, 0.3));
}

.footer-tagline {
  margin: 16px 0 0;
  color: rgba(134, 140, 158, 0.6);
  font-size: 12px;
  line-height: 1.7;
  max-width: 260px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.social-link svg {
  width: 15px;
  height: 15px;
  fill: rgba(244, 245, 240, 0.38);
  transition: fill 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(134, 215, 232, 0.45);
  box-shadow:
    0 0 0 0.5px rgba(134, 215, 232, 0.5),
    0 0 8px rgba(134, 215, 232, 0.16),
    0 4px 16px rgba(0, 0, 0, 0.3);
}

.social-link:hover svg {
  fill: rgba(244, 245, 240, 0.88);
}

.footer-copy {
  margin: 0;
  color: rgba(134, 140, 158, 0.38);
  font-size: 10px;
  font-family: "SF Mono", "Fira Code", ui-monospace, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--stagger, 0ms);
}

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

.tav-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: 100%;
  height: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--amber), var(--cyan));
}


@keyframes frameDrift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes softPulse {
  0%, 100% {
    border-color: rgba(215, 189, 134, 0.22);
  }
  50% {
    border-color: rgba(134, 215, 232, 0.26);
  }
}

@keyframes gradientBreath {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes hudFade {
  0%, 100% {
    opacity: 0.24;
  }
  50% {
    opacity: 0.52;
  }
}

@keyframes surfaceScan {
  0%, 18% {
    opacity: 0;
    transform: translateX(-120%) rotate(2deg);
  }
  34% {
    opacity: 0.55;
  }
  52%, 100% {
    opacity: 0;
    transform: translateX(120%) rotate(2deg);
  }
}

@keyframes immersiveCaustics {
  0% {
    transform: translate3d(-2.5%, -1.8%, 0) scale(1);
    filter: blur(22px);
  }
  38% {
    transform: translate3d(0.8%, -2.4%, 0) scale(1.03);
    filter: blur(26px);
  }
  100% {
    transform: translate3d(2.5%, 1.8%, 0) scale(1.07);
    filter: blur(20px);
  }
}

@keyframes signalGridFloat {
  0% {
    transform: translate3d(-14px, 9px, 0) rotate(-1.4deg) scale(1);
  }
  45% {
    transform: translate3d(5px, -3px, 0) rotate(0.4deg) scale(1.025);
  }
  100% {
    transform: translate3d(14px, -11px, 0) rotate(1.4deg) scale(1);
  }
}

@keyframes immersiveFloat {
  0%, 100% {
    translate: 0 0;
  }
  32% {
    translate: 5px -9px;
  }
  66% {
    translate: -3px -15px;
  }
}

@keyframes signalSweep {
  0% {
    opacity: 0.08;
    filter: drop-shadow(0 0 4px rgba(134, 215, 232, 0.06));
  }
  42% {
    opacity: 1;
    filter: drop-shadow(0 0 44px rgba(227, 166, 196, 0.62)) drop-shadow(0 0 16px rgba(134, 215, 232, 0.7));
  }
  100% {
    opacity: 0.08;
    filter: drop-shadow(0 0 4px rgba(134, 215, 232, 0.06));
  }
}

@keyframes waveFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    background-position: 0 0, 0 0;
  }
  50% {
    transform: translate3d(0, -8px, 0);
    background-position: 42px 0, 0 0;
  }
}

/* ── Page transitions ───────────────────────────────────────────────── */
@keyframes pageEnter {
  from { opacity: 0; transform: translateX(56px); filter: blur(4px); }
  to   { opacity: 1; transform: translateX(0);    filter: blur(0px); }
}

@keyframes pageLeave {
  from { opacity: 1; transform: translateX(0);     filter: blur(0px); }
  to   { opacity: 0; transform: translateX(-56px); filter: blur(4px); }
}

main.page-entering {
  animation: pageEnter 400ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

main.page-leaving {
  animation: pageLeave 260ms cubic-bezier(0.4, 0, 0.8, 1) both;
  pointer-events: none;
}

@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;
  }
}

@media (max-width: 980px) {
  .magic-hud {
    display: none;
  }

  .whatsapp-float {
    right: auto;
    left: 20px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    background:
      linear-gradient(145deg, rgba(37, 211, 102, 0.18) 0%, rgba(37, 211, 102, 0.07) 100%),
      rgba(9, 11, 15, 0.86);
    border: 1px solid rgba(37, 211, 102, 0.28);
    -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.04);
    backdrop-filter: blur(28px) saturate(200%) brightness(1.04);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      inset 0 -1px 0 rgba(0, 0, 0, 0.14),
      0 8px 32px rgba(0, 0, 0, 0.45),
      0 0 18px rgba(37, 211, 102, 0.12);
    animation: fabOrbit 6s ease-in-out infinite;
    animation-delay: 0.4s;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: rgba(37, 211, 102, 0.82);
  }

  .whatsapp-float:active {
    transform: scale(0.94);
  }

  .nav-toggle {
    display: none;
  }

  /* Floating vertical stack above the FAB */
  .nav-links {
    position: fixed;
    bottom: 88px;
    right: 16px;
    top: auto;
    left: auto;
    z-index: 190;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 8px;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-radius: 0;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: none;
    isolation: isolate;
  }

  .nav-links.open {
    pointer-events: auto;
    opacity: 1;
    transform: none;
  }

  .nav-links a,
  .nav-links .nav-cta {
    max-width: none;
    margin: 0;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
      rgba(9, 11, 15, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    backdrop-filter: blur(28px) saturate(180%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 4px 20px rgba(0, 0, 0, 0.38);
    opacity: 0;
    transform: translateY(14px) scale(0.88);
    transition:
      opacity 240ms ease,
      transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1),
      background 160ms ease,
      color 160ms ease;
    pointer-events: none;
  }

  .nav-links.open a,
  .nav-links.open .nav-cta {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  /* Stagger: last in DOM = closest to FAB = appears first */
  .nav-links.open a:nth-last-child(1) { transition-delay: 0ms; }
  .nav-links.open a:nth-last-child(2) { transition-delay: 55ms; }
  .nav-links.open a:nth-last-child(3) { transition-delay: 110ms; }
  .nav-links.open a:nth-last-child(4) { transition-delay: 165ms; }
  .nav-links.open a:nth-last-child(5) { transition-delay: 220ms; }
  .nav-links.open a:nth-last-child(6) { transition-delay: 275ms; }

  .nav-links .nav-cta {
    background:
      linear-gradient(135deg, rgba(134, 215, 232, 0.22), rgba(139, 123, 255, 0.16)),
      rgba(9, 11, 15, 0.82);
    border-color: rgba(134, 215, 232, 0.3);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 0 12px rgba(134, 215, 232, 0.12),
      0 4px 20px rgba(0, 0, 0, 0.38);
  }

  /* FAB */
  .nav-mobile-fab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%),
      rgba(9, 11, 15, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.04);
    backdrop-filter: blur(28px) saturate(200%) brightness(1.04);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      inset 0 -1px 0 rgba(0, 0, 0, 0.14),
      0 8px 32px rgba(0, 0, 0, 0.45),
      0 0 18px rgba(134, 215, 232, 0.1);
    cursor: pointer;
    animation: fabOrbit 6s ease-in-out infinite;
    transition: box-shadow 260ms ease, background 260ms ease;
  }

  .nav-mobile-fab.is-open {
    animation-play-state: paused;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      inset 0 -1px 0 rgba(0, 0, 0, 0.14),
      0 0 0 0.5px rgba(134, 215, 232, 0.6),
      0 0 18px rgba(134, 215, 232, 0.2),
      0 8px 32px rgba(0, 0, 0, 0.45);
  }

  .nav-mobile-fab span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: rgba(244, 245, 240, 0.82);
    border-radius: 1px;
    transform-origin: center;
    transition:
      transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
      opacity 200ms ease;
  }

  .nav-mobile-fab.is-open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .nav-mobile-fab.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-mobile-fab.is-open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-grid,
  .section-header,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .signal-frame {
    min-height: 330px;
  }

  .grid.four,
  .grid.three,
  .plan-grid,
  .project-grid,
  .episode-grid,
  .process,
  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reel-carousel {
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    padding: 28px 0 16px;
  }

  .reel-slide {
    flex-basis: clamp(118px, 21vw, 134px);
    transform: translateY(6px);
    opacity: 0.42;
  }

  .reel-slide.reel-active {
    flex-basis: clamp(210px, 38vw, 270px);
    transform: translateY(0);
  }

  .reel-slide.reel-adjacent {
    flex-basis: clamp(140px, 26vw, 162px);
    transform: translateY(3px);
    opacity: 0.68;
  }

  .reel-nav {
    display: none;
  }

  .follow-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }

  .follow-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }

  .follow-strip-actions {
    width: 100%;
    flex-direction: column;
  }

  .follow-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .spotify-card {
    grid-template-columns: 1fr;
  }

  .podcast-grid,
  .embed-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tav-magic-canvas {
    opacity: 0.5;
  }

  .container,
  .nav-inner {
    width: min(100% - 28px, 1120px);
  }

  .nav-inner {
    height: 66px;
  }

  .logo-link img {
    width: 126px;
  }

  .hero {
    padding: 36px 0 40px;
  }

  h1 {
    font-size: clamp(30px, 9.8vw, 40px);
  }

  .lead {
    font-size: 15px;
  }

  .proof-row,
  .signal-wall,
  .grid.four,
  .grid.three,
  .grid.two,
  .plan-grid,
  .project-grid,
  .episode-grid,
  .spotify-card,
  .process,
  .metric-strip,
  .podcast-grid,
  .profile-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-right {
    align-items: flex-start;
    width: 100%;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
  }

  .spotify-program {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .spotify-program img {
    width: 82px;
    height: 82px;
  }

  .spotify-frame {
    height: 360px;
  }

  .podcast-card {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .signal-frame {
    min-height: 290px;
  }

  .home-signal-wall {
    grid-template-columns: 1fr;
    height: auto;
    gap: 8px;
  }

  .home-signal-wall .signal-hero-main {
    height: min(82vw, 340px);
    min-height: 280px;
  }

  .home-signal-wall .signal-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .home-signal-wall .signal-tile {
    aspect-ratio: 1;
  }

  .home-plans .plan-card {
    min-height: 260px;
  }

  .reel-carousel {
    padding-top: 18px;
  }

  .reel-track {
    gap: 9px;
  }

  .reel-slide {
    flex-basis: 108px;
  }

  .reel-slide.reel-active {
    flex-basis: min(56vw, 210px);
  }

  .reel-slide.reel-adjacent {
    flex-basis: 128px;
  }

  .reel-play-icon {
    width: 36px;
    height: 36px;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 980px) {
  .home-immersive-hero {
    min-height: auto;
  }

  .home-immersive-hero .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .home-immersive-hero .hero-copy {
    padding: 44px 0 22px;
  }

  .home-immersive-hero .hero-copy::before {
    inset: -34px -120px -24px -36px;
    background:
      radial-gradient(ellipse at 28% 46%, rgba(11, 15, 20, 0.98), rgba(11, 15, 20, 0.78) 50%, rgba(11, 15, 20, 0) 78%),
      linear-gradient(90deg, rgba(11, 15, 20, 0.84), transparent 72%);
  }

  .home-immersive-hero .home-signal-wall {
    position: relative;
    inset: auto;
    height: clamp(360px, 52vw, 470px);
    margin: 10px 0 0;
  }

  .home-immersive-hero .signal-hero-main {
    right: 2%;
    top: 5%;
    width: min(76vw, 640px);
    height: 78%;
  }

  .home-immersive-hero .signal-frame {
    transform: perspective(700px) rotateY(-10deg);
  }

  .home-immersive-hero .signal-frame:hover {
    transform: perspective(700px) rotateY(-7deg);
  }

  .home-immersive-hero .signal-tile-tall {
    right: auto;
    left: 4%;
    top: 10%;
    width: min(31vw, 240px);
    height: 52%;
  }

  .home-immersive-hero .signal-stack .signal-tile:nth-child(2) {
    right: 3%;
    bottom: 4%;
    width: min(36vw, 280px);
    height: 30%;
  }

  .home-immersive-hero .signal-stack .signal-tile:nth-child(3) {
    right: auto;
    left: 26%;
    bottom: 0;
    width: min(30vw, 230px);
    height: 36%;
  }
}

@media (max-width: 640px) {
  .home-immersive-hero {
    padding-top: 30px;
  }

  .home-immersive-hero::before {
    filter: blur(18px);
    opacity: 0.54;
  }

  .home-immersive-hero::after {
    opacity: 0.24;
  }

  .home-immersive-hero .hero-copy {
    padding: 24px 0 12px;
  }

  .home-immersive-hero .hero-copy::before {
    inset: -24px -78px -18px -24px;
    border-left: 0;
    box-shadow: 0 22px 64px rgba(11, 15, 20, 0.42);
  }

  .home-immersive-hero h1 {
    max-width: 12ch;
  }

  .home-immersive-hero .lead {
    max-width: 34ch;
  }

  .home-immersive-hero .proof-row {
    margin-top: 24px;
  }

  .home-immersive-hero .home-signal-wall {
    position: absolute;
    inset: 68px -44% auto 18%;
    height: min(88vw, 340px);
    margin-top: 0;
    opacity: 0.76;
    mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
  }

  .home-immersive-hero .signal-hero-main {
    right: 0;
    top: 3%;
    width: 88%;
    height: 72%;
  }

  .home-immersive-hero .signal-frame {
    transform: perspective(600px) rotateY(-8deg);
  }

  .home-immersive-hero .signal-frame:hover {
    transform: perspective(600px) rotateY(-5deg);
  }

  .home-immersive-hero .signal-tile-tall {
    right: auto;
    left: 0;
    top: 18%;
    width: 38%;
    height: 43%;
  }

  .home-immersive-hero .signal-stack .signal-tile:nth-child(2) {
    right: 5%;
    bottom: 2%;
    width: 44%;
    height: 28%;
  }

  .home-immersive-hero .signal-stack .signal-tile:nth-child(3),
  .home-immersive-hero .signal-glass-b,
  .home-immersive-hero .signal-thread-b,
  .home-immersive-hero .signal-wave {
    display: none;
  }

  .home-immersive-hero .signal-glass-a {
    right: 6%;
    top: 68%;
    width: 118px;
    height: 52px;
  }

  .home-immersive-hero .signal-overlay {
    display: none;
  }
}

/* Home hero v4: immersive signal wall */
.home-immersive-hero {
  min-height: calc(100svh - 68px);
  padding: 0;
  background:
    radial-gradient(circle at 74% 18%, rgba(134, 215, 232, 0.09), transparent 27%),
    radial-gradient(circle at 68% 70%, rgba(227, 166, 196, 0.09), transparent 30%),
    #0b0f14;
}

.home-immersive-hero .hero-grid {
  position: static;
  display: block;
  min-height: calc(100svh - 68px);
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.home-immersive-hero .hero-copy {
  position: relative;
  z-index: 8;
  width: min(780px, 56vw);
  padding: clamp(104px, 13vh, 150px) 0 clamp(54px, 9vh, 90px);
}

.home-immersive-hero .hero-copy::before {
  inset: -14vh -22vw -12vh -8vw;
  background:
    radial-gradient(ellipse at 24% 44%, rgba(11, 15, 20, 0.99), rgba(11, 15, 20, 0.82) 40%, rgba(11, 15, 20, 0.28) 68%, transparent 86%),
    linear-gradient(92deg, rgba(11, 15, 20, 0.94), rgba(11, 15, 20, 0.5) 43%, rgba(11, 15, 20, 0.08) 78%, transparent);
  box-shadow: none;
}

.home-immersive-hero .home-signal-wall {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
  opacity: 1;
  transform: none;
  perspective: 900px;
}

.home-immersive-hero .home-signal-wall::before {
  inset: -12%;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(134, 215, 232, 0.22), transparent 24%),
    radial-gradient(circle at 58% 78%, rgba(227, 166, 196, 0.2), transparent 27%),
    radial-gradient(circle at 48% 38%, rgba(139, 123, 255, 0.11), transparent 25%),
    repeating-linear-gradient(104deg, rgba(244, 245, 240, 0.09) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(6deg, rgba(134, 215, 232, 0.05) 0 1px, transparent 1px 48px);
  opacity: 0.5;
  filter: none;
  mask-image: radial-gradient(ellipse at 68% 48%, #000 0%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse at 68% 48%, #000 0%, transparent 74%);
}

.home-immersive-hero .home-signal-wall::after {
  content: "";
  position: absolute;
  right: -14vw;
  bottom: -18vh;
  z-index: 2;
  width: min(88vw, 1180px);
  height: min(48vh, 500px);
  pointer-events: none;
  background:
    linear-gradient(102deg, transparent 0 11%, rgba(134, 215, 232, 0.32) 11.2% 11.7%, transparent 12% 18%, rgba(227, 166, 196, 0.24) 18.3% 18.8%, transparent 19.2% 100%),
    repeating-linear-gradient(0deg, rgba(244, 245, 240, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, transparent, rgba(134, 215, 232, 0.08));
  background-size: 92px 100%, 100% 100%, 100% 100%;
  clip-path: polygon(0 52%, 100% 0, 96% 100%, 12% 100%);
  opacity: 0.48;
  filter: drop-shadow(0 0 32px rgba(134, 215, 232, 0.14));
  transform: rotateX(58deg) rotateZ(-6deg);
  transform-origin: 50% 100%;
  animation: signalFloorShift 12s ease-in-out infinite alternate;
}

.home-immersive-hero .signal-frame {
  transform: perspective(900px) rotateY(-14deg);
  border: 1px solid rgba(134, 215, 232, 0.16);
  border-radius: 8px;
  background: rgba(11, 15, 20, 0.12);
  box-shadow:
    -6px 6px 40px rgba(0, 0, 0, 0.58),
    4px 0 24px rgba(0, 0, 0, 0.3),
    inset 1px 0 0 rgba(255, 255, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.home-immersive-hero .signal-frame::before {
  background:
    linear-gradient(100deg, rgba(11, 15, 20, 0.32) 0%, transparent 28%),
    linear-gradient(270deg, rgba(134, 215, 232, 0.09) 0%, transparent 40%),
    radial-gradient(circle at 72% 54%, rgba(227, 166, 196, 0.14), transparent 38%);
  mix-blend-mode: normal;
}

.home-immersive-hero .signal-frame::after {
  display: none;
}

.home-immersive-hero .signal-frame img {
  transform: scale(1.04);
  opacity: 1;
  filter: saturate(1.23) contrast(1.1);
}

.home-immersive-hero .signal-hero-main {
  top: 3vh;
  right: 0vw;
  width: min(54vw, 700px);
  height: min(74vh, 700px);
  clip-path: none;
  opacity: 0.96;
  mix-blend-mode: normal;
  animation: heroPanelDrift 19s ease-in-out infinite;
}

.home-immersive-hero .signal-hero-main img {
  object-position: 48% 54%;
}

.home-immersive-hero .signal-tile-tall {
  top: 8vh;
  right: 52vw;
  left: auto;
  width: min(22vw, 280px);
  height: min(56vh, 540px);
  clip-path: none;
  opacity: 0.88;
  mix-blend-mode: normal;
  animation: heroPanelDrift 13s ease-in-out infinite reverse;
  animation-delay: -4.2s;
}

.home-immersive-hero .signal-stack .signal-tile:nth-child(2) {
  right: 0vw;
  bottom: 5vh;
  width: min(38vw, 500px);
  height: min(28vh, 260px);
  clip-path: none;
  opacity: 0.84;
  mix-blend-mode: normal;
  animation: heroPanelDrift 22s ease-in-out infinite;
  animation-delay: -8s;
}

.home-immersive-hero .signal-stack .signal-tile:nth-child(3) {
  right: 36vw;
  left: auto;
  bottom: 6vh;
  width: min(20vw, 250px);
  height: min(36vh, 340px);
  clip-path: none;
  opacity: 0.78;
  mix-blend-mode: normal;
  animation: heroPanelDrift 15s ease-in-out infinite reverse;
  animation-delay: -2.8s;
}

.home-immersive-hero .signal-overlay {
  display: none;
  place-items: start;
  left: auto;
  right: 8vw;
  bottom: 20vh;
  width: 290px;
  border: 0;
  border-left: 1px solid rgba(134, 215, 232, 0.42);
  border-radius: 0;
  padding: 0 0 0 14px;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.home-immersive-hero .signal-overlay strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.home-immersive-hero .signal-overlay p {
  color: rgba(244, 245, 240, 0.68);
}

.home-immersive-hero .signal-hud-layer {
  z-index: 7;
}

.home-immersive-hero .signal-thread {
  opacity: 0.72;
}

.home-immersive-hero .signal-thread-a {
  left: 32vw;
  top: 25vh;
  width: 62vw;
  transform: rotate(-10deg);
}

.home-immersive-hero .signal-thread-b {
  left: 44vw;
  bottom: 25vh;
  width: 46vw;
  transform: rotate(17deg);
}

.home-immersive-hero .signal-glass {
  border-color: rgba(244, 245, 240, 0.11);
  background:
    linear-gradient(135deg, rgba(244, 245, 240, 0.095), rgba(244, 245, 240, 0.022)),
    rgba(134, 215, 232, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 58px rgba(0, 0, 0, 0.22);
}

.home-immersive-hero .signal-glass-a {
  right: 18vw;
  top: 61vh;
  width: 210px;
  height: 74px;
}

.home-immersive-hero .signal-glass-b {
  left: auto;
  right: 54vw;
  top: 46vh;
  width: 150px;
  height: 104px;
}

.home-immersive-hero .signal-wave {
  right: 25vw;
  bottom: 32vh;
  width: 300px;
  opacity: 0.68;
}

.home-immersive-hero .proof-row {
  display: flex;
  gap: 24px;
  max-width: 760px;
  margin-top: 36px;
}

.home-immersive-hero .proof-item {
  flex: 1 1 0;
  min-height: 0;
  padding: 0 0 0 14px;
  border: 0;
  border-left: 1px solid rgba(244, 245, 240, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.home-immersive-hero .proof-item:hover {
  transform: none;
  background: transparent;
}

.home-immersive-hero .proof-item strong {
  color: rgba(134, 215, 232, 0.92);
  font-size: 20px;
}

.home-immersive-hero .proof-item span {
  color: rgba(244, 245, 240, 0.58);
}

@keyframes heroPanelDrift {
  0% {
    translate: 0 0;
    filter: saturate(1.1) contrast(1.04);
  }
  28% {
    translate: 11px -13px;
    filter: saturate(1.18) contrast(1.06);
  }
  58% {
    translate: 2px -26px;
    filter: saturate(1.28) contrast(1.11);
  }
  100% {
    translate: 0 0;
    filter: saturate(1.1) contrast(1.04);
  }
}

@keyframes signalFloorShift {
  0% {
    translate: 0 0;
    opacity: 0.28;
    filter: drop-shadow(0 0 28px rgba(134, 215, 232, 0.1));
  }
  48% {
    translate: -10px -5px;
    opacity: 0.54;
    filter: drop-shadow(0 0 52px rgba(134, 215, 232, 0.22));
  }
  100% {
    translate: -24px -14px;
    opacity: 0.38;
    filter: drop-shadow(0 0 28px rgba(134, 215, 232, 0.1));
  }
}

@media (max-width: 980px) {
  .home-immersive-hero .hero-grid {
    display: block;
    min-height: auto;
  }

  .home-immersive-hero .hero-copy {
    width: min(100%, 720px);
    padding: 74px 0 48px;
  }

  .home-immersive-hero .home-signal-wall {
    position: absolute;
    inset: 0;
    height: auto;
    margin: 0;
  }

  .home-immersive-hero .signal-hero-main {
    right: -32vw;
    top: 2vh;
    width: 116vw;
    height: 70vh;
    opacity: 0.56;
  }

  .home-immersive-hero .signal-tile-tall {
    right: 43vw;
    top: 15vh;
    width: 38vw;
    height: 44vh;
    opacity: 0.35;
  }

  .home-immersive-hero .signal-stack .signal-tile:nth-child(2) {
    right: -9vw;
    bottom: 7vh;
    width: 58vw;
    height: 27vh;
  }

  .home-immersive-hero .signal-stack .signal-tile:nth-child(3) {
    right: 34vw;
    bottom: 4vh;
    width: 28vw;
    height: 28vh;
  }
}

@media (max-width: 640px) {
  .home-immersive-hero {
    padding-top: 0;
    min-height: auto;
  }

  .home-immersive-hero .hero-grid {
    width: calc(100% - 28px);
  }

  .home-immersive-hero .hero-copy {
    padding: 64px 0 42px;
    width: 100%;
  }

  .home-immersive-hero .hero-copy::before {
    inset: -46px -12vw -34px -26px;
    background:
      radial-gradient(ellipse at 10% 39%, rgba(11, 15, 20, 0.98), rgba(11, 15, 20, 0.78) 42%, rgba(11, 15, 20, 0.26) 64%, transparent 86%),
      linear-gradient(90deg, rgba(11, 15, 20, 0.94), rgba(11, 15, 20, 0.42) 58%, transparent);
  }

  .home-immersive-hero h1,
  .home-immersive-hero .lead {
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.82);
  }

  .home-immersive-hero .lead {
    max-width: 33ch;
  }

  .home-immersive-hero .home-signal-wall::before {
    opacity: 0.84;
    mask-image: radial-gradient(ellipse at 72% 34%, #000 0%, transparent 82%);
    -webkit-mask-image: radial-gradient(ellipse at 72% 34%, #000 0%, transparent 82%);
  }

  .home-immersive-hero .home-signal-wall::after {
    right: -42vw;
    bottom: -8vh;
    width: 134vw;
    height: 34vh;
    opacity: 0.46;
  }

  .home-immersive-hero .signal-hero-main {
    right: -52vw;
    top: 3vh;
    width: 148vw;
    height: 61vh;
    opacity: 0.72;
    clip-path: polygon(20% 0, 100% 5%, 95% 76%, 70% 100%, 0 84%, 7% 24%);
  }

  .home-immersive-hero .signal-hero-main img {
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 12%, #000 83%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 12%, #000 83%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  }

  .home-immersive-hero .signal-tile-tall {
    right: 16vw;
    top: 29vh;
    width: 70vw;
    height: 31vh;
    opacity: 0.42;
  }

  .home-immersive-hero .signal-stack .signal-tile:nth-child(2) {
    right: -16vw;
    bottom: 27vh;
    width: 100vw;
    height: 24vh;
    opacity: 0.62;
  }

  .home-immersive-hero .signal-stack .signal-tile:nth-child(3),
  .home-immersive-hero .signal-overlay,
  .home-immersive-hero .signal-glass-b,
  .home-immersive-hero .signal-thread-b {
    display: none;
  }

  .home-immersive-hero .signal-thread-a {
    left: 10vw;
    top: 27vh;
    width: 102vw;
    opacity: 0.72;
  }

  .home-immersive-hero .signal-glass-a {
    right: 2vw;
    top: 41vh;
    width: 126px;
    height: 50px;
    opacity: 0.7;
  }

  .home-immersive-hero .signal-wave {
    right: -8vw;
    bottom: 40vh;
    width: 190px;
    height: 42px;
    opacity: 0.7;
  }

  .home-immersive-hero .proof-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }
}

/* Mutating image system for the home signal wall */
.home-immersive-hero .signal-frame {
  transition:
    top 1200ms cubic-bezier(0.22, 0.61, 0.36, 1),
    right 1200ms cubic-bezier(0.22, 0.61, 0.36, 1),
    bottom 1200ms cubic-bezier(0.22, 0.61, 0.36, 1),
    width 1200ms cubic-bezier(0.22, 0.61, 0.36, 1),
    height 1200ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 900ms ease,
    filter 900ms ease,
    clip-path 1200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: top, right, bottom, width, height, opacity, filter, clip-path;
}

.home-immersive-hero .signal-frame img {
  object-position: var(--signal-focus, 50% 50%);
  transition:
    opacity 680ms ease,
    transform 1200ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 900ms ease;
  will-change: opacity, transform, filter;
}

.home-immersive-hero .signal-hero-main img {
  object-position: var(--signal-focus, 48% 54%);
}

.home-immersive-hero .home-signal-wall.signal-mutating .signal-frame {
  filter: brightness(1.08) saturate(1.12);
}

.home-immersive-hero .home-signal-wall.signal-mutating .signal-frame.is-swapping img {
  opacity: 0.08;
  transform: scale(1.12);
}

.home-immersive-hero .home-signal-wall.signal-layout-1 .signal-hero-main {
  top: -1vh;
  right: -12vw;
  width: min(90vw, 1180px);
  height: min(82vh, 790px);
  clip-path: polygon(8% 12%, 100% 0, 92% 78%, 66% 100%, 0 82%, 13% 26%);
  opacity: 0.68;
}

.home-immersive-hero .home-signal-wall.signal-layout-1 .signal-tile-tall {
  top: 18vh;
  right: 53vw;
  width: min(22vw, 290px);
  height: min(51vh, 500px);
  opacity: 0.44;
}

.home-immersive-hero .home-signal-wall.signal-layout-1 .signal-stack .signal-tile:nth-child(2) {
  right: -4vw;
  bottom: 8vh;
  width: min(52vw, 690px);
  height: min(26vh, 280px);
  opacity: 0.76;
}

.home-immersive-hero .home-signal-wall.signal-layout-1 .signal-stack .signal-tile:nth-child(3) {
  right: 26vw;
  bottom: 1vh;
  width: min(22vw, 320px);
  height: min(38vh, 380px);
  opacity: 0.7;
}

.home-immersive-hero .home-signal-wall.signal-layout-2 .signal-hero-main {
  top: 6vh;
  right: -24vw;
  width: min(88vw, 1140px);
  height: min(72vh, 710px);
  clip-path: polygon(22% 0, 100% 10%, 96% 86%, 78% 100%, 0 82%, 5% 18%);
  opacity: 0.72;
}

.home-immersive-hero .home-signal-wall.signal-layout-2 .signal-tile-tall {
  top: 5vh;
  right: 37vw;
  width: min(28vw, 360px);
  height: min(60vh, 600px);
  opacity: 0.56;
}

.home-immersive-hero .home-signal-wall.signal-layout-2 .signal-stack .signal-tile:nth-child(2) {
  right: 10vw;
  bottom: 2vh;
  width: min(36vw, 510px);
  height: min(37vh, 350px);
  opacity: 0.66;
}

.home-immersive-hero .home-signal-wall.signal-layout-2 .signal-stack .signal-tile:nth-child(3) {
  right: 45vw;
  bottom: 10vh;
  width: min(18vw, 270px);
  height: min(30vh, 300px);
  opacity: 0.76;
}

.home-immersive-hero .home-signal-wall.signal-layout-3 .signal-hero-main {
  top: -8vh;
  right: -9vw;
  width: min(82vw, 1090px);
  height: min(90vh, 860px);
  clip-path: polygon(15% 5%, 96% 0, 100% 68%, 72% 100%, 0 90%, 6% 34%);
  opacity: 0.64;
}

.home-immersive-hero .home-signal-wall.signal-layout-3 .signal-tile-tall {
  top: 24vh;
  right: 32vw;
  width: min(24vw, 330px);
  height: min(38vh, 390px);
  opacity: 0.58;
}

.home-immersive-hero .home-signal-wall.signal-layout-3 .signal-stack .signal-tile:nth-child(2) {
  right: 16vw;
  bottom: -1vh;
  width: min(42vw, 580px);
  height: min(29vh, 300px);
  opacity: 0.7;
}

.home-immersive-hero .home-signal-wall.signal-layout-3 .signal-stack .signal-tile:nth-child(3) {
  right: 52vw;
  bottom: 3vh;
  width: min(20vw, 290px);
  height: min(45vh, 430px);
  opacity: 0.62;
}

.home-immersive-hero .home-signal-wall.signal-layout-1 .signal-glass-a {
  right: 23vw;
  top: 58vh;
}

.home-immersive-hero .home-signal-wall.signal-layout-2 .signal-glass-a {
  right: 12vw;
  top: 64vh;
}

.home-immersive-hero .home-signal-wall.signal-layout-3 .signal-glass-a {
  right: 30vw;
  top: 55vh;
}

.home-immersive-hero .home-signal-wall.signal-layout-1 .signal-wave {
  right: 31vw;
  bottom: 29vh;
}

.home-immersive-hero .home-signal-wall.signal-layout-2 .signal-wave {
  right: 19vw;
  bottom: 35vh;
}

.home-immersive-hero .home-signal-wall.signal-layout-3 .signal-wave {
  right: 38vw;
  bottom: 25vh;
}

@media (max-width: 980px) {
  .home-immersive-hero .home-signal-wall.signal-layout-1 .signal-hero-main {
    right: -42vw;
    top: 3vh;
    width: 124vw;
    height: 66vh;
  }

  .home-immersive-hero .home-signal-wall.signal-layout-2 .signal-hero-main {
    right: -22vw;
    top: 6vh;
    width: 106vw;
    height: 62vh;
  }

  .home-immersive-hero .home-signal-wall.signal-layout-3 .signal-hero-main {
    right: -34vw;
    top: -2vh;
    width: 118vw;
    height: 72vh;
  }
}

@media (max-width: 640px) {
  .home-immersive-hero .signal-frame {
    transition:
      top 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
      right 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
      bottom 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
      width 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
      height 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 720ms ease,
      filter 720ms ease,
      clip-path 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .home-immersive-hero .home-signal-wall.signal-layout-1 .signal-hero-main {
    right: -68vw;
    top: 2vh;
    width: 158vw;
    height: 58vh;
    opacity: 0.7;
  }

  .home-immersive-hero .home-signal-wall.signal-layout-1 .signal-tile-tall {
    right: 26vw;
    top: 25vh;
    width: 60vw;
    height: 31vh;
    opacity: 0.4;
  }

  .home-immersive-hero .home-signal-wall.signal-layout-1 .signal-stack .signal-tile:nth-child(2) {
    right: -26vw;
    bottom: 30vh;
    width: 98vw;
    height: 22vh;
    opacity: 0.56;
  }

  .home-immersive-hero .home-signal-wall.signal-layout-2 .signal-hero-main {
    right: -36vw;
    top: 10vh;
    width: 128vw;
    height: 52vh;
    opacity: 0.66;
  }

  .home-immersive-hero .home-signal-wall.signal-layout-2 .signal-tile-tall {
    right: 6vw;
    top: 30vh;
    width: 72vw;
    height: 27vh;
    opacity: 0.36;
  }

  .home-immersive-hero .home-signal-wall.signal-layout-2 .signal-stack .signal-tile:nth-child(2) {
    right: -4vw;
    bottom: 34vh;
    width: 84vw;
    height: 20vh;
    opacity: 0.5;
  }

  .home-immersive-hero .home-signal-wall.signal-layout-3 .signal-hero-main {
    right: -56vw;
    top: -1vh;
    width: 154vw;
    height: 64vh;
    opacity: 0.68;
  }

  .home-immersive-hero .home-signal-wall.signal-layout-3 .signal-tile-tall {
    right: 34vw;
    top: 31vh;
    width: 56vw;
    height: 28vh;
    opacity: 0.38;
  }

  .home-immersive-hero .home-signal-wall.signal-layout-3 .signal-stack .signal-tile:nth-child(2) {
    right: -20vw;
    bottom: 26vh;
    width: 94vw;
    height: 25vh;
    opacity: 0.56;
  }

  .home-immersive-hero .home-signal-wall.signal-layout-1 .signal-wave,
  .home-immersive-hero .home-signal-wall.signal-layout-2 .signal-wave,
  .home-immersive-hero .home-signal-wall.signal-layout-3 .signal-wave {
    right: -8vw;
    bottom: 40vh;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   HOME TECH HERO — interactivo, tipográfico, sin imágenes
   ───────────────────────────────────────────────────────────────────────── */

.home-hero-tech {
  position: relative;
  min-height: calc(100svh - 68px);
  display: grid;
  align-items: center;
  padding: 80px 0 64px;
  overflow: hidden;
  isolation: isolate;
}

/* dot grid fade */
.home-hero-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(244, 245, 240, 0.11) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 46%, black 20%, transparent 74%);
  mask-image: radial-gradient(ellipse 90% 90% at 50% 46%, black 20%, transparent 74%);
}

/* slow scanning line */
@keyframes heroScan {
  0%   { transform: translateY(-8vh); opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { transform: translateY(108vh); opacity: 0; }
}

.home-hero-tech::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(134, 215, 232, 0.22) 30%, rgba(134, 215, 232, 0.22) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  animation: heroScan 11s linear infinite;
}

/* HUD corners */
.hud-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(134, 215, 232, 0.36);
  z-index: 3;
}

.hud-corner {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hud-tl { top: 20px; left: 20px; }
.hud-tr { top: 20px; right: 20px; }
.hud-bl { bottom: 20px; left: 20px; }
.hud-br { bottom: 20px; right: 20px; }

.hud-system { color: rgba(244, 245, 240, 0.52); }
.hud-status { color: rgba(183, 228, 198, 0.72); }
.hud-label  { color: rgba(134, 215, 232, 0.46); }
.hud-sep    { opacity: 0.35; }
.hud-coords {
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease;
}

/* blinking cursor on status */
@keyframes hudBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hud-status::after {
  content: "·";
  margin-left: 3px;
  animation: hudBlink 1.4s step-end infinite;
}

/* hero copy */
.hero-tech-inner {
  position: relative;
  z-index: 2;
}

.home-hero-tech .hero-copy {
  max-width: 860px;
}

.home-hero-tech h1 {
  max-width: none;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

/* gradient italic accent */
.hl-ghost {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(100deg, var(--cyan) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* proof items: monospace number */
.home-hero-tech .proof-item strong {
  font-family: "SF Mono", "Fira Code", "Fira Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
}

@media (max-width: 640px) {
  .home-hero-tech {
    padding: 56px 0 48px;
  }

  .home-hero-tech h1 {
    font-size: clamp(36px, 10vw, 54px);
  }

  .hud-tl, .hud-bl { left: 14px; }
  .hud-tr, .hud-br { right: 14px; }
  .hud-tl, .hud-tr { top: 14px; }
  .hud-bl, .hud-br { bottom: 14px; }
  .hud-tr .hud-coords { display: none; }
}

/* ─────────────────────────────────────────────────────────────────────────
   HOME HERO CENTRADO — logo grande, canvas retroiluminando, ticker
   ───────────────────────────────────────────────────────────────────────── */

/* Override .hero base: display:grid y padding interfieren */
.home-hero-centered {
  display: flex !important;
  flex-direction: column;
  padding: 0 !important;
  position: relative;
  min-height: calc(100svh - 68px);
  overflow: hidden;
}


/* inner — flex:1 para llenar altura, align-items:center para centrar hijos */
.hero-centered-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 60px 20px 100px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* logo + glow concentrado */
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes glowBreath {
  0%   { opacity: 0.6; transform: scale(0.96); }
  50%  { opacity: 1;   transform: scale(1.04); }
  100% { opacity: 0.7; transform: scale(0.98); }
}

@keyframes glowBurst {
  0%   { opacity: 0;   transform: scale(2.6); filter: blur(60px) brightness(3); }
  20%  { opacity: 1;   transform: scale(1.9); filter: blur(50px) brightness(2); }
  55%  { opacity: 0.9; transform: scale(1.2); filter: blur(42px) brightness(1.3); }
  100% { opacity: 0.7; transform: scale(0.96); filter: blur(38px) brightness(1); }
}

@keyframes logoMaterialize {
  0%   { opacity: 0;    transform: scale(0.88); filter: blur(44px) brightness(7)  saturate(0); }
  28%  { opacity: 0.45; transform: scale(0.95); filter: blur(16px) brightness(3.5) saturate(0.2); }
  58%  { opacity: 0.82; transform: scale(1.01); filter: blur(4px)  brightness(1.6) saturate(0.7); }
  78%  { opacity: 0.97; transform: scale(1.005); filter: blur(0.8px) brightness(1.15) saturate(0.95); }
  100% { opacity: 1;    transform: scale(1);    filter: blur(0px)  brightness(1)   saturate(1); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0px); }
}

.hero-logo-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(134, 215, 232, 0.38) 0%, transparent 50%),
    radial-gradient(ellipse 55% 70% at 45% 55%, rgba(139, 123, 255, 0.28) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  animation: glowBurst 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s both,
             glowBreath 4s ease-in-out 2.6s infinite;
}

.hero-logo-wrap {
  animation: logoMaterialize 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s both;
}

.home-hero-centered .hero-tagline {
  animation: heroFadeUp 900ms cubic-bezier(0.22, 0.61, 0.36, 1) 1.7s both;
}

.home-hero-centered .hero-actions {
  animation: heroFadeUp 900ms cubic-bezier(0.22, 0.61, 0.36, 1) 2.1s both;
}

.hero-logo-img {
  position: relative;
  z-index: 1;
  width: clamp(300px, 52vw, 640px);
  height: auto;
  filter:
    drop-shadow(0 0 52px rgba(134, 215, 232, 0.4))
    drop-shadow(0 0 20px rgba(139, 123, 255, 0.32))
    brightness(1.12);
}

.hero-tagline {
  margin: 0;
  max-width: 360px;
  color: rgba(134, 140, 158, 0.78);
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.8;
}

.home-hero-centered .hero-actions {
  margin-top: 4px;
  justify-content: center;
}

.home-hero-centered .button {
  padding: 12px 26px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 4px 24px rgba(0, 0, 0, 0.28);
}

.home-hero-centered .button:hover {
  border-color: rgba(134, 215, 232, 0.5);
  background: rgba(255, 255, 255, 0.19);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 0 0 0.5px rgba(134, 215, 232, 0.45),
    0 0 16px rgba(134, 215, 232, 0.16),
    0 6px 28px rgba(0, 0, 0, 0.32);
}

.home-hero-centered .button.primary {
  border-color: rgba(134, 215, 232, 0.55);
  background:
    linear-gradient(145deg, rgba(134, 215, 232, 0.32) 0%, rgba(139, 123, 255, 0.24) 100%),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 0 24px rgba(134, 215, 232, 0.2),
    0 4px 24px rgba(0, 0, 0, 0.28);
}

.home-hero-centered .button.primary:hover {
  border-color: rgba(134, 215, 232, 0.75);
  background:
    linear-gradient(145deg, rgba(134, 215, 232, 0.42) 0%, rgba(139, 123, 255, 0.32) 100%),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 0 0 0.5px rgba(134, 215, 232, 0.65),
    0 0 28px rgba(134, 215, 232, 0.28),
    0 6px 28px rgba(0, 0, 0, 0.32);
}

/* ticker */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 46px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(244, 245, 240, 0.07);
  background: rgba(8, 9, 13, 0.65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 4;
}

@keyframes tickerRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: tickerRoll 28s linear infinite;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 245, 240, 0.26);
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-sep {
  color: var(--cyan);
  opacity: 0.4;
}

@media (max-width: 640px) {
  .hero-centered-inner {
    gap: 22px;
    padding: 48px 20px 90px;
  }
  .hero-logo-img {
    width: clamp(240px, 78vw, 380px);
  }
}
