:root {
  --color-bone-white: #fffdf9;
  --color-obsidian: #101010;
  --color-graphite-veil: #495764;
  --color-ash-border: #403f3f;
  --color-pure-black: #000;
  --font-neue-montreal:
    "Neue Montreal", "General Sans", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page-gutter: clamp(20px, 3vw, 48px);
  --page-max-width: 1440px;
  --ease-focus: cubic-bezier(0.52, 0.01, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--color-obsidian);
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--color-bone-white);
  background: var(--color-obsidian);
  font-family: var(--font-neue-montreal);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 999;
  content: "";
  background: var(--color-obsidian);
  pointer-events: none;
  transform-origin: top;
  animation: page-focus 1.05s 0.12s var(--ease-focus) both;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--color-pure-black);
  background: var(--color-bone-white);
}

:focus-visible {
  outline: 2px solid var(--color-bone-white);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--color-obsidian);
  background: var(--color-bone-white);
  transform: translateY(-150%);
  transition: transform 0.3s var(--ease-focus);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, var(--page-max-width));
  padding: 24px var(--page-gutter);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition:
    padding 0.5s var(--ease-focus),
    background-color 0.5s var(--ease-focus);
}

.site-header.is-scrolled {
  padding-top: 17px;
  padding-bottom: 17px;
  background-color: rgba(16, 16, 16, 0.82);
  backdrop-filter: blur(12px);
}

.wordmark {
  display: flex;
  justify-self: start;
  width: max-content;
}

.wordmark-image {
  display: block;
  width: auto;
  height: 36px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  color: var(--color-bone-white);
  font-size: 11px;
  letter-spacing: 0.055em;
}

.nav-slide {
  position: relative;
  display: inline-grid;
  height: 1.25em;
  overflow: hidden;
  line-height: 1.25;
}

.nav-slide-track {
  display: grid;
  transition: transform 0.5s var(--ease-focus);
}

.nav-slide-track > span {
  display: block;
  height: 1.25em;
}

.nav-slide:hover .nav-slide-track,
.nav-slide:focus-visible .nav-slide-track {
  transform: translateY(-50%);
}

.nav-cta {
  height: auto;
  padding: 10px 15px;
  border: 1px solid var(--color-bone-white);
  border-radius: 5px;
  transition:
    color 0.5s var(--ease-focus),
    background 0.5s var(--ease-focus);
}

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-self: end;
}

.nav-login {
  padding: 10px 2px;
  color: var(--color-bone-white);
  font-size: 11px;
  letter-spacing: 0.055em;
}

.nav-login::after {
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-focus);
}

.nav-login:hover::after,
.nav-login:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta:hover {
  color: var(--color-obsidian);
  background: var(--color-bone-white);
}

.section-shell {
  width: min(100%, var(--page-max-width));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.hero {
  position: relative;
  min-height: 220svh;
  background: var(--color-obsidian);
}

.hero-stage::after {
  position: absolute;
  right: var(--page-gutter);
  bottom: 0;
  left: var(--page-gutter);
  z-index: 5;
  height: 1px;
  content: "";
  background: var(--color-ash-border);
}

.hero-stage {
  --hero-exit: 0;
  --hero-enter: 0;
  --hero-settle: 0;
  --hero-title-one-x: 0vw;
  --hero-title-one-y: 0vh;
  --hero-title-two-x: 0vw;
  --hero-title-two-y: 0vh;
  --hero-copy-y: 0vh;
  --hero-artifact-x: 0vw;
  --hero-artifact-y: 0vh;
  --hero-artifact-rotate: 0deg;
  --hero-artifact-scale: 1;
  --hero-enter-y: 14vh;
  --hero-shift-y: 0vh;
  position: sticky;
  top: 0;
  isolation: isolate;
  height: 100svh;
  min-height: 720px;
  overflow: clip;
  background: var(--color-obsidian);
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: min(100%, var(--page-max-width));
  margin-inline: auto;
  padding: clamp(144px, 18svh, 176px) var(--page-gutter) 72px;
  pointer-events: none;
}

.hero-title {
  max-width: 1140px;
  margin: 0;
  font-size: clamp(68px, 9.45vw, 136px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-line {
  display: block;
}

.hero-line:first-child {
  opacity: calc(1 - var(--hero-exit));
  transform: translate3d(var(--hero-title-one-x), var(--hero-title-one-y), 0);
}

.hero-line:nth-child(2) {
  opacity: calc(1 - var(--hero-exit));
  transform: translate3d(var(--hero-title-two-x), var(--hero-title-two-y), 0);
}

.hero-line--indent {
  padding-left: clamp(0px, 7.2vw, 104px);
}

.hero-bottom {
  display: grid;
  gap: 24px;
  justify-items: start;
  width: min(100%, 540px);
  margin-top: 48px;
  margin-left: clamp(0px, 7.2vw, 104px);
  opacity: calc(1 - var(--hero-exit));
  pointer-events: auto;
  transform: translate3d(0, var(--hero-copy-y), 0);
}

.hero-bottom p {
  max-width: 500px;
  margin: 0;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-bone-white);
  font-size: 14px;
  letter-spacing: 0;
  transition: gap 0.5s var(--ease-focus);
}

.text-link:hover {
  gap: 28px;
}

.hero-artifact {
  position: absolute;
  top: 48%;
  left: 74%;
  z-index: 2;
  width: min(66vw, 860px);
  aspect-ratio: 1717 / 916;
  mix-blend-mode: lighten;
  opacity: calc(1 - var(--hero-settle) * 0.16);
  pointer-events: none;
  transform: translate(-50%, -50%)
    translate3d(var(--hero-artifact-x), var(--hero-artifact-y), 0)
    rotate(var(--hero-artifact-rotate)) scale(var(--hero-artifact-scale));
  will-change: transform;
}

.hero-artifact-media,
.hero-artifact-frame,
.hero-sculpture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-artifact-media {
  position: relative;
  opacity: 0;
  animation: prism-focus 1.4s 0.3s var(--ease-focus) forwards;
}

.hero-artifact-frame {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
}

.hero-sculpture {
  object-fit: contain;
}

.hero-shift {
  position: absolute;
  top: 44%;
  left: max(
    var(--page-gutter),
    calc((100vw - var(--page-max-width)) / 2 + var(--page-gutter))
  );
  z-index: 4;
  width: min(calc(100vw - var(--page-gutter) * 2), 1120px);
  opacity: var(--hero-enter);
  pointer-events: none;
  transform: translate3d(0, calc(var(--hero-enter-y) + var(--hero-shift-y)), 0);
}

.hero-shift-title {
  margin: 0;
  font-size: clamp(58px, 7.1vw, 102px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-shift-title span {
  display: block;
}

.hero-shift-title span:last-child {
  padding-left: clamp(0px, 7vw, 100px);
}

.hero-scroll-marker {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 5;
  width: 9px;
  height: 9px;
  border: 1px solid var(--color-bone-white);
  border-radius: 50%;
  opacity: calc(0.72 - var(--hero-exit));
  transform: translateX(-50%);
}

.product {
  padding-top: clamp(116px, 12vw, 176px);
  padding-bottom: clamp(96px, 10vw, 144px);
}

.product-heading h2 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.product-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--color-bone-white);
  font-size: 18px;
  line-height: 1.55;
}

.product-stories {
  display: grid;
  gap: clamp(48px, 6vw, 88px);
  padding-top: clamp(80px, 9vw, 128px);
}

.product-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.7fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  min-height: min(78svh, 800px);
  scroll-margin-top: 104px;
}

.product-story--reverse {
  grid-template-columns: minmax(0, 1.7fr) minmax(220px, 0.62fr);
}

.product-story--reverse .product-story-copy {
  grid-column: 2;
}

.product-story--reverse .product-shot {
  grid-row: 1;
  grid-column: 1;
}

.product-story-copy {
  align-self: center;
  max-width: 390px;
}

.product-story-copy h3 {
  margin: 0;
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.product-story-copy > p {
  margin: 24px 0 0;
  color: var(--color-bone-white);
  font-size: 17px;
  line-height: 1.55;
}

.product-shot {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d7d7d2;
  border-radius: 15px;
  color: #171817;
  background: #f5f5f1;
  font-family: var(--font-neue-montreal);
  font-weight: 400;
  transform: translate3d(0, var(--shot-drift, 0px), 0);
  will-change: transform;
}

.product-shot button {
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  pointer-events: none;
}

/* Product shots are real screenshots of the signed-in app, framed in a plain
   browser chrome so they read as software rather than illustration. */
.product-shot {
  margin: 0;
  background: #fff;
  box-shadow: 0 24px 60px rgb(16 16 16 / 8%);
}

.product-shot-chrome {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid #e6e6e2;
  background: #f6f6f3;
}

.product-shot-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8d8d2;
}

.product-shot picture,
.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.mock-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid #deded9;
  color: #6e706d;
  background: #fbfbf8;
  font-size: 10px;
  letter-spacing: 0.01em;
}

.mock-topbar > :last-child {
  justify-self: end;
}

.mock-brand {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #171817;
  font-size: 12px;
}

