/* Landing page */

body[data-page="intro"] {
  --motion-fast: 160ms;
  --motion-ui: 220ms;
  --motion-section: 700ms;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.86, 0, 0.07, 1);
}

.site-header--landing {
  --hero-copy-opacity: 1;
  --hero-copy-scale: 1;
  --hero-copy-shift: 0px;
  --hero-lightfall-shift: 0px;
  --hero-cue-opacity: 1;
  --hero-cue-shift: 0px;
  min-height: 100svh;
  padding-bottom: 112px;
}

.site-header--landing::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(120px, 16vh, 180px);
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(var(--bg-rgb), 0.82) 72%, var(--bg));
}

.site-header--landing .lightfall::after {
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(3, 4, 12, 0.3) 0%, rgba(3, 4, 12, 0.36) 58%, rgba(var(--bg-rgb), 0.82) 84%, var(--bg) 100%),
    radial-gradient(circle at 50% 42%, transparent 0 38%, rgba(3, 4, 12, 0.3) 100%);
}

.site-header--landing .lightfall {
  transform: translate3d(0, var(--hero-lightfall-shift), 0);
  will-change: transform;
}

.site-header--landing .site-header__inner {
  z-index: 2;
}

.landing-nav {
  align-items: center;
  gap: 6px;
}

.landing-nav .nav-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 0;
  border-radius: 9px;
  color: rgba(var(--text-rgb), 0.78);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    color var(--motion-fast) ease,
    background-color var(--motion-fast) ease,
    transform var(--motion-fast) ease;
}

.landing-nav .nav-button:hover,
.landing-nav .nav-button:focus-visible {
  color: var(--text);
  background: rgba(var(--text-rgb), 0.08);
}

.landing-nav .nav-button:active {
  transform: scale(0.98);
}

body[data-page="intro"] .hero-copy {
  width: min(100%, 900px);
  gap: 0;
  margin-top: 0;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-shift), 0) scale(var(--hero-copy-scale));
  transform-origin: center 38%;
  will-change: opacity, transform;
}

.hero-kicker {
  display: inline-flex;
  width: max-content;
  align-items: center;
  align-self: center;
  margin: 0 0 32px;
  padding: 10px 21px;
  border: 1px solid rgba(var(--text-rgb), 0.3);
  border-radius: var(--radius-pill);
  color: rgba(var(--text-rgb), 0.94);
  background: rgba(var(--surface-rgb), 0.58);
  box-shadow: inset 0 1px 0 rgba(var(--text-rgb), 0.06);
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
}

body[data-page="intro"] .hero-title {
  width: 100%;
  max-width: 900px;
  font-size: clamp(4rem, 8.1vw, 8.4rem);
}

.hero-title__shine {
  --hero-title-base: var(--text);
  --hero-title-edge: var(--lightfall-blue);
  --hero-title-peak: var(--text);
  --hero-title-tail: var(--series-gemini);
  display: inline-block;
  color: var(--hero-title-base);
  background-image: linear-gradient(
    115deg,
    var(--hero-title-base) 0%,
    var(--hero-title-base) 42%,
    var(--hero-title-edge) 47%,
    var(--hero-title-peak) 50%,
    var(--hero-title-tail) 53%,
    var(--hero-title-base) 58%,
    var(--hero-title-base) 100%
  );
  background-position: 150% center;
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-title-shine 3600ms linear 600ms infinite;
}

.title-line + .title-line .hero-title__shine {
  --hero-title-base: rgba(var(--text-rgb), 0.76);
  --hero-title-edge: rgba(var(--text-rgb), 0.9);
  --hero-title-peak: var(--text);
  --hero-title-tail: rgba(var(--text-rgb), 0.86);
}

@keyframes hero-title-shine {
  to { background-position: -50% center; }
}

body[data-page="intro"] .hero-intro {
  width: min(100%, 720px);
  max-width: none;
  gap: 32px;
  margin-top: 42px;
}

.hero-summary {
  max-width: 680px;
  margin: 0;
  color: rgba(var(--text-rgb), 0.92);
  font-size: clamp(1rem, 1.32vw, 1.22rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.025em;
  text-wrap: balance;
}

.nav-tool-link,
.nav-home-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border: 1px solid rgba(var(--text-rgb), 0.34);
  border-radius: var(--radius-pill);
  color: var(--text);
  background: rgba(var(--surface-rgb), 0.64);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.nav-tool-link:hover,
.nav-home-link:hover {
  color: var(--text-inverse);
  border-color: var(--text);
  background: var(--text);
}

.hero-scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: rgba(var(--text-rgb), 0.7);
  text-decoration: none;
  opacity: var(--hero-cue-opacity);
  transform: translate3d(-50%, var(--hero-cue-shift), 0);
  transition:
    color var(--motion-fast) ease,
    opacity var(--motion-fast) ease;
  will-change: opacity, transform;
}

