@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800;900&family=Fira+Code:wght@500;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #000;
  --text: #f8fafc;
  --muted: #dbe7f4;
  --blue: #39bdf8;
  --amber: #ff8a18;
  --amber-soft: #ffc15a;
  --camera-x: 0px;
  --camera-y: 0px;
  --camera-scale: 0.64;
  --camera-brightness: 1;
  --page-progress: 0;
  --energy-opacity: 0;
  --career-progress: 0;
  --career-exact-index: 0;
  --career-active-index: 0;
  --contact-scroll: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 33%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 24%, transparent 68%, rgba(0, 0, 0, 0.78));
}

.story-video {
  position: fixed;
  top: 50%;
  right: calc(100% - 100vw);
  bottom: auto;
  left: auto;
  z-index: 0;
  width: calc(100vw + 16vw);
  height: calc(100svh + 12vh);
  object-fit: contain;
  object-position: right center;
  background: transparent;
  transform: translate3d(0, -50%, 0) scale(var(--camera-scale));
  transform-origin: right center;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 14%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 14%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-composite: intersect;
  filter: saturate(1.1) contrast(1.12) brightness(var(--camera-brightness));
  will-change: transform, filter;
}

.energy-links {
  position: fixed;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: var(--energy-opacity);
  mix-blend-mode: screen;
  transition: opacity 120ms linear;
}

.energy-link-group {
  filter: url("#energy-glow");
}

.energy-path {
  fill: none;
  stroke: url("#energy-gradient");
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 120ms linear;
  vector-effect: non-scaling-stroke;
}

.energy-path-main {
  stroke-width: 2.4;
}

.energy-path-secondary {
  stroke-width: 1.1;
  opacity: 0.62;
}

.energy-path-spark {
  stroke-width: 0.8;
  opacity: 0.48;
}

.energy-impact-core {
  fill: var(--amber-soft);
  filter: url("#energy-glow");
}

.energy-impact-ring {
  fill: none;
  stroke: rgba(57, 189, 248, 0.72);
  stroke-width: 1.2;
  transform-origin: center;
  animation: impact-pulse 1500ms ease-out infinite;
}

.explorer-point {
  position: fixed;
  left: var(--explorer-x, 50vw);
  top: var(--explorer-y, 50vh);
  z-index: 7;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(0.82);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.explorer-point.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.explorer-point-ring,
.explorer-point-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0);
}

.explorer-point-ring {
  width: 1.88rem;
  height: 1.88rem;
  border: 1px solid rgba(57, 189, 248, 0.42);
  box-shadow:
    0 0 12px rgba(57, 189, 248, 0.2),
    inset 0 0 12px rgba(57, 189, 248, 0.1);
}

.explorer-point-core {
  width: 0.46rem;
  height: 0.46rem;
  background: var(--amber-soft);
  box-shadow:
    0 0 12px rgba(255, 193, 90, 0.82),
    0 0 24px rgba(57, 189, 248, 0.36);
  animation: explorer-core-pulse 1800ms ease-in-out infinite;
}

.explorer-point-label {
  position: absolute;
  left: calc(100% + 0.34rem);
  top: 50%;
  color: rgba(219, 234, 254, 0.62);
  font-family: "Fira Code", monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(57, 189, 248, 0.28);
  transform: translate3d(0, -50%, 0);
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.explorer-point:hover .explorer-point-ring,
.explorer-point:focus-visible .explorer-point-ring,
.explorer-point.is-active .explorer-point-ring {
  border-color: rgba(57, 189, 248, 0.86);
  box-shadow:
    0 0 20px rgba(57, 189, 248, 0.44),
    inset 0 0 18px rgba(57, 189, 248, 0.16);
}

.explorer-point:hover .explorer-point-core,
.explorer-point:focus-visible .explorer-point-core,
.explorer-point.is-active .explorer-point-core {
  animation-duration: 980ms;
}

.explorer-point:hover .explorer-point-label,
.explorer-point:focus-visible .explorer-point-label,
.explorer-point.is-active .explorer-point-label {
  color: rgba(255, 255, 255, 0.92);
  transform: translate3d(0.18rem, -50%, 0);
}

.explorer-point:focus-visible {
  outline: 1px solid rgba(255, 193, 90, 0.82);
  outline-offset: 0.22rem;
}

.holographic-tile {
  position: fixed;
  left: var(--tile-x, 50vw);
  top: var(--tile-y, 50vh);
  z-index: 9;
  width: min(30rem, calc(100vw - 2rem));
  color: #f8fafc;
  opacity: 0;
  pointer-events: none;
  transform:
    translate3d(calc(-100% - 1.05rem), calc(-100% - 0.95rem), 0)
    translateY(0.65rem)
    scale(0.86);
  transform-origin: right bottom;
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.18, 0.86, 0.18, 1);
}

.holographic-tile.is-open {
  opacity: 1;
  pointer-events: auto;
  transform:
    translate3d(calc(-100% - 1.05rem), calc(-100% - 0.95rem), 0)
    translateY(0)
    scale(1);
}