.mock-brand-mark {
  width: 14px;
  height: 14px;
  background:
    linear-gradient(135deg, transparent 45%, #171817 46% 54%, transparent 55%),
    linear-gradient(45deg, transparent 45%, #171817 46% 54%, transparent 55%);
  border: 1px solid #171817;
  transform: rotate(45deg);
}

.mock-market,
.mock-period {
  padding: 6px 9px;
  border: 1px solid #d6d6d1;
  border-radius: 5px;
  color: #555753;
  background: #fff;
}

.mock-status {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #356248;
}

.mock-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42a86c;
}

.mock-workspace {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 480px;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 22px 12px;
  border-right: 1px solid #deded9;
  background: #eeeee9;
}

.mock-sidebar span {
  padding: 9px 10px;
  border-radius: 5px;
  color: #777873;
  font-size: 10px;
}

.mock-sidebar span.is-active {
  color: #171817;
  background: #fff;
}

.mock-main {
  min-width: 0;
  padding: 26px;
}

.mock-page-heading {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
}

.mock-page-heading p,
.review-heading p {
  margin: 0 0 7px;
  color: #7a7c77;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mock-page-heading h4 {
  margin: 0;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.mock-page-heading button,
.next-action button {
  flex: none;
  padding: 8px 11px;
  border-radius: 5px;
  color: #fff;
  background: #171817;
  font-size: 9px;
}

.mock-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  border: 1px solid #deded9;
  border-radius: 8px;
  background: #fff;
}

.mock-summary span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 15px;
  color: #8a8b87;
  font-size: 8px;
}

.mock-summary span + span {
  border-left: 1px solid #e5e5e0;
}

.mock-summary strong {
  color: #171817;
  font-size: 16px;
  font-weight: 400;
}

.opportunity-list {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid #deded9;
  border-radius: 8px;
  background: #fff;
}

.opportunity-row {
  display: grid;
  grid-template-columns: 24px minmax(160px, 1fr) auto 55px;
  gap: 10px;
  align-items: center;
  min-height: 61px;
  padding: 10px 13px;
  border-bottom: 1px solid #e8e8e3;
}

.opportunity-row:last-child {
  border-bottom: 0;
}

.opportunity-row.is-selected {
  background: #f1f3ff;
}

.opportunity-rank {
  color: #a1a29e;
  font-size: 8px;
}

.opportunity-row > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.opportunity-row strong {
  overflow: hidden;
  font-size: 10px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.opportunity-row > div span {
  overflow: hidden;
  color: #898a86;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intent-pill {
  padding: 5px 7px;
  border-radius: 999px;
  color: #22613d;
  background: #e5f4e9;
  font-size: 7px;
}

.intent-pill--medium {
  color: #765719;
  background: #f7eed7;
}

.row-action {
  color: #4967ff;
  font-size: 8px;
  text-align: right;
}

.mock-explanation {
  display: flex;
  gap: 11px;
  margin-top: 16px;
  padding: 14px 15px;
  border: 1px solid #d9dcf1;
  border-radius: 8px;
  background: #f1f3ff;
}

.explanation-dot {
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 2px;
  border-radius: 50%;
  background: #4967ff;
}

.mock-explanation strong {
  display: block;
  font-size: 9px;
  font-weight: 400;
}

.mock-explanation p {
  margin: 5px 0 0;
  color: #6c6e79;
  font-size: 8px;
  line-height: 1.45;
}

.review-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(205px, 0.6fr);
  min-height: 480px;
}

.draft-panel {
  min-width: 0;
  padding: 24px 30px 28px;
  border-right: 1px solid #deded9;
  background: #fff;
}

.draft-toolbar {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e3;
  color: #92938f;
  font-size: 8px;
}

.draft-category {
  margin: 36px 0 12px;
  color: #4967ff;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.draft-panel h4 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.draft-dek {
  max-width: 480px;
  margin: 14px 0 0;
  color: #686a66;
  font-size: 10px;
  line-height: 1.5;
}

.draft-rule {
  width: 32px;
  height: 1px;
  margin: 24px 0 20px;
  background: #171817;
}

.draft-panel h5 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 400;
}

.draft-copy-line {
  width: 82%;
  height: 5px;
  margin: 0 0 8px;
  border-radius: 999px;
  background: #e6e6e1;
}

.draft-copy-line--long {
  width: 100%;
}

.draft-copy-line--short {
  width: 62%;
}

.draft-callout {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 25px;
  padding: 15px;
  border-left: 2px solid #4967ff;
  background: #f2f3fb;
}

.draft-callout span {
  color: #767985;
  font-size: 8px;
}

.draft-callout strong {
  font-size: 10px;
  font-weight: 400;
}

.review-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 20px 20px;
  background: #f3f3ef;
}

.review-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #deded9;
}

.review-heading span {
  color: #3c7152;
  font-size: 8px;
}

.review-check {
  display: flex;
  gap: 9px;
  padding: 14px 0;
  border-bottom: 1px solid #deded9;
}

.review-check i {
  display: grid;
  flex: none;
  place-items: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: #fff;
  background: #3f9e67;
  font-size: 8px;
  font-style: normal;
}

.review-check div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-check strong {
  font-size: 9px;
  font-weight: 400;
}

.review-check span {
  color: #82837f;
  font-size: 7px;
}

.review-note {
  margin-top: 18px;
  padding: 13px;
  border: 1px solid #eadab7;
  border-radius: 7px;
  background: #fbf5e8;
}

.review-note > span {
  color: #866528;
  font-size: 8px;
}

.review-note p {
  margin: 7px 0 0;
  color: #766d5b;
  font-size: 8px;
  line-height: 1.45;
}

.review-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
}

.review-actions button {
  padding: 9px 8px;
  border: 1px solid #cecec9;
  border-radius: 5px;
  background: #fff;
  font-size: 8px;
}

.review-actions button.is-primary {
  border-color: #171817;
  color: #fff;
  background: #171817;
}

.performance-main {
  padding-bottom: 24px;
}

.confidence-label {
  padding: 6px 8px;
  border-radius: 999px;
  color: #765719;
  background: #f7eed7;
  font-size: 8px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.metric-grid > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid #deded9;
  border-radius: 8px;
  background: #fff;
}

.metric-grid span {
  overflow: hidden;
  color: #7d7e7a;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-grid strong {
  margin-top: 7px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.metric-grid small {
  margin-top: 5px;
  color: #4967ff;
  font-size: 7px;
}

.performance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(175px, 0.72fr);
  gap: 10px;
  margin-top: 10px;
}

.chart-card,
.next-action {
  border: 1px solid #deded9;
  border-radius: 8px;
  background: #fff;
}

.chart-card {
  min-width: 0;
  padding: 15px 15px 12px;
}

.chart-heading {
  display: flex;
  justify-content: space-between;
}

.chart-heading > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chart-heading span {
  color: #7d7e7a;
  font-size: 8px;
}

.chart-heading strong {
  font-size: 11px;
  font-weight: 400;
}

.chart-key {
  display: flex;
  gap: 5px;
  align-items: center;
}

.chart-key i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4967ff;
}

.chart {
  position: relative;
  height: 175px;
  margin-top: 12px;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: #edede8;
}

.chart-line--one {
  top: 24%;
}

.chart-line--two {
  top: 50%;
}

.chart-line--three {
  top: 76%;
}

.chart svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 145px;
}