.hero-kicker__separator {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 0.46em;
  color: transparent;
  background: rgba(var(--accent-rgb), 0.7);
  transform: rotate(45deg) translateY(-1px);
}

.hero-scroll-cue:hover {
  color: var(--text);
}

.hero-scroll-cue svg {
  width: 32px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.5;
  animation: cue-bounce 1600ms var(--ease-out) infinite;
}

@keyframes cue-bounce {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(7px); }
}

@media (max-width: 699px) {
  body[data-page="intro"] .hero-copy {
    width: min(100%, 520px);
  }

  .hero-kicker {
    margin-bottom: 20px;
    padding: 9px 15px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  body[data-page="intro"] .hero-title {
    font-size: clamp(2.75rem, 13.2vw, 4.15rem);
  }

  body[data-page="intro"] .hero-intro {
    width: min(100%, 330px);
    gap: 24px;
    margin-top: 28px;
  }

  .hero-summary {
    font-size: 0.94rem;
    line-height: 1.65;
  }
}

.landing-main {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(180deg, var(--bg) 0, transparent 260px),
    radial-gradient(circle at 12% 26%, rgba(var(--accent-rgb), 0.045), transparent 32%),
    radial-gradient(circle at 88% 68%, rgba(var(--series-gemini-rgb), 0.04), transparent 28%);
}

.feature-bridge {
  display: grid;
  min-height: 480px;
  place-items: center;
  align-content: center;
  padding-top: clamp(90px, 9vw, 150px);
  padding-bottom: clamp(90px, 9vw, 150px);
  text-align: center;
}

.feature-bridge .eyebrow {
  margin-bottom: 22px;
}

.feature-bridge h2 {
  max-width: none;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.feature-bridge h2 > span {
  display: block;
  white-space: nowrap;
}

.blur-text__char {
  display: inline-block;
  will-change: transform, filter, opacity;
}

.blur-text__line {
  display: block;
  overflow: hidden;
}

.blur-text--line-mode .blur-text__line {
  display: block;
  will-change: transform, filter, opacity;
}

.blur-text--prepared .blur-text__char {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-50px);
}

.blur-text--line-mode.blur-text--prepared .blur-text__line {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px) scale(0.98);
}

.blur-text--split.blur-text--prepared .blur-text__char {
  opacity: 0;
  filter: none;
  transform: translateY(40px);
}

.blur-text--complete .blur-text__char,
.blur-text--split.blur-text--complete .blur-text__char {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  will-change: auto;
}

.blur-text--line-mode.blur-text--complete .blur-text__line {
  opacity: 1;
  filter: blur(0);
  transform: none;
  will-change: auto;
}

.feature-bridge > p:not(.eyebrow) {
  max-width: 760px;
  margin: 32px auto 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.9;
  text-align: center;
}

.model-loop-section {
  position: relative;
  display: grid;
  min-height: 280px;
  align-content: center;
  gap: 34px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.model-loop-section__meta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.model-loop-section__meta > strong {
  color: var(--text);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.05em;
}

.model-loop-section__meta > div {
  display: grid;
  gap: 7px;
}

.model-loop-section__meta .eyebrow {
  margin: 0;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.model-loop-section__meta span {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.model-loop {
  position: relative;
  width: 100%;
  overflow: hidden;
  --model-loop-gap: clamp(58px, 5.2vw, 96px);
}

.model-loop::before,
.model-loop::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(36px, 9vw, 150px);
  pointer-events: none;
  content: "";
}

.model-loop::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), rgba(var(--bg-rgb), 0));
}

.model-loop::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), rgba(var(--bg-rgb), 0));
}