.holographic-tile-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(57, 189, 248, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(57, 189, 248, 0.16), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(57, 189, 248, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(3, 12, 24, 0.9), rgba(0, 0, 0, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 36px rgba(57, 189, 248, 0.08),
    0 0 42px rgba(57, 189, 248, 0.18),
    0 0 70px rgba(255, 138, 24, 0.06);
  max-height: min(24rem, calc(100vh - 2rem));
  overflow: auto;
  clip-path: polygon(1rem 0, calc(100% - 1rem) 0, 100% 1rem, 100% calc(100% - 1rem), calc(100% - 1rem) 100%, 1rem 100%, 0 calc(100% - 1rem), 0 1rem);
  padding: clamp(1rem, 1.7vw, 1.35rem);
  backdrop-filter: blur(14px);
  scrollbar-width: thin;
  scrollbar-color: rgba(57, 189, 248, 0.52) rgba(2, 6, 23, 0.28);
}

.holographic-tile-shell::-webkit-scrollbar {
  width: 0.34rem;
}

.holographic-tile-shell::-webkit-scrollbar-track {
  background: rgba(2, 6, 23, 0.28);
}

.holographic-tile-shell::-webkit-scrollbar-thumb {
  background: rgba(57, 189, 248, 0.52);
  border-radius: 999px;
}

.holographic-tile-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(57, 189, 248, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(57, 189, 248, 0.045) 0 1px, transparent 1px 100%);
  background-size: 3.2rem 3.2rem;
  opacity: 0.36;
}

.holographic-tile-shell::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 3.6rem;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--blue), transparent 72%);
  opacity: 0.74;
}

.holographic-corner {
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  pointer-events: none;
  border-color: rgba(57, 189, 248, 0.72);
}

.holographic-corner-tl {
  left: 0.55rem;
  top: 0.55rem;
  border-left: 1px solid;
  border-top: 1px solid;
}

.holographic-corner-tr {
  right: 0.55rem;
  top: 0.55rem;
  border-right: 1px solid;
  border-top: 1px solid;
}

.holographic-corner-bl {
  left: 0.55rem;
  bottom: 0.55rem;
  border-left: 1px solid;
  border-bottom: 1px solid;
}

.holographic-corner-br {
  right: 0.55rem;
  bottom: 0.55rem;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.holographic-tile-close {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  z-index: 1;
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.26);
  color: rgba(248, 250, 252, 0.74);
  cursor: pointer;
}

.holographic-tile-close:hover,
.holographic-tile-close:focus-visible {
  border-color: rgba(255, 193, 90, 0.56);
  color: #ffffff;
  outline: none;
}

.holographic-tile-close svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.holographic-kicker,
.holographic-pillars span {
  margin: 0;
  color: var(--blue);
  font-family: "Fira Code", monospace;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.holographic-tile h2 {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  margin: 0.36rem 2rem 1.2rem 0;
  color: #ffffff;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.65rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.holographic-lead,
.holographic-body,
.holographic-pillars {
  position: relative;
  z-index: 1;
}

.holographic-lead {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 700;
}

.holographic-body {
  margin: 0.64rem 0 0;
  color: rgba(219, 234, 254, 0.84);
  font-size: 0.88rem;
  line-height: 1.52;
}

.holographic-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
  margin-top: 1rem;
}

.holographic-pillars article {
  min-width: 0;
  border: 1px solid rgba(57, 189, 248, 0.22);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.48);
  padding: 0.7rem;
}