.chart-area {
  fill: url(#chart-fill);
}

.chart-path {
  fill: none;
  stroke: #4967ff;
  stroke-linecap: round;
  stroke-width: 2;
}

.chart-axis {
  display: flex;
  justify-content: space-between;
  color: #a0a19d;
  font-size: 7px;
}

.next-action {
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.next-action > span,
.next-action > div span {
  color: #7d7e7a;
  font-size: 8px;
}

.next-action h5 {
  margin: 14px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.next-action > p {
  margin: 10px 0 0;
  color: #747671;
  font-size: 8px;
  line-height: 1.5;
}

.next-action > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 14px;
  padding: 11px;
  border-left: 2px solid #4967ff;
  background: #f2f3fb;
}

.next-action > div strong {
  font-size: 9px;
  font-weight: 400;
  line-height: 1.35;
}

.next-action button {
  width: 100%;
  margin-top: auto;
}

.ollie-ui-shell {
  --ui-paper: #f4f4f0;
  --ui-canvas: #fafaf7;
  --ui-white: #fff;
  --ui-ink: #171815;
  --ui-muted: #6f716a;
  --ui-subtle: #9a9b95;
  --ui-line: #dedfd8;
  --ui-line-strong: #c9cbc3;
  --ui-sidebar: #171815;
  --ui-sidebar-raised: #242521;
  --ui-sidebar-line: #30312d;
  --ui-accent: #3853d8;
  --ui-accent-soft: #eef0fc;
  --ui-success: #2f8354;
  --ui-success-soft: #e8f3ec;
  --ui-warning: #8a6726;
  --ui-warning-soft: #faf2df;
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  min-height: 540px;
  background: var(--ui-paper);
  font-variant-numeric: tabular-nums;
}

.ollie-ui-shell *,
.ollie-ui-shell *::before,
.ollie-ui-shell *::after {
  box-sizing: border-box;
}

.ollie-ui-nav {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 17px 13px 14px;
  color: #b7b9b1;
  background: var(--ui-sidebar);
}

.ui-nav-lockup {
  display: flex;
  align-items: center;
  min-height: 24px;
  color: #f7f7f2;
}

.ui-nav-lockup > strong {
  margin-left: 9px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.ui-nav-lockup > small {
  margin-left: auto;
  padding: 3px 5px;
  border: 1px solid var(--ui-sidebar-line);
  border-radius: 4px;
  color: #7e8078;
  font-size: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ui-ollie-mark {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1px solid #f7f7f2;
  transform: rotate(45deg);
}

.ui-ollie-mark::before,
.ui-ollie-mark::after {
  position: absolute;
  content: "";
  background: #f7f7f2;
}

.ui-ollie-mark::before {
  top: 6px;
  left: 1px;
  width: 11px;
  height: 1px;
}

.ui-ollie-mark::after {
  top: 1px;
  left: 6px;
  width: 1px;
  height: 11px;
}

.ui-project-switcher {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  gap: 9px;
  align-items: center;
  margin-top: 24px;
  padding: 9px;
  border: 1px solid var(--ui-sidebar-line);
  border-radius: 7px;
  background: var(--ui-sidebar-raised);
}

.ui-project-monogram {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 6px;
  color: var(--ui-ink);
  background: #f0f0eb;
  font-size: 10px;
}

.ui-project-switcher > span:nth-child(2),
.ui-nav-foot > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ui-project-switcher strong,
.ui-nav-foot strong {
  color: #f0f0eb;
  font-size: 9px;
  font-weight: 400;
}

.ui-project-switcher small,
.ui-nav-foot small {
  margin-top: 2px;
  overflow: hidden;
  color: #777970;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-project-switcher b {
  color: #777970;
  font-size: 9px;
  font-weight: 400;
}

.ui-nav-caption {
  margin: 26px 9px 8px;
  color: #666860;
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ui-nav-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ui-nav-item {
  position: relative;
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 32px;
  padding: 0 9px;
  border-radius: 6px;
  color: #8e9087;
  font-size: 9px;
}

.ui-nav-item.is-active {
  color: #f5f5ef;
  background: #2b2c28;
}

.ui-nav-item > b {
  display: grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  margin-left: auto;
  border: 1px solid var(--ui-sidebar-line);
  border-radius: 999px;
  color: #9b9d94;
  font-size: 7px;
  font-weight: 400;
}

.ui-icon {
  position: relative;
  display: block;
  flex: none;
  width: 13px;
  height: 13px;
  color: currentColor;
}

.ui-icon--home {
  border: 1px solid currentColor;
  border-radius: 50%;
}

.ui-icon--home::after {
  position: absolute;
  inset: 3px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.ui-icon--spark::before,
.ui-icon--spark::after {
  position: absolute;
  top: 1px;
  left: 6px;
  width: 1px;
  height: 11px;
  content: "";
  background: currentColor;
}

.ui-icon--spark::after {
  transform: rotate(90deg);
}

.ui-icon--doc {
  border: 1px solid currentColor;
  border-radius: 2px;
}

.ui-icon--doc::after {
  position: absolute;
  right: 2px;
  bottom: 3px;
  left: 2px;
  height: 1px;
  content: "";
  background: currentColor;
  box-shadow: 0 -3px 0 currentColor;
}

.ui-icon--chart {
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.ui-icon--chart::after {
  position: absolute;
  right: 1px;
  bottom: 3px;
  width: 9px;
  height: 6px;
  border-top: 1px solid currentColor;
  content: "";
  transform: skewY(-28deg);
}

.ui-nav-foot {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding: 11px 9px;
  border-top: 1px solid var(--ui-sidebar-line);
}

.ui-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ab77d;
  box-shadow: 0 0 0 3px rgb(90 183 125 / 10%);
}

.ollie-ui-app {
  min-width: 0;
  color: var(--ui-ink);
  background: var(--ui-canvas);
}

.ui-app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  padding: 0 20px;
  border-bottom: 1px solid var(--ui-line);
  color: var(--ui-muted);
  background: rgb(255 255 255 / 72%);
  font-size: 8px;
}

.ui-app-topbar > div,
.ui-topbar-actions {
  display: flex;
  align-items: center;
}

.ui-app-topbar i {
  margin: 0 8px;
  color: var(--ui-line-strong);
  font-style: normal;
}

.ui-app-topbar strong {
  color: var(--ui-ink);
  font-weight: 400;
}

.ui-topbar-actions {
  gap: 11px;
}

.ui-avatar {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--ui-line-strong);
  border-radius: 50%;
  color: var(--ui-ink);
  background: #ecece7;
  font-size: 7px;
}

.ui-date-control {
  padding: 6px 8px;
  border: 1px solid var(--ui-line);
  border-radius: 5px;
  color: var(--ui-ink);
  background: var(--ui-white);
}

.ui-page {
  padding: 20px 22px 22px;
}

.ui-page-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.ui-page-head > div:first-child {
  min-width: 0;
}

.ui-page-head p {
  margin: 0 0 6px;
  color: var(--ui-subtle);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ui-page-head h4 {
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.ui-title-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
  color: var(--ui-muted);
  font-size: 8px;
}

.ui-title-meta strong {
  color: var(--ui-ink);
  font-weight: 400;
}

.ui-primary-action,
.ui-secondary-action {
  display: inline-flex;
  flex: none;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--ui-ink);
  border-radius: 5px;
  color: var(--ui-white);
  background: var(--ui-ink);
  font-size: 8px;
}

.ui-primary-action b {
  font-size: 11px;
  font-weight: 400;
}

.ui-secondary-action {
  border-color: var(--ui-line-strong);
  color: var(--ui-ink);
  background: var(--ui-white);
}

.ui-strategy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(190px, 0.72fr);
  gap: 11px;
  margin-top: 18px;
}

.ui-opportunity-panel,
.ui-evidence-rail,
.ui-chart-panel,
.ui-performance-rail {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ui-line);
  border-radius: 9px;
  background: var(--ui-white);
}

.ui-panel-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px 58px;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-bottom: 1px solid var(--ui-line);
  color: var(--ui-subtle);
  background: #f6f6f2;
  font-size: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ui-panel-heading span:not(:first-child) {
  text-align: right;
}

.ui-opportunity-row {
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr) 52px 58px;
  gap: 8px;
  align-items: center;
  min-height: 64px;
  padding: 8px 12px;
  border-bottom: 1px solid #ecece7;
}

.ui-opportunity-row.is-selected {
  background: var(--ui-accent-soft);
}

.ui-row-index {
  align-self: start;
  padding-top: 3px;
  color: var(--ui-subtle);
  font-size: 7px;
}

.ui-row-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ui-row-copy strong {
  overflow: hidden;
  font-size: 9.5px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-row-copy small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--ui-muted);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-fit-bar {
  width: min(100%, 130px);
  height: 2px;
  margin-top: 8px;
  overflow: hidden;
  background: #e2e3dd;
}

.ui-fit-bar i {
  display: block;
  width: var(--fit);
  height: 100%;
  background: var(--ui-accent);
}

.ui-fit-score {
  color: var(--ui-muted);
  font-size: 7px;
  text-align: right;
}

.ui-fit-score strong {
  color: var(--ui-ink);
  font-size: 11px;
  font-weight: 400;
}

.ui-decision {
  justify-self: end;
  min-width: 46px;
  padding: 5px 7px;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  color: var(--ui-muted);
  background: var(--ui-white);
  font-size: 7px;
  text-align: center;
}

.ui-decision.is-selected {
  border-color: #cdd3f3;
  color: var(--ui-accent);
  background: #f8f9ff;
}

.ui-list-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 31px;
  padding: 0 12px;
  color: var(--ui-muted);
  background: #fbfbf8;
  font-size: 7px;
}

.ui-list-foot span:last-child {
  color: var(--ui-ink);
}

.ui-evidence-rail {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: #f1f2ed;
}

.ui-evidence-head {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  color: var(--ui-subtle);
  font-size: 7px;
  text-transform: uppercase;
}

.ui-evidence-head strong {
  color: var(--ui-success);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.ui-evidence-rail h5 {
  margin: 15px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.ui-evidence-list {
  position: relative;
  margin-top: 15px;
}

.ui-evidence-list::before {
  position: absolute;
  top: 5px;
  bottom: 13px;
  left: 8px;
  width: 1px;
  content: "";
  background: var(--ui-line-strong);
}

.ui-evidence-list > div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 9px;
  margin-top: 12px;
}

.ui-evidence-list > div:first-child {
  margin-top: 0;
}

.ui-evidence-list > div > span {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid var(--ui-line-strong);
  border-radius: 50%;
  color: var(--ui-muted);
  background: #f1f2ed;
  font-size: 6px;
}

.ui-evidence-list p {
  margin: 1px 0 0;
  color: var(--ui-muted);
  font-size: 7px;
  line-height: 1.35;
}

.ui-evidence-list p strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ui-ink);
  font-size: 8px;
  font-weight: 400;
}

.ui-approval-note {
  margin-top: auto;
  padding-top: 11px;
  border-top: 1px solid var(--ui-line);
  color: var(--ui-muted);
  font-size: 7px;
  line-height: 1.35;
}

.ui-page--review {
  padding: 0;
}

.ui-review-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--ui-line);
  background: var(--ui-white);
}

.ui-review-bar > div {
  display: flex;
  gap: 7px;
}

.ui-ready-state {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--ui-success);
  font-size: 8px;
}

.ui-ready-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ui-success);
  box-shadow: 0 0 0 3px var(--ui-success-soft);
}