.model-loop__track {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.model-loop__list {
  display: flex;
  align-items: center;
  gap: var(--model-loop-gap);
  margin: 0;
  padding: 5px var(--model-loop-gap) 5px 0;
  list-style: none;
}

.model-loop__item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.model-loop__item img,
.model-loop__mark {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
  transition:
    transform var(--motion-ui) var(--ease-out),
    filter var(--motion-ui) var(--ease-out);
}

.model-loop__mark--mask {
  background: var(--logo-color, var(--accent));
  -webkit-mask: var(--logo-image) center / contain no-repeat;
  mask: var(--logo-image) center / contain no-repeat;
}

.model-loop__mark--openai {
  --logo-image: url("../SVG/openai.svg");
}

.model-loop__mark--grok {
  --logo-image: url("../SVG/grok.svg");
}

.model-loop__mark--kimi {
  --logo-image: url("../SVG/kimi.svg");
}

.model-loop__mark--zai {
  --logo-image: url("../SVG/zai.svg");
}

.model-loop__item:hover img,
.model-loop__item:hover .model-loop__mark {
  filter: saturate(1.12) brightness(1.08);
  transform: scale(1.08);
}

.feature-story {
  --story-accent-rgb: var(--accent-rgb);
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: clamp(54px, 7vw, 120px);
  padding-top: clamp(100px, 11vw, 180px);
  padding-bottom: clamp(100px, 11vw, 180px);
  border-top: 1px solid var(--border-soft);
}

.feature-story--timeline {
  --story-accent-rgb: var(--accent-rgb);
}

.feature-story--news {
  --story-accent-rgb: var(--series-claude-rgb);
  grid-template-columns: minmax(520px, 1.15fr) minmax(0, 0.85fr);
}

.feature-story--knowledge {
  --story-accent-rgb: var(--series-qwen-rgb);
  grid-template-columns: minmax(0, 0.72fr) minmax(600px, 1.28fr);
  gap: clamp(48px, 5.5vw, 94px);
}

.feature-story--knowledge .feature-story__copy h2 > span {
  display: block;
  white-space: normal;
}

.feature-story__copy {
  position: relative;
  isolation: isolate;
  max-width: 560px;
}

.feature-story__copy .eyebrow {
  margin-bottom: 24px;
}

.feature-story__watermark {
  position: absolute;
  z-index: -1;
  top: -0.42em;
  left: -0.24em;
  color: transparent;
  font-size: clamp(9rem, 15vw, 16rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
  opacity: 0.7;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(var(--text-rgb), 0.07);
}

.feature-story__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
}

.feature-story__eyebrow span,
.feature-story__eyebrow b {
  color: var(--text-tertiary);
  font: inherit;
  letter-spacing: inherit;
}

.feature-story__eyebrow i {
  width: 29px;
  height: 1px;
  background: rgba(var(--story-accent-rgb), 0.86);
}

.feature-status-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -8px 0 30px !important;
  color: var(--text-tertiary) !important;
  font-family: var(--font-mono);
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.035em;
}

