:root {
  --ink: #05070b;
  --ink2: #090d15;
  --panel: #0d121d;
  --line: rgba(255, 255, 255, 0.1);
  --muted: #8993a6;
  --blue: #2e6bff;
  --blue2: #77a0ff;
  --gold: #e2d8a3;
  --green: #36d399;
  --white: #f5f7fb;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Manrope, Arial, sans-serif;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.media-asset {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.media-asset.is-loaded {
  opacity: 1;
}
.media-loading {
  position: relative;
  isolation: isolate;
}
.media-loading:after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, #edf0f5 18%, #f8faff 38%, #edf0f5 58%);
  background-size: 220% 100%;
  animation: mediaShimmer 1.35s linear infinite;
}
.media-loading.hero-product-shot:after {
  inset: 38px 0 0;
  background: linear-gradient(105deg, #e7ebf2 18%, #f7f9fc 38%, #e7ebf2 58%);
  background-size: 220% 100%;
}
.media-loading.hero-product-shot:before {
  content: "PULSEDECK DESKTOP  ·  LOADING";
  position: absolute;
  z-index: 9;
  left: 50%;
  top: calc(50% + 19px);
  transform: translate(-50%, -50%);
  padding: 12px 16px 12px 38px;
  border: 1px solid rgba(47, 72, 123, 0.13);
  background-color: rgba(255, 255, 255, 0.78);
  background-image: radial-gradient(
    circle at 18px 50%,
    #174edb 0 3px,
    rgba(23, 78, 219, 0.16) 4px 8px,
    transparent 9px
  );
  box-shadow: 0 12px 35px rgba(40, 58, 91, 0.09);
  backdrop-filter: blur(8px);
  color: #5f6e87;
  font: 9px "DM Mono";
  letter-spacing: 0.13em;
  white-space: nowrap;
  animation: heroLoaderBreath 1.8s ease-in-out infinite;
}
@keyframes heroLoaderBreath {
  0%,
  100% {
    box-shadow: 0 12px 35px rgba(40, 58, 91, 0.08);
    border-color: rgba(47, 72, 123, 0.12);
  }
  50% {
    box-shadow: 0 12px 38px rgba(23, 78, 219, 0.14);
    border-color: rgba(23, 78, 219, 0.24);
  }
}
.media-load-error:after {
  animation: none;
  background: linear-gradient(135deg, #eef1f6, #f8f9fc);
}
@keyframes mediaShimmer {
  to {
    background-position: -220% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .media-loading:after {
    animation: none;
  }
  .media-loading.hero-product-shot:before {
    animation: none;
  }
  .media-asset {
    transition: none;
  }
}
.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 89, 231, 0.09), transparent 66%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
small {
  text-transform: uppercase;
}
.desktop-pulse-copy li small,
.ip-sale-assets small {
  text-transform: none;
  font-size: 10px;
}
.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 78px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.8), transparent);
  backdrop-filter: blur(0);
}
.site-header.scrolled {
  height: 68px;
  background: rgba(5, 7, 11, 0.82);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.brand img {
  display: block;
  width: 154px;
  height: auto;
  filter: invert(1) grayscale(1) brightness(2);
}
.site-header nav {
  display: flex;
  gap: 40px;
  font-size: 13px;
  color: #aeb6c5;
}
.site-header nav a,
.text-link {
  transition: 0.2s;
}
.site-header nav a:hover,
.text-link:hover {
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 52px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: 0.25s;
  cursor: pointer;
  background: transparent;
}
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
}
.button-small {
  min-height: 39px;
  padding: 0 17px;
  gap: 14px;
  background: #fff;
  color: #090c12;
  border: 0;
}
.menu-button {
  display: none;
  background: none;
  border: 0;
}
.section-pad {
  padding-left: clamp(24px, 6vw, 100px);
  padding-right: clamp(24px, 6vw, 100px);
}
.hero {
  min-height: 100vh;
  padding-top: 176px;
  position: relative;
  text-align: center;
  overflow: visible;
}
.hero-grid,
.film-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(70, 105, 170, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 105, 170, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}
.hero > .eyebrow,
.hero > h1,
.hero > .hero-copy,
.hero > .hero-actions,
.hero > .trust-row {
  position: relative;
  z-index: 2;
}
.hero-actions a {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.orb-one {
  width: 700px;
  height: 700px;
  left: 50%;
  top: -260px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(15, 66, 220, 0.18), transparent 68%);
}
.orb-two {
  width: 320px;
  height: 320px;
  left: -100px;
  top: 420px;
  background: radial-gradient(circle, rgba(102, 68, 220, 0.1), transparent 65%);
}
.eyebrow,
.section-kicker {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #8191ac;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(117, 148, 222, 0.18);
  background: rgba(21, 32, 57, 0.45);
  padding: 8px 12px;
  position: relative;
}
.eyebrow i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
}
.eyebrow b {
  font-weight: 500;
  color: #5e7192;
  border-left: 1px solid var(--line);
  padding-left: 10px;
}
.hero h1 {
  font-size: clamp(54px, 7.2vw, 112px);
  line-height: 0.91;
  letter-spacing: -0.065em;
  margin: 34px auto 28px;
  max-width: 1100px;
  position: relative;
}
.hero h1 span {
  color: #768198;
  font-weight: 500;
}
.hero-copy {
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.6;
  color: #a8b0bf;
  max-width: 660px;
  margin: 0 auto;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 20px;
}
.button-primary {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 40px rgba(31, 92, 255, 0.22);
}
.button-primary:hover {
  background: #477cff;
}
.button-ghost small {
  color: #667087;
  font-size: 9px;
  font-family: "DM Mono";
}
.play {
  font-size: 10px;
  color: var(--blue2);
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: #657086;
  font-family: "DM Mono";
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.trust-row span:before {
  content: "✓";
  color: #7988a3;
  margin-right: 7px;
}
.terminal-wrap {
  max-width: 1360px;
  margin: 110px auto 0;
  position: relative;
  text-align: left;
}
.terminal-glow {
  position: absolute;
  inset: 0 10%;
  background: #2058eb;
  filter: blur(100px);
  opacity: 0.18;
}
.hero-product-shot {
  position: relative;
  border: 1px solid rgba(138, 159, 204, 0.24);
  background: #080c13;
  border-radius: 8px;
  box-shadow:
    0 24px 55px rgba(33, 52, 91, 0.14),
    0 70px 140px rgba(33, 52, 91, 0.1);
  overflow: hidden;
  aspect-ratio: 1360 / 888;
}
.hero-product-shot .hero-slide {
  display: block;
  width: 100%;
  height: calc(100% - 38px);
  position: absolute;
  inset: 38px 0 0;
  opacity: 0;
  transition:
    opacity 1.1s ease,
    transform 7s ease;
  transform: scale(1.012);
  object-fit: cover;
  object-position: center top;
}
.hero-product-shot .hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 7px 9px;
  background: rgba(5, 8, 13, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}
.hero-slide-controls button {
  width: 30px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  overflow: hidden;
}
.hero-slide-controls button i {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
}
.hero-slide-controls button.active i {
  animation: slideProgress var(--slide-duration, 44s) linear forwards;
}
@keyframes slideProgress {
  to {
    width: 100%;
  }
}
.shot-chrome {
  height: 38px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 13px;
  background: #090d14;
  color: #606d82;
  font: 9px "DM Mono";
  letter-spacing: 0.06em;
}
.shot-chrome > span {
  display: flex;
  gap: 5px;
  width: 90px;
}
.shot-chrome > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #293143;
}
.shot-chrome > span i:first-child {
  background: #4a5a7a;
}
.shot-chrome small {
  margin: auto;
}
.shot-chrome b {
  width: 90px;
  text-align: right;
  color: #6f7d91;
  font-weight: 400;
}
.shot-chrome b i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  margin-right: 5px;
}
.shot-sheen {
  position: absolute;
  inset: 38px 0 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.045) 49%,
    transparent 59%
  );
  transform: translateX(-100%);
  animation: shotSheen 7s 2s ease-in-out infinite;
}
.hero-product-shot + .terminal {
  display: none;
}
@keyframes shotSheen {
  0%,
  60% {
    transform: translateX(-100%);
  }
  85%,
  100% {
    transform: translateX(100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-product-shot .hero-slide {
    transition: none;
    transform: none;
  }
  .hero-slide-controls button.active i {
    animation: none;
    width: 100%;
  }
  .shot-sheen {
    display: none;
  }
}
.terminal {
  position: relative;
  border: 1px solid rgba(138, 159, 204, 0.22);
  background: #080c13;
  border-radius: 8px;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.terminal-topbar {
  height: 48px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: "DM Mono";
  font-size: 9px;
  color: #6e7b91;
}
.terminal-brand {
  display: flex;
  align-items: center;
  width: 240px;
  gap: 9px;
}
.mark {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  background: var(--blue);
  color: #fff;
  font-style: normal;
  font-weight: bold;
}
.market-search {
  background: #0d121c;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 10px;
  width: 270px;
}
.market-search kbd {
  float: right;
  border: 1px solid var(--line);
  padding: 1px 4px;
}
.live-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
}
.live-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.live-status span {
  margin-left: 8px;
}
.terminal-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 560px;
}
.watchlist {
  border-right: 1px solid var(--line);
  padding: 17px 9px;
}
.panel-label {
  font-family: "DM Mono";
  font-size: 9px;
  color: #657086;
  padding: 0 8px 12px;
  letter-spacing: 0.12em;
}
.panel-label span {
  float: right;
}
.watch {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 13px 8px;
  border: 1px solid transparent;
  border-radius: 5px;
  margin-bottom: 3px;
}
.watch.active {
  background: #10182a;
  border-color: rgba(65, 111, 230, 0.32);
}
.watch i {
  font-style: normal;
  text-align: center;
}
.watch b {
  display: block;
  font-size: 9px;
}
.watch small {
  display: block;
  color: #5e687a;
  font-size: 9px;
  margin-top: 4px;
}
.watch strong {
  text-align: right;
  font-size: 12px;
}
.watch em {
  display: block;
  color: var(--green);
  font-size: 9px;
  font-style: normal;
  margin-top: 3px;
}
.watch em.down {
  color: #fa6b74;
}
.market-view {
  padding: 27px 30px 0;
  min-width: 0;
}
.market-heading {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}
.market-meta {
  font-family: "DM Mono";
  color: #64738c;
  font-size: 9px;
  letter-spacing: 0.1em;
}
.market-heading h3 {
  font-size: 20px;
  margin: 8px 0 5px;
}
.market-heading p {
  font-size: 9px;
  color: #667186;
  margin: 0;
}
.market-price {
  text-align: right;
}
.market-price small {
  display: block;
  color: #667186;
  font-family: "DM Mono";
  font-size: 9px;
}
.market-price strong {
  display: block;
  font-size: 27px;
  margin: 2px 0;
  color: #e8edfa;
}
.market-price span {
  font-size: 9px;
  color: var(--green);
}
.chart-controls {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
}
.chart-controls button {
  border: 0;
  background: transparent;
  color: #566177;
  font-family: "DM Mono";
  font-size: 9px;
  padding: 4px 7px;
}
.chart-controls button.active {
  background: #1c2d57;
  color: #92b2ff;
}
.legend {
  display: flex;
  gap: 16px;
  font: 9px "DM Mono";
  color: #657086;
}
.legend i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 3px;
}
.news-dot {
  background: #6090ff;
}
.crowd-dot {
  background: #9b72ff;
}
.shock-dot {
  background: var(--gold);
}
.chart-area {
  height: 300px;
  position: relative;
  padding-left: 36px;
}
.chart-area svg {
  width: 100%;
  height: 255px;
  overflow: visible;
}
.grid-lines line {
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1;
}
.chart-fill {
  fill: url(#fill);
}
.chart-line {
  fill: none;
  stroke: #5e8fff;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 2.2s 0.4s ease forwards;
}
.chart-y {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #4d586b;
  font: 9px "DM Mono";
}
.chart-time {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: #4d586b;
  font: 9px "DM Mono";
}
.event-marker {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #739aff;
  background: #173b8f;
  color: #bcd0ff;
  border-radius: 50%;
  font: 9px "DM Mono";
  cursor: pointer;
  box-shadow: 0 0 0 5px rgba(54, 104, 225, 0.12);
}
.marker-one {
  left: 34%;
  top: 121px;
}
.marker-two {
  left: 61%;
  top: 83px;
}
.marker-three {
  left: 82%;
  top: 50px;
}
.event-marker.crowd {
  background: #492c83;
  border-color: #9a70ef;
}
.event-marker.shock {
  background: #6b602d;
  border-color: var(--gold);
  color: #fff;
}
.event-tooltip {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 220px;
  background: #111827;
  border: 1px solid #314263;
  padding: 12px;
  z-index: 5;
  transition: 0.2s;
  transform: translateY(5px);
}
.event-tooltip.show {
  opacity: 1;
  transform: none;
}
.event-tooltip small {
  display: block;
  color: #7195ec;
  font: 9px "DM Mono";
}
.event-tooltip b {
  display: block;
  font-size: 9px;
  line-height: 1.5;
  margin: 7px 0;
}
.event-tooltip span {
  font-size: 9px;
  color: #8096c4;
}
.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin: 0 -30px;
}
.signal-strip div {
  padding: 16px 22px;
  border-right: 1px solid var(--line);
}
.signal-strip small,
.signal-strip span {
  display: block;
  color: #667186;
  font: 9px "DM Mono";
}
.signal-strip b {
  display: block;
  font-size: 12px;
  margin: 5px 0;
}
.signal-strip .positive {
  color: var(--green);
}
.depth-bars {
  letter-spacing: 2px;
  color: var(--blue2);
}
.depth-bars i {
  font-style: normal;
  color: #25314a;
}
.terminal-caption {
  font: 9px "DM Mono";
  letter-spacing: 0.14em;
  color: #667087;
  text-align: center;
  margin-top: 22px;
}
.terminal-caption span {
  color: var(--blue2);
  margin-right: 8px;
}
.signal-proof {
  padding-top: 170px;
  padding-bottom: 150px;
  max-width: 1400px;
  margin: auto;
}
.proof-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  align-items: end;
  gap: 100px;
}
.proof-heading h2,
.section-title {
  font-size: clamp(40px, 5.1vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 25px 0 0;
}
.proof-heading h2 em {
  font-style: normal;
  color: #657087;
}
.proof-heading h2 span {
  color: var(--blue2);
}
.proof-heading p {
  color: #8c96a7;
  line-height: 1.8;
  font-size: 14px;
}
.stat-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-line div {
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}
.stat-line strong {
  display: block;
  font-size: 32px;
  font-weight: 500;
}
.stat-line span {
  display: block;
  color: #606b7e;
  font: 9px "DM Mono";
  text-transform: uppercase;
  margin-top: 8px;
}
.features {
  max-width: 1500px;
  margin: auto;
  padding-bottom: 150px;
}
.section-title {
  margin-bottom: 60px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.feature-card {
  min-height: 540px;
  background: linear-gradient(145deg, #0d121c, #090d14);
  border: 1px solid var(--line);
  padding: 46px;
  position: relative;
  overflow: hidden;
}
.feature-wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.feature-wide.reverse {
  grid-template-columns: 1.2fr 0.85fr;
}
.feature-wide.reverse .feature-copy {
  grid-column: 2;
  grid-row: 1;
}
.number {
  position: absolute;
  right: 24px;
  top: 22px;
  color: #4d596e;
  font: 9px "DM Mono";
}
.icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid;
  border-radius: 50%;
  margin-bottom: 32px;
}
.icon.blue {
  color: #77a0ff;
  background: rgba(46, 107, 255, 0.1);
}
.icon.purple {
  color: #a985ff;
  background: rgba(139, 93, 255, 0.1);
}
.icon.gold {
  color: var(--gold);
  background: rgba(226, 216, 163, 0.08);
}
.icon.green {
  color: var(--green);
  background: rgba(54, 211, 153, 0.08);
}
.feature-card h3 {
  font-size: clamp(27px, 3vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 22px;
}
.feature-card p {
  font-size: 13px;
  line-height: 1.8;
  color: #858fa2;
  max-width: 420px;
}
.feature-card a,
.text-cta {
  display: inline-flex;
  gap: 30px;
  margin-top: 25px;
  font-size: 11px;
  color: #b4c7f5;
  border-bottom: 1px solid #33415e;
  padding-bottom: 8px;
}
.visual-placeholder {
  position: relative;
  border: 1px solid rgba(110, 139, 206, 0.24);
  background: #080c13;
  min-height: 350px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
  padding: 44px 30px 25px;
}
.product-image-frame {
  padding: 35px 0 0;
  min-height: 0;
  background: #080b11;
}
.product-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.product-image-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: #0b1018;
}
.product-image-caption span {
  font: 9px "DM Mono";
  color: #66748b;
  letter-spacing: 0.08em;
}
.product-image-caption span i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  margin-right: 6px;
}
.product-image-caption b {
  font-size: 9px;
  color: #aab4c6;
  font-weight: 500;
}
.placeholder-label {
  position: absolute;
  top: 13px;
  left: 15px;
  font: 9px "DM Mono";
  color: #52617a;
  letter-spacing: 0.1em;
}
.placeholder-label.light {
  color: rgba(255, 255, 255, 0.45);
  z-index: 2;
}
.mini-chart {
  height: 185px;
  position: relative;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 45px;
}
.mini-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.mini-chart path {
  fill: none;
  stroke: #5789ff;
  stroke-width: 2;
}
.mini-chart i {
  position: absolute;
  left: 68%;
  top: 42%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ba1ff;
  box-shadow: 0 0 0 8px rgba(72, 121, 255, 0.14);
}
.move-tag {
  position: absolute;
  right: 3%;
  top: 7%;
  font: 17px "DM Mono";
  color: var(--green);
}
.move-tag small {
  display: block;
  font-size: 9px;
  margin-top: 4px;
}
.headline-card {
  border: 1px solid var(--line);
  background: #101621;
  padding: 16px 18px;
}
.headline-card small,
.headline-card span {
  display: block;
  color: #6680b7;
  font: 9px "DM Mono";
}
.headline-card b {
  display: block;
  font-size: 11px;
  margin: 8px 0;
}
.headline-card span {
  color: var(--green);
}
.crowd-viz {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 60px auto 0;
  justify-content: center;
}
.crowd-product-image {
  display: block;
  height: auto;
  margin: 40px -15px -20px;
  border: 1px solid rgba(111, 89, 174, 0.28);
  background: #080b11;
  padding-top: 27px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
  position: relative;
}
.crowd-product-image img {
  display: block;
  width: 100%;
  height: auto;
}
.crowd-image-label {
  height: 27px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #6e6687;
  font: 9px "DM Mono";
  letter-spacing: 0.09em;
  border-bottom: 1px solid var(--line);
}
.crowd-image-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9b72ff;
  box-shadow: 0 0 8px #9b72ff;
  margin-right: 6px;
}
.gauge {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#8c61ed 0 68%, #1b2030 68%);
  position: relative;
}
.gauge:after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #0b1019;
}
.gauge span {
  font: 32px "DM Mono";
  z-index: 1;
}
.gauge small {
  display: block;
  font-size: 9px;
  color: #9c88d0;
}
.velocity small,
.velocity span {
  display: block;
  font: 9px "DM Mono";
  color: #69748a;
}
.velocity b {
  font-size: 31px;
  display: block;
  margin: 6px 0;
}
.velocity span {
  color: var(--green);
}
.ripple-viz {
  height: 190px;
  position: relative;
  margin-top: 45px;
}
.ripple-product-image {
  height: auto;
  margin: 40px -15px -20px;
  border: 1px solid rgba(100, 126, 184, 0.22);
  background: #080b11;
  padding-top: 27px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}
