@font-face {
  font-family: Geist;
  src: url("../clickstream-assets/fonts/geist-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --ink: #0a0d14;
  --body: #8d8d8d;
  --soft-ink: #8e8e8f;
  --line: #ebebeb;
  --panel: #fafafb;
  --risk: #fd524f;
  --success: #3d9b68;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-width: 1212px;
  background: #fff;
  color: var(--ink);
  font-family: Geist, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.page-rail {
  width: 1212px;
  margin: 0 auto;
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
}
.problem-section,
.speed-section {
  position: relative;
  width: 1210px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.problem-section {
  height: 900px;
  padding: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  background: #fff;
}
.section-heading {
  width: 1010px;
  flex: none;
  text-align: center;
}
.problem-heading {
  height: 83px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.segmented-control {
  height: 36px;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  border-radius: 11px;
  background: #f9f9f9;
}
.segment {
  height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #18181a;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.28px;
}
.segment-active {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.07), 0 1px 1px -0.5px rgba(29, 29, 29, 0.03),
    0 2px 2px -1px rgba(29, 29, 29, 0.04), 0 3px 3px -1.5px rgba(29, 29, 29, 0.04),
    0 5px 5px -2.5px rgba(29, 29, 29, 0.03), 0 10px 10px -5px rgba(29, 29, 29, 0.03),
    0 24px 30px -8px rgba(29, 29, 29, 0.06);
}
.heading-copy {
  width: 100%;
}
.heading-copy h2,
.heading-copy p {
  margin: 0;
}
.heading-copy h2 {
  color: var(--ink);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.72px;
}
.heading-copy h2 span {
  color: var(--soft-ink);
}
.speed-heading .speed-line { color: var(--ink); white-space: nowrap; }
.speed-heading .speed-line em { color: var(--soft-ink); font-style: normal; }
.heading-copy p {
  margin-top: 16px;
  color: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.problem-visual {
  position: relative;
  width: 1010px;
  height: 500px;
  flex: none;
  overflow: hidden;
  border: 0.5px solid #d9d9d9;
  background: var(--panel);
}
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px dashed #dedfe3;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-large { width: 778px; height: 778px; border-radius:50%; opacity: 0.72; }
.orbit-medium { width: 550px; height: 550px; border-radius:50%; opacity: 0.82; }
.orbit-small { width: 288px; height: 288px; border-radius:50%; opacity: 0.9; }
.radar-sweep {
  position: absolute;
  z-index: 1;
  left: 116px;
  top: -139px;
  width: 778px;
  height: 778px;
  pointer-events: none;
}
.radar-sweep__rotor {
  position: absolute;
  inset: 0;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transform-box: border-box;
  -webkit-animation: radar-rotate 6s linear infinite;
  animation: radar-rotate 6s linear infinite;
  will-change: transform;
}
.risk-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg 315deg, rgba(253,82,79,.015) 315deg, rgba(253,82,79,.12) 360deg);
  -webkit-mask-image: radial-gradient(circle, #000 0 98.5%, transparent 100%);
  mask-image: radial-gradient(circle, #000 0 98.5%, transparent 100%);
  pointer-events: none;
}
.alert-line {
  position: absolute;
  z-index: 2;
  left: 388.5px;
  top: 144px;
  width: 1px;
  height: 245px;
  background: var(--risk);
  box-shadow: 0 0 5px rgba(253,82,79,.18);
  pointer-events: none;
}
.signal-card {
  position: absolute;
  z-index: 3;
  opacity: .24;
  filter: grayscale(1);
  width: 220px;
  height: 92px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.07), 0 1px 1px -0.5px rgba(29, 29, 29, 0.03),
    0 2px 2px -1px rgba(29, 29, 29, 0.04), 0 3px 3px -1.5px rgba(29, 29, 29, 0.04);
}

.signal-card::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(253,82,79,.36);
  border-radius: 9px;
  box-shadow: 0 0 0 3px rgba(253,82,79,.04),0 12px 28px rgba(29,29,29,.08);
  content: "";
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
}

.signal-now { left: 145px; top: 76px; }
.signal-support { left: 645px; top: 76px; }
.signal-analytics { left: 145px; top: 332px; }
.signal-research { left: 645px; top: 332px; }

.signal-support,.signal-research,.signal-analytics,.signal-now {
  animation: scanned-card 6s ease-in-out infinite;
  animation-fill-mode: both;
}
.signal-support { animation-delay: 1.05s; }
.signal-research { animation-delay: 1.95s; }
.signal-analytics { animation-delay: 4.05s; }
.signal-now { animation-delay: 4.95s; }
.signal-card::after { animation: scanned-ring 6s ease-in-out infinite; animation-fill-mode:both; }
.signal-support::after { animation-delay: 1.05s; }
.signal-research::after { animation-delay: 1.95s; }
.signal-analytics::after { animation-delay: 4.05s; }
.signal-now::after { animation-delay: 4.95s; }

@keyframes radar-rotate {
  from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes scanned-card {
  0%,19%,100% { opacity:.24; filter:grayscale(1); box-shadow:none; }
  3%,13% { opacity:1; filter:brightness(1.02); box-shadow:0 0 0 1px rgba(253,82,79,.14),0 10px 26px rgba(29,29,29,.1); }
}
@keyframes scanned-ring {
  0%,19%,100% { opacity:0; transform:scale(.96); }
  3%,12% { opacity:1; transform:scale(1); }
}

.muted-card {
  border: 1px dashed #e2e2e2;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
  backdrop-filter: blur(2px);
}

.muted-card .card-copy { opacity: 0.5; }
.faint-card .card-copy { opacity: 0.2; }

.muted-card { animation-name: scanned-card; }
.muted-card .card-copy,.faint-card .card-copy { opacity:1; }

.card-copy {
  display: flex;
  flex-direction: column;
  gap: 5.25px;
  color: var(--ink);
}

.card-label {
  color: var(--body);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.card-copy strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  white-space: nowrap;
}

.tag {
  padding: 0 6px;
  border-radius: 10px;
  background: rgba(89, 89, 89, 0.1);
  color: #595959;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
}

.tag-risk {
  color: var(--risk);
  background: rgba(253, 82, 79, 0.1);
}

.alert-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  transform: translate(-50%, -18px);
  text-align: center;
}

.alert-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.07), 0 1px 1px -0.5px rgba(29, 29, 29, 0.03),
    0 2px 2px -1px rgba(29, 29, 29, 0.04), 0 3px 3px -1.5px rgba(29, 29, 29, 0.04),
    0 5px 5px -2.5px rgba(29, 29, 29, 0.03), 0 10px 10px -5px rgba(29, 29, 29, 0.03);
}

