:root {
  color-scheme: dark;
  --ink: #fff8ea;
  --ink-soft: rgba(255, 248, 234, 0.76);
  --muted: rgba(255, 248, 234, 0.54);
  --line: rgba(255, 248, 234, 0.14);
  --teal: #69d5c7;
  --amber: #f2b967;
  --copper: #b97945;
  --black: #07090b;
  --panel: rgba(10, 13, 15, 0.68);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  overflow-x: hidden;
}

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

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  gap: 18px;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(105, 213, 199, 0.08), transparent 34%),
    #050607;
  transition: opacity 760ms ease, visibility 760ms ease;
}

.intro-loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-shell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.loader-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 248, 234, 0.26);
  border-radius: var(--radius);
  color: #0b0d0d;
  background: var(--amber);
  font-weight: 900;
  letter-spacing: 0;
}

.loader-shell span,
.loader-shell small {
  display: block;
}

.loader-shell span {
  font-weight: 900;
}

.loader-shell small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.loader-line {
  width: min(360px, 68vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 248, 234, 0.14);
}

.loader-line span {
  display: block;
  width: 58%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  animation: loadSweep 1.15s ease-in-out infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  box-shadow: 0 0 18px rgba(105, 213, 199, 0.65);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 30;
  height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid rgba(255, 248, 234, 0.13);
  border-radius: var(--radius);
  background: rgba(7, 9, 11, 0.22);
  backdrop-filter: blur(22px);
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.site-header.scrolled {
  background: rgba(7, 9, 11, 0.82);
  border-color: rgba(255, 248, 234, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--amber);
  color: #0b0d0d;
  font-size: 13px;
  font-weight: 900;
}

.top-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-nav a,
.header-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(255, 248, 234, 0.78);
  font-size: 13px;
  font-weight: 780;
}

.top-nav a:hover {
  color: var(--ink);
  background: rgba(255, 248, 234, 0.08);
}

.header-action {
  color: #0b0d0d;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 128px min(7vw, 100px) 92px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -5;
  background: url("/assets/capital-eyes-home-cinematic.png") center / cover no-repeat;
  transform: scale(1.06);
  animation: cinematicPan 20s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.96), rgba(3, 5, 6, 0.64) 37%, rgba(3, 5, 6, 0.12) 78%),
    linear-gradient(180deg, rgba(3, 5, 6, 0.1), rgba(3, 5, 6, 0.52));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(7, 9, 11, 0.94));
  pointer-events: none;
}

.motion-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.92;
}

.scan-layer,
.film-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.scan-layer {
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 248, 234, 0.034) 0,
    rgba(255, 248, 234, 0.034) 1px,
    transparent 1px,
    transparent 7px
  );
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 88%, transparent);
  animation: scan 6s linear infinite;
}

.film-grain {
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 37px 37px;
  mix-blend-mode: overlay;
}

.chapter-rail {
  position: absolute;
  left: 28px;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 248, 234, 0.56);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.chapter-rail i {
  width: 1px;
  height: 104px;
  background: linear-gradient(var(--teal), transparent);
}

.hero-content {
  position: relative;
  z-index: 6;
  width: min(790px, 100%);
  transform: translateY(20px);
  opacity: 0;
  animation: heroIn 900ms ease 280ms forwards;
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(72px, 10vw, 162px);
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 26px 62px rgba(0, 0, 0, 0.52);
}

.hero-copy {
  width: min(610px, 100%);
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.42;
}

.hero-copy-secondary {
  margin-top: 8px;
}

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

.primary-action,
.secondary-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border-radius: var(--radius);
  font-weight: 880;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.primary-action {
  color: #090b0c;
  background: linear-gradient(135deg, #ffd58c, var(--amber));
  border: 1px solid rgba(255, 213, 140, 0.86);
  box-shadow: 0 18px 42px rgba(242, 185, 103, 0.18);
}

.primary-action span {
  width: 18px;
  height: 18px;
  position: relative;
}

.primary-action span::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 12px;
  height: 2px;
  background: currentColor;
}