.ripple-product-image img {
  display: block;
  width: 100%;
  height: auto;
}
.ripple-image-label {
  height: 27px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #64718a;
  font: 9px "DM Mono";
  letter-spacing: 0.09em;
  border-bottom: 1px solid var(--line);
}
.ripple-image-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(226, 216, 163, 0.8);
  margin-right: 6px;
}
.node {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: #111721;
  border: 1px solid #394157;
  font: 10px "DM Mono";
  z-index: 2;
}
.node small {
  font-size: 9px;
  color: var(--gold);
}
.node.origin {
  left: 4%;
  top: 54px;
  border-color: #a69961;
  box-shadow: 0 0 35px rgba(226, 216, 163, 0.12);
}
.node.n1 {
  left: 36%;
  top: 14px;
}
.node.n2 {
  left: 61%;
  top: 95px;
}
.node.n3 {
  right: 1%;
  top: 24px;
}
.ripple-viz .line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, #8e8352, #3b4558);
  transform-origin: left;
}
.l1 {
  width: 150px;
  left: 15%;
  top: 84px;
  transform: rotate(-17deg);
}
.l2 {
  width: 145px;
  left: 46%;
  top: 65px;
  transform: rotate(30deg);
}
.l3 {
  width: 130px;
  left: 70%;
  top: 114px;
  transform: rotate(-35deg);
}
.edge-placeholder {
  min-height: 390px;
}
.edge-product-image {
  padding: 35px 0 0;
  min-height: 0;
  background: #080b11;
}
.edge-product-image img {
  display: block;
  width: 100%;
  height: auto;
}
.edge-image-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: #0b1018;
}
.edge-image-caption span {
  font: 9px "DM Mono";
  color: #68758b;
  letter-spacing: 0.08em;
}
.edge-image-caption span i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  margin-right: 6px;
}
.edge-image-caption b {
  font-size: 9px;
  color: #aab4c6;
  font-weight: 500;
}
.edge-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 30px 8px;
}
.edge-top span {
  font: 9px "DM Mono";
  color: #68758b;
}
.edge-top b {
  display: block;
  font: 25px Manrope;
  color: #fff;
  margin-top: 8px;
}
.edge-top i {
  color: #52617a;
}
.edge-score {
  text-align: center;
  padding: 35px;
}
.edge-score small,
.edge-score span {
  display: block;
  font: 9px "DM Mono";
}
.edge-score small {
  color: #68758b;
}
.edge-score b {
  display: block;
  color: var(--green);
  font: 40px "DM Mono";
  margin: 8px;
}
.edge-score span {
  color: var(--green);
}
.custom-ai {
  max-width: 1500px;
  margin: 0 auto 160px;
  position: relative;
  padding-top: 130px;
  padding-bottom: 0;
  border-top: 1px solid var(--line);
}
.ai-halo {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -100px;
  left: -250px;
  background: radial-gradient(circle, rgba(42, 91, 215, 0.12), transparent 67%);
  pointer-events: none;
}
.ai-intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  column-gap: 70px;
  align-items: center;
}
.ai-intro h2 {
  font-size: clamp(44px, 5.8vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 25px 0 0;
}
.ai-intro h2 span {
  color: #7893c9;
}
.ai-intro p {
  font-size: 14px;
  line-height: 1.8;
  color: #8993a6;
  margin: 0 0 8px;
  max-width: 520px;
  margin-top: 32px;
}
.ai-market-graphic {
  height: 470px;
  position: relative;
  border: 1px solid rgba(62, 88, 145, 0.18);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.92),
    rgba(238, 243, 252, 0.82)
  );
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(31, 50, 87, 0.1);
}
.graphic-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(48, 75, 126, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 75, 126, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 95%);
}
.graphic-topline {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 15px;
  display: flex;
  justify-content: space-between;
  color: #687792;
  font: 9px "DM Mono";
  letter-spacing: 0.1em;
}
.graphic-topline b {
  color: #58705f;
  font-weight: 400;
}
.graphic-topline b i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  margin-right: 6px;
}
.ai-wiring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.wire {
  fill: none;
  stroke: url(#wireBlue);
  stroke-width: 1;
  opacity: 0.48;
}
.input-wire {
  stroke-dasharray: 3 5;
}
.market-wire {
  stroke-width: 1.3;
  filter: url(#wireGlow);
}
.signal-particle {
  fill: #456dc7;
  filter: url(#wireGlow);
}
.signal-particle.output {
  fill: #078d59;
}
.mobile-ai-wiring {
  display: none;
}
.signal-input {
  position: absolute;
  left: 4%;
  width: 116px;
  padding: 9px 9px 8px;
  border-left: 2px solid #8ba0ca;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 18px rgba(35, 55, 92, 0.06);
  transition: 0.3s;
}
.signal-input:hover {
  transform: translateX(5px);
  background: #fff;
  box-shadow: 0 9px 25px rgba(35, 55, 92, 0.12);
}
.signal-input i {
  font: 9px "DM Mono";
  font-style: normal;
  color: #8390a5;
  float: right;
}
.signal-input span,
.signal-input b {
  display: block;
}
.signal-input span {
  font: 9px "DM Mono";
  color: #3c4d6b;
}
.signal-input b {
  font-size: 9px;
  color: #8a95a7;
  font-weight: 500;
  margin-top: 5px;
}
.input-news {
  top: 105px;
}
.input-crowd {
  top: 190px;
}
.input-graph {
  top: 275px;
}
.neural-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 155px;
  height: 155px;
  border: 1px solid #4c70be;
  background: linear-gradient(145deg, #f7faff, #dfe8fa);
  box-shadow:
    0 20px 55px rgba(25, 65, 157, 0.18),
    inset 0 0 0 8px rgba(54, 91, 172, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: 0.4s;
}
.neural-chip:hover {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow:
    0 25px 70px rgba(25, 65, 157, 0.25),
    inset 0 0 0 8px rgba(54, 91, 172, 0.08);
}
.brain-mark {
  width: 64px;
  height: 64px;
}
.brain-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #174edb;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.neural-chip small {
  font: 9px "DM Mono";
  letter-spacing: 0.18em;
  color: #7789ac;
}
.neural-chip b {
  font: 10px "DM Mono";
  letter-spacing: 0.08em;
  color: #172c59;
  margin: 4px;
}
.neural-chip em {
  font: 9px "DM Mono";
  font-style: normal;
  color: #5272b3;
}
.neural-chip.processing .brain-mark {
  animation: brainPulse 0.55s ease;
}
@keyframes brainPulse {
  50% {
    transform: scale(1.035);
    opacity: 0.82;
    filter: drop-shadow(0 0 4px rgba(23, 78, 219, 0.3));
  }
}
.market-output {
  position: absolute;
  right: 3%;
  width: 155px;
  text-align: left;
  padding: 10px 11px;
  border: 1px solid rgba(54, 83, 143, 0.2);
  background: rgba(255, 255, 255, 0.86);
  color: #18233a;
  box-shadow: 0 7px 22px rgba(35, 55, 92, 0.07);
  cursor: pointer;
  transition: 0.3s;
  z-index: 3;
}
.market-output .direction-caret {
  position: absolute;
  right: 10px;
  top: 9px;
  font: 18px "DM Mono";
  line-height: 1;
}
.market-output .direction-yes {
  color: #078d59;
}
.market-output .direction-no {
  color: #d34452;
}
.market-output:hover,
.market-output:focus {
  transform: translateX(-7px);
  border-color: #5278cf;
  background: #fff;
  box-shadow: 0 13px 32px rgba(35, 65, 130, 0.16);
  outline: none;
}
.market-output small {
  font: 9px "DM Mono";
  color: #6c82b2;
}
.market-output b {
  display: block;
  font-size: 9px;
  margin: 5px 0;
}
.market-output span {
  font: 10.5px "DM Mono";
  color: #078d59;
}
.market-output span i {
  font-style: normal;
  font-size: 12px;
  background: #e3f7ee;
  padding: 3px 6px;
  margin-right: 6px;
}
.market-output span.negative {
  color: #c43f4d;
}
.market-output span.negative i {
  background: #fdebed;
}
.market-direction.impact-positive,
.market-direction.impact-positive .price-impact,
.market-direction.impact-positive .impact-word {
  color: #078d59;
}
.market-direction.impact-negative,
.market-direction.impact-negative .price-impact,
.market-direction.impact-negative .impact-word {
  color: #c43f4d;
}
.market-direction > i.side-yes {
  color: #078d59;
  background: #e3f7ee;
}
.market-direction > i.side-no {
  color: #c43f4d;
  background: #fdebed;
}
.price-impact.data-refresh {
  animation: dataRefresh 0.68s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.direction-caret.data-refresh {
  animation: caretRefresh 0.68s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes dataRefresh {
  0% {
    opacity: 0.15;
    filter: blur(3px);
    transform: translateY(7px);
  }
  55% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-2px);
  }
  100% {
    transform: none;
  }
}
@keyframes caretRefresh {
  0% {
    opacity: 0.15;
    transform: scale(0.55) rotate(-18deg);
  }
  65% {
    opacity: 1;
    transform: scale(1.18) rotate(0);
  }
  100% {
    transform: scale(1);
  }
}
.market-fed {
  top: 82px;
}
.market-btc {
  top: 183px;
}
.market-usd {
  top: 284px;
}
.graphic-caption {
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  color: #6c7890;
  font: 9px "DM Mono";
  letter-spacing: 0.1em;
}
.graphic-caption i {
  width: 34px;
  height: 1px;
  background: #91a5ce;
  position: relative;
}
.graphic-caption i:after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #174edb;
}
.ai-capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  margin-top: 70px;
  background: rgba(10, 14, 22, 0.62);
}
.ai-capabilities > div {
  padding: 30px;
  border-right: 1px solid var(--line);
}
.ai-capabilities > div:last-child {
  border-right: 0;
}
.ai-capabilities span {
  font: 9px "DM Mono";
  color: #5b78ba;
}
.ai-capabilities b {
  display: block;
  font-size: 14px;
  margin: 25px 0 10px;
}
.ai-capabilities p {
  font-size: 10px;
  line-height: 1.7;
  color: #6f7a8e;
  margin: 0;
}
.simulate-block {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 70px;
  align-items: center;
  margin-top: 110px;
}
.simulate-copy h3 {
  font-size: clamp(36px, 4.2vw, 61px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  margin: 24px 0;
}
.simulate-copy h3 em {
  font-style: normal;
  color: #7189bd;
}
.simulate-copy > p {
  font-size: 12px;
  line-height: 1.85;
  color: #828da0;
}
.simulate-copy ul {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  color: #929daf;
  font: 9px "DM Mono";
}
.simulate-copy li {
  margin: 13px 0;
}
.simulate-copy li:before {
  content: "✦";
  color: #7799ee;
  margin-right: 10px;
}
.simulation-ui {
  min-height: 545px;
  border: 1px solid rgba(93, 126, 201, 0.27);
  background: #080c13;
  position: relative;
  padding: 42px 22px 0;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.4);
}
.simulation-product-image {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.simulation-product-image img {
  display: block;
  width: 100%;
  height: auto;
}
.simulation-image-bar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f8faff;
  color: #66748c;
  font: 9px "DM Mono";
  letter-spacing: 0.08em;
}
.simulation-image-bar span i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #078d59;
  box-shadow: 0 0 7px rgba(7, 141, 89, 0.7);
  margin-right: 6px;
}
.simulation-image-bar b {
  font-weight: 400;
  color: #53698f;
}
.simulation-image-caption {
  height: 43px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: #6b778b;
  font: 9px "DM Mono";
  letter-spacing: 0.07em;
}
.simulation-image-caption i {
  width: 24px;
  height: 1px;
  background: #8aa2d2;
}
.simulation-image-caption b {
  margin-left: auto;
  color: #315fbd;
  font-weight: 500;
}
.sim-top {
  display: flex;
  justify-content: space-between;
  color: #68758b;
  font: 9px "DM Mono";
  padding: 0 4px 13px;
}
.sim-top i {
  font-style: normal;
  color: #526a9f;
}
.sim-prompt {
  border: 1px solid #273654;
  background: #0c1320;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}
.sim-prompt small {
  grid-column: 1/-1;
  color: #5c76ae;
  font: 9px "DM Mono";
}
.sim-prompt p {
  font-size: 10px;
  margin: 10px 10px 2px 0;
  color: #c3cbe0;
}
.sim-prompt button {
  border: 1px solid #365fc1;
  background: #1745b5;
  padding: 9px 12px;
  font: 9px "DM Mono";
  cursor: pointer;
}
.sim-results {
  height: 330px;
  position: relative;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  overflow: hidden;
}
.sim-node {
  position: absolute;
  width: 108px;
  min-height: 62px;
  border: 1px solid #334364;
  background: #101725;
  padding: 12px;
  z-index: 2;
}
.sim-node small {
  font: 9px "DM Mono";
  color: var(--green);
}
.sim-node b {
  display: block;
  font-size: 9px;
  line-height: 1.45;
  margin-top: 5px;
}
.sim-origin {
  left: 3%;
  top: 130px;
  border-color: #637fc4;
}
.sim-fed {
  left: 36%;
  top: 48px;
}
.sim-btc {
  right: 5%;
  top: 48px;
}
.sim-usd {
  right: 17%;
  bottom: 27px;
}
.sim-usd small {
  color: #fa7279;
}
.sim-path {
  position: absolute;
  height: 1px;
  background: #38548f;
  transform-origin: left;
  z-index: 1;
}
.sim-path i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  right: 0;
  top: -2px;
  background: #769aff;
  box-shadow: 0 0 9px #527eea;
}
.sim-path span {
  position: absolute;
  left: 45%;
  bottom: 7px;
  white-space: nowrap;
  font: 9px "DM Mono";
  color: #5e76aa;
}
.path-a {
  width: 210px;
  left: 16%;
  top: 145px;
  transform: rotate(-25deg);
}
.path-b {
  width: 230px;
  left: 48%;
  top: 80px;
}
.path-c {
  width: 185px;
  left: 49%;
  top: 99px;
  transform: rotate(29deg);
}
.sim-footer {
  height: 43px;
  margin: 0 -22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 22px;
  color: #5f6b7f;
  font: 9px "DM Mono";
}
.sim-footer b {
  margin-left: auto;
  color: #7599ed;
  font-weight: 500;
}
.confidence {
  font: 9px "DM Mono";
  color: #657086;
}
.confidence div {
  height: 4px;
  background: #1c2432;
  margin: 9px 0;
}
.confidence i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.confidence span {
  float: right;
}
.film-section {
  padding-top: 40px;
  padding-bottom: 160px;
}
.film-placeholder {
  height: min(72vw, 780px);
  min-height: 520px;
  max-width: 1500px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 72% 40%,
      rgba(47, 93, 190, 0.25),
      transparent 26%
    ),
    linear-gradient(120deg, #0d1320, #05070b);
}
.film-placeholder:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.3), transparent 55%),
    linear-gradient(0deg, rgba(5, 7, 11, 0.7), transparent 45%);
}
.film-play {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(7, 11, 19, 0.5);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.film-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--blue);
}
.film-copy {
  position: absolute;
  left: 6%;
  bottom: 10%;
  z-index: 3;
}
.film-copy small {
  font: 9px "DM Mono";
  letter-spacing: 0.12em;
  color: #8593ac;
}
.film-copy h2 {
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 18px 0;
}
.film-copy em {
  font-style: normal;
  color: #789dff;
}
.film-meta {
  position: absolute;
  right: 3%;
  bottom: 4%;
  z-index: 3;
  font: 9px "DM Mono";
  color: #667186;
}
.desktop-pulses {
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 170px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: center;
}
.desktop-showcase-head {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  gap: 100px;
  align-items: end;
}
.desktop-showcase-head h2 {
  font-size: clamp(43px, 5.5vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 24px 0 0;
}
.desktop-showcase-head h2 em {
  font-style: normal;
  color: #6d82ad;
}
.desktop-showcase-head p {
  font-size: 13px;
  line-height: 1.85;
  color: #687487;
  margin: 0 0 8px;
}
.desktop-view-tabs {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  background: #fff;
  margin: -20px 0 -30px;
}
.desktop-view-tabs button {
  position: relative;
  min-height: 82px;
  padding: 16px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: left;
  color: #687487;
  cursor: pointer;
  transition: 0.28s;
}
.desktop-view-tabs button:last-child {
  border-right: 0;
}
.desktop-view-tabs button:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 2px;
  background: #174edb;
  transition: 0.35s;
}
.desktop-view-tabs button:hover {
  background: #f8faff;
  color: #1c2a42;
}
.desktop-view-tabs button.active {
  background: #f3f6fd;
  color: #17233b;
}
.desktop-view-tabs button.active:after {
  right: 0;
}
.desktop-view-tabs button i {
  float: right;
  font: 9px "DM Mono";
  font-style: normal;
  color: #9aa5b7;
}
.desktop-view-tabs button span,
.desktop-view-tabs button small {
  display: block;
}
.desktop-view-tabs button span {
  font-size: 10px;
  font-weight: 700;
}
.desktop-view-tabs button small {
  font: 9px "DM Mono";
  letter-spacing: 0.06em;
  color: #8a95a7;
  margin-top: 8px;
  text-transform: uppercase;
}
.desktop-pulse-image {
  grid-column: 1;
}
.desktop-pulse-copy {
  grid-column: 2;
  height: 720px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.desktop-view-image {
  aspect-ratio: 760 / 478;
  object-fit: cover;
  transition:
    opacity 0.42s ease,
    filter 0.42s ease,
    transform 0.7s ease;
}
.desktop-view-image.view-changing {
  opacity: 0.15;
  filter: blur(5px);
  transform: scale(0.995);
}
.desktop-pulse-image {
  position: relative;
  border: 1px solid rgba(62, 83, 123, 0.16);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(31, 49, 82, 0.13);
}
.desktop-pulse-image img {
  display: block;
  width: 100%;
  height: auto;
}
.desktop-pulse-bar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f8f9fc;
  color: #647087;
  font: 9px "DM Mono";
  letter-spacing: 0.09em;
}
.desktop-pulse-bar span i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #078d59;
  box-shadow: 0 0 7px rgba(7, 141, 89, 0.7);
  margin-right: 6px;
}
.desktop-pulse-bar b {
  font-weight: 400;
  color: #53698f;
}
.desktop-pulse-caption {
  height: 43px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: #6b778b;
  font: 9px "DM Mono";
  letter-spacing: 0.08em;
}
.desktop-pulse-caption i {
  width: 25px;
  height: 1px;
  background: #8aa2d2;
}
.desktop-pulse-caption b {
  margin-left: auto;
  color: #315fbd;
  font-weight: 500;
}
.desktop-pulse-copy h3 {
  font-size: clamp(38px, 3.7vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 24px 0;
  height: 3.09em;
  overflow: hidden;
}
.desktop-pulse-copy h3 em {
  font-style: normal;
  color: #6d82ad;
}
.desktop-pulse-copy > p {
  font-size: 12px;
  line-height: 1.85;
  color: #687487;
  height: 5.55em;
  overflow: hidden;
}
.desktop-pulse-copy ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.desktop-pulse-copy li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  height: 76px;
}
.desktop-pulse-copy li:last-child {
  border-bottom: 1px solid var(--line);
}
.desktop-pulse-copy li > span {
  font: 9px "DM Mono";
  color: #315fbd;
  padding-top: 2px;
}
.desktop-pulse-copy li b,
.desktop-pulse-copy li small {
  display: block;
}
.desktop-pulse-copy > .text-cta {
  margin-top: 0;
  align-self: flex-start;
  position: absolute;
  left: 0;
  bottom: 0;
}
.desktop-pulse-copy li b {
  font-size: 10px;
}
.desktop-pulse-copy li small {
  font-size: 9px;
  line-height: 1.65;
  color: #748095;
  margin-top: 5px;
}
.pricing {
  max-width: 1500px;
  margin: auto;
  padding-bottom: 160px;
}
.pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.billing {
  display: flex;
  background: #0b1018;
  border: 1px solid var(--line);
  padding: 4px;
}
.billing button {
  border: 0;
  background: transparent;
  color: #717d91;
  font-size: 10px;
  padding: 10px 14px;
  cursor: pointer;
}
.billing button.active {
  background: #1b2538;
  color: #fff;
}
.billing span {
  font: 9px "DM Mono";
  color: var(--green);
  margin-left: 5px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 65px;
}
.price-card {
  background: #0b0f17;
  border: 1px solid var(--line);
  padding: 35px;
  min-height: 650px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.go {
  background: linear-gradient(155deg, #101827, #0b0f17);
  border-color: #273757;
}
.price-card.pro {
  background: linear-gradient(155deg, #171814, #0d0f12);
  border-color: #5c583f;
}
.popular {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  height: 27px;
  background: var(--gold);
  color: #1b1b16;
  display: grid;
  place-items: center;
  font: 9px "DM Mono";
  letter-spacing: 0.12em;
}
.plan-name {
  display: flex;
  justify-content: space-between;
  color: #8290aa;
  font: 9px "DM Mono";
  letter-spacing: 0.15em;
}
.plan-name i {
  font-style: normal;
  color: #3f4859;
}
.price-card h3 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin: 40px 0 8px;
}
.price-card > p {
  font-size: 11px;
  color: #758096;
  margin: 0;
  min-height: 45px;
}
.price {
  margin: 28px 0;
}
.price b {
  font-size: 45px;
  font-weight: 500;
  letter-spacing: -0.05em;
}
.price span {
  color: #687386;
  font-size: 10px;
}
.plan-button {
  width: 100%;
  background: #161d29;
}
.plan-button.primary {
  background: var(--blue);
  border-color: var(--blue);
}
.pro-button {
  background: var(--gold);
  border-color: var(--gold);
  color: #181813;
}
.includes {
  font: 9px "DM Mono";
  letter-spacing: 0.12em;
  color: #69758a;
  margin: 32px 0 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.price-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.price-card li {
  font-size: 10px;
  color: #a8b1c0;
  padding: 9px 0;
}
.price-card li:before {
  content: "✓";
  color: #65758f;
  margin-right: 10px;
}
.price-card.pro li:before {
  color: var(--gold);
}
.plan-foot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: #647086;
  font: 9px "DM Mono";
  text-transform: uppercase;
}
.plan-foot.gold {
  color: var(--gold);
}
.pricing-note {
  text-align: center;
  color: #596477;
  font: 9px "DM Mono";
  margin-top: 24px;
}
.desk {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
  padding-top: 100px;
  padding-bottom: 160px;
}
.desk h2 {
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 25px 0;
}
.desk h2 span {
  color: var(--gold);
}
.desk-copy p {
  font-size: 13px;
  line-height: 1.8;
  color: #858fa2;
  max-width: 470px;
}
.desk-copy ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #8f9aab;
  font: 9px "DM Mono";
}
.desk-copy li:before {
  content: "·";
  color: var(--gold);
  margin-right: 7px;
}
.device-placeholder {
  height: 550px;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle,
    rgba(226, 216, 163, 0.12),
    transparent 50%
  );
  border: 1px solid rgba(226, 216, 163, 0.08);
}
.device-product-video {
  height: auto;
  display: block;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(93, 105, 124, 0.17);
  box-shadow: 0 32px 75px rgba(32, 46, 70, 0.14);
  overflow: hidden;
}
.device-product-video img {
  display: block;
  width: 100%;
  height: auto;
}
.device-video-bar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f8f9fc;
  color: #647087;
  font: 9px "DM Mono";
  letter-spacing: 0.09em;
}
.device-video-bar span i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #078d59;
  box-shadow: 0 0 7px rgba(7, 141, 89, 0.7);
  margin-right: 6px;
}
.device-video-bar b {
  font-weight: 400;
  color: #766b43;
}
.device-video-caption {
  height: 43px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: #6b778b;
  font: 9px "DM Mono";
  letter-spacing: 0.08em;
}
.device-video-caption i {
  width: 25px;
  height: 1px;
  background: #b4a76d;
}
.device-video-caption b {
  margin-left: auto;
  color: #766b43;
  font-weight: 500;
}
.device {
  width: min(78%, 570px);
  aspect-ratio: 1.72;
  background: #161a20;
  border: 8px solid #262a2e;
  border-radius: 28px;
  padding: 10px;
  position: relative;
  z-index: 2;
  transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
  box-shadow: 30px 50px 80px #000;
}
.device:after {
  content: "";
  position: absolute;
  width: 48%;
  height: 24px;
  background: #1b1e22;
  bottom: -30px;
  left: 26%;
  border-radius: 0 0 20px 20px;
}
.device-screen {
  height: 100%;
  background: #080b10;
  border-radius: 13px;
  padding: 18px;
  overflow: hidden;
}
.device-top {
  display: flex;
  align-items: center;
  font-size: 10px;
}
.device-top b span {
  color: #799fff;
}
.device-top i {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  margin-left: auto;
}
.device-top small {
  font: 9px "DM Mono";
  color: #6d788b;
  margin-left: 5px;
}
.device-market {
  margin: 28px 0 18px;
}
.device-market small {
  display: block;
  font: 9px "DM Mono";
  color: #7c8798;
}
.device-market b {
  font-size: 48px;
  display: block;
  line-height: 1.1;
}
.device-market sup {
  font-size: 18px;
}
.device-market span {
  font: 9px "DM Mono";
  color: var(--green);
}
.device-edge {
  border-top: 1px solid var(--line);
  padding-top: 13px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.device-edge small {
  font: 9px "DM Mono";
  color: #697487;
}
.device-edge b {
  font-size: 16px;
}
.device-edge strong {
  font: 9px "DM Mono";
  color: var(--gold);
  margin-left: auto;
}
.device-news {
  background: #14234a;
  color: #9bb9ff;
  font: 9px "DM Mono";
  padding: 8px;
  margin-top: 17px;
}
.device-shadow {
  width: 70%;
  height: 40px;
  position: absolute;
  bottom: 70px;
  background: #000;
  filter: blur(25px);
}
.final-cta {
  min-height: 670px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #070a10, #08122a);
}
.final-cta:before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(80, 120, 220, 0.12);
  border-radius: 50%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-orbit {
  position: absolute;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(80, 120, 220, 0.12);
  border-radius: 50%;
}
.final-cta h2 {
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.065em;
  margin: 25px 0 12px;
  z-index: 1;
}
.final-cta p {
  color: #8b96aa;
  z-index: 1;
}
.final-cta .button {
  margin: 24px;
  z-index: 1;
}
.final-cta > small {
  font: 9px "DM Mono";
  color: #5d6a82;
  letter-spacing: 0.12em;
  z-index: 1;
}
footer {
  padding: 70px clamp(24px, 6vw, 100px) 25px;
  background: #05070b;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.footer-brand img {
  width: 145px;
}
footer > p {
  grid-column: 1;
  color: #657084;
  font-size: 12px;
}
.footer-links {
  grid-column: 2;
  grid-row: 1/3;
  display: flex;
  justify-content: flex-end;
  gap: 90px;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links small {
  font: 9px "DM Mono";
  color: #556176;
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 10px;
  color: #929cac;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #4e596b;
  font: 9px "DM Mono";
}
.footer-bottom b {
  font-weight: 400;
  color: #607066;
}
.footer-bottom i {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 5px;
}
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 8, 0.92);
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  backdrop-filter: blur(18px);
}
.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-close {
  position: absolute;
  right: 30px;
  top: 25px;
  background: none;
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}
.modal-video {
  width: min(86vw, 1100px);
  aspect-ratio: 16/9;
  border: 1px solid #2e3e60;
  background: radial-gradient(circle, #16264d, #080c13 62%);
  display: grid;
  place-items: center;
  position: relative;
}
.modal-video > span {
  font-size: 30px;
  color: #789dff;
}
.modal-video p {
  position: absolute;
  bottom: 20px;
  font: 9px "DM Mono";
  color: #758198;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@media (max-width: 900px) {
  .site-header nav,
  .header-actions {
    display: none;
  }
  .menu-button {
    display: block;
    width: 42px;
    height: 42px;
  }
  .menu-button span {
    display: block;
    height: 1px;
    background: #fff;
    margin: 7px;
  }
  .site-header.menu-open {
    height: auto;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
    background: #070a10;
  }
  .site-header.menu-open nav {
    display: flex;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: #070a10;
    flex-direction: column;
    padding: 25px;
    gap: 25px;
  }
  .hero {
    padding-top: 145px;
  }
  .hero h1 {
    font-size: clamp(49px, 13vw, 75px);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .trust-row {
    gap: 12px;
    flex-wrap: wrap;
  }
  .terminal-wrap {
    margin-top: 70px;
  }
  .terminal {
    overflow-x: auto;
  }
  .terminal-body {
    min-width: 850px;
  }
  .terminal-topbar {
    min-width: 850px;
  }
  .proof-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stat-line {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .ai-intro,
  .simulate-block {
    grid-template-columns: 1fr;
  }
  .ai-intro {
    gap: 30px;
  }
  .ai-capabilities {
    grid-template-columns: 1fr;
  }
  .ai-capabilities > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .ai-capabilities > div:last-child {
    border-bottom: 0;
  }
  .simulate-block {
    gap: 45px;
  }
  .simulation-ui {
    min-height: 520px;
  }
  .feature-wide,
  .feature-wide.reverse {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .feature-wide.reverse .feature-copy {
    grid-column: auto;
    grid-row: auto;
  }
  .feature-card {
    padding: 30px;
    min-height: 500px;
  }
  .visual-placeholder {
    margin-top: 30px;
  }
  .price-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .desktop-pulses {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 30px;
    padding-bottom: 110px;
  }
  .desktop-showcase-head {
    grid-template-columns: 1fr;
    gap: 25px;
    grid-row: 1;
  }
  .desktop-view-tabs {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    margin: 0;
    grid-row: 2;
  }
  .desktop-view-tabs button {
    min-width: 120px;
  }
  .desktop-pulse-image,
  .desktop-pulse-copy {
    grid-column: 1;
  }
  .desktop-pulse-copy h3 {
    font-size: 44px;
  }
  .desktop-pulse-image {
    grid-row: 3;
  }
  .desktop-pulse-copy {
    grid-row: 4;
    min-height: 0;
    height: auto;
    display: block;
  }
  .desktop-pulse-copy > .text-cta {
    position: static;
    margin-top: 25px;
  }
  .desktop-pulse-copy h3,
  .desktop-pulse-copy > p {
    min-height: 0;
    height: auto;
    overflow: visible;
  }
  .desktop-pulse-copy li {
    min-height: 0;
    height: auto;
  }
  .pricing-head {
    align-items: flex-start;
    gap: 35px;
    flex-direction: column;
  }
  .price-card {
    min-height: auto;
  }
  .desk {
    grid-template-columns: 1fr;
  }
  .device-placeholder {
    height: 430px;
  }
  .film-placeholder {
    min-height: 600px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    margin-top: 40px;
  }
  .footer-bottom {
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 540px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .menu-button span {
    background: #111827;
  }
  .section-pad {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
  .brand img {
    width: 135px;
  }
  .hero-copy {
    font-size: 15px;
  }
  .terminal-wrap {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
  .hero-product-shot {
    width: 100%;
  }
  .hero-orb,
  .ai-halo {
    display: none;
  }
  .signal-proof {
    padding-top: 110px;
    padding-bottom: 100px;
  }
  .stat-line div {
    padding: 25px 10px;
  }
  .stat-line strong {
    font-size: 25px;
  }
  .feature-card {
    padding: 26px 22px;
    width: 100%;
    max-width: 100%;
  }
  .crowd-product-image,
  .ripple-product-image {
    margin-left: 0;
    margin-right: 0;
  }
  .simulation-ui {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .simulation-ui.simulation-product-image {
    min-height: 0;
  }
  .simulation-image-bar b {
    display: none;
  }
  .simulation-image-caption {
    height: auto;
    min-height: 43px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .simulation-image-caption b {
    width: 100%;
    margin-left: 0;
  }
  .ai-copy,
  .ai-intro {
    text-align: center;
  }
  .ai-intro p {
    margin-left: auto;
    margin-right: auto;
  }
  .ai-market-graphic {
    height: auto;
    min-height: 620px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: start;
    padding: 58px 16px 38px;
  }
  .ai-wiring {
    display: none;
  }
  .mobile-ai-wiring {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 620px;
    z-index: 1;
    pointer-events: none;
  }
  .mobile-wire {
    fill: none;
    stroke: #7793cf;
    stroke-width: 1;
    opacity: 0.68;
  }
  .mobile-wire.output-wire {
    stroke: #3d7a72;
  }
  .mobile-wire.bridge-wire {
    stroke: #7893cc;
    stroke-dasharray: 2 2;
  }
  .mobile-particle {
    fill: #174edb;
    filter: drop-shadow(0 0 4px rgba(23, 78, 219, 0.8));
  }
  .mobile-particle.output {
    fill: #078d59;
    filter: drop-shadow(0 0 4px rgba(7, 141, 89, 0.8));
  }
  .signal-input {
    display: block;
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-width: 0;
    height: 58px;
    margin: 0 3px 54px;
    padding: 10px 5px 7px;
    text-align: center;
    border-left: 0;
    border-top: 2px solid #8ba0ca;
    background: rgba(255, 255, 255, 0.82);
    grid-column: span 2;
    z-index: 2;
  }
  .signal-input:hover {
    transform: translateY(-2px);
  }
  .signal-input i {
    display: none;
  }
  .signal-input span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 9px;
  }
  .signal-input b {
    font-size: 9px;
    white-space: nowrap;
  }
  .neural-chip {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 112px;
    height: 112px;
    flex: 0 0 112px;
    margin: 0 auto 42px;
    grid-column: 1 / -1;
    z-index: 2;
  }
  .neural-chip:hover {
    transform: scale(1.025);
  }
  .brain-mark {
    width: 45px;
    height: 45px;
  }
  .market-output {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    text-align: center;
    min-height: 74px;
    margin: 0 0 10px;
    flex: 0 0 auto;
    z-index: 2;
  }
  .market-output:hover,
  .market-output:focus {
    transform: translateY(-2px);
  }
  .market-output .impact-word {
    display: none;
  }
  .market-fed {
    top: auto;
    grid-column: 1 / span 3;
    grid-row: 3;
    width: calc(100% - 5px);
  }
  .market-btc {
    top: auto;
    grid-column: 1 / -1;
    grid-row: 4;
    width: 50%;
    justify-self: center;
    margin-top: 30px;
  }
  .market-usd {
    top: auto;
    grid-column: 4 / span 3;
    grid-row: 3;
    width: calc(100% - 5px);
    justify-self: end;
  }
  .graphic-caption {
    bottom: 14px;
    font-size: 9px;
  }
  @keyframes mobileInputFlow {
    0% {
      transform: translateY(0) scale(0.7);
      opacity: 0;
    }
    14% {
      opacity: 1;
    }
    82% {
      opacity: 1;
    }
    100% {
      transform: translateY(52px) scale(1);
      opacity: 0;
    }
  }
  @keyframes mobileInputFlowFromLeft {
    0% {
      transform: translate(0, 0) scale(0.7);
      opacity: 0;
    }
    14% {
      opacity: 1;
    }
    82% {
      opacity: 1;
    }
    100% {
      transform: translate(105px, 55px) scale(1);
      opacity: 0;
    }
  }
  @keyframes mobileInputFlowFromRight {
    0% {
      transform: translate(0, 0) scale(0.7);
      opacity: 0;
    }
    14% {
      opacity: 1;
    }
    82% {
      opacity: 1;
    }
    100% {
      transform: translate(-105px, 55px) scale(1);
      opacity: 0;
    }
  }
  @keyframes mobileOutputFlow {
    0% {
      transform: translateY(0) scale(0.7);
      opacity: 0;
    }
    16% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      transform: translateY(36px) scale(1);
      opacity: 0;
    }
  }
  .sim-prompt {
    grid-template-columns: 1fr;
  }
  .sim-prompt button {
    margin-top: 12px;
    width: 100%;
  }
  .sim-results {
    transform-origin: left top;
  }
  .path-b {
    width: 170px;
  }
  .sim-footer {
    gap: 10px;
  }
  .sim-footer span:nth-child(2) {
    display: none;
  }
  .crowd-viz {
    gap: 20px;
  }
  .gauge {
    width: 130px;
    height: 130px;
  }
  .node {
    width: 62px;
    height: 62px;
  }
  .film-copy h2 {
    font-size: 42px;
  }
  .film-play {
    width: 65px;
    height: 65px;
  }
  .billing span {
    display: block;
  }
  .price-card {
    padding: 28px 22px;
  }
  .device-placeholder {
    height: 340px;
    width: 100%;
    overflow: hidden;
  }
  .device-placeholder.device-product-video {
    height: auto;
  }
  .device-video-bar b {
    display: none;
  }
  .device-video-caption {
    height: auto;
    min-height: 43px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .device-video-caption b {
    width: 100%;
    margin-left: 0;
  }
  .desktop-pulse-copy h3 {
    font-size: 39px;
  }
  .desktop-showcase-head h2 {
    font-size: 44px;
  }
  .desktop-showcase-head p {
    font-size: 11px;
  }
  .desktop-view-tabs {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    border-left: 0;
    border-right: 0;
  }
  .desktop-view-tabs button {
    min-width: 112px;
    padding: 14px 12px;
  }
  .desktop-pulse-caption {
    height: auto;
    min-height: 43px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .desktop-pulse-caption b {
    width: 100%;
    margin-left: 0;
  }
  .device {
    width: 90%;
  }
  .device-market {
    margin: 15px 0;
  }
  .device-market b {
    font-size: 34px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .cursor-glow {
    display: none;
  }
  .cta-orbit {
    width: 340px;
    height: 340px;
  }
}
.signal-particle.direction-no,
.mobile-particle.direction-no {
  fill: #d34452;
}
.market-output.state-pulse.sentiment-positive {
  animation: marketStatePositive 0.78s ease;
}
.market-output.state-pulse.sentiment-negative {
  animation: marketStateNegative 0.78s ease;
}
@keyframes marketStatePositive {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 rgba(7, 141, 89, 0),
      0 7px 22px rgba(35, 55, 92, 0.07);
  }
  42% {
    box-shadow:
      inset 0 0 24px rgba(7, 141, 89, 0.11),
      0 7px 22px rgba(35, 55, 92, 0.07);
  }
}
@keyframes marketStateNegative {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 rgba(211, 68, 82, 0),
      0 7px 22px rgba(35, 55, 92, 0.07);
  }
  42% {
    box-shadow:
      inset 0 0 24px rgba(211, 68, 82, 0.1),
      0 7px 22px rgba(35, 55, 92, 0.07);
  }
}

/* Light marketing theme — product imagery remains in its native application theme. */
:root {
  --ink: #f7f8fb;
  --ink2: #eef1f6;
  --panel: #fff;
  --line: rgba(18, 31, 53, 0.11);
  --muted: #687386;
  --blue: #0540f2;
  --blue2: #315fdb;
  --gold: #9a8541;
  --green: #078d59;
  --white: #111827;
}
body {
  background: #f7f8fb;
  color: #111827;
}
body:before {
  opacity: 0.018;
  filter: invert(1);
}
.cursor-glow {
  background: radial-gradient(circle, rgba(5, 64, 242, 0.08), transparent 66%);
}
.site-header {
  background: linear-gradient(
    180deg,
    rgba(248, 249, 252, 0.93),
    rgba(248, 249, 252, 0.25)
  );
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(18, 31, 53, 0.1);
  box-shadow: 0 8px 35px rgba(28, 45, 75, 0.06);
}
.brand img {
  filter: none;
}
.site-header nav {
  color: #596579;
}
.site-header nav a:hover,
.text-link:hover {
  color: #0540f2;
}
.button {
  border-color: rgba(18, 31, 53, 0.18);
}
.button:hover {
  border-color: rgba(5, 64, 242, 0.45);
}
.button-small {
  background: #111827;
  color: #fff;
}
.hero {
  background: linear-gradient(180deg, #f8faff 0, #f7f8fb 74%);
}
.hero-grid,
.film-grid {
  background-image:
    linear-gradient(rgba(38, 73, 141, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 73, 141, 0.07) 1px, transparent 1px);
}
.orb-one {
  background: radial-gradient(circle, rgba(45, 98, 244, 0.13), transparent 68%);
}
.orb-two {
  background: radial-gradient(
    circle,
    rgba(107, 75, 224, 0.07),
    transparent 65%
  );
}
.eyebrow {
  border-color: rgba(60, 91, 164, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #50617e;
  box-shadow: 0 8px 30px rgba(41, 68, 118, 0.05);
}
.eyebrow b {
  color: #8993a5;
}
.hero h1 span {
  color: #78849a;
}
.hero-copy {
  color: #626e80;
}
.button-primary {
  color: #fff;
}
.button-ghost {
  background: rgba(255, 255, 255, 0.65);
  color: #273246;
}
.trust-row {
  color: #7b8799;
}
.terminal-glow {
  background: #4d7dff;
  opacity: 0.13;
}
.hero-product-shot {
  border-color: rgba(67, 91, 145, 0.2);
  background: #fff;
  box-shadow:
    0 24px 55px rgba(33, 52, 91, 0.14),
    0 70px 140px rgba(33, 52, 91, 0.1);
}
.terminal-caption {
  color: #707d91;
}
.signal-proof {
  background: #f7f8fb;
}
.proof-heading h2 em {
  color: #8792a4;
}
.proof-heading p {
  color: #697588;
}
.stat-line {
  border-color: rgba(18, 31, 53, 0.12);
}
.stat-line div {
  border-color: rgba(18, 31, 53, 0.1);
}
.stat-line span {
  color: #778397;
}
.features {
  color: #121927;
}
.feature-card {
  background: linear-gradient(145deg, #fff, #f5f7fb);
  border-color: rgba(24, 43, 76, 0.11);
  box-shadow: 0 18px 60px rgba(29, 47, 78, 0.055);
}
.feature-card p {
  color: #667286;
}
.number {
  color: #a1aaba;
}
.icon.blue {
  background: rgba(5, 64, 242, 0.07);
  color: #174edb;
}
.icon.purple {
  background: rgba(119, 80, 214, 0.07);
  color: #7651d1;
}
.icon.gold {
  background: rgba(154, 133, 65, 0.08);
  color: #927d38;
}
.icon.green {
  background: rgba(7, 141, 89, 0.07);
  color: #078d59;
}
.feature-card a,
.text-cta {
  color: #244b9d;
  border-color: #bbc7dc;
}
.product-image-frame,
.crowd-product-image,
.ripple-product-image,
.edge-product-image {
  background: #e9edf4;
  border-color: rgba(39, 61, 103, 0.18);
  box-shadow: 0 22px 45px rgba(31, 47, 75, 0.13);
}
.product-image-caption,
.edge-image-caption {
  background: #fff;
}
.product-image-caption b,
.edge-image-caption b {
  color: #344055;
}
.crowd-image-label,
.ripple-image-label {
  background: #fff;
  color: #647087;
}
.custom-ai {
  border-color: rgba(18, 31, 53, 0.11);
}
.ai-halo {
  background: radial-gradient(circle, rgba(42, 91, 215, 0.09), transparent 67%);
}
.ai-intro h2 span {
  color: #7183a9;
}
.ai-intro p {
  color: #657286;
}
.ai-capabilities {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(24, 43, 76, 0.12);
  box-shadow: 0 18px 50px rgba(29, 47, 78, 0.05);
}
.ai-capabilities > div {
  border-color: rgba(24, 43, 76, 0.1);
}
.ai-capabilities p {
  color: #687487;
}
.simulate-copy h3 em {
  color: #657bad;
}
.simulate-copy > p {
  color: #687487;
}
.simulate-copy ul {
  color: #667286;
}
.simulation-ui {
  border-color: rgba(59, 89, 154, 0.2);
  box-shadow: 0 35px 80px rgba(31, 49, 82, 0.14);
}
.film-placeholder {
  border-color: rgba(18, 31, 53, 0.12);
  box-shadow: 0 30px 80px rgba(30, 48, 81, 0.12);
}
.pricing {
  color: #121927;
}
.billing {
  background: #e9edf4;
  border-color: rgba(18, 31, 53, 0.1);
}
.billing button {
  color: #667286;
}
.billing button.active {
  background: #fff;
  color: #172033;
  box-shadow: 0 2px 9px rgba(25, 42, 70, 0.1);
}
.price-card {
  background: #fff;
  border-color: rgba(24, 43, 76, 0.12);
  box-shadow: 0 20px 55px rgba(29, 47, 78, 0.06);
}
.price-card.go {
  background: linear-gradient(155deg, #f5f8ff, #fff);
  border-color: #b9c9ed;
}
.price-card.pro {
  background: linear-gradient(155deg, #fffdf5, #fff);
  border-color: #c9bc85;
}
.price-card > p {
  color: #697588;
}
.plan-button {
  background: #f0f3f8;
  color: #1a2538;
}
.plan-button.primary {
  color: #fff;
}
.pro-button {
  background: #c9b96f;
  color: #17150d;
}
.includes {
  color: #778397;
}
.price-card li {
  color: #4f5b6e;
}
.plan-foot {
  color: #7b8799;
}
.pricing-note {
  color: #778397;
}
.desk {
  color: #121927;
}
.desk-copy p {
  color: #657286;
}
.desk-copy ul {
  color: #667286;
}
.device-placeholder {
  background: radial-gradient(
    circle,
    rgba(185, 161, 79, 0.13),
    transparent 50%
  );
  border-color: rgba(154, 133, 65, 0.12);
}
.final-cta {
  background: linear-gradient(180deg, #eef3ff, #dfe9ff);
  color: #111827;
}
.final-cta:before,
.cta-orbit {
  border-color: rgba(48, 91, 190, 0.12);
}
.final-cta p {
  color: #66748a;
}
.final-cta > small {
  color: #687a99;
}
footer {
  background: #eef1f6;
  color: #111827;
}
footer > p {
  color: #697588;
}
.footer-links a {
  color: #596579;
}
.footer-bottom {
  color: #687487;
}
.video-modal {
  background: rgba(242, 245, 250, 0.94);
}
.modal-close {
  color: #172033;
  border-color: rgba(18, 31, 53, 0.18);
}
.modal-video {
  border-color: #b2c0df;
  box-shadow: 0 35px 90px rgba(27, 45, 79, 0.2);
}
@media (max-width: 900px) {
  .site-header.menu-open {
    background: #fff;
  }
  .site-header.menu-open nav {
    background: #fff;
    border-top: 1px solid var(--line);
  }
}
.ip-sale-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s;
}
.ip-sale-modal.open {
  opacity: 1;
  visibility: visible;
}
.ip-sale-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 27, 43, 0.48);
  backdrop-filter: blur(14px);
}
.ip-sale-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(880px, calc(100vh - 48px));
  overflow: auto;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(45, 67, 109, 0.17);
  box-shadow: 0 45px 120px rgba(18, 31, 56, 0.28);
  padding: 34px 38px 28px;
  transform: translateY(18px) scale(0.985);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
  outline: none;
}
.ip-sale-modal.open .ip-sale-dialog {
  transform: none;
}
.ip-sale-dialog:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(50, 78, 132, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 78, 132, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 55%);
  pointer-events: none;
}
.ip-sale-close {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 17px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(39, 58, 95, 0.14);
  border-radius: 50%;
  background: #fff;
  color: #526078;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s;
}
.ip-sale-close:hover {
  color: #111827;
  border-color: #7186b0;
  transform: rotate(5deg);
}
.ip-sale-brandline {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 48px 16px 0;
  border-bottom: 1px solid var(--line);
  color: #68768d;
  font: 9px "DM Mono";
  letter-spacing: 0.12em;
}
.ip-sale-brandline span i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #174edb;
  box-shadow: 0 0 8px rgba(23, 78, 219, 0.6);
  margin-right: 6px;
}
.ip-sale-brandline b {
  color: #8c783b;
  font-weight: 500;
}
.ip-sale-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 26px 0 20px;
}
.ip-sale-mark {
  width: 142px;
  height: 64px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  position: relative;
  padding: 0;
}
.ip-sale-mark img {
  display: block;
  width: 100%;
  height: auto;
}
.ip-sale-heading small {
  color: #5671aa;
  font: 9px "DM Mono";
  letter-spacing: 0.14em;
}
.ip-sale-heading h2 {
  font-size: clamp(35px, 4vw, 52px);
  letter-spacing: -0.055em;
  margin: 6px 0 0;
}
.ip-sale-intro {
  font-size: 12px;
  line-height: 1.75;
  color: #5f6c80;
  max-width: 650px;
  margin: 0 0 22px;
}
.ip-sale-assets {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}
.ip-sale-assets li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  min-height: 78px;
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ip-sale-assets li:nth-child(2n) {
  border-right: 0;
}
.ip-sale-assets li:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.ip-sale-assets li:nth-child(6) {
  border-bottom: 1px solid var(--line);
}
.ip-sale-assets li:last-child {
  grid-column: 1/-1;
  border-right: 0;
  border-bottom: 0;
  min-height: 72px;
}
.ip-sale-assets li > span {
  font: 9px "DM Mono";
  color: #315fbd;
  padding-top: 2px;
}
.ip-sale-assets b,
.ip-sale-assets small {
  display: block;
}
.ip-sale-assets b {
  font-size: 10px;
}
.ip-sale-assets small {
  font-size: 9px;
  line-height: 1.55;
  color: #758196;
  margin-top: 5px;
}
.ip-sale-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 22px 0;
  padding: 18px 20px;
  background: #111827;
  color: #fff;
}
.ip-sale-contact small {
  display: block;
  color: #7486a6;
  font: 9px "DM Mono";
  letter-spacing: 0.12em;
}
.ip-sale-contact b {
  display: block;
  font-size: 12px;
  margin-top: 6px;
}
.ip-sale-contact a {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #174edb;
  padding: 13px 16px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  transition: 0.2s;
}
.ip-sale-contact a:hover {
  background: #2b62e7;
  transform: translateY(-1px);
}
.ip-sale-footnote {
  text-align: center;
  color: #8a95a6;
  font: 9px "DM Mono";
  letter-spacing: 0.08em;
  margin: 18px 0 0;
}
@media (max-width: 600px) {
  .ip-sale-modal {
    padding: 10px;
    place-items: center;
  }
  .ip-sale-dialog {
    width: min(100%, 430px);
    max-height: calc(100vh - 20px);
    padding: 22px 16px 20px;
    border-radius: 16px;
    border-bottom: 1px solid rgba(45, 67, 109, 0.17);
    transform: scale(0.96);
  }
  .ip-sale-dialog:after {
    display: none;
  }
  .ip-sale-close {
    top: 10px;
    right: 14px;
  }
  .ip-sale-brandline {
    min-height: 34px;
    align-items: center;
    padding-right: 44px;
    padding-bottom: 12px;
  }
  .ip-sale-brandline b {
    display: none;
  }
  .ip-sale-heading {
    gap: 0;
    margin: 20px 0 12px;
  }
  .ip-sale-mark {
    width: 122px;
    height: 52px;
  }
  .ip-sale-heading h2 {
    font-size: 38px;
  }
  .ip-sale-intro {
    font-size: 11px;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .ip-sale-contact {
    margin: 16px 0 18px;
    padding: 15px;
  }
  .ip-sale-contact b {
    font-size: 11px;
  }
  .ip-sale-contact a {
    font-size: 9px;
    padding: 12px 13px;
  }
  .ip-sale-assets li {
    min-height: 0;
    padding: 9px 10px;
  }
  .ip-sale-assets b {
    font-size: 9px;
  }
  .ip-sale-assets small {
    font-size: 9px;
    line-height: 1.4;
    margin-top: 4px;
  }
  .ip-sale-footnote {
    padding: 0 14px;
  }
  .ip-sale-assets {
    grid-template-columns: 1fr 1fr;
  }
  .ip-sale-assets li {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--line);
  }
  .ip-sale-assets li:nth-child(2n) {
    border-right: 0;
  }
  .ip-sale-assets li:last-child {
    grid-column: auto;
    border-right: 1px solid var(--line);
  }
  .ip-sale-assets li > span {
    display: none;
  }
  .ip-sale-contact {
    align-items: stretch;
    flex-direction: column;
  }
  .ip-sale-contact a {
    justify-content: space-between;
  }
  .ip-sale-footnote {
    line-height: 1.6;
  }
}
.ip-sale-ticker {
  position: absolute;
  z-index: 45;
  left: 0;
  right: 0;
  top: 84px;
  width: 100%;
  height: 34px;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(35, 57, 101, 0.1);
  border-bottom: 1px solid rgba(35, 57, 101, 0.13);
  background: #eef3ff;
  color: #1b3267;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
}
.ip-sale-ticker[hidden] {
  display: none;
}
.ip-sale-ticker[hidden] + main .hero {
  padding-top: 176px;
}
.ip-ticker-label,
.ip-ticker-action {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background: #e4ebfb;
  padding: 0 20px;
  font: 9px "DM Mono";
  letter-spacing: 0.13em;
  white-space: nowrap;
}
.ip-ticker-label {
  border-right: 1px solid rgba(38, 65, 122, 0.13);
}
.ip-ticker-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #174edb;
  box-shadow: 0 0 7px rgba(23, 78, 219, 0.55);
  margin-right: 7px;
}
.ip-ticker-action {
  border-left: 1px solid rgba(38, 65, 122, 0.13);
  gap: 14px;
  color: #123d9b;
  font-weight: 600;
}
.ip-ticker-window {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
}
.ip-ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  animation: ipTicker 30s linear infinite;
  font: 9px "DM Mono";
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.ip-ticker-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-width: 0;
  flex: 0 0 auto;
  padding-right: 16px;
}
.ip-ticker-set {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
.ip-ticker-track i {
  font-style: normal;
  color: #7794d5;
  font-size: 9px;
}
.ip-sale-ticker:hover .ip-ticker-track {
  animation-play-state: paused;
}
.ip-sale-ticker:hover {
  background: #e8efff;
}
@keyframes ipTicker {
  to {
    transform: translateX(-50%);
  }
}
.hero {
  padding-top: 210px;
}
@media (max-width: 600px) {
  .ip-sale-ticker {
    grid-template-columns: 1fr;
    top: 84px;
  }
  .ip-ticker-label,
  .ip-ticker-action {
    display: none;
  }
  .ip-ticker-track {
    animation-duration: 24s;
  }
  .hero {
    padding-top: 190px;
  }
  .ip-sale-ticker[hidden] + main .hero {
    padding-top: 145px;
  }
}
.beta-dialog {
  width: min(660px, 100%);
  padding: 34px 38px 28px;
}
.beta-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 8px 11px;
  border: 1px solid rgba(23, 78, 219, 0.14);
  background: #f3f6fd;
  color: #31589f;
  font: 9px "DM Mono";
  letter-spacing: 0.12em;
}
.beta-status > span {
  display: flex;
  gap: 3px;
}
.beta-status i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #174edb;
  animation: betaSignal 1.4s ease-in-out infinite;
}
.beta-status i:nth-child(2) {
  animation-delay: 0.2s;
}
.beta-status i:nth-child(3) {
  animation-delay: 0.4s;
}
.beta-heading {
  margin-top: 18px;
}
.beta-heading h2 em {
  font-style: normal;
  color: #6d82ad;
}
.beta-intro {
  font-size: 13px;
  max-width: 560px;
}
.beta-access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}
.beta-access-grid > div {
  padding: 18px;
  border-right: 1px solid var(--line);
}
.beta-access-grid > div:last-child {
  border-right: 0;
}
.beta-access-grid span {
  font: 9px "DM Mono";
  color: #315fbd;
}
.beta-access-grid b,
.beta-access-grid small {
  display: block;
}
.beta-access-grid b {
  font-size: 11px;
  margin: 18px 0 7px;
}
.beta-access-grid small {
  font-size: 10px;
  line-height: 1.55;
  text-transform: none;
  color: #748095;
}
.beta-contact {
  margin-bottom: 0;
}
@keyframes betaSignal {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 600px) {
  .beta-dialog {
    width: min(100%, 430px);
    padding: 22px 16px 20px;
  }
  .beta-status {
    margin-top: 16px;
  }
  .beta-heading {
    margin: 16px 0 10px;
  }
  .beta-heading h2 {
    font-size: 40px;
  }
  .beta-intro {
    font-size: 11px;
  }
  .beta-access-grid {
    grid-template-columns: 1fr;
  }
  .beta-access-grid > div {
    display: grid;
    grid-template-columns: 24px 1fr;
    column-gap: 8px;
    padding: 11px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .beta-access-grid > div:last-child {
    border-bottom: 0;
  }
  .beta-access-grid span {
    grid-row: 1/3;
  }
  .beta-access-grid b {
    margin: 0 0 4px;
  }
  .beta-contact {
    margin-bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .beta-status i {
    animation: none;
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ip-ticker-track {
    animation-play-state: paused;
  }
}