.holographic-pillars strong {
  display: block;
  margin-top: 0.18rem;
  color: #ffffff;
  font-family: "Archivo", sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.holographic-pillars p {
  margin: 0.28rem 0 0;
  color: rgba(219, 234, 254, 0.72);
  font-size: 0.72rem;
  line-height: 1.32;
}

.contact-webgl {
  position: fixed;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: normal;
}

.contact-energy-curves {
  position: fixed;
  inset: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 120ms linear;
}

.contact-energy-curve {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
  filter:
    drop-shadow(0 0 5px rgba(57, 189, 248, 0.34))
    drop-shadow(0 0 8px rgba(255, 138, 24, 0.22));
}

.contact-dock {
  position: fixed;
  top: clamp(0.75rem, 1.35vw, 1.35rem);
  left: clamp(0.75rem, 1.55vw, 1.55rem);
  z-index: 10;
  pointer-events: auto;
}

.contact-button {
  position: relative;
  width: clamp(2.7rem, 3.2vw, 3.55rem);
  height: clamp(2.7rem, 3.2vw, 3.55rem);
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: transparent;
  cursor: pointer;
  padding: 0;
}

.contact-button:focus-visible {
  outline: 1px solid rgba(255, 193, 90, 0.78);
  outline-offset: 0.18rem;
  box-shadow: 0 0 24px rgba(255, 138, 24, 0.26);
}

.contact-button:disabled {
  cursor: wait;
}

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

.contact-received {
  position: fixed;
  left: 50%;
  top: 18%;
  z-index: 10;
  margin: 0;
  color: #ffffff;
  font-family: "Fira Code", monospace;
  font-size: clamp(0.86rem, 1.1vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0;
  pointer-events: none;
  text-shadow:
    0 0 18px rgba(57, 189, 248, 0.46),
    0 0 34px rgba(255, 138, 24, 0.22);
  transform: translate3d(-50%, 0.8rem, 0);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.contact-received.is-visible {
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
}

.contact-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 12;
  width: min(35rem, calc(100vw - 2rem));
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.76);
  transform-origin: center;
  backface-visibility: hidden;
  transition:
    opacity 620ms ease,
    transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.contact-panel.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.contact-panel.is-materializing {
  pointer-events: none;
}

.contact-form {
  display: grid;
  gap: clamp(0.72rem, 1.1vw, 0.96rem);
  border: 1px solid rgba(57, 189, 248, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(57, 189, 248, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(2, 6, 14, 0.95), rgba(0, 0, 0, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 48px rgba(57, 189, 248, 0.15),
    0 0 72px rgba(255, 138, 24, 0.08);
  padding: clamp(1.05rem, 2vw, 1.55rem);
  backface-visibility: hidden;
  transform-origin: center;
  will-change: opacity, transform;
}

.contact-panel.is-materializing .contact-form {
  animation: contact-form-build 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.contact-panel.is-materializing .contact-form > * {
  opacity: 0;
  transform: translate3d(0, 0.28rem, 0);
  animation: contact-field-build 520ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.contact-panel.is-materializing .contact-form > *:nth-child(1) {
  animation-delay: 160ms;
}

.contact-panel.is-materializing .contact-form > *:nth-child(2) {
  animation-delay: 240ms;
}

.contact-panel.is-materializing .contact-form > *:nth-child(3) {
  animation-delay: 320ms;
}

.contact-panel.is-materializing .contact-form > *:nth-child(5) {
  animation-delay: 420ms;
}

.contact-panel.is-materializing .contact-form > *:nth-child(6),
.contact-panel.is-materializing .contact-form > *:nth-child(7) {
  animation-delay: 520ms;
}

.contact-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-panel-head p {
  margin: 0;
  color: var(--amber-soft);
  font-family: "Fira Code", monospace;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-close {
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
  color: rgba(248, 250, 252, 0.8);
  cursor: pointer;
}

.contact-close svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

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

.contact-form label span {
  color: rgba(219, 234, 254, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(57, 189, 248, 0.16);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.76);
  color: #ffffff;
  font: inherit;
  padding: 0.72rem 0.78rem;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 193, 90, 0.7);
  box-shadow: 0 0 0 2px rgba(255, 138, 24, 0.11);
}

.contact-hp {
  position: absolute;
  left: -9999px;
}

.contact-submit {
  min-height: 2.65rem;
  border: 1px solid rgba(255, 138, 24, 0.42);
  border-radius: 8px;
  background: rgba(255, 138, 24, 0.12);
  color: #ffffff;
  cursor: pointer;
  font-family: "Fira Code", monospace;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-status {
  min-height: 1.1em;
  margin: 0;
  color: rgba(219, 234, 254, 0.8);
  font-size: 0.74rem;
  line-height: 1.35;
}

@keyframes contact-form-build {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }

  62% {
    opacity: 0.88;
    transform: scale(0.996);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contact-field-build {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.story-scroll {
  position: relative;
  z-index: 3;
}

.story-section {
  position: relative;
  min-height: 122svh;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 9vh, 7rem) clamp(1rem, 6vw, 6rem);
}

.story-section-left {
  justify-content: flex-start;
}

.story-section-center {
  justify-content: center;
}

.story-section-mid {
  justify-content: flex-start;
}

.story-section-right {
  justify-content: flex-end;
}

.story-section:first-child {
  min-height: 112svh;
}

.story-section:last-child {
  min-height: 110svh;
}

.story-copy {
  --focus: 0;
  --flow: 0;
  --copy-opacity: 0;
  --flow-x: 0px;
  --flow-y: 0px;
  position: fixed;
  left: var(--copy-left);
  top: var(--copy-top);
  z-index: 4;
  width: min(43rem, 42vw);
  margin-bottom: 0;
  opacity: var(--copy-opacity);
  transform: translate3d(var(--flow-x), calc(-50% + var(--flow-y)), 0) scale(calc(0.94 + var(--focus) * 0.06));
  transform-origin: left center;
  filter: blur(calc((1 - var(--focus)) * 7px));
  pointer-events: none;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.72);
  will-change: transform, opacity, filter;
}

.story-section-mid .story-copy {
  width: min(38rem, 34vw);
}

.story-section-center .story-copy {
  width: min(48rem, 56vw);
}

.story-section-right .story-copy {
  width: min(35rem, 34vw);
  text-align: right;
  transform-origin: right center;
}

.text-meta {
  margin: 0 0 clamp(0.8rem, 1.4vw, 1.2rem);
  color: var(--blue);
  font-family: "Fira Code", monospace;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-title {
  display: grid;
  gap: 0.04em;
  max-width: 14ch;
  margin: 0;
  font-family: "Archivo", "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5.3vw, 6rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-section-center .story-title {
  max-width: 13ch;
}

.story-section-mid .story-title {
  max-width: 13ch;
  font-size: clamp(2rem, 3.8vw, 4.8rem);
}

.story-section-right .story-title {
  justify-items: end;
  margin-left: auto;
  font-size: clamp(2.1rem, 4.1vw, 4.6rem);
}

.story-title span {
  display: block;
  width: auto;
  padding-inline: 0.08em;
  background: linear-gradient(90deg, rgba(57, 189, 248, 0.13), transparent 72%);
  border-left: 2px solid rgba(255, 138, 24, 0.56);
  transition: color 160ms ease, text-shadow 160ms ease, border-color 160ms ease;
}

.story-section.is-active .signal-word {
  color: #ffffff;
  border-color: rgba(255, 193, 90, 0.95);
  text-shadow:
    0 0 16px rgba(255, 138, 24, 0.38),
    0 0 34px rgba(57, 189, 248, 0.18);
}

.story-section-right .story-title span {
  border-left: 0;
  border-right: 2px solid rgba(57, 189, 248, 0.54);
  background: linear-gradient(270deg, rgba(57, 189, 248, 0.13), transparent 72%);
}

.story-body {
  max-width: 35rem;
  margin: clamp(1rem, 1.6vw, 1.4rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  line-height: 1.62;
  font-weight: 600;
}

.story-section-right .story-body,
.story-section-right .text-foot {
  margin-left: auto;
}

.text-foot {
  margin: clamp(1rem, 1.4vw, 1.35rem) 0 0;
  color: var(--amber-soft);
  font-family: "Fira Code", monospace;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 800;
}

.text-foot::before {
  content: ">";
  margin-right: 0.5rem;
  color: var(--blue);
}

.career-overlay {
  position: fixed;
  left: clamp(0.7rem, 3vw, 3rem);
  right: clamp(0.7rem, 3vw, 3rem);
  bottom: clamp(0.85rem, 1.6vw, 1.45rem);
  z-index: 6;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.26rem;
  border-top: 0;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(57, 189, 248, 0.035), transparent 50%, rgba(255, 138, 24, 0.035));
  padding: 0.2rem 0 0;
  pointer-events: none;
}

.career-overlay-head {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 1rem;
}

.career-overlay-head p,
.career-step-period {
  color: var(--blue);
  font-family: "Fira Code", monospace;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.career-overlay-head p {
  margin: 0;
  opacity: 0.7;
}

.career-current {
  display: none;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.72rem;
  min-width: 0;
  color: rgba(248, 250, 252, 0.88);
}

.career-current span {
  color: var(--amber-soft);
  font-family: "Fira Code", monospace;
  font-size: 0.66rem;
  font-weight: 800;
  white-space: nowrap;
}

.career-current strong {
  min-width: 0;
  max-width: min(32rem, 46vw);
  overflow: hidden;
  color: #ffffff;
  font-size: clamp(0.74rem, 0.8vw, 0.88rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.career-fixed-timeline {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 0.08rem 0 0.1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.career-fixed-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2.72rem;
  height: 1px;
  background: rgba(148, 163, 184, 0.16);
}

.career-progress-line {
  position: absolute;
  left: 0;
  top: 2.72rem;
  width: calc(var(--career-progress) * 100%);
  height: 1px;
  background: linear-gradient(90deg, rgba(57, 189, 248, 0.18), rgba(255, 193, 90, 0.92));
  box-shadow: 0 0 12px rgba(255, 138, 24, 0.22);
  transition: width 120ms linear;
}

.career-steps {
  display: flex;
  width: max-content;
  gap: clamp(2.8rem, 4.4vw, 6rem);
  transition: transform 140ms linear;
  will-change: transform;
}

.career-step {
  position: relative;
  width: clamp(9rem, 10vw, 13rem);
  flex: 0 0 clamp(9rem, 10vw, 13rem);
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.18rem;
  padding-top: 3.08rem;
  opacity: 0.34;
  transform-origin: center bottom;
  transition: opacity 160ms ease, transform 160ms ease;
}

.career-step::before {
  content: "";
  position: absolute;
  top: 2.53rem;
  left: 50%;
  width: 0.36rem;
  height: 0.36rem;
  border: 1px solid rgba(148, 163, 184, 0.36);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.86);
  transform: translateX(-50%);
}

.career-step.is-active {
  opacity: 1;
  transform: translate3d(0, -0.08rem, 0);
}

.career-step.is-active::before {
  border-color: rgba(255, 193, 90, 0.96);
  background: var(--amber-soft);
  box-shadow:
    0 0 0 3px rgba(255, 138, 24, 0.09),
    0 0 18px rgba(255, 138, 24, 0.46);
}

.career-step-role {
  position: absolute;
  top: 0.05rem;
  left: 50%;
  display: -webkit-box;
  min-height: 2.25em;
  max-width: min(13rem, 100%);
  overflow: hidden;
  color: rgba(248, 250, 252, 0.9);
  font-size: clamp(0.62rem, 0.68vw, 0.78rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  text-overflow: ellipsis;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.92);
  transform: translate3d(-50%, 0.28rem, 0);
  opacity: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: opacity 180ms ease, transform 180ms ease;
}

.career-step-period {
  display: inline-block;
  transform-origin: center;
  transition: color 160ms ease, opacity 160ms ease, transform 180ms ease, text-shadow 180ms ease;
}

.career-step.is-active .career-step-role {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.career-step.is-active .career-step-period {
  color: #ffffff;
  opacity: 1;
  transform: scale(1);
  text-shadow:
    0 0 10px rgba(57, 189, 248, 0.32),
    0 0 18px rgba(255, 138, 24, 0.22);
  animation: career-year-zoom 520ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

@keyframes career-year-zoom {
  0% {
    transform: scale(1);
    opacity: 0.72;
  }

  46% {
    transform: scale(1.18);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.video-missing::after {
  content: "Video finale en cours de generation";
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  border: 1px solid rgba(255, 138, 24, 0.5);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
}

@keyframes impact-pulse {
  0% {
    opacity: 0.78;
    r: 8;
  }

  58% {
    opacity: 0.28;
  }

  100% {
    opacity: 0;
    r: 34;
  }
}

@media (max-width: 920px) {
  :root {
    --mobile-video-extra-top: 10svh;
    --mobile-video-top: calc(clamp(1.75rem, 5.5svh, 3.75rem) + var(--mobile-video-extra-top));
    --mobile-video-height: clamp(14.5rem, 35svh, 20rem);
    --mobile-copy-top: calc(var(--mobile-video-top) + var(--mobile-video-height) + clamp(1.55rem, 3.8svh, 2.35rem));
  }

  body::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.88) 48%, rgba(0, 0, 0, 0.97) 100%);
  }

  .story-video {
    top: var(--mobile-video-top);
    right: auto;
    bottom: auto;
    left: 0;
    width: 100vw;
    height: var(--mobile-video-height);
    object-fit: cover;
    object-position: right center;
    transform: none;
    transform-origin: center top;
    -webkit-mask-image:
      linear-gradient(90deg, #000 0%, #000 100%),
      linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(90deg, #000 0%, #000 100%),
      linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
    mask-composite: intersect;
  }

  .holographic-tile {
    width: min(32rem, calc(100vw - 1.5rem));
    transform:
      translate3d(-50%, -50%, 0)
      translateY(0.75rem)
      scale(0.86);
    transform-origin: center;
  }

  .holographic-tile.is-open {
    transform:
      translate3d(-50%, -50%, 0)
      translateY(0)
      scale(1);
  }

  .holographic-pillars {
    grid-template-columns: 1fr;
  }

  .explorer-point-label {
    left: 50%;
    top: calc(100% + 0.16rem);
    transform: translate3d(-50%, 0, 0);
  }

  .explorer-point:hover .explorer-point-label,
  .explorer-point:focus-visible .explorer-point-label,
  .explorer-point.is-active .explorer-point-label {
    transform: translate3d(-50%, 0.12rem, 0);
  }

  .contact-dock {
    top: 0.72rem;
    left: 0.72rem;
  }

  .contact-button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .story-section,
  .story-section-left,
  .story-section-center,
  .story-section-mid,
  .story-section-right {
    min-height: 112svh;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 5rem 1rem 7rem;
  }

  .story-copy,
  .story-section-center .story-copy,
  .story-section-mid .story-copy,
  .story-section-right .story-copy {
    left: 1rem;
    right: 1rem;
    top: var(--mobile-copy-top);
    bottom: auto;
    width: auto;
    max-width: none;
    margin-bottom: 0;
    text-align: left;
    transform-origin: left top;
    transform: translate3d(0, 0, 0) scale(calc(0.94 + var(--focus) * 0.06));
  }

  .story-section-right .story-title {
    justify-items: start;
    margin-left: 0;
  }

  .story-title,
  .story-section-mid .story-title,
  .story-section-right .story-title {
    max-width: min(14ch, 100%);
    font-size: clamp(2rem, 9vw, 3.45rem);
  }

  .story-section-right .story-title span {
    border-right: 0;
    border-left: 2px solid rgba(255, 138, 24, 0.58);
    background: linear-gradient(90deg, rgba(57, 189, 248, 0.13), transparent 72%);
  }

  .story-body {
    max-width: min(32rem, 100%);
    font-size: 0.94rem;
    line-height: 1.52;
    overflow-wrap: break-word;
  }

  .text-foot {
    display: none;
  }

  .career-overlay {
    display: none;
  }

  .energy-links {
    opacity: calc(var(--energy-opacity) * 0.74);
  }
}

@media (max-width: 560px) {
  .story-section {
    min-height: 112svh;
    padding-bottom: 7rem;
  }

  .contact-dock {
    transform: none;
  }

  .contact-panel {
    top: 50%;
    left: 50%;
    right: auto;
    width: min(33rem, calc(100vw - 1.5rem));
  }

  .story-video {
    top: var(--mobile-video-top);
    right: auto;
    left: 0;
    width: 100vw;
    height: var(--mobile-video-height);
    object-fit: cover;
    object-position: right center;
  }

  .story-copy,
  .story-section-center .story-copy,
  .story-section-mid .story-copy,
  .story-section-right .story-copy {
    top: var(--mobile-copy-top);
  }

  .energy-path-main {
    stroke-width: 1.8;
  }

  .energy-path-secondary,
  .energy-path-spark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-dock,
  .contact-dock *,
  .contact-dock *::before,
  .contact-dock *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .contact-dock {
    transform: none;
  }

  .contact-panel.is-materializing .contact-form,
  .contact-panel.is-materializing .contact-form > * {
    animation: none !important;
    clip-path: none;
    opacity: 1;
    transform: none;
  }

  .energy-impact-ring {
    animation: none;
  }

  .career-step.is-active .career-step-period {
    animation: none;
  }
}

/* Holographic section tile v2: the existing SVG impact point stays the only visible point. */
.energy-links.is-explorer-hover .energy-impact-ring,
.energy-links.is-explorer-open .energy-impact-ring {
  stroke: rgba(125, 211, 252, 0.96);
  stroke-width: 1.7;
  filter: url("#energy-glow");
}

.energy-links.is-explorer-hover .energy-impact-core,
.energy-links.is-explorer-open .energy-impact-core {
  fill: #ffffff;
  filter: url("#energy-glow");
}

.explorer-point {
  position: fixed;
  left: var(--explorer-x, 50vw);
  top: var(--explorer-y, 50vh);
  z-index: 7;
  width: 3.45rem;
  height: 3.45rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease;
}

.explorer-point.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.explorer-point-ring,
.explorer-point-core {
  display: none;
}

.explorer-point-label {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.32rem);
  color: rgba(219, 234, 254, 0.58);
  font-family: "Fira Code", monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(57, 189, 248, 0.32),
    0 0 22px rgba(0, 0, 0, 0.9);
  transform: translate3d(-50%, 0.18rem, 0);
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.explorer-point:hover .explorer-point-label,
.explorer-point:focus-visible .explorer-point-label,
.explorer-point.is-active .explorer-point-label {
  color: rgba(255, 255, 255, 0.96);
  transform: translate3d(-50%, 0, 0);
}

.explorer-point:focus-visible {
  outline: 1px solid rgba(57, 189, 248, 0.68);
  outline-offset: -0.18rem;
}

.holographic-tile {
  position: fixed;
  left: var(--tile-x, 50vw);
  top: var(--tile-y, 50vh);
  z-index: 9;
  width: var(--tile-width, min(74rem, calc(100vw - 6rem)));
  height: var(--tile-height, min(42rem, calc(100vh - 5rem)));
  color: #f8fafc;
  opacity: 0;
  pointer-events: none;
  transform:
    translate3d(-1.1rem, -1.1rem, 0)
    scale(0.06);
  transform-origin: 1.1rem 1.1rem;
  transition:
    opacity 300ms ease,
    transform 680ms cubic-bezier(0.18, 0.86, 0.18, 1);
}

.holographic-tile.is-open {
  opacity: 1;
  pointer-events: auto;
  transform:
    translate3d(var(--tile-open-x, -50vw), var(--tile-open-y, -50vh), 0)
    scale(1);
}

.holographic-tile-shell {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: none;
  overflow: hidden auto;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 0% 18%, rgba(0, 174, 255, 0.16), transparent 17rem),
    radial-gradient(circle at 100% 78%, rgba(255, 112, 24, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(2, 8, 18, 0.5), rgba(1, 5, 12, 0.5));
  background-color: rgba(2, 8, 18, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(125, 211, 252, 0.08),
    inset 0 0 78px rgba(57, 189, 248, 0.08),
    -10px 0 42px rgba(0, 174, 255, 0.2),
    10px 0 42px rgba(255, 112, 24, 0.18);
  clip-path: polygon(2.35rem 0, calc(100% - 2.35rem) 0, 100% 2.35rem, 100% calc(100% - 2.35rem), calc(100% - 2.35rem) 100%, 2.35rem 100%, 0 calc(100% - 2.35rem), 0 2.35rem);
  padding: clamp(1.8rem, 3vw, 3rem);
  backdrop-filter: blur(18px) saturate(1.35);
  scrollbar-width: thin;
  scrollbar-color: rgba(57, 189, 248, 0.52) rgba(2, 6, 23, 0.28);
}

.holographic-tile-shell::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(57, 189, 248, 0.36) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgba(57, 189, 248, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(57, 189, 248, 0.05) 0 1px, transparent 1px 100%);
  background-size: 1.42rem 1.42rem, 5.5rem 5.5rem, 5.5rem 5.5rem;
  opacity: 0.3;
}

.holographic-tile-shell::after {
  content: "";
  position: absolute;
  inset: 0.98rem;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 5.6rem, rgba(0, 185, 255, 0.82) 7.1rem, rgba(136, 220, 255, 0.34) 34%, rgba(229, 238, 245, 0.42) 50%, rgba(255, 136, 40, 0.7) calc(100% - 7.1rem), transparent calc(100% - 5.6rem)) top left / 100% 1px no-repeat,
    linear-gradient(90deg, transparent 0 5.6rem, rgba(0, 185, 255, 0.82) 7.1rem, rgba(136, 220, 255, 0.34) 34%, rgba(229, 238, 245, 0.38) 50%, rgba(255, 136, 40, 0.72) calc(100% - 7.1rem), transparent calc(100% - 5.6rem)) bottom left / 100% 1px no-repeat,
    linear-gradient(180deg, transparent 0 5rem, rgba(0, 185, 255, 0.96) 7.8rem, rgba(0, 185, 255, 0.62) 48%, rgba(0, 185, 255, 0.96) calc(100% - 7.8rem), transparent calc(100% - 5rem)) left top / 2px 100% no-repeat,
    linear-gradient(180deg, transparent 0 5rem, rgba(255, 126, 30, 0.96) 7.8rem, rgba(255, 126, 30, 0.62) 48%, rgba(255, 126, 30, 0.96) calc(100% - 7.8rem), transparent calc(100% - 5rem)) right top / 2px 100% no-repeat;
  filter:
    drop-shadow(-5px 0 10px rgba(0, 174, 255, 0.58))
    drop-shadow(5px 0 10px rgba(255, 112, 24, 0.44));
}

.holographic-beacon {
  position: absolute;
  left: clamp(1.7rem, 4vw, 3.8rem);
  top: clamp(2rem, 4.6vw, 4.3rem);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  pointer-events: none;
  background:
    radial-gradient(circle, #ffffff 0 0.28rem, #39bdf8 0.3rem 0.64rem, transparent 0.68rem),
    repeating-radial-gradient(circle, rgba(57, 189, 248, 0.55) 0 1px, transparent 1px 0.62rem);
  box-shadow:
    0 0 26px rgba(57, 189, 248, 0.82),
    inset 0 0 24px rgba(57, 189, 248, 0.28);
  opacity: 0.9;
}

.holographic-corner {
  position: absolute;
  z-index: 3;
  --frame-color: 0, 185, 255;
  --frame-glow: rgba(0, 174, 255, 0.72);
  width: clamp(4.2rem, 6.4vw, 6.1rem);
  height: clamp(4.2rem, 6.4vw, 6.1rem);
  pointer-events: none;
  border: 0;
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(var(--frame-color), 0.24) 45.5% 46.5%, transparent 47%),
    linear-gradient(135deg, transparent 0 49%, rgba(var(--frame-color), 1) 49.5% 52%, transparent 52.5%);
  background-position: 0.26rem 0.26rem;
  background-repeat: no-repeat;
  background-size: 3.55rem 3.55rem;
  filter:
    drop-shadow(0 0 7px var(--frame-glow))
    drop-shadow(0 0 22px var(--frame-glow));
}

.holographic-corner::before,
.holographic-corner::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--frame-color), 0.88), rgba(var(--frame-color), 1), rgba(var(--frame-color), 0.88), transparent);
  box-shadow:
    0 0 8px rgba(57, 189, 248, 0.95),
    0 0 22px rgba(57, 189, 248, 0.54);
}

.holographic-corner-tl {
  left: 0.72rem;
  top: 0.72rem;
}

.holographic-corner-tr {
  right: 0.72rem;
  top: 0.72rem;
  --frame-color: 255, 126, 30;
  --frame-glow: rgba(255, 112, 24, 0.72);
  transform: scaleX(-1);
}

.holographic-corner-bl {
  left: 0.72rem;
  bottom: 0.72rem;
  transform: scaleY(-1);
}

.holographic-corner-br {
  right: 0.72rem;
  bottom: 0.72rem;
  --frame-color: 255, 126, 30;
  --frame-glow: rgba(255, 112, 24, 0.72);
  transform: scale(-1);
}

.holographic-corner::before {
  left: 2.35rem;
  right: 0.26rem;
  top: 0;
  height: 3px;
}

.holographic-corner::after {
  left: 0;
  top: 2.35rem;
  bottom: 0.26rem;
  width: 3px;
  background: linear-gradient(180deg, transparent, rgba(var(--frame-color), 0.88), rgba(var(--frame-color), 1), rgba(var(--frame-color), 0.88), transparent);
}

.holographic-tile-close {
  position: absolute;
  top: 1.55rem;
  right: 1.55rem;
  z-index: 4;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 126, 30, 0.2);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.16);
  color: rgba(255, 168, 92, 0.62);
  cursor: pointer;
  opacity: 0.68;
  clip-path: polygon(0.45rem 0, 100% 0, 100% calc(100% - 0.45rem), calc(100% - 0.45rem) 100%, 0 100%, 0 0.45rem);
  transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.holographic-tile-close:hover,
.holographic-tile-close:focus-visible {
  border-color: rgba(255, 193, 90, 0.76);
  color: rgba(255, 230, 210, 0.96);
  opacity: 1;
  box-shadow: 0 0 18px rgba(255, 138, 24, 0.22);
  outline: none;
}

.holographic-tile-close svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.holographic-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(18rem, 0.9fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: start;
  min-height: 0;
  padding: clamp(0.6rem, 1.4vw, 1.6rem) clamp(1rem, 3vw, 3.3rem) 0;
}

.holographic-copy {
  min-width: 0;
  padding-left: clamp(3.7rem, 8vw, 7rem);
}

.holographic-kicker {
  margin: 0;
  color: var(--blue);
  font-family: "Fira Code", monospace;
  font-size: clamp(0.78rem, 1.25vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.holographic-tile h2 {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0.45rem 0 1.05rem;
  color: #f8fbff;
  font-family: "Space Grotesk", "Archivo", sans-serif;
  font-size: clamp(2.9rem, 6.2vw, 5.35rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(219, 234, 254, 0.42),
    0 0 36px rgba(57, 189, 248, 0.2);
}

.holographic-title-line {
  display: block;
  width: min(42rem, 100%);
  height: 2px;
  margin: 0 0 clamp(1rem, 1.5vw, 1.45rem);
  background: linear-gradient(90deg, var(--blue), rgba(57, 189, 248, 0.52), transparent);
  box-shadow: 0 0 16px rgba(57, 189, 248, 0.46);
}

.holographic-lead,
.holographic-body {
  position: relative;
  z-index: 1;
  max-width: 43rem;
}

.holographic-lead {
  margin: 0 0 1.15rem;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.55vw, 1.45rem);
  font-weight: 500;
  line-height: 1.32;
}

.holographic-body {
  margin: 0.58rem 0 0;
  color: rgba(248, 250, 252, 0.9);
  font-size: clamp(0.88rem, 1.05vw, 1.02rem);
  line-height: 1.46;
}

.holographic-lead strong,
.holographic-body strong {
  color: var(--blue);
  font-weight: 700;
}

.holographic-orbit {
  position: relative;
  width: min(26rem, 100%);
  aspect-ratio: 1.18;
  justify-self: center;
  opacity: 0.95;
}

.orbit-core,
.orbit-ring,
.orbit-node {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0);
}

.orbit-core {
  width: 1.15rem;
  height: 1.15rem;
  background: #ffffff;
  box-shadow:
    0 0 18px rgba(57, 189, 248, 0.96),
    0 0 54px rgba(57, 189, 248, 0.52);
}

.orbit-ring {
  border: 1px solid rgba(57, 189, 248, 0.58);
  box-shadow: 0 0 18px rgba(57, 189, 248, 0.14);
}

.orbit-ring-1 {
  width: 18rem;
  height: 6.2rem;
  transform: translate3d(-50%, -50%, 0) rotate(-13deg);
}

.orbit-ring-2 {
  width: 22rem;
  height: 9.8rem;
  transform: translate3d(-50%, -50%, 0) rotate(24deg);
  opacity: 0.76;
}

.orbit-ring-3 {
  width: 25rem;
  height: 13.8rem;
  transform: translate3d(-50%, -50%, 0) rotate(-36deg);
  opacity: 0.42;
}

.orbit-node {
  width: 0.44rem;
  height: 0.44rem;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(57, 189, 248, 0.86);
}

.orbit-node-1 { transform: translate3d(5.6rem, -7.4rem, 0); }
.orbit-node-2 { transform: translate3d(11.2rem, -1.5rem, 0); }
.orbit-node-3 { transform: translate3d(-8.4rem, 4.5rem, 0); }
.orbit-node-4 { transform: translate3d(6.1rem, 7.1rem, 0); }

.holographic-pillars {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.55vw, 1.45rem);
  margin: clamp(1.05rem, 1.8vw, 1.65rem) clamp(1rem, 3vw, 3.3rem) 0;
}

.holographic-pillars article {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: center;
  border: 1px solid rgba(57, 189, 248, 0.5);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(57, 189, 248, 0.12), transparent 44%),
    rgba(2, 8, 18, 0.64);
  box-shadow:
    inset 0 0 24px rgba(57, 189, 248, 0.07),
    0 0 18px rgba(57, 189, 248, 0.08);
  clip-path: polygon(0.9rem 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%, 0 0.9rem);
  padding: clamp(0.72rem, 1.1vw, 1rem);
}

.pillar-icon {
  grid-row: span 3;
  width: clamp(2.05rem, 3.2vw, 2.85rem);
  height: clamp(2.05rem, 3.2vw, 2.85rem);
  border: 1px solid rgba(57, 189, 248, 0.82);
  box-shadow:
    inset 0 0 18px rgba(57, 189, 248, 0.16),
    0 0 22px rgba(57, 189, 248, 0.28);
}

.pillar-icon-clear {
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 0 28%, rgba(57, 189, 248, 0.9) 29% 32%, transparent 33%),
    linear-gradient(90deg, transparent 46%, rgba(57, 189, 248, 0.8) 47% 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(57, 189, 248, 0.8) 47% 53%, transparent 54%);
}

.pillar-icon-fast {
  clip-path: polygon(54% 0, 18% 54%, 48% 54%, 36% 100%, 82% 38%, 52% 38%);
  background: rgba(57, 189, 248, 0.18);
}

.pillar-icon-solid {
  clip-path: polygon(50% 0, 90% 18%, 80% 78%, 50% 100%, 20% 78%, 10% 18%);
  background:
    linear-gradient(135deg, rgba(57, 189, 248, 0.34), rgba(2, 8, 18, 0.2));
}

.holographic-pillars span {
  margin: 0;
  color: var(--blue);
  font-family: "Fira Code", monospace;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.holographic-pillars strong {
  display: block;
  margin-top: 0.08rem;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.58rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 0.98;
  text-transform: uppercase;
}

.holographic-pillars p {
  grid-column: 2;
  margin: 0.34rem 0 0;
  color: rgba(219, 234, 254, 0.76);
  font-size: 0.72rem;
  line-height: 1.25;
}

.holographic-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  margin-top: clamp(0.8rem, 1.4vw, 1.2rem);
  color: var(--blue);
  font-family: "Fira Code", monospace;
  font-size: clamp(0.84rem, 1.35vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.holographic-footer span {
  width: clamp(2.2rem, 5vw, 4.2rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue));
}

.holographic-footer span:last-child {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.holographic-footer i {
  width: 2rem;
  height: 1px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(57, 189, 248, 0.56);
}

@media (max-width: 920px) {
  .holographic-tile {
    width: var(--tile-width, calc(100vw - 1.5rem));
    height: var(--tile-height, calc(100svh - 2rem));
    transform:
      translate3d(-0.8rem, -0.8rem, 0)
      scale(0.08);
    transform-origin: 0.8rem 0.8rem;
  }

  .holographic-tile.is-open {
    transform:
      translate3d(var(--tile-open-x, -50vw), var(--tile-open-y, -50vh), 0)
      scale(1);
  }

  .holographic-tile-shell {
    padding: 1.35rem;
    clip-path: polygon(1.3rem 0, calc(100% - 1.3rem) 0, 100% 1.3rem, 100% calc(100% - 1.3rem), calc(100% - 1.3rem) 100%, 1.3rem 100%, 0 calc(100% - 1.3rem), 0 1.3rem);
  }

  .holographic-beacon {
    left: 1.35rem;
    top: 1.55rem;
    width: 3.2rem;
    height: 3.2rem;
  }

  .holographic-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1rem;
    padding: 1rem 0 0;
  }

  .holographic-copy {
    padding-left: 3.2rem;
  }

  .holographic-tile h2 {
    font-size: clamp(2.2rem, 13vw, 4.4rem);
  }

  .holographic-orbit {
    width: min(20rem, 82vw);
    margin: 0 auto;
  }

  .holographic-pillars {
    grid-template-columns: 1fr;
    margin-inline: 0;
  }

  .holographic-pillars article {
    grid-template-columns: auto 1fr;
  }

  .explorer-point-label {
    top: calc(100% + 0.18rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .holographic-tile,
  .explorer-point,
  .explorer-point-label {
    transition-duration: 0.01ms !important;
  }
}