.ui-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  min-height: 446px;
}

.ui-document {
  min-width: 0;
  background: var(--ui-white);
}

.ui-editor-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border-bottom: 1px solid var(--ui-line);
  color: var(--ui-muted);
  font-size: 7px;
}

.ui-editor-toolbar > i {
  width: 1px;
  height: 13px;
  background: var(--ui-line);
}

.ui-editor-toolbar > strong {
  color: var(--ui-ink);
  font-size: 8px;
  font-weight: 400;
}

.ui-editor-toolbar > em {
  color: var(--ui-ink);
}

.ui-word-count {
  margin-left: auto;
}

.ui-document-body {
  max-width: 570px;
  margin-inline: auto;
  padding: 24px 34px 22px;
}

.ui-document-category {
  margin: 0 0 10px;
  color: var(--ui-accent);
  font-size: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ui-document-body h4 {
  max-width: 500px;
  margin: 0;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.045em;
}

.ui-document-dek {
  max-width: 500px;
  margin: 11px 0 0;
  color: var(--ui-muted);
  font-size: 9px;
  line-height: 1.45;
}

.ui-document-rule {
  width: 26px;
  height: 1px;
  margin: 18px 0 15px;
  background: var(--ui-ink);
}

.ui-document-body h5 {
  margin: 0 0 9px;
  font-size: 11px;
  font-weight: 400;
}

.ui-document-body > p:not(.ui-document-category, .ui-document-dek) {
  position: relative;
  max-width: 510px;
  margin: 8px 0 0;
  color: #555750;
  font-size: 8px;
  line-height: 1.55;
}

.ui-checked-claim {
  padding: 7px 9px;
  background: var(--ui-accent-soft);
}

.ui-checked-claim sup {
  color: var(--ui-accent);
}

.ui-checked-claim > span {
  position: absolute;
  top: -8px;
  right: 7px;
  padding: 3px 5px;
  border: 1px solid #cbd2f5;
  border-radius: 999px;
  color: var(--ui-accent);
  background: var(--ui-white);
  font-size: 6px;
}

.ui-article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 10px;
  align-items: end;
  margin-top: 15px;
  padding: 11px 12px;
  border: 1px solid var(--ui-line);
  border-radius: 7px;
  background: #f7f7f3;
}

.ui-article-cta > span {
  grid-column: 1 / -1;
  color: var(--ui-subtle);
  font-size: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ui-article-cta strong {
  font-size: 9px;
  font-weight: 400;
}

.ui-article-cta i {
  color: var(--ui-accent);
  font-size: 7px;
  font-style: normal;
}

.ui-review-rail {
  min-width: 0;
  padding: 18px 17px;
  border-left: 1px solid var(--ui-line);
  background: #f1f2ed;
}

.ui-review-score {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.ui-review-score > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ui-review-score small {
  color: var(--ui-subtle);
  font-size: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ui-review-score strong {
  font-size: 11px;
  font-weight: 400;
}

.ui-review-score > b {
  color: var(--ui-success);
  font-size: 12px;
  font-weight: 400;
}

.ui-progress-track {
  display: block;
  height: 3px;
  margin-top: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe1da;
}

.ui-progress-track i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ui-success);
}

.ui-review-checks {
  margin-top: 10px;
}

.ui-review-checks > div {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--ui-line);
}

.ui-review-checks > div > i {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: var(--ui-white);
  background: var(--ui-success);
  font-size: 7px;
  font-style: normal;
}

.ui-review-checks > div > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ui-review-checks strong,
.ui-source-stack strong {
  font-size: 8px;
  font-weight: 400;
}

.ui-review-checks small,
.ui-source-stack small {
  color: var(--ui-muted);
  font-size: 6px;
}

.ui-source-stack {
  margin-top: 13px;
}

.ui-source-stack > span,
.ui-risk-note > span {
  display: block;
  color: var(--ui-subtle);
  font-size: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ui-source-stack > div {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.ui-source-stack > div > b {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--ui-line-strong);
  border-radius: 4px;
  font-size: 7px;
  font-weight: 400;
}

.ui-source-stack p {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
}

.ui-risk-note {
  margin-top: 14px;
  padding: 10px;
  border: 1px solid #e5d7b7;
  border-radius: 7px;
  color: #756a52;
  background: var(--ui-warning-soft);
  font-size: 7px;
  line-height: 1.4;
}

.ui-risk-note > span {
  margin-bottom: 5px;
  color: var(--ui-warning);
}

.ui-early-signal {
  padding: 4px 6px;
  border-radius: 999px;
  color: var(--ui-warning);
  background: var(--ui-warning-soft);
  font-size: 7px;
}

.ui-funnel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr) auto);
  align-items: center;
  margin-top: 17px;
  padding: 12px 14px;
  border: 1px solid var(--ui-line);
  border-radius: 9px;
  background: var(--ui-white);
}

.ui-funnel > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ui-funnel > div > span {
  overflow: hidden;
  color: var(--ui-muted);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-funnel > div > strong {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.ui-funnel > div > small {
  margin-top: 3px;
  color: var(--ui-subtle);
  font-size: 6px;
}

.ui-funnel > div.is-primary strong,
.ui-funnel > div.is-primary small {
  color: var(--ui-accent);
}

.ui-funnel > i {
  margin: 0 10px;
  color: var(--ui-line-strong);
  font-size: 10px;
  font-style: normal;
}

.ui-performance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(190px, 0.65fr);
  gap: 11px;
  margin-top: 11px;
}

.ui-chart-panel {
  padding: 13px 14px 10px;
}

.ui-chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.ui-chart-head > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ui-chart-head small,
.ui-rail-label {
  color: var(--ui-subtle);
  font-size: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ui-chart-head strong {
  font-size: 10px;
  font-weight: 400;
}

.ui-chart-key {
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--ui-muted);
  font-size: 7px;
}

.ui-chart-key i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ui-accent);
}

.ui-chart-canvas {
  position: relative;
  height: 183px;
  margin-top: 8px;
  overflow: hidden;
}

.ui-gridline {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: #ecece7;
}

.ui-gridline--one {
  top: 23%;
}

.ui-gridline--two {
  top: 49%;
}

.ui-gridline--three {
  top: 75%;
}

.ui-chart-canvas svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 157px;
  overflow: visible;
}

.ui-chart-area {
  fill: #eef0fc;
}

.ui-chart-path {
  fill: none;
  stroke: var(--ui-accent);
  stroke-linecap: round;
  stroke-width: 2;
}

.ui-chart-canvas circle {
  fill: var(--ui-white);
  stroke: var(--ui-accent);
  stroke-width: 2;
}

.ui-chart-annotation {
  position: absolute;
  top: 30px;
  right: 14px;
  z-index: 2;
  padding: 4px 6px;
  border: 1px solid #cbd2f5;
  border-radius: 4px;
  color: var(--ui-accent);
  background: var(--ui-white);
  font-size: 6px;
}

.ui-chart-axis {
  display: flex;
  justify-content: space-between;
  color: var(--ui-subtle);
  font-size: 6px;
}

.ui-performance-rail {
  padding: 15px;
  background: #f1f2ed;
}