.alert-icon i {
  width: 16px;
  height: 14px;
  padding-top: 4px;
  display: block;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: var(--risk);
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: 8px;
}

.alert-core p {
  margin: 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.speed-section {
  height: 468px;
  padding: 100px 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  background: var(--panel);
}

.speed-heading {
  height: 126px;
}

.speed-card {
  position: relative;
  z-index: 1;
  width: 603px;
  height: 186px;
  flex: none;
  padding: 36px 36px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.07), 0 1px 1px -0.5px rgba(29, 29, 29, 0.03),
    0 2px 2px -1px rgba(29, 29, 29, 0.04), 0 3px 3px -1.5px rgba(29, 29, 29, 0.04),
    0 5px 5px -2.5px rgba(29, 29, 29, 0.03), 0 10px 10px -5px rgba(29, 29, 29, 0.03),
    0 24px 30px -8px rgba(29, 29, 29, 0.06);
}

.speed-row {
  width: 531px;
  height: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  animation: speed-row-reveal 6s ease-in-out infinite;
}

.speed-label,
.speed-value {
  width: 100px;
  flex: none;
}

.speed-value { text-align: right; }
.subdued { opacity: 0.4; }

.speed-track {
  width: 311px;
  height: 10px;
  display: flex;
  gap: 4px;
  overflow: hidden;
}

.speed-track i,
.speed-track b {
  display: block;
  height: 10px;
  border-radius: 4px;
}

.speed-track i {
  transform: scaleX(0);
  transform-origin: left center;
  animation: duration-expand 6s cubic-bezier(.22,1,.36,1) infinite;
}

.speed-track b {
  opacity: 0;
  animation: remaining-track 6s ease-in-out infinite;
}

.speed-track b { flex: 1; background: #eff0f4; }
.tenera-track i { width: 7px; background: var(--success); }
.ab-track i { width: 232px; background: #d3d3d7; }
.research-track i { width: 300px; background: #d3d3d7; }

@keyframes duration-expand {
  0%,8% { transform:scaleX(0); }
  30%,88% { transform:scaleX(1); }
  100% { transform:scaleX(0); }
}

@keyframes remaining-track {
  0%,8% { opacity:0; }
  24%,88% { opacity:1; }
  100% { opacity:0; }
}

@keyframes speed-row-reveal {
  0%,5% { transform:translateY(5px); opacity:0; }
  22%,88% { transform:translateY(0); opacity:1; }
  100% { transform:translateY(0); opacity:0; }
}

.speed-row.subdued { animation-name:speed-row-reveal-muted; }
@keyframes speed-row-reveal-muted {
  0%,5% { transform:translateY(5px); opacity:0; }
  22%,88% { transform:translateY(0); opacity:.4; }
  100% { transform:translateY(0); opacity:0; }
}

/* Sequence: establish the conventional timelines quickly, then give the
   Tenera compression reveal more time so the comparison is easy to read. */
.ab-track i,.research-track i { animation:legacy-duration-expand 8s cubic-bezier(.22,1,.36,1) infinite; }
.ab-track b,.research-track b { animation:legacy-remaining-track 8s ease-in-out infinite; }
.speed-row.subdued { animation:legacy-row-reveal 8s ease-in-out infinite; }
.tenera-track i { animation:tenera-duration-expand 8s cubic-bezier(.22,1,.36,1) infinite; }
.tenera-track b { animation:tenera-remaining-track 8s ease-in-out infinite; }
.speed-row:not(.subdued) { animation:tenera-row-reveal 8s ease-in-out infinite; }

@keyframes legacy-duration-expand {
  0%,3% { transform:scaleX(0); }
  17%,90% { transform:scaleX(1); }
  100% { transform:scaleX(0); }
}
@keyframes legacy-remaining-track {
  0%,4% { opacity:0; }
  14%,90% { opacity:1; }
  100% { opacity:0; }
}
@keyframes legacy-row-reveal {
  0% { transform:translateY(5px); opacity:0; }
  8%,42% { transform:translateY(0); opacity:.62; }
  50%,90% { transform:translateY(0); opacity:.32; }
  100% { opacity:0; }
}
@keyframes tenera-row-reveal {
  0%,22% { transform:translateY(5px); opacity:0; }
  30%,90% { transform:translateY(0); opacity:1; }
  100% { opacity:0; }
}
@keyframes tenera-duration-expand {
  0%,24% { transform:scaleX(0); }
  54%,90% { transform:scaleX(1); }
  100% { transform:scaleX(0); }
}
@keyframes tenera-remaining-track {
  0%,24% { opacity:0; }
  48%,90% { opacity:1; }
  100% { opacity:0; }
}

.speed-fade {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -1px;
  width: 1210px;
  height: 79px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(250, 250, 251, 0), #fafafb 92%);
}