.primary-action span::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 5px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.secondary-action {
  color: var(--ink);
  border: 1px solid rgba(255, 248, 234, 0.28);
  background: rgba(255, 248, 234, 0.065);
  backdrop-filter: blur(14px);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.live-panel {
  position: absolute;
  right: min(5vw, 76px);
  bottom: 108px;
  z-index: 7;
  width: min(340px, 31vw);
  padding: 16px;
  border: 1px solid rgba(255, 248, 234, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.08), rgba(255, 248, 234, 0.025)),
    rgba(7, 9, 11, 0.56);
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  animation: floatPanel 7.5s ease-in-out infinite;
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #65e3ac;
  box-shadow: 0 0 0 5px rgba(101, 227, 172, 0.12);
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.signal-list div {
  min-height: 76px;
  padding: 10px;
  border: 1px solid rgba(255, 248, 234, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 248, 234, 0.035);
}

.signal-list span,
.micro-chart span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-list strong {
  display: block;
  margin-top: 15px;
  font-size: 18px;
}

.micro-chart {
  height: 46px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 14px;
}

.micro-chart i {
  flex: 1;
  min-width: 0;
  height: 30%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--teal), rgba(105, 213, 199, 0.08));
  animation: barPulse 1.8s ease-in-out infinite;
}

.micro-chart i:nth-child(2n) {
  background: linear-gradient(180deg, var(--amber), rgba(242, 185, 103, 0.08));
  animation-delay: 140ms;
}

.micro-chart i:nth-child(3n) {
  animation-delay: 260ms;
}

.video-console {
  position: absolute;
  right: min(7vw, 112px);
  top: 128px;
  z-index: 5;
  width: min(420px, 34vw);
  height: 240px;
  border: 1px solid rgba(105, 213, 199, 0.18);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 234, 0.05) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, rgba(105, 213, 199, 0.1), rgba(242, 185, 103, 0.035)),
    rgba(7, 9, 11, 0.32);
  backdrop-filter: blur(7px);
  opacity: 0.72;
  transform: perspective(900px) rotateY(-8deg) rotateX(4deg);
  animation: consoleDrift 9s ease-in-out infinite;
}

.console-header {
  height: 34px;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 248, 234, 0.1);
}

.console-header span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 248, 234, 0.45);
}

.console-grid {
  height: calc(100% - 34px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
}

.console-grid i {
  background:
    linear-gradient(180deg, rgba(105, 213, 199, 0.16), transparent),
    rgba(255, 248, 234, 0.025);
  animation: consoleCell 3s ease-in-out infinite;
}

.console-grid i:nth-child(2n) {
  animation-delay: 400ms;
}

.console-grid i:nth-child(3n) {
  animation-delay: 800ms;
}

.ticker-reel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  height: 50px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 248, 234, 0.12);
  border-bottom: 1px solid rgba(255, 248, 234, 0.1);
  background: rgba(7, 9, 11, 0.68);
  backdrop-filter: blur(14px);
}

.ticker-track {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  animation: tickerMove 30s linear infinite;
}

.ticker-track span {
  color: rgba(255, 248, 234, 0.62);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.ticker-track span:nth-child(3n + 1) {
  color: var(--teal);
}

.product-section,
.signal-strip,
.experience-section,
.access-section {
  position: relative;
  margin: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.05), rgba(255, 248, 234, 0.015)),
    rgba(12, 15, 17, 0.88);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.product-section {
  display: grid;
  gap: 30px;
  padding: min(7vw, 86px);
  margin: 18px;
  overflow: hidden;
}

.product-heading {
  max-width: 980px;
}

.product-heading h2 {
  margin-top: 12px;
  font-size: clamp(38px, 5.5vw, 82px);
  line-height: 0.98;
  text-wrap: balance;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 14px;
  align-items: stretch;
}

.product-spotlight,
.product-item {
  border: 1px solid rgba(255, 248, 234, 0.12);
  border-radius: var(--radius);
}

.product-spotlight {
  min-height: 560px;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(105, 213, 199, 0.14), transparent 44%),
    linear-gradient(315deg, rgba(242, 185, 103, 0.12), transparent 38%),
    rgba(255, 248, 234, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 248, 234, 0.08);
}

.product-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 248, 234, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, black, transparent 72%);
  pointer-events: none;
}

.spotlight-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.spotlight-copy span,
.product-item span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-copy h3 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 0.96;
  text-wrap: balance;
}

.spotlight-copy p {
  max-width: 560px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.spotlight-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  min-height: 260px;
  margin: 24px 0;
  border: 1px solid rgba(255, 248, 234, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 46%, rgba(105, 213, 199, 0.16), transparent 28%),
    rgba(7, 9, 11, 0.42);
  overflow: hidden;
}

.visual-grid {
  position: absolute;
  inset: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
}