.ui-performance-rail h5 {
  margin: 13px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.ui-winning-article {
  margin-top: 14px;
  padding: 11px;
  border: 1px solid var(--ui-line);
  border-radius: 7px;
  background: var(--ui-white);
}

.ui-winning-article > span,
.ui-next-test > span {
  display: block;
  color: var(--ui-subtle);
  font-size: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ui-winning-article > strong {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.25;
}

.ui-winning-article > div {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 9px;
  color: var(--ui-accent);
  font-size: 7px;
}

.ui-winning-article > div > i {
  position: relative;
  width: 52px;
  height: 3px;
  overflow: hidden;
  background: #dedfd8;
}

.ui-winning-article > div > i::after {
  position: absolute;
  inset: 0 56% 0 0;
  content: "";
  background: var(--ui-accent);
}

.ui-performance-rail > p {
  margin: 12px 0 0;
  color: var(--ui-muted);
  font-size: 7px;
  line-height: 1.45;
}

.ui-next-test {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--ui-line);
}

.ui-next-test > strong {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.3;
}

.ui-next-test > small {
  display: block;
  margin-top: 7px;
  color: var(--ui-muted);
  font-size: 6px;
}

/* Light product UI direction inspired by the selected reference. */
.ollie-ui-shell {
  --ui-paper: #fff;
  --ui-canvas: #fff;
  --ui-white: #fff;
  --ui-ink: #111116;
  --ui-muted: #6f7074;
  --ui-subtle: #9b9ca0;
  --ui-line: #e5e5e7;
  --ui-line-strong: #d6d6d9;
  --ui-sidebar: #fafafa;
  --ui-sidebar-raised: #f1f1f2;
  --ui-sidebar-line: #e4e4e5;
  --ui-accent: #5542e8;
  --ui-accent-soft: #f0eefe;
  --ui-success: #2c8654;
  --ui-success-soft: #e8f3ec;
  --ui-warning: #8a6726;
  --ui-warning-soft: #faf2df;
  grid-template-columns: 166px minmax(0, 1fr);
  background: var(--ui-white);
}

.product-shot {
  border-color: #e1e1e3;
  background: #fff;
}

.ollie-ui-nav {
  padding: 18px 12px 14px;
  border-right: 1px solid var(--ui-line);
  color: var(--ui-muted);
  background: var(--ui-sidebar);
}

.ui-nav-lockup {
  padding-inline: 7px;
  color: var(--ui-ink);
}

.ui-nav-lockup > strong {
  color: var(--ui-ink);
  font-size: 17px;
  letter-spacing: -0.05em;
}

.ui-nav-lockup > small {
  display: none;
}

.ui-ollie-symbol {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  color: #fff;
  background: var(--ui-ink);
  font-size: 17px;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 20;
}

.ui-project-switcher {
  grid-template-columns: 25px 1fr auto;
  margin-top: 21px;
  padding: 8px 9px;
  border-color: transparent;
  background: #f1f1f2;
}

.ui-project-monogram {
  color: #fff;
  background: var(--ui-accent);
}

.ui-project-switcher strong,
.ui-nav-foot strong {
  color: var(--ui-ink);
}

.ui-project-switcher small,
.ui-nav-foot small,
.ui-project-switcher b {
  color: #8b8c90;
}

.ui-nav-caption {
  margin: 23px 9px 8px;
  color: #aaa;
}

.ui-nav-list {
  gap: 4px;
}

.ui-nav-item {
  min-height: 34px;
  color: #6e6f73;
  font-size: 9px;
}

.ui-nav-item.is-active {
  color: var(--ui-ink);
  background: #eeeeef;
}

.ui-nav-item > .material-symbols-rounded {
  width: 16px;
  color: currentColor;
  font-size: 15px;
  font-style: normal;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 20;
}

.ui-nav-item > b {
  border-color: #dedee0;
  color: #85868a;
  background: #fff;
}

.ui-nav-foot {
  border-top-color: var(--ui-line);
}

.ui-live-dot {
  background: var(--ui-success);
  box-shadow: 0 0 0 3px var(--ui-success-soft);
}

.ollie-ui-app {
  background: var(--ui-canvas);
}

.ui-app-topbar {
  min-height: 52px;
  padding: 0 18px;
  border-bottom-color: var(--ui-line);
  background: #fff;
}

.ui-search-control {
  display: grid !important;
  grid-template-columns: 16px 1fr 1px 16px;
  gap: 9px;
  align-items: center;
  width: 205px;
  min-height: 31px;
  padding: 0 10px;
  border-radius: 7px;
  color: #a0a0a4;
  background: #f7f7f7;
  font-size: 9px;
}

.ui-search-control > .material-symbols-rounded {
  font-size: 15px;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 20;
}

.ui-search-control > i {
  width: 1px;
  height: 17px;
  margin: 0;
  background: #dedee0;
}

.ui-topbar-actions {
  gap: 12px;
  color: #6f7074;
}

.ui-topbar-icon {
  color: #6f7074;
  font-size: 15px;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 20;
}

.ui-avatar {
  border-color: var(--ui-ink);
  color: #fff;
  background: var(--ui-ink);
}

.ui-page {
  padding: 25px 31px 24px;
}

.ui-page-head h4 {
  font-size: 29px;
  line-height: 1.06;
}

.ui-title-meta {
  margin-top: 12px;
}

.ui-primary-action {
  min-height: 31px;
  border-color: var(--ui-accent);
  color: #fff;
  background: var(--ui-accent);
}

.ui-secondary-action {
  border-color: var(--ui-line-strong);
  color: var(--ui-ink);
  background: #fff;
}

.ui-page-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ui-date-control {
  min-height: 31px;
  padding: 0 10px;
  border-color: var(--ui-line-strong);
  box-shadow: 0 2px 5px rgb(17 17 22 / 5%);
}

.ui-strategy-grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(190px, 0.66fr);
  margin-top: 22px;
}

.ui-opportunity-panel,
.ui-chart-panel {
  border-width: 1px 0;
  border-radius: 0;
}

.ui-panel-heading {
  padding-inline: 10px;
  background: #fbfbfb;
}

.ui-opportunity-row {
  padding-inline: 10px;
}

.ui-opportunity-row.is-selected {
  background: var(--ui-accent-soft);
}

.ui-fit-bar i,
.ui-progress-track i,
.ui-winning-article > div > i::after {
  background: var(--ui-accent);
}

.ui-decision.is-selected {
  border-color: #d3cdfb;
  color: var(--ui-accent);
  background: #fff;
}

.ui-list-foot {
  background: #fff;
}

.ui-evidence-rail,
.ui-performance-rail {
  border-color: var(--ui-line);
  background: #f8f8f8;
}

.ui-evidence-list > div > span {
  background: #f8f8f8;
}

.ui-page--review {
  padding: 0;
}

.ui-review-bar {
  background: #fff;
}

.ui-editor-toolbar {
  background: #fbfbfb;
}

.ui-review-rail {
  background: #f8f8f8;
}

.ui-progress-track i {
  background: var(--ui-success);
}

.ui-checked-claim {
  background: var(--ui-accent-soft);
}

.ui-article-cta {
  background: #fafafa;
}

.ui-funnel {
  margin-top: 21px;
  border-width: 1px 0;
  border-radius: 0;
}

.ui-chart-area {
  fill: #efedfe;
}

.ui-chart-path {
  stroke: var(--ui-accent);
}

.ui-chart-canvas circle {
  stroke: var(--ui-accent);
}

.ui-chart-key i {
  background: var(--ui-accent);
}

.ui-chart-annotation {
  border-color: #d2ccfb;
  color: var(--ui-accent);
}

.ui-winning-article {
  border-color: var(--ui-line);
  background: #fff;
}

/* Product screens rebuilt from the reference dashboard structure. */
.dashboard-shot {
  aspect-ratio: 8 / 5;
  border-color: #dedee0;
  border-radius: 13px;
  background: #fff;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  width: 100%;
  height: 100%;
  min-height: 0;
  color: #111116;
  background: #fff;
}

.dashboard-sidebar {
  display: flex;
  min-height: 0;
  padding: 18px 11px 13px;
  border-right: 1px solid #e4e4e6;
  background: #fafafa;
  flex-direction: column;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  padding: 0 7px 17px;
}

.dashboard-brand-logo {
  display: block;
  width: auto;
  height: 25px;
  object-fit: contain;
  filter: brightness(0);
}

.dashboard-navigation {
  display: flex;
  gap: 3px;
  min-height: 0;
  flex-direction: column;
}

.dashboard-navigation > span {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  min-height: 32px;
  padding: 0 9px;
  border-radius: 7px;
  color: #6b6c70;
  font-size: 9px;
}

.dashboard-navigation > span.is-active {
  color: #111116;
  background: #eeeeef;
}

.dashboard-navigation > span > i {
  color: currentColor;
  font-size: 15px;
  font-style: normal;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 20;
}

.dashboard-navigation > span > b {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid #dedee0;
  border-radius: 50%;
  color: #7a7b7f;
  background: #fff;
  font-size: 7px;
  font-weight: 400;
}

.dashboard-navigation > small {
  position: relative;
  margin: 12px 8px 5px;
  color: #aaa;
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dashboard-navigation > small::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 62%;
  height: 1px;
  content: "";
  background: #e2e2e4;
}

.dashboard-connection {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding: 11px 8px 0;
  border-top: 1px solid #e4e4e6;
}

.dashboard-connection > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2c8654;
  box-shadow: 0 0 0 3px #e8f3ec;
}

.dashboard-connection > span {
  display: grid;
  gap: 2px;
}

.dashboard-connection strong {
  font-size: 8px;
  font-weight: 400;
}

.dashboard-connection small {
  overflow: hidden;
  color: #9a9b9e;
  font-size: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-main {
  min-width: 0;
  min-height: 0;
  background: #fff;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 17px;
  border-bottom: 1px solid #e5e5e7;
  background: #fff;
}

.dashboard-search {
  display: grid;
  grid-template-columns: 15px 1fr 1px 15px;
  gap: 8px;
  align-items: center;
  width: 190px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 7px;
  color: #a0a0a4;
  background: #f7f7f7;
  font-size: 9px;
}

.dashboard-search > span {
  font-size: 14px;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 20;
}

.dashboard-search > span:nth-child(2) {
  font-size: 9px;
}

.dashboard-search > i {
  width: 1px;
  height: 17px;
  background: #dedee0;
}

.dashboard-top-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #64656a;
  font-size: 8px;
}

.dashboard-top-actions > b {
  display: grid;
  place-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 7px;
  color: #fff;
  background: #5542e8;
  font-size: 9px;
  font-weight: 400;
}

.dashboard-top-actions > span.material-symbols-rounded {
  color: #5f6064;
  font-size: 15px;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 20;
}

.dashboard-top-actions > i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  background: #111116;
  font-size: 7px;
  font-style: normal;
}

.dashboard-view {
  height: calc(100% - 48px);
  min-height: 0;
  padding: 22px 34px 16px;
  background: #fff;
}

.dashboard-heading {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.dashboard-heading h4 {
  margin: 0;
  color: #09090c;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.dashboard-heading p {
  margin: 8px 0 0;
  color: #6f7074;
  font-size: 12px;
  line-height: 1.4;
}

.dashboard-primary-button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 7px;
  color: #fff;
  background: #5542e8;
  font-size: 8px;
}

.dashboard-primary-button b {
  font-weight: 400;
}

.dashboard-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e7;
}

.dashboard-tabs {
  display: flex;
  gap: 7px;
}

