/* Landing — split Engineer / Actor */

:root {
  --pearl: #FAFBFD;
  --sage-mist: #E8F0EC;
  --sage: #9BB5A0;
  --teal: #6BA3A8;
  --teal-deep: #4A9B7F;
  --cream: #F7F3EC;
  --burgundy: #8B3A3A;
  --ink: #2A3038;
  --amber: #C49A6C;
  --font-display: 'Playfair Display SC', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: system-ui, sans-serif;
  color: var(--ink);
  background: var(--pearl);
}

body.has-cursor,
body.has-cursor a,
body.has-cursor button { cursor: none !important; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10001;
  padding: 0.75rem 1rem;
  background: var(--teal);
  color: white;
}
.skip-link:focus { top: 1rem; }

/* Split layout */
.landing {
  display: flex;
  height: 100vh;
  height: 100dvh;
  position: relative;
}

.landing-name {
  --mark-size: clamp(2.1rem, 4.8vw, 2.75rem);
  --name-gap: clamp(0.65rem, 2vw, 1rem);
  position: absolute;
  top: clamp(1.25rem, 3.5vw, 2rem);
  left: 0;
  right: 0;
  z-index: 25;
  height: var(--mark-size);
  pointer-events: none;
  opacity: 0;
  animation: nameIn 0.8s var(--ease) 0.2s forwards;
}

.landing-name__part {
  position: absolute;
  top: 50%;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.65rem);
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-50%);
}

.landing-name__part--left {
  color: var(--teal-deep);
  right: calc(50% + var(--mark-size) / 2 + var(--name-gap));
  text-align: right;
}

.landing-name__part--right {
  color: var(--burgundy);
  left: calc(50% + var(--mark-size) / 2 + var(--name-gap));
  text-align: left;
}

.landing-name__mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 30;
  display: grid;
  place-items: center;
  width: var(--mark-size);
  height: var(--mark-size);
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(0.58rem, 1.4vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 50%;
  background:
    linear-gradient(var(--pearl), var(--pearl)) padding-box,
    linear-gradient(160deg, var(--teal) 0%, var(--sage) 45%, var(--amber) 75%, var(--burgundy) 100%) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    0 0 0 5px var(--pearl),
    0 0 0 6px rgba(255, 255, 255, 0.55),
    0 4px 22px rgba(42, 48, 56, 0.12);
}

@keyframes nameIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: flex-grow 0.55s var(--ease);
  min-width: 0;
  padding: clamp(4.5rem, 12vh, 6.5rem) clamp(1.25rem, 4vw, 2rem) clamp(2rem, 5vh, 3rem);
}

.split-panel--engineer {
  background: linear-gradient(145deg, var(--pearl) 0%, var(--sage-mist) 100%);
}

.split-panel--actor {
  background: linear-gradient(145deg, var(--cream) 0%, #EDE6DC 100%);
}

.landing:not(.is-mobile) .split-panel--engineer:hover,
.landing:not(.is-mobile) .split-panel--engineer:focus-visible { flex-grow: 1.5; }
.landing:not(.is-mobile) .split-panel--actor:hover,
.landing:not(.is-mobile) .split-panel--actor:focus-visible { flex-grow: 1.5; }

.split-panel__canvas {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.split-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  animation: labelIn 0.6s var(--ease) 0.6s forwards;
}

.split-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 600;
  margin: 0.4rem 0 0.65rem;
  line-height: 1.1;
  opacity: 0;
  animation: labelIn 0.6s var(--ease) 0.75s forwards;
}

.split-panel--engineer .split-title { font-family: 'Outfit', system-ui, sans-serif; color: var(--teal-deep); }
.split-panel--actor .split-title { font-family: var(--font-display); color: var(--burgundy); }

.split-sub {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0;
  animation: labelIn 0.6s var(--ease) 0.9s forwards;
}

@keyframes labelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 0.85; transform: translateY(0); }
}

@keyframes ctaIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.split-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(2.25rem, 5vh, 3.25rem);
  padding: 0.8rem 1.75rem;
  border: 1px solid currentColor;
  border-radius: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
  opacity: 0;
  animation: ctaIn 0.6s var(--ease) 1.05s forwards;
  transition: background 0.22s var(--ease), color 0.22s, transform 0.22s var(--ease), box-shadow 0.22s;
}

