:root {
  color-scheme: dark light;
  --ink: #161918;
  --ink-deep: #101414;
  --ink-soft: #2d3433;
  --paper: #f6f6f1;
  --paper-soft: #ecebe4;
  --white: #ffffff;
  --muted: #717976;
  --muted-dark: #bdc6c2;
  --line: rgba(22, 25, 24, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --green: #d7ff67;
  --teal: #60d6c5;
  --amber: #e7b65e;
  --clay: #c86945;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: 0;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  z-index: 30;
  border-radius: 7px;
  padding: 10px 12px;
  background: var(--green);
  color: #111;
  font-weight: 850;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 17px 0;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
}

.brand-mark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-icon {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  object-fit: cover;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  opacity: 0.82;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 6px;
  list-style: none;
  opacity: 0.82;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  content: "⌄";
  font-size: 0.82rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.nav-menu[open] summary,
.nav-menu summary:hover,
.nav-menu summary:focus-visible {
  opacity: 1;
}

.nav-menu[open] summary::after {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: max-content;
  min-width: 190px;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 8px;
  background: rgba(16, 20, 20, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.nav-submenu a {
  border-radius: 6px;
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  padding: 7px 15px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: 700px;
  height: min(86svh, 780px);
  overflow: hidden;
  background: #101414;
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.42;
  background:
    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: 84px 84px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.74) contrast(1.08) brightness(0.48);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 20, 20, 0.88) 0%, rgba(16, 20, 20, 0.58) 48%, rgba(16, 20, 20, 0.98) 100%),
    linear-gradient(90deg, rgba(16, 20, 20, 0.86) 0%, rgba(16, 20, 20, 0.36) 62%, rgba(16, 20, 20, 0.84) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100% - 32px, var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: 116px 0 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 10px 8px 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #101414;
  font-weight: 850;
  line-height: 1.1;
}

.hero-pill span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: #101414;
  color: var(--white);
}

.eyebrow,
.card-kicker {
  color: #4f7f77;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow,
.download-section .eyebrow {
  margin: 26px 0 14px;
  color: var(--teal);
}

h1 {
  max-width: 1040px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 4.65rem;
  font-weight: 820;
  line-height: 1.02;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 3.25rem;
  font-weight: 820;
  line-height: 1.07;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero-lede {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.24rem;
  line-height: 1.58;
}

.hero-actions,
.download-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.left-actions {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  padding: 0 18px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: transparent;
  background: var(--white);
  color: #101414;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-primary.dark {
  background: var(--ink-deep);
  color: var(--white);
}

.button-secondary.dark {
  border-color: rgba(22, 25, 24, 0.14);
  background: var(--white);
  color: var(--ink);
  backdrop-filter: none;
}

.proof-strip {
  display: grid;
  width: 100%;
  margin: 0;
  padding: 42px max(16px, calc((100% - var(--max)) / 2)) 52px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  background: #101414;
  color: var(--white);
}

.proof-item {
  min-height: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 18px 0 0;
}

.proof-kicker {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-item strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.25;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.split-section,
.lab-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.section-copy {
  max-width: 780px;
}

.section-copy p:not(.eyebrow) {
  color: #696f6d;
  font-size: 1.08rem;
}

.section-copy.narrow {
  max-width: 700px;
}

.product-grid,
.link-grid,
.pipeline-grid,
.report-grid {
  display: grid;
  gap: 14px;
}

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

.product-card,
.link-card,
.pipeline-grid div,
.report-card {
  border: 1px solid rgba(22, 25, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(22, 25, 24, 0.08);
}

.product-card {
  min-height: 210px;
  padding: 22px;
}

.featured-card {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    var(--paper-soft);
}

.product-card p,
.link-card small,
.pipeline-grid p,
.report-card p,
.lab-feature p {
  color: #66706d;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tag-row span,
.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(22, 25, 24, 0.12);
  border-radius: 999px;
  padding: 4px 10px;
  color: #4d5754;
  font-size: 0.78rem;
  font-weight: 800;
}

.lab-section {
  width: 100%;
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  background: #e8eee9;
}

.lab-feature {
  margin-top: 30px;
  border: 1px solid rgba(22, 25, 24, 0.12);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 238, 233, 0.72)),
    var(--paper-soft);
  box-shadow: 0 24px 70px rgba(22, 25, 24, 0.12);
}

.lab-feature h3 {
  margin-top: 14px;
  font-size: 2rem;
}

.signal-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.signal-board div {
  min-height: 120px;
  border: 1px solid rgba(22, 25, 24, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: #101414;
  color: var(--white);
}

.signal-board strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.signal-board span {
  color: rgba(255, 255, 255, 0.68);
}

.link-grid {
  margin-top: 28px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.link-card {
  min-height: 190px;
  padding: 18px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(22, 25, 24, 0.12);
}

.link-card span {
  display: block;
  margin-bottom: 22px;
  color: #4f7f77;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.link-card strong,
.report-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.22;
}

.research-section,
.products-section,
.products-coming,
.use-section {
  border-top: 1px solid var(--line);
}

.product-feature {
  min-height: 520px;
}

.product-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 14px;
}

.product-heading img {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.product-heading small {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-heading h3 {
  margin: 2px 0 0;
}

.product-feature-cover {
  padding: 24px;
}

.research-feature-cover.product-feature-cover img {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  border-radius: 18px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(39, 24, 48, 0.2));
}

.products-coming {
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.research-feature {
  display: grid;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(22, 25, 24, 0.12);
  border-radius: 8px;
  background: var(--ink-deep);
  box-shadow: 0 24px 70px rgba(22, 25, 24, 0.14);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
}

.research-feature-copy {
  align-self: center;
  padding: 38px;
  color: var(--white);
}

.research-feature-copy .status-pill {
  border-color: rgba(215, 255, 103, 0.36);
  color: var(--green);
}

.research-feature-copy h3 {
  margin: 18px 0 12px;
  font-size: 2.3rem;
}

.research-feature-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
}

.research-feature-copy .button-primary.dark {
  background: var(--green);
  color: var(--ink-deep);
}

.research-feature-copy .button-secondary.dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.research-feature-cover {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  background: #d9dbdc;
}

.research-feature-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 220ms ease;
}

.research-feature-cover:hover img {
  transform: scale(1.025);
}

.research-feature-cover span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(16, 20, 20, 0.9);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
}

.collection-page {
  background: var(--paper);
}

.collection-page .site-header {
  position: relative;
  width: 100%;
  padding: 17px max(16px, calc((100% - var(--max)) / 2));
  background: var(--ink-deep);
}

.collection-hero {
  padding: 104px max(16px, calc((100% - var(--max)) / 2)) 78px;
  background:
    radial-gradient(circle at 82% 18%, rgba(96, 214, 197, 0.15), transparent 30%),
    var(--ink-deep);
  color: var(--white);
}

.collection-hero-inner {
  width: min(100%, var(--max));
}

.collection-hero h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.96;
}

.collection-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.12rem;
}

.collection-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.collection-meta span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
}