.dashboard-tabs span,
.dashboard-date {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 31px;
  padding: 0 11px;
  border: 1px solid #dedee0;
  border-radius: 7px;
  color: #303036;
  background: #fff;
  font-size: 9px;
}

.dashboard-tabs span.is-active {
  background: #f4f4f4;
}

.dashboard-date {
  box-shadow: 0 2px 5px rgb(17 17 22 / 5%);
}

.dashboard-date > i {
  font-size: 14px;
  font-style: normal;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 20;
}

.dashboard-date > b {
  font-weight: 400;
}

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 34px;
  padding: 18px 0 13px;
}

.dashboard-summary > div {
  display: grid;
  gap: 7px;
}

.dashboard-summary span,
.dashboard-summary small {
  color: #9a9b9e;
  font-size: 8px;
}

.dashboard-summary strong {
  color: #18181d;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.dashboard-chart {
  position: relative;
  height: 188px;
  border-bottom: 1px solid #e5e5e7;
}

.dashboard-chart canvas {
  position: absolute;
  inset: 0 0 23px;
  width: 100%;
  height: calc(100% - 23px);
}

.dashboard-grid-line {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  border-top: 1px dashed #e7e7e9;
}

.dashboard-grid-line.is-one {
  top: 23%;
}

.dashboard-grid-line.is-two {
  top: 48%;
}

.dashboard-grid-line.is-three {
  top: 73%;
}

.dashboard-chart-axis {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #77787c;
  font-size: 8px;
}

.dashboard-lower-grid,
.dashboard-reason-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
  padding-top: 13px;
}

.dashboard-lower-grid > div,
.dashboard-reason-row > div {
  display: grid;
  gap: 7px;
}

.dashboard-lower-grid span,
.dashboard-reason-row span {
  color: #6f7074;
  font-size: 9px;
}

.dashboard-lower-grid strong,
.dashboard-reason-row strong {
  font-size: 11px;
  font-weight: 400;
}

.dashboard-lower-grid small {
  color: #9a9b9e;
  font-size: 8px;
}

.dashboard-summary--compact {
  padding-bottom: 14px;
}

.dashboard-table {
  border-top: 1px solid #e5e5e7;
  border-bottom: 1px solid #e5e5e7;
}

.dashboard-table-head,
.dashboard-table-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) minmax(80px, 0.55fr) 68px 76px;
  gap: 12px;
  align-items: center;
}

.dashboard-table-head {
  min-height: 30px;
  padding: 0 12px;
  color: #929397;
  background: #fbfbfb;
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-table-row {
  min-height: 56px;
  padding: 0 12px;
  border-top: 1px solid #ececee;
  color: #67686c;
  font-size: 8px;
}

.dashboard-table-row.is-selected {
  background: #f0eefe;
}

.dashboard-table-row > span:first-child {
  display: grid;
  gap: 5px;
}

.dashboard-table-row b,
.dashboard-table-row strong {
  color: #19191e;
  font-size: 9px;
  font-weight: 400;
}

.dashboard-table-row small {
  color: #8f9094;
  font-size: 7px;
}

.dashboard-table-row > i {
  justify-self: start;
  padding: 5px 8px;
  border: 1px solid #dedee1;
  border-radius: 999px;
  color: #5f6065;
  background: #fff;
  font-size: 7px;
  font-style: normal;
}

.dashboard-table-row.is-selected > i {
  border-color: #d3cdfb;
  color: #5542e8;
}

.dashboard-reason-row {
  padding-top: 14px;
}

.dashboard-reason-row > div {
  padding-right: 16px;
  border-right: 1px solid #e5e5e7;
}

.dashboard-reason-row > div:last-child {
  border-right: 0;
}

.dashboard-table--articles .dashboard-table-head,
.dashboard-table--articles .dashboard-table-row {
  grid-template-columns: minmax(240px, 1.45fr) minmax(100px, 0.65fr) 68px 70px;
}

.dashboard-checks {
  display: flex;
  gap: 6px;
  align-items: center;
}

.dashboard-checks > i {
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: #fff;
  background: #2c8654;
  font-size: 7px;
  font-style: normal;
}

.dashboard-review-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 14px;
}

.dashboard-review-strip > div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.dashboard-review-strip > div > i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: #2c8654;
  font-size: 8px;
  font-style: normal;
}

.dashboard-review-strip > div.is-caution > i {
  color: #7a5b1f;
  background: #faf2df;
}

.dashboard-review-strip > div > span {
  display: grid;
  gap: 3px;
}

.dashboard-review-strip strong {
  font-size: 8px;
  font-weight: 400;
}

.dashboard-review-strip small {
  color: #929397;
  font-size: 7px;
}

.product-shot > .dashboard-shell {
  display: none;
}

.concept-shot {
  border-color: #e4e4e0;
  border-radius: 4px;
  background: #f7f7f5;
}

.concept-preview {
  --concept-ink: #171716;
  --concept-ink-soft: #3e3e3b;
  --concept-muted: #72726d;
  --concept-muted-light: #9b9b95;
  --concept-paper: #f7f7f5;
  --concept-surface: #fff;
  --concept-line: #e4e4e0;
  --concept-line-strong: #cfcfca;
  --concept-violet: #654dff;
  --concept-violet-soft: #f0edff;
  --concept-green: #237a4b;
  --concept-green-soft: #eaf6ee;
  --concept-amber: #a75a08;
  --concept-amber-soft: #fff3df;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: var(--concept-ink);
  background: var(--concept-paper);
  font-family: "General Sans", "Neue Montreal", Inter, "Helvetica Neue", Arial, sans-serif;
  font-variant-numeric: tabular-nums;
}

.concept-preview-rail {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 16px 10px 13px;
  background: #fbfbfa;
  border-right: 1px solid var(--concept-line);
  flex-direction: column;
}

.concept-preview-rail::after {
  position: absolute;
  top: 0;
  right: -1px;
  width: 2px;
  height: 18px;
  content: "";
  background: #ff3d3d;
  box-shadow:
    0 18px 0 #2f5bff,
    0 36px 0 #24aa72;
}

.concept-preview-brand {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 0 8px 15px;
  border-bottom: 1px solid var(--concept-line);
}

.concept-preview-brand strong {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.concept-brand-mark {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
}

.concept-brand-mark i {
  position: absolute;
  display: block;
  background: var(--concept-ink);
}

.concept-brand-mark i:first-child {
  top: 0;
  left: 5px;
  width: 7px;
  height: 17px;
}

.concept-brand-mark i:nth-child(2) {
  top: 5px;
  left: 0;
  width: 17px;
  height: 7px;
}

.concept-brand-mark i:last-child {
  inset: 7px;
  background: #fbfbfa;
}

.concept-project {
  margin: 15px 8px 9px;
  color: var(--concept-muted);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
}

.concept-preview-nav {
  display: flex;
  gap: 3px;
  flex-direction: column;
}

.concept-preview-nav > span {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  min-height: 29px;
  padding: 0 7px;
  border-radius: 4px;
  color: var(--concept-muted);
  font-size: 8px;
}

.concept-preview-nav > span.is-active {
  color: var(--concept-ink);
  background: #ececea;
  font-weight: 500;
}

.concept-preview-nav .material-symbols-rounded {
  color: currentColor;
  font-size: 13px;
}

.concept-preview-nav > span.is-active .material-symbols-rounded {
  color: var(--concept-violet);
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 20;
}

.concept-preview-main {
  min-width: 0;
  background: var(--concept-surface);
}

.concept-preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 22px;
  color: var(--concept-muted);
  border-bottom: 1px solid var(--concept-line);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
}

.concept-preview-page {
  min-width: 0;
  padding: 24px 30px 26px;
}

.concept-preview-heading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.concept-preview-heading h4 {
  max-width: 500px;
  margin: 0;
  color: var(--concept-ink);
  font-size: clamp(18px, 2.1vw, 29px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.concept-action {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 11px;
  border-radius: 4px;
  color: #fff;
  background: var(--concept-violet);
  font-size: 8px;
}

.concept-source-strip,
.concept-evidence-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 10px 0;
  color: var(--concept-muted);
  border-top: 1px solid var(--concept-line);
  border-bottom: 1px solid var(--concept-line);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
}

.concept-source-strip > span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.concept-source-strip > span > i {
  width: 6px;
  height: 6px;
  background: var(--concept-green);
  border-radius: 50%;
}

.concept-source-strip small,
.concept-evidence-strip small {
  margin-left: auto;
  color: var(--concept-muted-light);
  font: inherit;
}

.concept-profile-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.concept-profile-list > div {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 17px 18px 17px 0;
  border-bottom: 1px solid var(--concept-line);
}

.concept-profile-list > div:nth-child(odd) {
  border-right: 1px solid var(--concept-line);
}

.concept-profile-list > div:nth-child(even) {
  padding-left: 18px;
}

.concept-profile-list span,
.concept-opportunity-list span,
.concept-reason > span,
.concept-document > span,
.concept-checks > span,
.concept-publish-destination > span,
.concept-funnel span {
  color: var(--concept-muted);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
}

.concept-profile-list strong {
  overflow: hidden;
  font-size: 10px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concept-profile-list small,
.concept-opportunity-list small,
.concept-checks small,
.concept-publish-destination small,
.concept-funnel small {
  color: var(--concept-muted-light);
  font-size: 7px;
}

.concept-opportunity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(190px, 0.72fr);
  margin-top: 22px;
  border-top: 1px solid var(--concept-line);
  border-bottom: 1px solid var(--concept-line);
}

.concept-opportunity-list > div {
  display: grid;
  gap: 6px;
  min-height: 74px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--concept-line);
}