.split-panel--engineer .split-cta { color: var(--teal-deep); border-color: var(--teal); }
.split-panel--engineer:hover .split-cta {
  background: var(--teal-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 155, 127, 0.25);
}
.split-panel--actor .split-cta { color: var(--burgundy); border-color: var(--burgundy); }
.split-panel--actor:hover .split-cta {
  background: var(--burgundy);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 58, 58, 0.2);
}

.split-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(100%, 20rem);
  gap: 0;
}

/* Lightning seam */
.seam {
  position: absolute;
  top: clamp(4rem, 10vh, 5.5rem);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(56px, 6vw, 80px);
  z-index: 15;
  pointer-events: none;
  opacity: 0;
  animation: seamIn 1s var(--ease) 0.35s forwards;
}

.seam::before {
  content: '';
  position: absolute;
  inset: 8% 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(107, 163, 168, 0.15) 15%,
    rgba(155, 181, 160, 0.25) 50%,
    rgba(196, 154, 108, 0.15) 85%,
    transparent 100%
  );
  filter: blur(1px);
}

.seam-bolt {
  width: 100%;
  height: 100%;
  position: relative;
}

.seam-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}

.seam-svg--mobile {
  display: none;
}

.bolt-halo {
  fill: #6BA3A8;
  opacity: 0.28;
  filter: url(#boltOuterGlow);
  animation: boltBreathe 4s ease-in-out infinite;
}

.bolt-body {
  fill: url(#boltGradient);
  filter: url(#boltGlow);
  animation: boltFlicker 5s linear infinite;
}

.seam-svg--mobile .bolt-body {
  fill: url(#boltGradientH);
}

.seam-svg--mobile .bolt-core {
  fill: url(#boltCoreGradH);
}

.bolt-core {
  fill: url(#boltCoreGrad);
  opacity: 0.55;
  mix-blend-mode: overlay;
}

.bolt-spark {
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  animation: sparkFlash 5s linear infinite;
}

.bolt-spark--a { animation-delay: 1.2s; }
.bolt-spark--b { animation-delay: 3.1s; }

.seam.is-pulse .bolt-body {
  animation: boltPulse 0.45s var(--ease);
}

.seam.is-pulse .bolt-halo {
  animation: boltPulseHalo 0.45s var(--ease);
}

@keyframes seamIn {
  from { opacity: 0; transform: translateX(-50%) scaleY(0.92); }
  to { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

@keyframes boltBreathe {
  0%, 100% { opacity: 0.24; }
  50% { opacity: 0.38; }
}

@keyframes boltFlicker {
  0%, 88%, 100% { opacity: 1; filter: url(#boltGlow); }
  89% { opacity: 0.82; }
  90% { opacity: 1; }
  93% { opacity: 0.9; }
  94% { opacity: 1; }
}

@keyframes sparkFlash {
  0%, 96%, 100% { opacity: 0; }
  97% { opacity: 0.9; }
  98% { opacity: 0.2; }
  99% { opacity: 0.7; }
}

@keyframes boltPulse {
  0%, 100% { opacity: 1; filter: url(#boltGlow); }
  40% { opacity: 1; filter: drop-shadow(0 0 18px rgba(184, 232, 236, 0.9)) drop-shadow(0 0 32px rgba(196, 154, 108, 0.5)); }
}

@keyframes boltPulseHalo {
  0%, 100% { opacity: 0.28; }
  40% { opacity: 0.55; }
}

/* Cursors */
.cursor-reticle,
.cursor--actor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: transform;
}

body.has-cursor .cursor-reticle.is-active,
body.has-cursor .cursor--actor.is-active { opacity: 1; }

/* Engineer — viseur calibration / vision */
.cursor-reticle {
  font-family: var(--font-mono);
}

.reticle-frame {
  position: relative;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  transition: transform 0.25s var(--ease);
}

.reticle-corner {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--teal);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.reticle-corner--tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.reticle-corner--tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.reticle-corner--bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.reticle-corner--br { bottom: 0; right: 0; border-left: none; border-top: none; }

.reticle-axis {
  position: absolute;
  background: rgba(107, 163, 168, 0.35);
  transition: opacity 0.25s;
}

.reticle-axis--h {
  top: 50%;
  left: 6px;
  right: 6px;
  height: 1px;
  transform: translateY(-50%);
}

.reticle-axis--v {
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 1px;
  transform: translateX(-50%);
}

.reticle-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  background: var(--teal-deep);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(107, 163, 168, 0.6);
}

.reticle-scan {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 163, 168, 0.7), transparent);
  animation: reticleScan 2.4s ease-in-out infinite;
  opacity: 0.6;
}

.reticle-label {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.cursor-reticle.is-hover .reticle-frame { transform: scale(1.15); }
.cursor-reticle.is-hover .reticle-corner { border-color: var(--teal-deep); }
.cursor-reticle.is-hover .reticle-label { opacity: 1; }

.cursor-reticle.is-click .reticle-frame {
  transform: scale(0.88);
}

.cursor-reticle.is-click .reticle-dot {
  background: white;
  box-shadow: 0 0 10px rgba(74, 155, 127, 0.9);
}

@keyframes reticleScan {
  0%, 100% { top: 5px; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 29px; opacity: 0; }
}

/* Actor — clap cinéma (comme le site acteur) */
.cursor--actor {
  transition: opacity 0.4s var(--ease);
}

.cursor-clap {
  position: relative;
  width: 40px;
  height: 34px;
  margin: -6px 0 0 -20px;
  transition: transform 0.35s var(--ease);
}

.cursor-clap-arm {
  position: absolute;
  top: 0;
  left: 2px;
  right: 2px;
  height: 14px;
  background: repeating-linear-gradient(
    -38deg,
    var(--burgundy) 0 4px,
    var(--cream) 4px 8px
  );
  border: 1px solid var(--ink);
  border-radius: 2px 2px 0 0;
  transform-origin: 4px 100%;
  transform: rotate(-24deg);
  transition: transform 0.18s var(--ease);
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cursor-clap-label {
  font-family: var(--font-mono);
  font-size: 0.45rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.cursor-clap-base {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 0 0 3px 3px;
  display: grid;
  place-items: center;
  z-index: 1;
}

.cursor-clap-mark {
  font-family: var(--font-display);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  color: var(--burgundy);
}

.cursor--actor.is-hover .cursor-clap { transform: scale(1.08); }
.cursor--actor.is-hover .cursor-clap-label { opacity: 1; }

.cursor--actor.is-clap .cursor-clap-arm { transform: rotate(2deg); }
.cursor--actor.is-clap .cursor-clap { transform: scale(0.94); }

/* Clap cinéma — transition actor */
.clap-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: #1A1814;
  transition: opacity 0.35s var(--ease), visibility 0.35s, background 0.45s var(--ease);
}

.clap-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.clap-overlay.is-exiting {
  background: var(--cream);
}

.clap-flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.clap-overlay.is-clapped .clap-flash {
  animation: clapFlash 0.14s ease-out;
}

@keyframes clapFlash {
  0% { opacity: 0; }
  20% { opacity: 0.9; }
  100% { opacity: 0; }
}

.clap-slate {
  position: relative;
  width: min(340px, 88vw);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
  transform: scale(0.42) translateY(28px);
  opacity: 0;
  transition:
    transform 0.5s var(--ease),
    opacity 0.4s var(--ease);
}

.clap-overlay.is-entered .clap-slate {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.clap-overlay.is-clapped .clap-slate {
  transform: scale(0.98) translateY(2px);
  transition-duration: 0.08s;
}

.clap-overlay.is-exiting .clap-slate {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.clap-slate-arm {
  position: relative;
  z-index: 2;
  height: clamp(52px, 14vw, 64px);
  margin: 0 6px -2px;
  background: repeating-linear-gradient(
    -38deg,
    var(--burgundy) 0 10px,
    var(--cream) 10px 20px
  );
  border: 2px solid #1A1814;
  border-radius: 4px 4px 0 0;
  transform-origin: 18px 100%;
  transform: rotate(-26deg);
  transition: transform 0.12s cubic-bezier(0.55, 0.06, 0.68, 0.19);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.clap-overlay.is-clapped .clap-slate-arm {
  transform: rotate(3deg);
}

.clap-slate-arm-text {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 2.2vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  padding-left: 0.35em;
}

.clap-slate-base {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border: 2px solid #1A1814;
  border-radius: 0 0 6px 6px;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.clap-slate-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(26, 24, 20, 0.15);
}

.clap-slate-mark {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  letter-spacing: 0.12em;
  color: var(--burgundy);
}

.clap-slate-prod {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 24, 20, 0.55);
  text-align: right;
}

.clap-slate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
}

.clap-slate-field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.clap-slate-field--wide {
  grid-column: 1 / -1;
}

.clap-overlay.is-revealed .clap-slate-field {
  opacity: 1;
  transform: none;
}

.clap-overlay.is-revealed .clap-slate-field:nth-child(1) { transition-delay: 0.02s; }
.clap-overlay.is-revealed .clap-slate-field:nth-child(2) { transition-delay: 0.06s; }
.clap-overlay.is-revealed .clap-slate-field:nth-child(3) { transition-delay: 0.1s; }
.clap-overlay.is-revealed .clap-slate-field:nth-child(4) { transition-delay: 0.14s; }

.clap-slate-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 24, 20, 0.45);
}

.clap-slate-value {
  font-family: var(--font-mono);
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #1A1814;
}

/* Binary rain overlay */
.binary-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  background: rgba(250, 251, 253, 0.85);
  transition: opacity 0.3s;
}

.binary-overlay.is-active {
  opacity: 1;
  pointer-events: all;
  background: rgba(250, 251, 253, 0.92);
}

.landing.is-transitioning {
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.binary-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .landing {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100dvh;
  }

  .landing.is-mobile .split-panel {
    flex: 1 1 0;
    min-height: min(44vh, 22rem);
    padding: clamp(4.75rem, 13vh, 5.5rem) 1.25rem 2rem;
    justify-content: center;
  }

  .split-content {
    width: min(100%, 18rem);
  }

  .split-cta {
    margin-top: clamp(1.5rem, 4vh, 2.25rem);
  }

  .seam {
    top: auto;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0.75rem 0 1rem;
    transform: none;
    position: relative;
    order: 1;
    animation: none;
    opacity: 1;
    overflow: visible;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
      180deg,
      rgba(232, 240, 236, 0.55) 0%,
      rgba(241, 236, 228, 0.75) 50%,
      rgba(247, 243, 236, 0.95) 100%
    );
  }

  .seam::before {
    display: block;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 50%;
    bottom: auto;
    inset: auto;
    width: auto;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(107, 163, 168, 0.12) 18%,
      rgba(155, 181, 160, 0.22) 50%,
      rgba(196, 154, 108, 0.12) 82%,
      transparent 100%
    );
    filter: blur(0.5px);
    z-index: 0;
  }

  .seam-bolt {
    position: relative;
    z-index: 1;
    width: min(340px, 92vw);
    height: clamp(58px, 15vw, 76px);
    overflow: visible;
    flex-shrink: 0;
  }

  .seam-svg--desktop {
    display: none;
  }

  .seam-svg--mobile {
    display: block;
    position: static;
    width: 100%;
    height: 100%;
    transform: none;
    overflow: visible;
  }

  .seam-svg--mobile .bolt-halo {
    filter: drop-shadow(0 0 10px rgba(107, 163, 168, 0.28));
    opacity: 0.32;
    animation: boltBreathe 4s ease-in-out infinite;
  }

  .seam-svg--mobile .bolt-body {
    filter: drop-shadow(0 0 8px rgba(107, 163, 168, 0.35));
    animation: boltFlickerMobile 5s linear infinite;
  }

  .seam-svg--mobile .bolt-spark {
    display: block;
    stroke-width: 1.5;
  }

  @keyframes boltFlickerMobile {
    0%, 88%, 100% { opacity: 1; }
    89% { opacity: 0.84; }
    90% { opacity: 1; }
    93% { opacity: 0.92; }
    94% { opacity: 1; }
  }

  .split-panel--engineer { order: 0; }
  .split-panel--actor { order: 2; }

  .landing-name {
    --mark-size: clamp(1.65rem, 5vw, 2rem);
    --name-gap: clamp(0.35rem, 1.5vw, 0.65rem);
  }

  .landing-name__part {
    font-size: clamp(0.82rem, 3.8vw, 1.15rem);
    letter-spacing: 0.07em;
  }
}

@media (max-width: 380px) {
  .landing-name__part--left {
    max-width: calc(50% - var(--mark-size) / 2 - var(--name-gap) - 0.25rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .landing-name__part--right {
    max-width: calc(50% - var(--mark-size) / 2 - var(--name-gap) - 0.25rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bolt-halo, .bolt-body, .bolt-spark { animation: none; }
  .reticle-scan { animation: none; display: none; }
  .cursor-clap-arm { transition-duration: 0.01ms; }
  .clap-slate-arm { transition-duration: 0.01ms; }
  .clap-flash { animation: none !important; }
  .bolt-halo { opacity: 0.3; }
  .landing-name, .split-label, .split-title, .split-sub, .split-cta { animation: none; opacity: 1; }
  .split-sub { opacity: 0.85; }
  .seam { animation: none; opacity: 1; transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .seam { transform: none; }
}