.feature-status-note span {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 4px 11px;
  border: 1px solid rgba(var(--accent-rgb), 0.36);
  border-radius: var(--radius-pill);
  color: rgba(var(--text-rgb), 0.82);
  background: rgba(var(--accent-rgb), 0.09);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.feature-status-note--beta span {
  border-color: rgba(var(--series-claude-rgb), 0.42);
  background: rgba(var(--series-claude-rgb), 0.09);
}

.feature-story__copy h2 {
  font-size: clamp(2.5rem, 3.25vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.feature-story__copy > p:not(.eyebrow) {
  margin: 30px 0 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
}

.feature-points {
  display: grid;
  gap: 4px;
  margin: 38px 0 34px;
  padding: 0 0 0 2px;
  list-style: none;
}

.feature-points li {
  position: relative;
  display: grid;
  min-height: 44px;
  grid-template-columns: 44px 1fr;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.86rem;
  opacity: 1;
  transform: translateY(0);
  transition:
    color var(--motion-fast) ease,
    opacity var(--motion-ui) ease,
    transform var(--motion-section) var(--ease-out);
}

.feature-points li::before {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(var(--story-accent-rgb), 0.72);
  background: var(--bg);
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition:
    border-color var(--motion-fast) ease,
    background-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}

.feature-points li:not(:last-child)::after {
  position: absolute;
  top: calc(50% + 7px);
  bottom: calc(-50% + 5px);
  left: 7px;
  width: 1px;
  background: rgba(var(--story-accent-rgb), 0.28);
  content: "";
}

html[data-ready="true"] .feature-story__copy:not(.in-view) .feature-points li {
  opacity: 0;
  transform: translateY(14px);
}

.feature-story__copy.in-view .feature-points li:nth-child(1) {
  transition-delay: 120ms;
}

.feature-story__copy.in-view .feature-points li:nth-child(2) {
  transition-delay: 230ms;
}

.feature-story__copy.in-view .feature-points li:nth-child(3) {
  transition-delay: 340ms;
}

.feature-points li:hover {
  color: var(--text);
}

.feature-points li:hover::before {
  border-color: rgba(var(--story-accent-rgb), 1);
  background: rgba(var(--story-accent-rgb), 0.9);
  box-shadow: 0 0 14px rgba(var(--story-accent-rgb), 0.24);
}

.feature-points span {
  padding-left: 20px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.feature-link,
.text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font: 600 0.84rem/1 var(--font-sans);
  text-decoration: none;
}

.feature-link {
  padding: 10px 18px;
  border: 1px solid rgba(var(--text-rgb), 0.28);
  border-radius: 10px;
  transition:
    color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.feature-link:hover,
.text-action:hover {
  color: var(--accent-hover);
}

.feature-link:hover {
  border-color: rgba(var(--text-rgb), 0.42);
  background: rgba(var(--text-rgb), 0.08);
}

.feature-link span {
  transition: transform var(--motion-fast) ease;
}

.feature-link:hover span {
  transform: translate(2px, -2px);
}

.feature-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-preview {
  position: relative;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(var(--surface-rgb), 0.82);
  box-shadow:
    inset 0 1px 0 rgba(var(--story-accent-rgb), 0.25),
    0 30px 80px rgba(0, 0, 0, 0.3);
}

.timeline-preview {
  --timeline-preview-progress: 1;
  display: grid;
  min-height: 540px;
  grid-template-rows: 40px repeat(3, 1fr) auto;
  overflow: hidden;
}

.timeline-preview::before {
  position: absolute;
  inset: 40px 0 34px 130px;
  content: "";
  opacity: 0.58;
  background-image: repeating-linear-gradient(90deg, var(--border-soft) 0 1px, transparent 1px 112px);
}

.preview-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.preview-chrome__dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.preview-chrome__dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(var(--text-rgb), 0.2);
}

.preview-chrome__label {
  margin-right: auto;
  margin-left: 16px;
  color: rgba(var(--story-accent-rgb), 0.84);
  letter-spacing: 0.08em;
}

.preview-toolbar div {
  display: flex;
  gap: 7px;
}

.preview-toolbar b {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-weight: 500;
}

.preview-lane {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
}

.preview-series {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-left: 22px;
  color: var(--text-secondary);
  font-size: 0.78rem;
}

.preview-series b {
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
}

.preview-series__logo {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 7px;
  background: rgba(var(--surface-rgb), 0.62);
  opacity: calc(0.42 + var(--lane-progress, 0) * 0.58);
  transform: scale(calc(0.84 + var(--lane-progress, 0) * 0.16));
}

.preview-series__logo img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.preview-series__logo--mono img {
  filter: brightness(0) invert(1);
}

.preview-track {
  --track-color: var(--series-gpt);
  --track-progress: 1;
  position: relative;
  height: 1px;
  margin-right: 26px;
}

.preview-track::before {
  position: absolute;
  inset: 0;
  background: var(--track-color);
  content: "";
  opacity: calc(0.5 + var(--track-progress) * 0.5);
  transform: scaleX(var(--track-progress));
  transform-origin: left center;
}

.preview-track--pink { --track-color: var(--series-claude); }
.preview-track--violet { --track-color: var(--series-qwen); }

.preview-event {
  --node-progress: 1;
  --label-progress: 1;
  position: absolute;
  top: 50%;
  left: var(--x);
  width: 1px;
  height: 1px;
  color: var(--track-color);
  opacity: var(--node-progress);
  transform: translate(-50%, -50%);
}

.preview-event > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  background: var(--surface);
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--node-progress));
}

.preview-event--update > span {
  width: 11px;
  height: 10px;
  border: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 92%, 0 92%);
  opacity: 0.78;
  transform: translate(-50%, -50%) scale(var(--node-progress));
}

.preview-event--dynamic > span {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.58;
  transform: translate(-50%, -50%) scale(var(--node-progress));
}

.preview-event em {
  position: absolute;
  bottom: 16px;
  left: 50%;
  color: var(--text-secondary);
  font: normal 0.68rem/1.2 var(--font-sans);
  opacity: var(--label-progress);
  white-space: nowrap;
  transform: translate(-50%, calc((1 - var(--label-progress)) * 7px));
}

.preview-event--label-below em {
  top: 16px;
  bottom: auto;
  transform: translate(-78%, calc((1 - var(--label-progress)) * -7px));
}

@media (hover: hover) {
  .timeline-preview:hover .preview-lane {
    opacity: 0.55;
  }

  .timeline-preview .preview-lane {
    transition: opacity var(--motion-ui) ease;
  }

  .timeline-preview .preview-lane:hover {
    opacity: 1;
  }

  .timeline-preview .preview-lane:hover .preview-event em {
    color: var(--text);
  }
}