.concept-opportunity-list > div:last-child {
  border-bottom: 0;
}

.concept-opportunity-list > div.is-selected {
  padding-left: 13px;
  border-left: 3px solid var(--concept-violet);
  background: var(--concept-violet-soft);
}

.concept-opportunity-list strong {
  font-size: 10px;
  font-weight: 500;
}

.concept-reason {
  padding: 16px 18px;
  border-left: 1px solid var(--concept-line);
}

.concept-reason h5 {
  margin: 16px 0 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.concept-reason ul {
  display: grid;
  gap: 9px;
  padding: 15px 0 0;
  margin: 0;
  list-style: none;
}

.concept-reason li {
  position: relative;
  padding-left: 13px;
  color: var(--concept-ink-soft);
  font-size: 8px;
  line-height: 1.35;
}

.concept-reason li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--concept-violet);
}

.concept-review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.65fr);
  margin-top: 22px;
  border-top: 1px solid var(--concept-line);
  border-bottom: 1px solid var(--concept-line);
}

.concept-document {
  min-width: 0;
  padding: 20px 24px 22px;
  border-right: 1px solid var(--concept-line);
}

.concept-document h5 {
  max-width: 420px;
  margin: 13px 0 16px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.concept-document p {
  max-width: 440px;
  margin: 0 0 9px;
  color: var(--concept-ink-soft);
  font-size: 9px;
  line-height: 1.5;
}

.concept-checks {
  padding: 17px 16px;
}

.concept-checks > div {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 45px;
  border-bottom: 1px solid var(--concept-line);
}

.concept-checks > div > i {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--concept-green);
  background: var(--concept-green-soft);
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
}

.concept-checks > div.needs-review > i {
  color: var(--concept-amber);
  background: var(--concept-amber-soft);
}

.concept-checks strong {
  align-self: end;
  font-size: 8px;
  font-weight: 500;
}

.concept-checks small {
  align-self: start;
}

.concept-publish-destination {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding-top: 13px;
}

.concept-publish-destination strong {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 500;
}

.concept-evidence-strip > span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.concept-evidence-strip > span > i {
  padding: 3px 5px;
  color: var(--concept-green);
  background: var(--concept-green-soft);
  font-style: normal;
}

.concept-funnel {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto
    minmax(0, 1fr);
  align-items: stretch;
  margin-top: 20px;
  border-top: 1px solid var(--concept-line);
  border-bottom: 1px solid var(--concept-line);
}

.concept-funnel > div {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 16px 12px;
}

.concept-funnel > i {
  align-self: center;
  color: var(--concept-muted-light);
  font-size: 10px;
  font-style: normal;
}

.concept-funnel strong {
  font-size: 10px;
  font-weight: 500;
}

.concept-worklog {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 19px;
  padding: 16px 0;
  border-bottom: 1px solid var(--concept-line);
}

.concept-worklog > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--concept-violet);
  background: var(--concept-violet-soft);
  border-radius: 4px;
  font-size: 16px;
}

.concept-worklog strong {
  font-size: 11px;
  font-weight: 500;
}

.concept-worklog p {
  max-width: 620px;
  margin: 7px 0 0;
  color: var(--concept-muted);
  font-size: 8px;
  line-height: 1.45;
}

.waitlist {
  position: relative;
  padding-top: clamp(68px, 5vw, 76px);
  padding-bottom: clamp(68px, 5vw, 76px);
}

.waitlist::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  background: var(--color-obsidian);
  border-top: 1px solid var(--color-ash-border);
}

.faq {
  padding-block: clamp(96px, 12vw, 168px);
}

.faq-title {
  max-width: 980px;
  margin: 0 0 48px;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.faq-list {
  max-width: 760px;
  border-top: 1px solid var(--color-ash-border, #d7d7d2);
}

.faq-list details {
  border-bottom: 1px solid var(--color-ash-border, #d7d7d2);
}

.faq-list summary {
  padding: 24px 40px 24px 0;
  font-size: 19px;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  max-width: 62ch;
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.72;
}

/* Off-screen rather than display:none: a bot that reads the DOM should still
   see a field worth filling in. */
.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.waitlist-copy {
  max-width: 590px;
  margin: 32px 0 28px;
  color: var(--color-bone-white);
  font-size: 18px;
  line-height: 1.55;
}

.waitlist-form {
  width: min(100%, 650px);
}

.input-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--color-bone-white);
}

.input-wrap input {
  min-width: 0;
  padding: 18px 0;
  border: 0;
  outline: 0;
  color: var(--color-bone-white);
  background: transparent;
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: -0.02em;
}

.input-wrap input::placeholder {
  color: rgba(255, 253, 249, 0.42);
}

.input-wrap input:focus-visible {
  outline: 0;
}

.input-wrap:focus-within {
  box-shadow: 0 2px 0 var(--color-bone-white);
}

.input-wrap button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 0 0 24px;
  border: 0;
  color: var(--color-bone-white);
  background: transparent;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    gap 0.5s var(--ease-focus),
    opacity 0.3s ease;
}

.input-wrap button:hover {
  gap: 28px;
}

.input-wrap button:disabled {
  cursor: wait;
  opacity: 0.5;
}

.form-status {
  min-height: 20px;
  margin: 13px 0 0;
  color: rgba(255, 253, 249, 0.55);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.form-status[data-state="error"] {
  color: var(--color-bone-white);
}

.site-footer {
  padding-bottom: 30px;
}

.footer-rule {
  height: 1px;
  background: var(--color-ash-border);
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  padding-top: 26px;
  color: var(--color-fog-blue);
  font-size: 12px;
}

.footer-row p {
  margin: 0;
}

.wordmark--footer {
  color: var(--color-bone-white);
}

.wordmark--footer .wordmark-image {
  height: 30px;
}

.wordmark--footer .wordmark-mark {
  width: 17px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  clip-path: inset(0 0 18% 0);
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease-focus),
    clip-path 1s var(--ease-focus),
    transform 1s var(--ease-focus);
}

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

.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-line > span {
  display: block;
  transform: translateY(108%);
  transition: transform 1s var(--ease-focus);
}

.reveal-line.is-visible {
  clip-path: none;
  transform: none;
}

.reveal-line.is-visible > span {
  transform: translateY(0);
}

.hero-stage .hero-line:first-child {
  opacity: calc(1 - var(--hero-exit));
  transform: translate3d(var(--hero-title-one-x), var(--hero-title-one-y), 0);
}

.hero-stage .hero-line:nth-child(2) {
  opacity: calc(1 - var(--hero-exit));
  transform: translate3d(var(--hero-title-two-x), var(--hero-title-two-y), 0);
}

.hero-stage .hero-bottom.reveal.is-visible {
  opacity: calc(1 - var(--hero-exit));
  transform: translate3d(0, var(--hero-copy-y), 0);
}

.hero-title .reveal-line:nth-child(2) > span,
.product-heading .reveal-line:nth-child(2) > span,
.waitlist-title .reveal-line:nth-child(2) > span {
  transition-delay: 0.1s;
}

@keyframes page-focus {
  0%,
  35% {
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(0);
  }
}

