/* ATHENODE path-led landing surface. Loaded after the shared site stylesheet. */

@font-face {
  font-family: "ATHENODE Grotesk";
  src: url("./assets/fonts/SchibstedGrotesk-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

body.path-landing {
  --landing-ground: #efeee8;
  --landing-ground-deep: #e5e4dd;
  --landing-ink: #181a1b;
  --landing-copy: #484b4a;
  --landing-muted: #707472;
  --landing-rule: rgba(24, 26, 27, 0.18);
  --landing-rule-soft: rgba(24, 26, 27, 0.08);
  --landing-panel: #e8e7e0;
  --landing-inverse: #f4f2ea;
  --landing-accent: #2f6bff;
  --landing-accent-ink: #ffffff;
  --landing-radius-control: 10px;
  --landing-radius-window: 18px;
  --landing-radius-dock: 14px;
  background: var(--landing-ground);
  color: var(--landing-ink);
  font-family: "ATHENODE Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

:root[data-theme="dark"] body.path-landing {
  --landing-ground: #0b0d0e;
  --landing-ground-deep: #07090a;
  --landing-ink: #e8e8e2;
  --landing-copy: #b8bbb5;
  --landing-muted: #858a86;
  --landing-rule: rgba(232, 232, 226, 0.18);
  --landing-rule-soft: rgba(232, 232, 226, 0.08);
  --landing-panel: #131617;
  --landing-inverse: #0b0d0e;
}

.path-landing main {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.path-landing .page-glow {
  display: none;
}

.path-landing .site-header {
  position: absolute;
  top: 0;
  z-index: 30;
  min-height: 88px;
  border-bottom-color: var(--landing-rule);
  color: var(--landing-ink);
}

.path-landing .brand,
.path-landing .header-link {
  color: var(--landing-ink);
}

.path-landing .language-picker {
  z-index: 2;
}

.path-landing .language-picker-trigger {
  min-width: 58px;
  min-height: 36px;
  height: 36px;
  gap: 8px;
  border-color: var(--landing-rule);
  background: var(--landing-ground);
  color: var(--landing-ink);
  padding: 0 10px;
  line-height: 1;
}

.path-landing .language-picker-chevron {
  display: block;
  flex: 0 0 auto;
  width: 10px;
  height: 7px;
  overflow: visible;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.path-landing .language-picker-chevron path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  vector-effect: non-scaling-stroke;
}

.path-landing .language-picker.is-open .language-picker-chevron {
  transform: rotate(180deg);
}

.path-landing .language-picker-menu {
  z-index: 50;
  top: calc(100% + 9px);
  min-width: 164px;
  border-color: var(--landing-rule);
  background: var(--landing-ground-deep);
  box-shadow: 0 16px 32px var(--shadow);
}

.path-landing .language-picker-menu button {
  color: var(--landing-ink);
}

.path-landing .language-picker-menu button span {
  color: var(--landing-muted);
}

.path-landing .language-picker-menu button:hover,
.path-landing .language-picker-menu button.is-active {
  background: color-mix(in srgb, var(--landing-accent) 18%, var(--landing-ground-deep));
}

.path-landing .brand img,
.path-landing .dock-brand img {
  content: url("./assets/athenode-logo.svg");
}

:root[data-theme="dark"] .path-landing .brand img,
:root[data-theme="dark"] .path-landing .dock-brand img {
  content: url("./assets/athenode-logo-dark.svg");
}

.path-landing .activation-hero.site-shell {
  --demo-entrance: 0;
  --hero-exit: 0;
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  min-height: calc(100svh + 740px);
  margin: 0;
  border: 0;
  background: var(--landing-ground);
  padding: 0 0 120px;
}

.hero-path-field {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-path-field::after {
  position: absolute;
  inset: 0;
  border-bottom: 1px solid var(--landing-rule);
  content: "";
}

.hero-path-field svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-path {
  fill: none;
  stroke: var(--landing-ink);
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 0.24 0.76;
}

.hero-wave-band {
  animation: route-wave var(--wave-duration, 20s) linear infinite;
  animation-delay: var(--wave-delay, 0s);
}

.path-landing .hero-copy {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(100% - 40px, 1080px);
  min-height: 100svh;
  margin: -100svh auto 0;
  padding: 112px 0 80px;
  opacity: clamp(0, calc(1 - var(--hero-exit)), 1);
  text-align: center;
  transform: translate3d(0, calc(var(--hero-exit) * -56px), 0);
  will-change: opacity, transform;
}

.path-landing .activation-hero.is-leaving .hero-copy {
  opacity: 0;
  pointer-events: none;
}

.path-landing .activation-hero.is-leaving .hero-path-field {
  opacity: 0.34;
}

.path-landing .hero-copy::before {
  display: none;
}

.path-landing .activation-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--landing-ink);
  font-size: clamp(4.4rem, 8.7vw, 6rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 0.91;
  text-wrap: balance;
}

.path-landing .activation-hero h1 span {
  display: block;
}

.path-landing .activation-hero h1 span:first-child {
  margin-bottom: 18px;
  font-size: 0.25em;
  font-weight: 720;
  letter-spacing: 0.16em;
  line-height: 1;
}

.path-landing .hero-actions {
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.path-landing .button {
  min-height: 50px;
  border-radius: var(--landing-radius-control);
  font-weight: 700;
  letter-spacing: 0;
  padding: 13px 22px;
}

.path-landing .button-primary {
  border-color: var(--landing-ink);
  background: var(--landing-ink);
  color: var(--landing-inverse);
}

.path-landing .button-primary:hover {
  border-color: var(--landing-accent);
  background: var(--landing-accent);
  color: var(--landing-accent-ink);
}

.path-landing .button-secondary {
  border-color: var(--landing-rule);
  background: var(--landing-ground);
  color: var(--landing-ink);
}

.path-landing .button-secondary:hover {
  border-color: var(--landing-ink);
  background: var(--landing-ink);
  color: var(--landing-inverse);
}

.path-landing .activation-demo {
  position: relative;
  top: auto;
  z-index: 3;
  width: min(100% - 48px, 1120px);
  min-height: 0;
  margin: 80px auto 0;
  border: 1px solid var(--landing-rule);
  border-radius: var(--landing-radius-window);
  background: var(--landing-panel);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
  opacity: clamp(0.32, var(--demo-entrance), 1);
  transform: translate3d(0, calc((1 - var(--demo-entrance)) * 30px), 0);
  will-change: opacity, transform;
}

.path-landing .demo-titlebar {
  min-height: 70px;
  border-bottom: 1px solid var(--landing-rule);
  background: var(--landing-ground-deep);
  color: var(--landing-ink);
}

.path-landing .demo-app-title,
.path-landing .demo-status {
  color: var(--landing-ink);
}

.path-landing .demo-app-title img {
  content: url("./assets/athenode-logo.svg");
}

:root[data-theme="dark"] .path-landing .demo-app-title img {
  content: url("./assets/athenode-logo-dark.svg");
}

.path-landing .demo-sources {
  border-color: var(--landing-rule);
  background: var(--landing-ground-deep);
}

.path-landing .demo-conversation {
  background: var(--landing-ground);
}

.path-landing .demo-question {
  background: var(--landing-accent);
  color: #ffffff;
}

.path-landing .demo-answer,
.path-landing .demo-search,
.path-landing .demo-citations a,
.path-landing .demo-sources span {
  border-radius: 8px;
}

.path-landing .demo-question {
  border-radius: var(--landing-radius-control);
}

.path-landing .demo-answer {
  color: var(--landing-copy);
}

.path-landing .demo-citations a {
  color: var(--landing-ink);
}

.scroll-path-story {
  position: absolute;
  top: 100svh;
  right: 0;
  bottom: 220px;
  left: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.scroll-path-story svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.story-path {
  fill: none;
  stroke: var(--landing-ink);
  stroke-linecap: round;
  stroke-opacity: var(--story-opacity, 0.08);
  stroke-width: var(--story-width, 1);
  vector-effect: non-scaling-stroke;
}

.story-path--wave {
  stroke-dasharray: 0.82 0.18;
}

.story-wave-band {
  animation: route-wave var(--wave-duration, 23s) linear infinite;
  animation-delay: var(--wave-delay, 0s);
}

.hero-path-field:not(.is-wave-active) .hero-wave-band,
.scroll-path-story:not(.is-wave-active) .story-wave-band,
.wave-paused .hero-wave-band,
.wave-paused .story-wave-band {
  animation-play-state: paused;
}

.story-path--active {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke: var(--landing-accent);
  stroke-opacity: 0.9;
  stroke-width: 1.5;
}

.story-path-head {
  fill: var(--landing-accent);
  stroke: var(--landing-ground);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.path-landing main > section:not(.activation-hero) {
  position: relative;
  z-index: 2;
}

.path-landing .section,
.path-landing .private-section,
.path-landing .download-section {
  padding-block: clamp(116px, 13vw, 190px);
}

.path-landing .section-head {
  border-bottom-color: var(--landing-rule);
}

.path-landing .section-head h2,
.path-landing .flow-intro h2,
.path-landing .quickstart-copy h2,
.path-landing .school-cta-panel h2,
.path-landing .private-access-body h2,
.path-landing .download-panel h2 {
  color: var(--landing-ink);
  text-wrap: balance;
}

.path-landing .section-head p,
.path-landing .flow-intro p,
.path-landing .quickstart-copy p,
.path-landing .school-cta-panel p,
.path-landing .private-access-body p,
.path-landing .download-panel p {
  color: var(--landing-copy);
}

.path-landing .audience-grid {
  gap: clamp(42px, 7vw, 104px);
  border: 0;
  background: transparent;
}

.path-landing .audience-section .section-head {
  margin-bottom: 0;
}

.path-landing .source-ledger {
  display: block;
  border-top: 1px solid var(--landing-rule);
}

.path-landing .source-ledger .audience-card,
.path-landing .source-ledger .audience-card-student,
.path-landing .source-ledger .audience-card-files {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.72fr) minmax(174px, 0.3fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  min-height: 0;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--landing-rule);
  padding: clamp(34px, 4.5vw, 54px) 0;
  background: transparent;
}

.path-landing .source-entry-copy {
  display: grid;
  grid-template-columns: minmax(84px, 0.26fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
}

.path-landing .source-entry-body h3 {
  max-width: 22ch;
  color: var(--landing-ink);
  font-size: clamp(1.55rem, 1.8vw, 2.35rem);
  line-height: 1.04;
}

.path-landing .source-entry-body p {
  max-width: 46ch;
  margin-top: 12px;
  color: var(--landing-copy) !important;
  font-size: 0.98rem;
  line-height: 1.55;
}

.path-landing .source-ledger .audience-label {
  margin-top: 0.18rem;
  color: var(--landing-muted) !important;
}

.path-landing .source-ledger .source-snapshot {
  margin: 0;
  border: 0;
}

.path-landing .source-ledger .source-snapshot div {
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--landing-rule-soft);
  padding: 8px 0;
}

.path-landing .source-ledger .source-snapshot div:first-child {
  padding-top: 0;
}

.path-landing .source-ledger .source-snapshot div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.path-landing .source-ledger .source-snapshot dt,
.path-landing .source-ledger .source-snapshot dd {
  color: var(--landing-copy);
  font-size: 1rem;
  line-height: 1.45;
}

.path-landing .source-ledger .source-snapshot dt {
  color: var(--landing-muted);
}

.path-landing .source-ledger .audience-actions {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.path-landing .source-ledger .audience-actions .button {
  width: 100%;
  min-width: 164px;
  padding-inline: 16px;
  white-space: nowrap;
}

.path-landing .source-ledger .audience-actions .text-link {
  color: var(--landing-ink) !important;
  font-size: 1rem;
}

.path-landing .audience-card,
.path-landing .audience-card-student,
.path-landing .audience-card-school {
  min-height: auto;
  border: 0;
  border-top: 1px solid var(--landing-rule);
  border-radius: 0;
  padding: clamp(30px, 4vw, 48px) 0 0;
  background: transparent;
  color: var(--landing-ink);
}

.path-landing .audience-card + .audience-card {
  border-left: 0;
}

.path-landing .audience-card-student h3,
.path-landing .audience-card-student p,
.path-landing .audience-card-student li,
.path-landing .audience-card-student .audience-label,
.path-landing .audience-card-student .text-link {
  color: var(--landing-ink) !important;
}

.path-landing .audience-card-school h3,
.path-landing .audience-card-school p,
.path-landing .audience-card-school li,
.path-landing .audience-card-school dt,
.path-landing .audience-card-school dd,
.path-landing .audience-card-school .audience-label {
  color: var(--landing-ink);
}

.path-landing .audience-card-files {
  min-height: auto;
  margin-top: 0;
  border: 0;
  border-top: 1px solid var(--landing-rule);
  border-radius: 0;
  padding: clamp(30px, 4vw, 48px) 0 0;
  background: transparent;
  color: var(--landing-ink);
}

@media (max-width: 980px) {
  .path-landing .source-ledger .audience-card,
  .path-landing .source-ledger .audience-card-student,
  .path-landing .source-ledger .audience-card-files {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
  }

  .path-landing .source-ledger .audience-actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
  }

  .path-landing .source-ledger .audience-actions .button {
    width: auto;
  }

  .path-landing .onenote-setup-panel {
    grid-template-columns: 1fr;
  }

  .path-landing .onenote-setup-actions {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  .path-landing .source-ledger .audience-card,
  .path-landing .source-ledger .audience-card-student,
  .path-landing .source-ledger .audience-card-files,
  .path-landing .source-entry-copy {
    grid-template-columns: 1fr;
  }

  .path-landing .source-ledger .audience-card,
  .path-landing .source-ledger .audience-card-student,
  .path-landing .source-ledger .audience-card-files {
    gap: 26px;
    padding-block: 34px;
  }

  .path-landing .source-entry-copy {
    gap: 10px;
  }

  .path-landing .source-ledger .audience-label {
    margin-top: 0;
  }

  .path-landing .source-snapshot div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .path-landing .onenote-setup-panel h2 {
    max-width: none;
    font-size: clamp(2.05rem, 10vw, 2.6rem);
  }

  .path-landing .onenote-setup-steps li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }
}

.path-landing .audience-card-files h3,
.path-landing .audience-card-files p,
.path-landing .audience-card-files li,
.path-landing .audience-card-files dt,
.path-landing .audience-card-files dd,
.path-landing .audience-card-files .audience-label {
  color: var(--landing-ink);
}

.path-landing .source-snapshot,
.path-landing .source-snapshot div {
  border-color: var(--landing-rule);
}

.path-landing .school-snapshot,
.path-landing .school-snapshot div {
  border-color: var(--landing-rule);
}

.path-landing .flow-section {
  border-color: var(--landing-rule);
  background: transparent;
}

.path-landing .flow-layout {
  position: relative;
}

.path-landing .flow-intro {
  top: 126px;
  min-width: 0;
}

.path-landing .flow-intro h2,
.path-landing .flow-intro p {
  color: var(--landing-ink);
}

.path-landing .flow-intro h2 {
  width: 100%;
  max-width: 100%;
  font-size: 2.6rem;
  line-height: 0.98;
  overflow-wrap: normal;
  text-wrap: balance;
}

.path-landing .flow-progress {
  border-color: var(--landing-rule);
}

.path-landing .flow-progress span {
  background: var(--landing-rule);
}

.path-landing .flow-progress span.is-current,
.path-landing .flow-progress span.is-active {
  background: var(--landing-accent);
}

.path-landing .flow-card,
.path-landing .flow-card:nth-child(2),
.path-landing .flow-card:nth-child(3) {
  position: relative;
  top: auto;
  justify-content: center;
  min-height: clamp(520px, 72vh, 720px);
  margin: 0;
  border: 0;
  border-top: 1px solid var(--landing-rule);
  border-radius: 0;
  padding: clamp(76px, 10vw, 136px) 0;
  background: transparent;
  color: var(--landing-ink);
  box-shadow: none;
  transform: none;
}

.path-landing .flow-card.is-current {
  border-top-color: var(--landing-accent);
  box-shadow: none;
}

.path-landing .flow-stack {
  min-width: 0;
  padding-bottom: 0;
}

.path-landing .flow-card h3 {
  max-width: min(17ch, 100%);
  text-wrap: balance;
}

.path-landing .flow-card h3,
.path-landing .flow-card .flow-index,
.path-landing .flow-card p,
.path-landing .flow-card blockquote,
.path-landing .flow-card strong,
.path-landing .flow-card span {
  color: var(--landing-ink);
}

.path-landing .quickstart-section {
  border-color: var(--landing-rule);
}

.path-landing .quickstart-list,
.path-landing .quickstart-list li {
  border-color: var(--landing-rule);
}

.path-landing .quickstart-list strong {
  color: var(--landing-ink);
}

.path-landing .quickstart-list span {
  color: var(--landing-copy);
}

.path-landing .school-cta-panel {
  border: 0;
  border-block: 1px solid var(--landing-rule);
  border-radius: 0;
  background: transparent;
  color: var(--landing-ink);
  padding: clamp(68px, 9vw, 120px) 0;
}

.path-landing .school-cta-panel h2,
.path-landing .school-cta-panel .text-link {
  color: var(--landing-ink) !important;
}

.path-landing .school-cta-panel p {
  color: var(--landing-copy) !important;
}

.path-landing .school-cta-panel .button-primary {
  border-color: var(--landing-accent);
  background: var(--landing-accent);
  color: #ffffff;
}

.path-landing .onenote-setup-panel {
  border-color: var(--landing-rule);
}

.path-landing .onenote-setup-panel h2,
.path-landing .onenote-setup-steps strong,
.path-landing .onenote-setup-panel .text-link {
  color: var(--landing-ink);
}

.path-landing .onenote-setup-panel > div > p,
.path-landing .onenote-setup-steps p {
  color: var(--landing-copy);
}

.path-landing .onenote-setup-steps,
.path-landing .onenote-setup-steps li {
  border-color: var(--landing-rule);
}

.path-landing .onenote-setup-steps li > span {
  color: var(--landing-accent);
}

.path-landing .private-access {
  border-color: var(--landing-rule);
  background: transparent;
}

.path-landing .private-access summary,
.path-landing .private-access summary strong,
.path-landing .private-access-body h2,
.path-landing .private-access-body p,
.path-landing .private-prices strong,
.path-landing .private-prices span {
  color: var(--landing-ink);
}

.path-landing .private-prices p {
  border-color: var(--landing-rule);
  background: transparent;
}

.path-landing .download-panel {
  border: 0;
  border-block: 1px solid var(--landing-rule);
  border-radius: 0;
  background: transparent;
  color: var(--landing-ink);
  padding: clamp(68px, 9vw, 120px) 0;
}

.path-landing .download-panel h2,
.path-landing .download-panel p {
  color: var(--landing-ink);
}

.path-landing .download-panel .button-primary {
  border-color: var(--landing-accent);
  background: var(--landing-accent);
  color: #ffffff;
}

.path-landing .download-panel .button-secondary {
  border-color: var(--landing-rule);
  background: transparent;
  color: var(--landing-ink);
}

.path-landing .dock-nav {
  z-index: 50;
  border-color: var(--landing-rule);
  border-radius: var(--landing-radius-dock);
  background: var(--landing-panel);
  color: var(--landing-ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 22px);
  transition:
    opacity 320ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.path-landing .dock-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.path-landing .dock-nav a {
  color: var(--landing-ink);
}

.path-landing .dock-cta {
  background: var(--landing-accent);
  color: #ffffff !important;
}

.path-landing .footer {
  position: relative;
  z-index: 2;
  border-color: var(--landing-rule);
  color: var(--landing-muted);
}

.path-landing .reveal {
  opacity: 1;
  clip-path: none;
  transform: none;
}

.js .path-landing .reveal {
  opacity: 1;
  clip-path: none;
  transform: none;
}

.js .path-landing .reveal.in-view {
  animation: content-rise 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.js .path-landing .activation-demo.reveal {
  clip-path: none;
  opacity: clamp(0.32, var(--demo-entrance), 1);
  transform: translate3d(0, calc((1 - var(--demo-entrance)) * 30px), 0);
}

.js .path-landing .activation-demo.reveal.in-view {
  animation: none;
}

.js .path-landing .hero-copy.reveal.in-view {
  animation: none;
  opacity: clamp(0, calc(1 - var(--hero-exit)), 1);
  transform: translate3d(0, calc(var(--hero-exit) * -56px), 0);
}

.path-landing [data-trace-section] {
  --trace-emphasis: 0;
}

.path-landing [data-trace-section]::after {
  position: absolute;
  top: clamp(90px, 10vw, 150px);
  right: max(20px, calc((100vw - 1200px) / 2));
  width: 48px;
  height: 1px;
  background: var(--landing-accent);
  content: "";
  opacity: var(--trace-emphasis);
  transform: scaleX(var(--trace-emphasis));
  transform-origin: right;
  transition:
    opacity 240ms ease-out,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.path-landing [data-trace-section].is-trace-active {
  --trace-emphasis: 1;
}

@keyframes route-wave {
  0% {
    opacity: 0.58;
    stroke-dashoffset: 0;
  }

  50% {
    opacity: 1;
    stroke-dashoffset: -0.5;
  }

  100% {
    opacity: 0.58;
    stroke-dashoffset: -1;
  }
}

@keyframes content-rise {
  from {
    opacity: 0.56;
    transform: translateY(14px);
  }

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

@media (max-width: 1100px) {
  .path-landing .activation-hero.site-shell {
    min-height: calc(100svh + 720px);
    padding-top: 0;
  }

  .path-landing .activation-demo {
    top: auto;
    margin-top: 72px;
  }

  .path-landing .flow-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .path-landing .site-header {
    min-height: 74px;
  }

  .path-landing .activation-hero.site-shell {
    min-height: calc(100svh + 700px);
  }

  .path-landing .hero-copy {
    width: min(100% - 28px, 680px);
    padding: 96px 0 58px;
  }

  .path-landing .activation-hero h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(2.8rem, 12vw, 3.7rem);
    line-height: 0.94;
  }

  .path-landing .activation-hero h1 span:first-child {
    margin-bottom: 14px;
    font-size: 0.24em;
  }

  .path-landing .hero-actions {
    width: min(100%, 360px);
    margin-top: 24px;
  }

  .path-landing .activation-demo {
    top: auto;
    width: calc(100% - 28px);
    min-height: 0;
    margin: 54px auto 0;
  }

  .path-landing .demo-workspace {
    grid-template-columns: 1fr;
  }

  .path-landing .demo-sources {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .path-landing .demo-sources strong {
    grid-column: 1 / -1;
  }

  .scroll-path-story {
    opacity: 0.74;
  }

  .path-landing .section,
  .path-landing .private-section,
  .path-landing .download-section {
    padding-block: 108px;
  }

  .path-landing .audience-grid {
    gap: 68px;
  }

  .path-landing .flow-card,
  .path-landing .flow-card:nth-child(2),
  .path-landing .flow-card:nth-child(3) {
    min-height: auto;
    padding-block: 78px;
  }

  .path-landing [data-trace-section]::after {
    top: 72px;
    right: 14px;
    width: 30px;
  }
}

@media (max-width: 520px) {
  .path-landing .activation-hero.site-shell {
    min-height: calc(100svh + 760px);
  }

  .path-landing .activation-demo {
    min-height: 0;
  }

  .path-landing .demo-sources {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .path-landing .demo-sources strong {
    grid-column: 1 / -1;
  }

  .path-landing .dock-links,
  .path-landing .dock-divider {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wave-band,
  .story-wave-band {
    animation: none;
  }

  .hero-path {
    opacity: 1;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    animation: none;
  }

  .story-path {
    opacity: 1;
    stroke-dasharray: 1;
    stroke-dashoffset: 0 !important;
    animation: none;
  }

  .story-path-head {
    display: none;
  }

  .path-landing .dock-nav,
  .js .path-landing .reveal {
    transition: none;
  }

  .js .path-landing .reveal {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