.preview-years {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-around;
  margin-left: 130px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.news-preview {
  --news-preview-progress: 1;
  display: grid;
  min-height: 560px;
  grid-template-rows: 40px 1fr;
  overflow: hidden;
}

.news-preview__body {
  display: grid;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 20px 22px 18px;
}

.news-preview__legend {
  position: relative;
  z-index: 4;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
  padding: 0 4px 12px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

.news-preview__legend span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.news-preview__legend img,
.news-preview__story header img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.news-preview__legend .is-monochrome,
.news-preview__story .is-monochrome {
  filter: brightness(0) invert(1);
}

.news-preview__legend b {
  margin-left: auto;
  color: var(--text-tertiary);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.news-preview__plot {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
}

.news-preview__plot > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.news-preview__grid line {
  stroke: var(--border-soft);
  stroke-dasharray: 3 7;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.news-preview__grid line:nth-of-type(-n + 4) {
  opacity: 0.72;
  stroke-dasharray: none;
}

.news-preview__grid text {
  fill: var(--text-tertiary);
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.04em;
  text-anchor: middle;
}

.news-preview__grid text:nth-of-type(-n + 4) {
  text-anchor: end;
}

.news-preview__series {
  --series-color: var(--series-gpt);
  --line-progress: 1;
  color: var(--series-color);
}

.news-preview__series--claude {
  --series-color: var(--series-claude);
}

.news-preview__series--kimi {
  --series-color: var(--series-kimi);
}

.news-preview__line {
  fill: none;
  stroke: var(--series-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.news-preview__point,
.news-preview__hotspot {
  --point-progress: 1;
  opacity: var(--point-progress);
  transform-box: fill-box;
  transform-origin: center;
}

.news-preview__point {
  fill: var(--surface);
  stroke: var(--series-color);
  stroke-width: 2;
  transform: scale(calc(0.4 + var(--point-progress) * 0.6));
  vector-effect: non-scaling-stroke;
}

.news-preview__hotspot {
  cursor: pointer;
  outline: none;
}

.news-preview__hotspot:not(.is-interactive) {
  pointer-events: none;
}

.news-preview__hotspot-hit {
  fill: transparent;
}

.news-preview__hotspot-halo {
  fill: rgba(var(--surface-rgb), 0.92);
  stroke: var(--series-color);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.news-preview__hotspot-core {
  fill: var(--series-color);
}

.news-preview__hotspot text {
  fill: var(--text);
  font: 600 12px/1 var(--font-mono);
  text-anchor: middle;
}

.news-preview__hotspot:hover .news-preview__hotspot-halo,
.news-preview__hotspot:focus-visible .news-preview__hotspot-halo,
.news-preview__hotspot[aria-pressed="true"] .news-preview__hotspot-halo {
  fill: var(--series-color);
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--series-color) 64%, transparent));
}

.news-preview__hotspot:hover .news-preview__hotspot-core,
.news-preview__hotspot:focus-visible .news-preview__hotspot-core,
.news-preview__hotspot[aria-pressed="true"] .news-preview__hotspot-core {
  fill: var(--surface);
}

.news-preview__story-layer {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.news-preview__story-stage {
  --card-progress: 1;
  position: absolute;
  top: var(--story-top, 10px);
  left: var(--story-left, 10px);
  width: min(218px, 34%);
  height: 142px;
  visibility: hidden;
  opacity: 0;
  transform:
    translate3d(0, calc((1 - var(--card-progress)) * 16px), 0)
    scale(calc(0.96 + var(--card-progress) * 0.04));
  transform-origin: center;
  transition:
    top 260ms var(--ease-out),
    left 260ms var(--ease-out);
}

.news-preview__story {
  position: absolute;
  inset: 0;
  display: grid;
  min-height: 0;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: 7px;
  padding: 13px 14px 12px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgba(var(--surface-rgb), 0.97), var(--surface-alt));
  box-shadow: 0 14px 34px rgba(var(--shadow-rgb), 0.36);
  transition:
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-ui) ease;
}

.news-preview__story-stage--gpt .news-preview__story {
  border-top-color: var(--series-gpt);
}

.news-preview__story-stage--claude .news-preview__story {
  border-top-color: var(--series-claude);
}

.news-preview__story-stage--kimi .news-preview__story {
  border-top-color: var(--series-kimi);
}

.news-preview__story-stage.is-visible {
  visibility: visible;
  opacity: var(--card-progress);
}

.news-preview__story-stage.is-active .news-preview__story {
  border-color: color-mix(in srgb, var(--story-series-color) 58%, var(--border));
  box-shadow: 0 16px 40px rgba(var(--shadow-rgb), 0.44);
}

.news-preview__story-stage--gpt { --story-series-color: var(--series-gpt); }
.news-preview__story-stage--claude { --story-series-color: var(--series-claude); }
.news-preview__story-stage--kimi { --story-series-color: var(--series-kimi); }

.news-preview__story header {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-preview__story header span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 600;
}

.news-preview__story header b {
  color: var(--story-series-color);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 600;
  white-space: nowrap;
}

.news-preview__story-meta {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.news-preview__story time,
.news-preview__story footer {
  overflow: hidden;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-preview__story h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-preview__story p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 0.64rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.knowledge-preview {
  --information-preview-progress: 0;
  display: grid;
  width: 100%;
  min-height: 640px;
  grid-template-rows: 40px minmax(0, 1fr);
  max-width: 760px;
  justify-self: end;
  overflow: hidden;
}

.information-preview__body {
  display: grid;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 30px;
  padding: 36px 40px 28px;
}

.information-preview__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.information-preview__heading .eyebrow {
  margin: 0 0 8px;
}

.information-preview__heading strong {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 600;
}

.information-preview__heading > span {
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.information-preview__chart {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: 42px minmax(0, 1fr);
  padding-top: 24px;
}

.information-preview__chart::before {
  position: absolute;
  inset: 24px 0 86px 42px;
  content: "";
  opacity: var(--information-preview-progress);
  background-image: linear-gradient(to bottom, var(--border-soft) 1px, transparent 1px);
  background-size: 100% 25%;
}

.information-preview__chart::after {
  position: absolute;
  right: 0;
  bottom: 86px;
  left: 42px;
  height: 1px;
  content: "";
  background: var(--border-strong);
  transform: scaleX(var(--information-preview-progress));
  transform-origin: left center;
}

.information-preview__axis {
  display: grid;
  min-height: 0;
  grid-template-rows: repeat(4, minmax(0, 1fr)) 0 86px;
  padding-top: 1px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-align: right;
}

.information-preview__axis span {
  align-self: start;
  padding-right: 8px;
  opacity: var(--information-preview-progress);
  transform: translateY(-50%);
}

.information-preview__bars {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(8px, 0.8vw, 13px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.information-preview__bars li {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) 86px;
}

.information-preview__track {
  position: relative;
  display: block;
  min-height: 0;
}

.information-preview__track i {
  position: absolute;
  right: 14%;
  bottom: 0;
  left: 14%;
  display: block;
  height: var(--bar-height, 0%);
  border: 1px solid color-mix(in srgb, var(--series-color) 72%, var(--border));
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--series-color) 88%, white 4%), color-mix(in srgb, var(--series-color) 56%, transparent));
  box-shadow: 0 -8px 22px color-mix(in srgb, var(--series-color) 18%, transparent);
  transform-origin: center bottom;
}

.information-preview__track strong {
  position: absolute;
  right: 0;
  bottom: calc(var(--bar-height, 0%) + 8px);
  left: 0;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  text-align: center;
  opacity: var(--bar-progress, 0);
}

.information-preview__identity {
  display: grid;
  min-width: 0;
  align-content: start;
  justify-items: center;
  gap: 9px;
  padding-top: 12px;
  text-align: center;
  opacity: var(--bar-progress, 0);
}

.information-preview__identity img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.information-preview__identity img:is(
  [src$="openai.svg"],
  [src$="kimi.svg"],
  [src$="grok.svg"],
  [src$="zai.svg"]
) {
  filter: brightness(0) invert(1);
}

.information-preview__identity b {
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.information-preview__source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.64rem;
}

.information-preview__source span {
  color: var(--accent-hover);
}

.information-preview__source b {
  font-weight: 500;
}

.landing-cta {
  display: grid;
  min-height: 680px;
  place-items: center;
  align-content: center;
  padding-top: 120px;
  padding-bottom: 120px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.landing-cta__convergence {
  width: min(100%, 1000px);
  height: clamp(180px, 20vw, 220px);
  margin-bottom: 18px;
  overflow: visible;
}

.landing-cta__paths path {
  fill: none;
  stroke: var(--line-color);
  stroke-linecap: round;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 720;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 900ms var(--ease-out);
}

.landing-cta__paths path:nth-child(2) { transition-delay: 120ms; }
.landing-cta__paths path:nth-child(3) { transition-delay: 240ms; }
.landing-cta__paths path:nth-child(4) { transition-delay: 360ms; }
.landing-cta__paths path:nth-child(5) { transition-delay: 480ms; }
.landing-cta__paths path:nth-child(6) { transition-delay: 600ms; }

.landing-cta__convergence-point {
  fill: var(--bg);
  stroke: var(--accent);
  transform: rotate(45deg);
  transform-box: fill-box;
  transform-origin: center;
  transition:
    opacity var(--motion-fast) ease 1440ms,
    filter var(--motion-ui) ease 1440ms;
}

.landing-cta__stem {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 28;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 420ms var(--ease-out) 1560ms;
}

html[data-ready="true"] .landing-cta:not(.in-view) .landing-cta__paths path {
  stroke-dashoffset: 720;
}

html[data-ready="true"] .landing-cta:not(.in-view) .landing-cta__convergence-point {
  opacity: 0;
  filter: drop-shadow(0 0 0 rgba(var(--accent-rgb), 0));
}

html[data-ready="true"] .landing-cta:not(.in-view) .landing-cta__stem {
  stroke-dashoffset: 28;
}

.landing-cta.in-view .landing-cta__convergence-point {
  filter: drop-shadow(0 0 9px rgba(var(--accent-rgb), 0.72));
  animation: convergence-pulse 900ms ease-out 1440ms 1 both;
}

@keyframes convergence-pulse {
  0% { filter: drop-shadow(0 0 0 rgba(var(--accent-rgb), 0)); }
  45% { filter: drop-shadow(0 0 16px rgba(var(--accent-rgb), 0.9)); }
  100% { filter: drop-shadow(0 0 8px rgba(var(--accent-rgb), 0.48)); }
}

.landing-cta h2 {
  margin-top: 18px;
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.landing-cta > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px auto 34px;
  color: var(--text-secondary);
  line-height: 1.85;
}

.landing-explore-button {
  position: relative;
  display: inline-flex;
  min-width: 190px;
  height: 52px;
  align-items: center;
  padding: 6px 58px 6px 20px;
  overflow: hidden;
  border: 1px solid rgba(var(--text-rgb), 0.22);
  border-radius: 14px;
  color: var(--text);
  background: rgba(var(--bg-rgb), 0.92);
  box-shadow:
    inset 0 0 26px -12px rgba(var(--text-rgb), 0.28),
    0 12px 34px rgba(var(--shadow-rgb), 0.24);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition:
    border-color var(--motion-ui) ease,
    box-shadow var(--motion-ui) ease,
    transform var(--motion-fast) ease;
}

.landing-explore-button__labels {
  position: relative;
  z-index: 3;
  display: block;
  height: 1em;
  overflow: hidden;
  line-height: 1;
  white-space: nowrap;
}

.landing-explore-button__label {
  display: block;
  transition:
    color var(--motion-fast) ease,
    opacity var(--motion-ui) ease,
    transform var(--motion-ui) var(--ease-out);
}

.landing-explore-button__label--primary {
  color: var(--text);
}

.landing-explore-button__label--secondary {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--bg);
  opacity: 0;
  transform: translateY(135%);
}

.landing-explore-button__icon {
  position: absolute;
  z-index: 2;
  top: 5px;
  right: 5px;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--bg);
  background: var(--text);
  box-shadow: 2px 2px 12px rgba(var(--shadow-rgb), 0.42);
  transition:
    width var(--motion-section) var(--ease-out),
    transform var(--motion-fast) ease;
}

.landing-explore-button__icon svg {
  position: absolute;
  right: 10px;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform var(--motion-ui) var(--ease-out);
}

.landing-explore-button:hover,
.landing-explore-button:focus-visible {
  border-color: rgba(var(--text-rgb), 0.52);
  box-shadow:
    inset 0 0 28px -12px rgba(var(--text-rgb), 0.34),
    0 16px 40px rgba(var(--shadow-rgb), 0.32);
}

.landing-explore-button:hover .landing-explore-button__icon,
.landing-explore-button:focus-visible .landing-explore-button__icon {
  width: calc(100% - 10px);
}

.landing-explore-button:hover .landing-explore-button__label--primary,
.landing-explore-button:focus-visible .landing-explore-button__label--primary {
  opacity: 0;
  transform: translateY(-135%);
}

.landing-explore-button:hover .landing-explore-button__label--secondary,
.landing-explore-button:focus-visible .landing-explore-button__label--secondary {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 80ms;
}

.landing-explore-button:hover .landing-explore-button__icon svg,
.landing-explore-button:focus-visible .landing-explore-button__icon svg {
  transform: translateX(2px);
}

.landing-explore-button:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 5px;
}

.landing-explore-button:active {
  transform: scale(0.98);
}

.landing-explore-button:active .landing-explore-button__icon {
  transform: scale(0.95);
}

.landing-footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(var(--accent-rgb), 0.045), transparent 33%),
    linear-gradient(180deg, rgba(var(--surface-rgb), 0.74), rgba(var(--bg-rgb), 0.96));
}