@keyframes prism-focus {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 215svh;
  }

  .hero-stage {
    min-height: 760px;
  }

  .hero-copy {
    padding-top: 148px;
  }

  .hero-title {
    font-size: clamp(62px, 14vw, 108px);
  }

  .hero-line--indent,
  .hero-bottom {
    padding-left: 0;
    margin-left: 0;
  }

  .hero-bottom {
    position: absolute;
    top: 585px;
    left: var(--page-gutter);
    display: block;
    width: calc(100% - var(--page-gutter) * 2);
    margin-top: 0;
  }

  .text-link {
    margin-top: 24px;
  }

  .hero-artifact {
    top: 46%;
    left: 76%;
    width: min(72vw, 620px);
  }

  .hero-shift {
    top: 42%;
    width: min(88vw, 680px);
  }

  .hero-shift-title {
    font-size: clamp(54px, 10vw, 88px);
  }

  .product-story,
  .product-story--reverse {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
  }

  .product-story--reverse .product-story-copy,
  .product-story--reverse .product-shot {
    grid-row: auto;
    grid-column: 1;
  }

  .product-story--reverse .product-story-copy {
    grid-row: 1;
  }

  .product-story-copy {
    max-width: 620px;
  }

  .product-story-copy > p {
    max-width: 560px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding-top: 18px;
  }

  .nav-cta {
    padding: 9px 11px;
  }

  .header-actions {
    gap: 10px;
  }

  .hero {
    min-height: 215svh;
  }

  .hero-stage {
    min-height: 700px;
  }

  .hero-copy {
    padding-top: 130px;
  }

  .hero-title {
    font-size: clamp(55px, 17.6vw, 76px);
    line-height: 0.98;
  }

  .hero-bottom {
    top: 500px;
  }

  .hero-bottom p {
    font-size: 16px;
  }

  .hero-artifact {
    top: 47%;
    left: 87%;
    width: 105vw;
  }

  .hero-shift {
    top: 37%;
    width: calc(100% - var(--page-gutter) * 2);
  }

  .hero-shift-title {
    font-size: clamp(50px, 14vw, 70px);
  }

  .hero-shift-title span:last-child {
    padding-left: 0;
  }

  .product-heading h2,
  .waitlist-title {
    font-size: clamp(44px, 13vw, 62px);
  }

  .product-lead {
    margin-bottom: 0;
  }

  .product-stories {
    gap: 88px;
    padding-top: 68px;
  }

  .product-story {
    gap: 28px;
  }

  .product-story-copy h3 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .product-shot {
    border-radius: 10px;
  }

  .mock-topbar {
    grid-template-columns: auto 1fr;
    min-height: 43px;
    padding: 0 12px;
  }

  .mock-topbar > :nth-child(2) {
    display: none;
  }

  .mock-workspace {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-main {
    padding: 18px 14px;
  }

  .mock-page-heading {
    align-items: flex-start;
  }

  .mock-page-heading h4 {
    font-size: 21px;
  }

  .mock-page-heading button {
    padding: 7px 8px;
  }

  .mock-summary span {
    padding: 11px 9px;
  }

  .opportunity-row {
    grid-template-columns: 18px minmax(0, 1fr) 46px;
    gap: 7px;
    padding-inline: 10px;
  }

  .opportunity-row .intent-pill {
    display: none;
  }

  .mock-explanation {
    margin-bottom: 2px;
  }

  .review-workspace {
    grid-template-columns: 1fr;
    min-height: 410px;
  }

  .draft-panel {
    display: none;
  }

  .review-panel {
    min-height: 410px;
    border-right: 0;
  }

  .performance-main {
    padding-bottom: 14px;
  }

  .metric-grid {
    gap: 6px;
  }

  .metric-grid > div {
    padding: 11px 9px;
  }

  .metric-grid strong {
    font-size: 17px;
  }

  .performance-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .chart {
    height: 155px;
  }

  .chart svg {
    height: 128px;
  }

  .next-action {
    min-height: 220px;
  }

  .ollie-ui-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ollie-ui-nav {
    display: none;
  }

  .ui-app-topbar {
    min-height: 43px;
    padding-inline: 12px;
  }

  .ui-topbar-actions {
    gap: 7px;
  }

  .ui-topbar-actions > span:first-child:not(.ui-date-control) {
    display: none;
  }

  .ui-avatar {
    width: 22px;
    height: 22px;
  }

  .ui-page {
    padding: 16px 12px 14px;
  }

  .ui-page-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .ui-page-head h4 {
    font-size: 23px;
  }

  .ui-page-head > .ui-primary-action {
    justify-self: start;
  }

  .ui-title-meta {
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .ui-strategy-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .ui-panel-heading {
    grid-template-columns: minmax(0, 1fr) 56px;
  }

  .ui-panel-heading span:nth-child(2) {
    display: none;
  }

  .ui-opportunity-row {
    grid-template-columns: 20px minmax(0, 1fr) 54px;
    min-height: 68px;
    padding-inline: 10px;
  }

  .ui-fit-score {
    display: none;
  }

  .ui-row-copy strong {
    font-size: 9px;
  }

  .ui-evidence-rail {
    min-height: 270px;
  }

  .ui-review-bar {
    align-items: flex-start;
    min-height: 76px;
    padding: 11px 12px;
  }

  .ui-review-bar > div {
    align-self: flex-end;
  }

  .ui-editor-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ui-document-body {
    padding: 22px 18px;
  }

  .ui-document-body h4 {
    font-size: 27px;
  }

  .ui-review-rail {
    min-height: 390px;
    border-top: 1px solid var(--ui-line);
    border-left: 0;
  }

  .ui-funnel {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 14px;
    padding: 0;
  }

  .ui-funnel > div {
    padding: 11px 12px;
  }

  .ui-funnel > div:nth-of-type(odd) {
    border-right: 1px solid var(--ui-line);
  }

  .ui-funnel > div:nth-of-type(-n + 2) {
    border-bottom: 1px solid var(--ui-line);
  }

  .ui-funnel > i {
    display: none;
  }

  .ui-performance-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ui-chart-canvas {
    height: 176px;
  }

  .ui-chart-canvas svg {
    height: 150px;
  }

  .ui-performance-rail {
    min-height: 280px;
  }

  .dashboard-shot {
    height: 620px;
    aspect-ratio: auto;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-topbar {
    min-height: 44px;
    padding-inline: 12px;
  }

  .dashboard-search {
    width: 188px;
    min-height: 30px;
  }

  .dashboard-top-actions {
    gap: 8px;
  }

  .dashboard-top-actions > span:first-child,
  .dashboard-top-actions > b {
    display: none;
  }

  .dashboard-view {
    height: calc(100% - 44px);
    padding: 20px 13px 16px;
  }

  .dashboard-heading {
    display: grid;
    gap: 13px;
  }

  .dashboard-heading h4 {
    font-size: 24px;
  }

  .dashboard-heading p {
    max-width: 280px;
    font-size: 11px;
  }

  .dashboard-primary-button {
    justify-self: start;
  }

  .dashboard-controls {
    gap: 8px;
    margin-top: 18px;
  }

  .dashboard-tabs span,
  .dashboard-date {
    min-height: 30px;
    padding-inline: 9px;
  }

  .dashboard-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 24px 0 18px;
  }

  .dashboard-summary strong {
    font-size: 17px;
  }

  .dashboard-chart {
    height: 245px;
  }

  .dashboard-lower-grid,
  .dashboard-reason-row {
    gap: 12px;
  }

  .dashboard-lower-grid strong,
  .dashboard-reason-row strong {
    font-size: 9px;
  }

  .dashboard-lower-grid small {
    font-size: 7px;
  }

  .dashboard-table-head,
  .dashboard-table-row,
  .dashboard-table--articles .dashboard-table-head,
  .dashboard-table--articles .dashboard-table-row {
    grid-template-columns: minmax(0, 1fr) 52px 58px;
    gap: 8px;
  }

  .dashboard-table-head > span:nth-child(2),
  .dashboard-table-row > span:nth-child(2) {
    display: none;
  }

  .dashboard-table-row {
    min-height: 72px;
    padding-inline: 9px;
  }

  .dashboard-table-row b,
  .dashboard-table-row strong {
    font-size: 8px;
  }

  .dashboard-reason-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-reason-row > div {
    padding-right: 8px;
  }

  .dashboard-review-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 8px;
  }

  .concept-shot.dashboard-shot {
    height: auto;
    min-height: 620px;
    border-radius: 4px;
    aspect-ratio: auto;
  }

  .concept-preview {
    grid-template-columns: 1fr;
  }

  .concept-preview-rail {
    display: none;
  }

  .concept-preview-topbar {
    min-height: 44px;
    padding-inline: 16px;
  }

  .concept-preview-page {
    padding: 20px 16px 22px;
  }

  .concept-preview-heading {
    display: grid;
    gap: 14px;
  }

  .concept-preview-heading h4 {
    font-size: 26px;
  }

  .concept-action {
    justify-self: start;
  }

  .concept-source-strip,
  .concept-evidence-strip {
    flex-wrap: wrap;
    gap: 9px 14px;
    margin-top: 18px;
  }

  .concept-source-strip small,
  .concept-evidence-strip small {
    width: 100%;
    margin-left: 0;
  }

  .concept-profile-list {
    grid-template-columns: 1fr;
  }

  .concept-profile-list > div,
  .concept-profile-list > div:nth-child(even) {
    padding: 13px 0;
    border-right: 0;
  }

  .concept-opportunity-layout,
  .concept-review-layout {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .concept-opportunity-list > div {
    min-height: 65px;
    padding-block: 10px;
  }

  .concept-reason {
    padding: 14px 0;
    border-top: 1px solid var(--concept-line);
    border-left: 0;
  }

  .concept-reason h5 {
    margin-top: 11px;
    font-size: 18px;
  }

  .concept-reason ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-top: 12px;
  }

  .concept-document {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--concept-line);
  }

  .concept-document h5 {
    font-size: 20px;
  }

  .concept-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
    padding: 13px 0;
  }

  .concept-checks > span {
    grid-column: 1 / -1;
    padding-bottom: 5px;
  }

  .concept-checks > div {
    min-height: 42px;
  }

  .concept-publish-destination {
    grid-template-columns: auto 1fr;
  }

  .concept-publish-destination small {
    grid-column: 2;
  }

  .concept-funnel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
  }

  .concept-funnel > div {
    border-bottom: 1px solid var(--concept-line);
  }

  .concept-funnel > div:nth-of-type(odd) {
    border-right: 1px solid var(--concept-line);
  }

  .concept-funnel > i {
    display: none;
  }

  .input-wrap {
    grid-template-columns: 1fr;
  }

  .input-wrap button {
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid var(--color-ash-border);
  }

  .footer-row {
    grid-template-columns: 1fr auto;
  }

  .footer-row > p:first-of-type {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body::after {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-shift,
  .hero-scroll-marker {
    display: none;
  }

  .hero-line,
  .hero-bottom {
    opacity: 1;
    transform: none;
  }

  .hero-artifact {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .hero-artifact-media {
    opacity: 1;
    filter: brightness(0.96) saturate(0.92);
    animation: none;
    transform: none;
  }
}