.story-grid {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  display: grid;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(22, 25, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(22, 25, 24, 0.08);
  grid-template-columns: 180px minmax(0, 1fr);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 66px rgba(22, 25, 24, 0.13);
}

.story-cover {
  height: 100%;
  min-height: 330px;
  background: #d9dbdc;
}

.story-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.story-card-copy {
  display: flex;
  padding: 24px;
  flex-direction: column;
}

.story-number {
  color: #4f7f77;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card h2 {
  margin: 13px 0 8px;
  font-size: 1.5rem;
  line-height: 1.12;
}

.story-byline {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.story-card-copy > p:not(.story-byline) {
  color: #616a67;
  font-size: 0.95rem;
}

.story-link {
  margin-top: auto;
  padding-top: 16px;
  color: #2f655c;
  font-size: 0.9rem;
  font-weight: 900;
}

.collection-note {
  border-top: 1px solid var(--line);
}

.coming-badge {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid rgba(22, 25, 24, 0.14);
  border-radius: 999px;
  padding: 9px 16px;
  background: var(--white);
  color: #4f7f77;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pipeline-grid {
  margin-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pipeline-grid div {
  padding: 20px;
}

.pipeline-grid span {
  display: block;
  margin-bottom: 34px;
  color: #8a6330;
  font-size: 0.8rem;
  font-weight: 900;
}

.download-section {
  width: min(100% - 32px, var(--max));
  margin: 28px auto 0;
  border-radius: 8px;
  padding: 80px 28px;
  background:
    linear-gradient(180deg, rgba(16, 20, 20, 0.76), rgba(16, 20, 20, 0.94)),
    url("assets/indie-workbench-hero.png") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.download-section h2,
.download-section p {
  margin-right: auto;
  margin-left: auto;
}

.download-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 34px 0 46px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #69716f;
}

.site-footer nav {
  color: #69716f;
}

.lab-page .site-header,
.guide-page .site-header,
.publisharc-page .site-header {
  color: rgba(255, 255, 255, 0.86);
}

.publisharc-page .page-hero::before {
  background:
    radial-gradient(circle at 78% 22%, rgba(96, 214, 197, 0.28), transparent 30%),
    radial-gradient(circle at 18% 76%, rgba(215, 255, 103, 0.12), transparent 34%),
    linear-gradient(135deg, #101414, #1b2523 58%, #101414);
}

.publisharc-page .page-hero-content {
  padding-bottom: 110px;
}

.publisharc-page .page-hero h1 {
  max-width: 820px;
}

.publisharc-page .page-hero h1 span {
  color: var(--green);
}

.publisharc-page .feature-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.publisharc-page .feature-list li {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.publisharc-page .feature-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.publisharc-page .feature-list p,
.policy-content p,
.policy-content li {
  color: #66706d;
}

.policy-content {
  width: min(100% - 32px, 820px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.policy-content h2 {
  margin-top: 42px;
  font-size: 1.65rem;
}

.policy-content a {
  color: #2e7167;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: #101414;
  color: var(--white);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 20, 20, 0.78), rgba(16, 20, 20, 0.96)),
    url("assets/indie-workbench-hero.png") center / cover no-repeat;
  opacity: 0.9;
}

.lab-page .page-hero::before {
  background:
    linear-gradient(180deg, rgba(16, 20, 20, 0.78), rgba(16, 20, 20, 0.96)),
    url("../../assets/indie-workbench-hero.png") center / cover no-repeat;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 156px 0 86px;
}

.page-hero h1 {
  max-width: 960px;
  font-size: 4.1rem;
}

.page-lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.18rem;
}

.lab-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.method-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.method-list div {
  border: 1px solid rgba(22, 25, 24, 0.1);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.method-list strong {
  display: block;
  margin-bottom: 6px;
}

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

.report-card {
  min-height: 180px;
  padding: 20px;
}

.report-card .metric {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.report-card .metric span {
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--paper-soft);
  color: #4d5754;
  font-size: 0.78rem;
  font-weight: 800;
}

.roadmap {
  counter-reset: item;
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap li {
  counter-increment: item;
  border-top: 1px solid var(--line);
  padding: 18px 0 6px 46px;
  position: relative;
}

.roadmap li::before {
  position: absolute;
  left: 0;
  top: 18px;
  content: counter(item, decimal-leading-zero);
  color: #8a6330;
  font-weight: 900;
}

.reveal-ready .section,
.reveal-ready .proof-item,
.reveal-ready .product-card,
.reveal-ready .link-card,
.reveal-ready .download-section,
.reveal-ready .method-list div,
.reveal-ready .report-card,
.reveal-ready .pipeline-grid div,
.reveal-ready .lab-feature {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms ease, transform 640ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 16px;
  }

  .header-cta {
    justify-self: start;
  }

  h1,
  .page-hero h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .split-section,
  .lab-feature,
  .lab-panel {
    grid-template-columns: 1fr;
  }

  .publisharc-page .feature-list {
    grid-template-columns: 1fr;
  }

  .research-feature,
  .product-feature,
  .products-coming {
    align-items: flex-start;
    justify-content: center;
  }

  .research-feature {
    grid-template-columns: 1fr;
  }

  .research-feature-cover {
    min-height: 520px;
  }

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

@media (max-width: 720px) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
  }

  .hero-actions,
  .left-actions {
    justify-content: flex-start;
  }

  h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .proof-strip,
  .product-grid,
  .signal-board,
  .link-grid,
  .pipeline-grid,
  .report-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    width: fit-content;
  }

  .nav-submenu {
    left: 0;
    transform: none;
  }

  .story-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .story-cover {
    min-height: 310px;
  }

  .story-card-copy {
    padding: 19px;
  }

  .section {
    padding: 72px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