@media (max-width: 1024px) {
  .feature-story,
  .feature-story--news {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 64px;
  }

  .feature-story__copy {
    max-width: 680px;
  }

  .feature-story--news .feature-story__copy {
    order: 1;
  }

  .feature-story--news .feature-preview {
    order: 2;
  }

  .feature-preview {
    width: min(100%, 720px);
    justify-self: center;
  }

  .knowledge-preview {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .landing-nav {
    gap: 0;
  }

  .landing-nav .nav-button {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 0.68rem;
  }
}

@media (max-width: 699px) {
  .site-header--landing {
    padding-bottom: 96px;
  }

  .hero-scroll-cue {
    bottom: 12px;
  }

  .feature-bridge {
    min-height: 460px;
  }

  .feature-bridge h2 > span {
    white-space: normal;
  }

  .model-loop-section {
    min-height: 240px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .model-loop-section__meta > strong {
    font-size: 2rem;
  }

  .model-loop-section__meta .eyebrow {
    font-size: 0.68rem;
  }

  .model-loop-section__meta span {
    font-size: 0.8rem;
  }

  .feature-story,
  .feature-story--news {
    gap: 42px;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .feature-story__watermark {
    font-size: 9rem;
  }

  .feature-status-note {
    align-items: flex-start;
  }

  .feature-story__copy h2 {
    font-size: clamp(2.18rem, 9.8vw, 2.45rem);
  }

  .timeline-preview {
    min-height: 420px;
  }

  .timeline-preview::before {
    left: 92px;
    background-size: 82px 100%;
  }

  .preview-toolbar {
    padding: 0 14px;
  }

  .preview-chrome__label {
    margin-left: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .preview-toolbar div {
    display: none;
  }

  .preview-lane {
    grid-template-columns: 92px 1fr;
  }

  .preview-series {
    padding-left: 14px;
    font-size: 0.72rem;
  }

  .preview-track {
    margin-right: 16px;
  }

  .preview-event em {
    font-size: 0.68rem;
  }

  .preview-lane:nth-child(2) .preview-event:nth-child(3) em,
  .preview-lane:nth-child(2) .preview-event:nth-child(5) em,
  .preview-lane:nth-child(3) .preview-event:nth-child(5) em,
  .preview-lane:nth-child(3) .preview-event:nth-child(7) em,
  .preview-lane:nth-child(4) .preview-event:nth-child(4) em {
    display: none;
  }

  .preview-years {
    margin-left: 92px;
  }

  .news-preview {
    min-height: 500px;
  }

  .news-preview__body {
    padding: 16px 12px 12px;
  }

  .news-preview__legend {
    gap: 10px;
    padding-right: 2px;
    padding-left: 2px;
    font-size: 0.58rem;
  }

  .news-preview__legend img {
    width: 14px;
    height: 14px;
  }

  .news-preview__legend b {
    display: none;
  }

  .news-preview__story-stage {
    width: min(154px, calc(50% - 18px));
    height: 118px;
  }

  .news-preview__story {
    gap: 4px;
    padding: 9px 10px 8px;
  }

  .news-preview__story h3 {
    font-size: 0.64rem;
    line-height: 1.3;
  }

  .news-preview__story header span {
    gap: 4px;
    font-size: 0.58rem;
  }

  .news-preview__story header b {
    font-size: 0.5rem;
  }

  .news-preview__story time,
  .news-preview__story footer {
    font-size: 0.46rem;
  }

  .news-preview__story p {
    display: none;
  }

  .knowledge-preview {
    min-height: 460px;
  }

  .information-preview__body {
    gap: 18px;
    padding: 22px 16px 18px;
  }

  .information-preview__heading {
    gap: 12px;
  }

  .information-preview__heading strong {
    font-size: 0.88rem;
  }

  .information-preview__chart {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .information-preview__chart::before {
    left: 28px;
  }

  .information-preview__chart::after {
    left: 28px;
  }

  .information-preview__bars {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
  }

  .information-preview__bars li:nth-child(n + 6) {
    display: none;
  }

  .information-preview__track i {
    right: 18%;
    left: 18%;
  }

  .information-preview__identity b {
    font-size: 0.54rem;
  }

  .landing-cta {
    min-height: 620px;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .landing-cta__convergence {
    height: 180px;
    margin-bottom: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header--landing {
    --hero-copy-opacity: 1 !important;
    --hero-copy-scale: 1 !important;
    --hero-copy-shift: 0px !important;
    --hero-lightfall-shift: 0px !important;
    --hero-cue-opacity: 1 !important;
    --hero-cue-shift: 0px !important;
  }

  .preview-track,
  .preview-event,
  .preview-event > span,
  .preview-event em,
  .news-preview__story-stage,
  .news-preview__story,
  .information-preview__track i,
  .information-preview__track strong,
  .information-preview__identity,
  .feature-points li,
  .feature-points li::before,
  .landing-cta__paths path,
  .landing-cta__convergence-point,
  .landing-cta__stem,
  .landing-explore-button,
  .landing-explore-button__label,
  .landing-explore-button__icon,
  .landing-explore-button__icon svg {
    transition: none !important;
  }

  .hero-scroll-cue svg,
  .hero-title__shine,
  .landing-cta.in-view .landing-cta__convergence-point {
    animation: none !important;
  }

  .landing-explore-button__label--primary {
    opacity: 1 !important;
    transform: none !important;
  }

  .landing-explore-button__label--secondary {
    display: none;
  }

  .landing-explore-button__icon {
    width: 40px !important;
  }
}