.visual-grid i {
  background:
    linear-gradient(135deg, rgba(105, 213, 199, 0.12), rgba(242, 185, 103, 0.035)),
    rgba(255, 248, 234, 0.03);
  animation: productCell 4.2s ease-in-out infinite;
}

.visual-grid i:nth-child(2n) {
  animation-delay: 500ms;
}

.visual-line {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  box-shadow: 0 0 22px rgba(105, 213, 199, 0.34);
}

.visual-line.one {
  top: 42%;
  transform: rotate(-7deg);
  animation: productLineOne 5s ease-in-out infinite;
}

.visual-line.two {
  top: 58%;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  transform: rotate(5deg);
  animation: productLineTwo 6s ease-in-out infinite;
}

.visual-bars {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 26px;
  height: 74px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.visual-bars i {
  flex: 1;
  height: 35%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(105, 213, 199, 0.82), rgba(105, 213, 199, 0.08));
  animation: barPulse 2.4s ease-in-out infinite;
}

.visual-bars i:nth-child(2n) {
  background: linear-gradient(180deg, rgba(242, 185, 103, 0.78), rgba(242, 185, 103, 0.08));
  animation-delay: 220ms;
}

.spotlight-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.spotlight-stats div {
  min-height: 86px;
  display: grid;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 248, 234, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 248, 234, 0.045);
}

.spotlight-stats strong,
.spotlight-stats span {
  display: block;
}

.spotlight-stats strong {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.spotlight-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-list {
  display: grid;
  gap: 10px;
}

.product-item {
  min-height: 132px;
  position: relative;
  display: grid;
  align-content: center;
  padding: 18px 20px;
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.055), rgba(255, 248, 234, 0.018)),
    rgba(255, 248, 234, 0.03);
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.product-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(105, 213, 199, 0.4);
  transform: scaleY(0.35);
  transform-origin: center;
  transition: transform 240ms ease, background 240ms ease;
}

.product-item:hover,
.product-item.active {
  transform: translateX(-8px);
  border-color: rgba(105, 213, 199, 0.34);
  background:
    linear-gradient(90deg, rgba(105, 213, 199, 0.12), rgba(242, 185, 103, 0.035)),
    rgba(255, 248, 234, 0.04);
}

.product-item:hover::before,
.product-item.active::before {
  transform: scaleY(1);
  background: var(--amber);
}

.product-item h3 {
  margin: 12px 0 8px;
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1;
}

.product-item p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.46;
}

.signal-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  align-items: end;
  padding: min(7vw, 86px);
}

.signal-copy h2,
.experience-copy h2,
.access-section h2 {
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.signal-grid {
  display: grid;
  gap: 10px;
}

.signal-grid div {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border: 1px solid rgba(255, 248, 234, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(105, 213, 199, 0.08), transparent),
    rgba(255, 248, 234, 0.04);
  transform: translateX(0);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.signal-grid div:hover {
  transform: translateX(8px);
  border-color: rgba(105, 213, 199, 0.26);
}

.signal-grid span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.signal-grid strong {
  font-size: clamp(22px, 3vw, 34px);
}

.experience-section {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: min(7vw, 86px);
}

.experience-copy {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.experience-copy p:last-child {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.motion-stage {
  position: relative;
  min-height: 468px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 248, 234, 0.12);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(105, 213, 199, 0.12), transparent),
    linear-gradient(135deg, rgba(242, 185, 103, 0.11), transparent 38%),
    rgba(255, 248, 234, 0.035);
}

.stage-frame {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(105, 213, 199, 0.2);
  border-radius: var(--radius);
  background: rgba(7, 9, 11, 0.4);
  animation: floatPanel 8s ease-in-out infinite;
}

.stage-header {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 248, 234, 0.1);
}

.stage-header span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 248, 234, 0.42);
}

.stage-graph {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 31%;
  height: 34%;
  border-bottom: 1px solid rgba(255, 248, 234, 0.14);
  background:
    linear-gradient(135deg, transparent 34%, rgba(105, 213, 199, 0.58) 35%, rgba(105, 213, 199, 0.58) 36%, transparent 37%),
    linear-gradient(20deg, transparent 44%, rgba(242, 185, 103, 0.48) 45%, rgba(242, 185, 103, 0.48) 46%, transparent 47%);
  animation: graphSweep 4.6s ease-in-out infinite;
}

.stage-bars {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 20%;
  display: flex;
  align-items: end;
  gap: 10px;
}

.stage-bars i {
  flex: 1;
  height: 35%;
  background: linear-gradient(180deg, rgba(105, 213, 199, 0.78), rgba(105, 213, 199, 0.06));
  animation: barPulse 2.2s ease-in-out infinite;
}

.stage-bars i:nth-child(2n) {
  background: linear-gradient(180deg, rgba(242, 185, 103, 0.72), rgba(242, 185, 103, 0.06));
  animation-delay: 200ms;
}

.stage-panel {
  position: absolute;
  border: 1px solid rgba(255, 248, 234, 0.16);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 234, 0.06) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(105, 213, 199, 0.2), rgba(242, 185, 103, 0.08));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.panel-a {
  width: 25%;
  height: 18%;
  top: 14%;
  right: 8%;
  animation: floatPanel 7s ease-in-out infinite;
}

.panel-b {
  width: 28%;
  height: 20%;
  left: 8%;
  top: 56%;
  animation: floatPanel 8s ease-in-out 600ms infinite;
}

.panel-c {
  width: 23%;
  height: 14%;
  right: 14%;
  bottom: 11%;
  animation: floatPanel 9s ease-in-out 300ms infinite;
}

.access-section {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: min(7vw, 86px);
  margin-bottom: 18px;
}

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

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

@keyframes cinematicPan {
  0% {
    transform: scale(1.07) translate3d(-1.4%, 0, 0);
  }
  100% {
    transform: scale(1.13) translate3d(1.6%, -1.2%, 0);
  }
}

@keyframes scan {
  0% {
    transform: translateY(-22px);
  }
  100% {
    transform: translateY(22px);
  }
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loadSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(220%);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes consoleDrift {
  0%,
  100% {
    transform: perspective(900px) rotateY(-8deg) rotateX(4deg) translate3d(0, 0, 0);
  }
  50% {
    transform: perspective(900px) rotateY(-6deg) rotateX(5deg) translate3d(0, -10px, 0);
  }
}

@keyframes consoleCell {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes barPulse {
  0%,
  100% {
    height: 30%;
  }
  50% {
    height: 92%;
  }
}

@keyframes graphSweep {
  0%,
  100% {
    opacity: 0.48;
    transform: translateX(-2%);
  }
  50% {
    opacity: 1;
    transform: translateX(2%);
  }
}

@keyframes productCell {
  0%,
  100% {
    opacity: 0.46;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes productLineOne {
  0%,
  100% {
    transform: rotate(-7deg) translateX(-2%);
  }
  50% {
    transform: rotate(-4deg) translateX(3%);
  }
}

@keyframes productLineTwo {
  0%,
  100% {
    transform: rotate(5deg) translateX(2%);
  }
  50% {
    transform: rotate(2deg) translateX(-3%);
  }
}

@media (max-width: 1120px) {
  .live-panel,
  .video-console {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .top-nav {
    display: none;
  }

  .header-action {
    justify-self: end;
  }

  .hero {
    min-height: 84svh;
    padding: 118px 28px 88px;
  }

  .chapter-rail {
    display: none;
  }

  .signal-strip,
  .product-section,
  .experience-section {
    grid-template-columns: 1fr;
  }

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

  .product-spotlight {
    min-height: 500px;
  }

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

  .motion-stage {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    height: 58px;
    padding: 0 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-action {
    min-height: 36px;
    padding: 0 11px;
    font-size: 12px;
  }

  .hero {
    min-height: 82svh;
    padding: 102px 20px 78px;
  }

  h1 {
    font-size: 64px;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .ticker-reel {
    height: 42px;
  }

  .signal-strip,
  .product-section,
  .experience-section,
  .access-section {
    margin: 10px;
    padding: 32px 20px;
  }

  .signal-copy h2,
  .product-heading h2,
  .experience-copy h2,
  .access-section h2 {
    font-size: 36px;
  }

  .product-list,
  .spotlight-stats {
    grid-template-columns: 1fr;
  }

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

  .spotlight-copy h3 {
    font-size: 34px;
  }

  .spotlight-copy p {
    font-size: 16px;
  }

  .spotlight-visual {
    min-height: 230px;
  }

  .product-item {
    min-height: 118px;
    transform: none;
  }

  .product-item:hover,
  .product-item.active {
    transform: none;
  }

  .signal-grid div {
    min-height: 78px;
    padding: 0 16px;
  }

  .experience-section {
    min-height: auto;
  }

  .motion-stage {
    min-height: 310px;
  }

  .access-section {
    flex-direction: column;
    align-items: stretch;
  }
}
