:root {
  --ink: #0c0f12;
  --ink-2: #20252a;
  --paper: #ffffff;
  --mist: #f2f4f5;
  --mist-2: #e9edef;
  --line: #d9dee1;
  --muted: #667079;
  --lime: #c8ff3d;
  --lime-soft: #efffc6;
  --cobalt: #315cff;
  --cobalt-soft: #e9edff;
  --coral: #ff654f;
  --coral-soft: #fff0ed;
  --teal: #12857c;
  --shell: 2200px;
  --header-height: 76px;
  --radius: 6px;
  --shadow: 0 24px 70px rgba(12, 15, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
select,
input {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul,
figure {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

.content-shell,
.header-inner {
  width: min(calc(100% - 80px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(12, 15, 18, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  background: var(--ink);
  overflow: hidden;
}

.brand-mark--light {
  background: var(--paper);
}

.brand-mark i {
  position: absolute;
  display: block;
}

.brand-mark__lime {
  width: 18px;
  height: 18px;
  left: -3px;
  top: -3px;
  background: var(--lime);
}

.brand-mark__cobalt {
  width: 14px;
  height: 14px;
  right: -2px;
  bottom: -2px;
  background: var(--cobalt);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 900;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 800;
  color: var(--muted);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
  min-width: 0;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding-block: 10px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover:not(:disabled),
.button:focus-visible:not(:disabled) {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-button:focus-visible,
.demo-tabs button:focus-visible,
.library-item:focus-visible,
select:focus-visible,
input:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
}

.button--primary {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.button--primary:hover,
.button--primary:focus-visible {
  color: var(--paper);
  background: var(--cobalt);
  border-color: var(--cobalt);
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.button--light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.nav-cta {
  min-height: 42px;
  padding-inline: 15px;
  font-size: 14px;
  white-space: nowrap;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 900;
  color: var(--cobalt);
  text-transform: uppercase;
}

.eyebrow--lime {
  color: var(--lime);
}

.hero {
  position: relative;
  height: min(860px, calc(100svh - 128px));
  min-height: 680px;
  overflow: hidden;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 51%;
  background: var(--paper);
  border-right: 1px solid rgba(217, 222, 225, 0.8);
}

.hero-product {
  position: absolute;
  inset: 52px 0 0 25%;
  z-index: 1;
}

.studio-shell {
  position: absolute;
  inset: 0 -72px -48px 0;
  display: grid;
  grid-template-columns: 180px minmax(640px, 1fr) 150px;
  grid-template-rows: 56px 1fr;
  background: #f6f8f9;
  border: 1px solid #cbd2d6;
  box-shadow: var(--shadow);
  transform: rotate(-1.4deg);
  transform-origin: center;
}

.studio-topbar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  min-width: 0;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid #343b41;
}

.studio-topbar strong,
.studio-topbar span,
.studio-topbar i {
  padding-inline: 20px;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.studio-topbar span {
  overflow: hidden;
  color: #c9d0d4;
  text-overflow: ellipsis;
}

.studio-topbar i {
  display: flex;
  height: 100%;
  align-items: center;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.studio-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 16px;
  background: #171b1e;
  border-right: 1px solid #2f3539;
}

.studio-sidebar b {
  padding: 0 11px 15px;
  color: #828d95;
  font-size: 10px;
  text-transform: uppercase;
}

.studio-sidebar span {
  padding: 10px 11px;
  color: #b8c0c5;
  font-size: 12px;
}

.studio-sidebar .is-active {
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.studio-main {
  min-width: 0;
  padding: 34px;
}

.studio-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.studio-heading div {
  display: grid;
  gap: 5px;
}

.studio-heading small,
.studio-heading span {
  color: var(--muted);
  font-size: 10px;
}

.studio-heading strong {
  font-size: 20px;
}

.studio-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-block: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.studio-kpis span {
  display: grid;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.studio-kpis span:last-child {
  border-right: 0;
}

.studio-kpis small {
  color: var(--muted);
  font-size: 10px;
}

.studio-kpis b {
  margin-top: 5px;
  font-size: 22px;
}

.studio-work {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(340px, 1.25fr);
  gap: 18px;
}

.source-sheet,
.question-sheet {
  min-width: 0;
  min-height: 255px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.source-sheet small,
.question-sheet small {
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 900;
}

.source-sheet strong,
.question-sheet strong {
  display: block;
  margin-top: 18px;
  font-size: 15px;
}

.source-sheet p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
}

.source-sheet > span,
.question-sheet > span {
  display: block;
  margin-top: 28px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
}

.question-sheet > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.question-sheet div i {
  color: #7b5411;
  background: #fff0b8;
  padding: 4px 8px;
  font-size: 9px;
  font-style: normal;
}

.question-sheet ol {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
}

.studio-rail {
  display: flex;
  flex-direction: column;
  padding: 34px 22px;
  background: var(--paper);
  border-left: 1px solid var(--line);
}

.studio-rail small {
  color: var(--muted);
  font-size: 10px;
}

.studio-rail > strong {
  margin: 4px 0 20px;
  font-size: 35px;
}

.studio-rail > span {
  padding: 9px 0;
  font-size: 11px;
  border-bottom: 1px solid var(--line);
}

.studio-rail i {
  height: 1px;
  margin: 34px 0;
  background: var(--line);
}

.studio-rail b {
  margin-top: 4px;
  color: var(--cobalt);
  font-size: 24px;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 12px;
}

.hero h1 {
  max-width: 720px;
  font-size: 68px;
  line-height: 1.08;
  font-weight: 900;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -5px;
  right: -5px;
  bottom: 3px;
  height: 17px;
  background: var(--lime);
}

.hero-lead {
  max-width: 570px;
  margin-top: 26px;
  color: #40484e;
  font-size: 19px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.offer-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(620px, 48vw);
  margin-top: 38px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.offer-line > div {
  padding: 13px 16px 14px 0;
  border-right: 1px solid var(--line);
}

.offer-line > div:not(:first-child) {
  padding-left: 16px;
}

.offer-line > div:last-child {
  border-right: 0;
}

.offer-line dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.offer-line dd {
  margin-top: 3px;
  font-size: 17px;
  font-weight: 900;
}

.proof-strip {
  min-height: 88px;
  display: flex;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
}

.proof-strip__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
}

.proof-strip strong {
  margin-right: auto;
  font-size: 18px;
}

.proof-strip span {
  color: #bac2c7;
  font-size: 13px;
  white-space: nowrap;
}

.section-heading {
  padding-top: 120px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.delivery-copy h2,
.trust-heading h2,
.diagnosis-copy h2 {
  font-size: 52px;
  line-height: 1.12;
  font-weight: 900;
}

.section-heading--split > p,
.trust-heading > p {
  color: var(--muted);
  font-size: 18px;
}

.product-section {
  padding-bottom: 130px;
  background: var(--paper);
}

.product-tool {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 230px;
  min-height: 650px;
  margin-top: 54px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid #bfc7cc;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tool-library {
  padding: 24px 16px;
  background: #f5f7f8;
  border-right: 1px solid var(--line);
}

.tool-library__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 18px;
}

.tool-library__head strong {
  font-size: 14px;
}

.tool-library__head span {
  color: var(--muted);
  font-size: 11px;
}

.library-item {
  width: 100%;
  display: grid;
  gap: 3px;
  padding: 14px 12px;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: default;
}

.library-item + .library-item {
  margin-top: 4px;
}

.library-item.is-current {
  background: var(--paper);
  border-color: var(--cobalt);
}

.library-item small,
.library-item span {
  color: var(--muted);
  font-size: 10px;
}

.library-item strong {
  font-size: 13px;
}

.library-progress {
  margin: 34px 8px 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.library-progress span,
.library-progress small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.library-progress strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
}

.library-progress i {
  display: block;
  height: 6px;
  margin: 13px 0 8px;
  background: var(--mist-2);
}

.library-progress em {
  display: block;
  width: 77%;
  height: 100%;
  background: var(--cobalt);
}

.tool-workspace {
  min-width: 0;
  padding: 22px 26px 30px;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  padding-bottom: 18px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.demo-tabs button {
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.demo-tabs button[aria-selected="true"] {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.demo-panel {
  min-height: 520px;
  padding: 30px 4px 0;
}

.demo-panel[hidden] {
  display: none;
}

.demo-panel > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
}

.demo-panel > header small {
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 900;
}

.demo-panel > header h3 {
  margin-top: 6px;
  font-size: 24px;
}

.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 3px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.status--review {
  color: #76500a;
  background: #fff0b8;
}

.status--approved {
  color: #10594f;
  background: #d7f5ef;
}

.status--source {
  color: #17399d;
  background: var(--cobalt-soft);
}

.status--building {
  color: #17399d;
  background: var(--cobalt-soft);
}

.question-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 22px;
}

.question-content,
.source-reference,
.summary-layout,
.explanation-layout,
.visual-layout {
  border: 1px solid var(--line);
  background: var(--paper);
}

.question-content {
  min-height: 350px;
  padding: 34px;
}

.question-content > p {
  font-size: 20px;
  font-weight: 800;
}

.question-content ol {
  display: grid;
  gap: 13px;
  margin-top: 30px;
  color: #41494f;
}

.question-content li {
  padding: 11px 13px;
  background: var(--mist);
  border-left: 3px solid transparent;
}

.source-reference {
  min-height: 350px;
  padding: 28px;
  background: var(--lime-soft);
  border-color: #c2dc75;
}

.source-reference small {
  font-size: 10px;
  font-weight: 900;
}

.source-reference strong {
  display: block;
  margin-top: 35px;
  font-size: 18px;
}

.source-reference p {
  margin-top: 16px;
  color: #4a5335;
}

.source-reference span {
  display: block;
  margin-top: 58px;
  color: #425609;
  font-size: 12px;
  font-weight: 800;
}

.summary-layout {
  min-height: 380px;
  padding: 34px;
}

.summary-layout > strong {
  font-size: 20px;
}

.summary-layout ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.summary-layout li {
  min-height: 190px;
  padding: 22px;
  background: var(--mist);
  border-top: 4px solid var(--cobalt);
}

.summary-layout li:nth-child(2) {
  border-color: var(--lime);
}

.summary-layout li:nth-child(3) {
  border-color: var(--coral);
}

.summary-layout li b,
.summary-layout li span {
  display: block;
}

.summary-layout li span {
  margin-top: 25px;
  color: var(--muted);
}

.summary-layout > p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.explanation-layout {
  min-height: 390px;
  padding: 34px;
}

.answer-badge {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--paper);
  background: var(--cobalt);
  font-weight: 900;
}

.explanation-layout ol {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.explanation-layout li {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.explanation-layout li b {
  color: var(--cobalt);
}

.explanation-layout li p {
  color: #3d464c;
}

.explanation-layout > small {
  display: block;
  margin-top: 24px;
  color: var(--muted);
}

.visual-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
  min-height: 390px;
  overflow: hidden;
}

.graph-paper {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background-color: #f7f9fa;
  background-image: linear-gradient(#dfe5e8 1px, transparent 1px), linear-gradient(90deg, #dfe5e8 1px, transparent 1px);
  background-size: 28px 28px;
}

.axis-x,
.axis-y {
  position: absolute;
  display: block;
  background: var(--ink);
}

.axis-x {
  left: 9%;
  right: 9%;
  top: 72%;
  height: 2px;
}

.axis-y {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 2px;
}

.parabola {
  position: absolute;
  left: 24%;
  right: 24%;
  top: 14%;
  height: 58%;
  border: 4px solid var(--cobalt);
  border-top: 0;
  border-radius: 0 0 50% 50%;
}

.graph-paper > span {
  position: absolute;
  top: 16%;
  right: 15%;
  color: var(--cobalt);
  background: var(--paper);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
}

.visual-layout aside {
  padding: 30px;
  background: var(--ink);
  color: var(--paper);
}

.visual-layout aside small {
  color: var(--lime);
  font-size: 10px;
}

.visual-layout aside strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
}

.visual-layout dl {
  margin-top: 40px;
}

.visual-layout dl > div {
  padding: 13px 0;
  border-bottom: 1px solid #343b41;
}

.visual-layout dt,
.visual-layout dd {
  font-size: 11px;
}

.visual-layout dt {
  color: #8f999f;
}

.visual-layout dd {
  margin-top: 4px;
}

.tool-review {
  padding: 28px 20px;
  background: var(--ink);
  color: var(--paper);
}

.tool-review > small {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
}

.tool-review > strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.tool-review ul {
  margin-top: 30px;
}

.tool-review li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #343b41;
  font-size: 11px;
}

.tool-review li span {
  color: #98a1a7;
}

.tool-review li b {
  color: var(--lime);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 40px;
}

.reviewer > i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--coral);
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.reviewer span {
  display: grid;
}

.reviewer small {
  color: #8f999f;
  font-size: 9px;
}

.reviewer strong {
  font-size: 12px;
}

.tool-review > button {
  width: 100%;
  min-height: 42px;
  margin-top: 26px;
  color: #7f898f;
  background: #2b3034;
  border: 1px solid #3a4146;
  border-radius: 4px;
  font-size: 11px;
}

.features-section {
  padding-bottom: 130px;
  background: var(--mist);
  border-block: 1px solid var(--line);
}

.feature-list {
  margin-top: 58px;
  border-top: 1px solid var(--ink);
}

.feature-list li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 240px;
  gap: 30px;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid var(--line);
}

.feature-list > li > span {
  color: var(--cobalt);
  font-size: 13px;
  font-weight: 900;
}

.feature-list h3 {
  font-size: 23px;
}

.feature-list p {
  margin-top: 6px;
  color: var(--muted);
}

.feature-list > li > strong {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.solutions-section {
  padding-bottom: 130px;
  color: var(--paper);
  background: var(--ink);
}

.solutions-section .section-heading--split > p {
  color: #aeb7bc;
}

.solution-list {
  margin-top: 60px;
  border-top: 1px solid #394147;
}

.solution-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 50px;
  gap: 26px;
  align-items: center;
  min-height: 150px;
  border-bottom: 1px solid #394147;
  transition: color 160ms ease, background 160ms ease, padding 160ms ease;
}

.solution-row > span {
  color: #7e8a91;
  font-size: 13px;
  font-weight: 900;
}

.solution-row small {
  color: #9ca6ac;
  font-size: 11px;
}

.solution-row h3 {
  margin-top: 4px;
  font-size: 28px;
}

.solution-row p {
  margin-top: 8px;
  color: #9ca6ac;
  font-size: 13px;
}

.solution-row > b {
  font-size: 28px;
  text-align: right;
}

.solution-row:hover,
.solution-row:focus-visible {
  padding-inline: 24px;
  color: var(--ink);
}

.solution-row--lime:hover,
.solution-row--lime:focus-visible {
  background: var(--lime);
}

.solution-row--cobalt:hover,
.solution-row--cobalt:focus-visible {
  color: var(--paper);
  background: var(--cobalt);
}

.solution-row--coral:hover,
.solution-row--coral:focus-visible {
  background: var(--coral);
}

.solution-row--teal:hover,
.solution-row--teal:focus-visible {
  color: var(--paper);
  background: var(--teal);
}

.solution-row--white:hover,
.solution-row--white:focus-visible {
  background: var(--paper);
}

.solution-row:hover p,
.solution-row:hover small,
.solution-row:focus-visible p,
.solution-row:focus-visible small,
.solution-row:hover > span,
.solution-row:focus-visible > span {
  color: currentColor;
}

.market-map {
  margin-top: 90px;
  border-top: 1px solid #667178;
}

.market-map > header {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: end;
  padding: 52px 0 42px;
}

.market-map h3 {
  font-size: 38px;
  line-height: 1.18;
}

.market-map > header > p {
  max-width: 650px;
  color: #aeb7bc;
  font-size: 16px;
}

.market-map ul {
  border-top: 1px solid #394147;
}

.market-map li {
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) 1.45fr;
  gap: 38px;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid #394147;
}

.market-map li strong {
  color: var(--lime);
  font-size: 16px;
}

.market-map li p {
  color: #c1c8cc;
  font-size: 14px;
}

.delivery-section {
  padding: 120px 0 130px;
  background: var(--paper);
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 90px;
  align-items: end;
}

.delivery-copy > p:last-child {
  max-width: 680px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
}

.price-block {
  padding: 34px 0 8px 34px;
  border-left: 8px solid var(--lime);
}

.price-block > small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.price-block > strong {
  display: block;
  margin-top: 4px;
  font-size: 70px;
  line-height: 1;
}

.price-block strong em {
  margin-left: 8px;
  font-size: 24px;
  font-style: normal;
}

.price-block > span {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 9px;
  color: var(--paper);
  background: var(--cobalt);
  font-size: 12px;
  font-weight: 900;
}

.price-block > p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.timeline li {
  min-height: 220px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.timeline li:last-child {
  color: var(--paper);
  background: var(--ink);
  border-right: 0;
}

.timeline span {
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 900;
}

.timeline li:last-child span {
  color: var(--lime);
}

.timeline strong {
  display: block;
  margin-top: 34px;
  font-size: 17px;
}

.timeline p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
}

.timeline li:last-child p {
  color: #aeb7bc;
}

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 58px;
}

.scope-grid > div {
  padding-top: 20px;
  border-top: 4px solid var(--cobalt);
}

.scope-grid > div:last-child {
  border-color: var(--coral);
}

.scope-grid small {
  font-size: 12px;
  font-weight: 900;
}

.scope-grid ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin-top: 22px;
}

.scope-grid li {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 14px;
}

.scope-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: currentColor;
}

.cases-section {
  padding-bottom: 130px;
  background: var(--mist);
  border-block: 1px solid var(--line);
}

.case-list {
  margin-top: 58px;
  border-top: 1px solid var(--ink);
}

.case-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 50px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.case-index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.case-index > span {
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 900;
}

.case-row > div:nth-child(2) small {
  color: var(--muted);
  font-size: 11px;
}

.case-row h3 {
  margin-top: 7px;
  font-size: 26px;
}

.case-row p {
  max-width: 780px;
  margin-top: 16px;
  color: var(--muted);
}

.case-row ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 9px;
}

.case-row li {
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.trust-section {
  padding: 120px 0 130px;
  background: var(--paper);
}

.trust-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 80px;
  align-items: end;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-block: 1px solid var(--ink);
}

.trust-list li {
  min-height: 280px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.trust-list li:last-child {
  border-right: 0;
}

.trust-list span {
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 900;
}

.trust-list h3 {
  margin-top: 52px;
  font-size: 21px;
}

.trust-list p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.diagnosis-section {
  padding: 110px 0;
  color: var(--paper);
  background: var(--cobalt);
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
  align-items: start;
}

.diagnosis-copy p:last-child {
  max-width: 540px;
  margin-top: 24px;
  color: #dbe2ff;
  font-size: 17px;
}

.diagnosis-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
}

.diagnosis-form > label,
.diagnosis-form fieldset {
  min-width: 0;
}

.diagnosis-form > label {
  grid-column: 1 / -1;
}

.diagnosis-form > label > span,
.diagnosis-form legend {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 900;
}

.diagnosis-form select {
  width: 100%;
  min-height: 46px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #aeb7bc;
  border-radius: 3px;
}

.diagnosis-form fieldset {
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
}

.diagnosis-form fieldset label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  color: #40484e;
  font-size: 13px;
}

.diagnosis-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--cobalt);
}

.diagnosis-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.text-button {
  min-height: 42px;
  padding: 8px 2px;
  color: var(--cobalt);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
  cursor: pointer;
}

.diagnosis-result {
  grid-column: 1 / -1;
  display: block;
  padding: 20px;
  background: var(--mist);
  border-left: 5px solid var(--lime);
  white-space: pre-line;
}

.diagnosis-result[hidden] {
  display: none;
}

.site-footer {
  padding: 64px 0 34px;
  color: var(--paper);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 54px;
}

.footer-brand {
  font-size: 17px;
  font-weight: 900;
}

.footer-company p,
.footer-grid > div:not(.footer-company) p {
  margin-top: 22px;
  color: #aeb7bc;
  font-size: 13px;
  line-height: 1.9;
}

.footer-label {
  color: var(--lime);
  font-size: 10px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--paper);
  text-decoration: underline;
}

.footer-grid > small {
  grid-column: 1 / -1;
  padding-top: 30px;
  color: #69747b;
  border-top: 1px solid #30363b;
  font-size: 10px;
}

/* Vertical campaign pages */
.vertical-page {
  background: var(--paper);
}

.vertical-header-link {
  font-size: 13px;
  font-weight: 800;
}

.vertical-hero {
  position: relative;
  height: min(690px, calc(100svh - 110px));
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.vertical-hero::after {
  content: attr(data-number);
  position: absolute;
  right: 4%;
  bottom: -90px;
  color: var(--mist);
  font-size: 330px;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.vertical-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1050px;
}

.vertical-hero h1 {
  font-size: 68px;
  line-height: 1.08;
}

.vertical-hero h1 span {
  background: var(--lime);
}

.vertical-hero p:not(.eyebrow) {
  max-width: 710px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 19px;
}

.vertical-hero .hero-actions {
  margin-top: 34px;
}

.vertical-meta {
  display: flex;
  gap: 34px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.vertical-meta div {
  display: grid;
}

.vertical-meta small {
  color: var(--muted);
  font-size: 10px;
}

.vertical-meta strong {
  margin-top: 3px;
}

.vertical-output {
  padding: 110px 0 120px;
  color: var(--paper);
  background: var(--ink);
}

.vertical-output h2,
.vertical-flow h2,
.vertical-price h2 {
  font-size: 48px;
  line-height: 1.12;
}

.vertical-output-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.vertical-output-list {
  border-top: 1px solid #394147;
}

.vertical-output-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #394147;
}

.vertical-output-list span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.vertical-output-list h3 {
  font-size: 20px;
}

.vertical-output-list p {
  margin-top: 8px;
  color: #aeb7bc;
}

.vertical-flow {
  padding: 110px 0;
}

.vertical-flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-block: 1px solid var(--ink);
}

.vertical-flow-list li {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.vertical-flow-list li:last-child {
  border-right: 0;
}

.vertical-flow-list span {
  color: var(--cobalt);
  font-weight: 900;
}

.vertical-flow-list h3 {
  margin-top: 42px;
  font-size: 20px;
}

.vertical-flow-list p {
  margin-top: 13px;
  color: var(--muted);
}

.vertical-price {
  padding: 100px 0;
  background: var(--lime);
}

.vertical-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vertical-price strong {
  display: block;
  font-size: 64px;
  line-height: 1;
}

.vertical-price p {
  margin-top: 17px;
  color: #46510f;
}

.vertical-cta {
  padding: 100px 0;
  color: var(--paper);
  background: var(--cobalt);
}

.vertical-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.vertical-cta h2 {
  font-size: 45px;
  line-height: 1.14;
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px;
  text-align: center;
  background: var(--mist);
}

.not-found h1 {
  font-size: 56px;
}

.not-found p {
  margin: 18px 0 28px;
  color: var(--muted);
}

@media (max-width: 1500px) {
  .primary-nav {
    gap: 16px;
  }

  .primary-nav > a:not(.button),
  .nav-cta {
    font-size: 13px;
  }

  .hero h1,
  .vertical-hero h1 {
    font-size: 58px;
  }

  .hero-product {
    left: 28%;
  }

  .studio-shell {
    grid-template-columns: 160px minmax(560px, 1fr) 130px;
  }

  .studio-main {
    padding: 28px;
  }
}

@media (max-width: 1200px) {
  :root {
    --header-height: 70px;
  }

  .content-shell,
  .header-inner {
    width: min(calc(100% - 48px), var(--shell));
  }

  .menu-button {
    display: block;
    z-index: 102;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    max-height: calc(100svh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    overflow-y: auto;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(12, 15, 18, 0.14);
  }

  .primary-nav[data-open="true"] {
    display: flex;
  }

  .primary-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 18px;
  }

  .hero::before {
    width: 58%;
  }

  .hero-product {
    left: 34%;
  }

  .studio-shell {
    grid-template-columns: 140px minmax(520px, 1fr);
  }

  .studio-rail {
    display: none;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-lead {
    max-width: 500px;
    font-size: 17px;
  }

  .offer-line {
    width: min(570px, 54vw);
  }

  .proof-strip__inner {
    gap: 20px;
  }

  .proof-strip span:last-child {
    display: none;
  }

  .section-heading--split,
  .delivery-grid,
  .trust-heading,
  .diagnosis-grid,
  .vertical-output-grid {
    gap: 50px;
  }

  .section-heading h2,
  .delivery-copy h2,
  .trust-heading h2,
  .diagnosis-copy h2 {
    font-size: 46px;
  }

  .product-tool {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .tool-review {
    display: none;
  }

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

  .timeline li:nth-child(3) {
    border-right: 0;
  }

  .timeline li:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .timeline li:last-child {
    grid-column: span 2;
  }

  .case-row {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .case-row ul {
    grid-column: 2;
  }
}

@media (min-width: 1201px) and (max-height: 800px) {
  .hero {
    height: calc(100svh - 110px);
    min-height: 590px;
  }

  .hero-product {
    top: 30px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .offer-line {
    margin-top: 24px;
  }

  .studio-main {
    padding: 24px;
  }

  .studio-kpis {
    margin-block: 14px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .content-shell,
  .header-inner {
    width: calc(100% - 32px);
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .hero {
    height: calc(100svh - 96px);
    min-height: 720px;
  }

  .hero::before {
    width: 100%;
    height: 420px;
    bottom: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-product {
    inset: 420px -120px -18px 14%;
  }

  .studio-shell {
    inset: 0;
    grid-template-columns: 105px minmax(460px, 1fr);
    grid-template-rows: 46px 1fr;
    transform: rotate(-1deg);
  }

  .studio-topbar {
    grid-template-columns: 105px 1fr;
  }

  .studio-topbar i {
    display: none;
  }

  .studio-topbar strong,
  .studio-topbar span {
    padding-inline: 12px;
    font-size: 9px;
  }

  .studio-sidebar {
    padding: 18px 8px;
  }

  .studio-sidebar b {
    padding-inline: 6px;
  }

  .studio-sidebar span {
    padding: 8px 6px;
    font-size: 9px;
  }

  .studio-main {
    padding: 20px;
  }

  .studio-work {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .source-sheet,
  .question-sheet {
    min-height: 190px;
    padding: 15px;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 38px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .hero h1 span::after {
    height: 11px;
  }

  .hero-lead {
    max-width: 520px;
    margin-top: 14px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 9px 13px;
    font-size: 13px;
  }

  .offer-line {
    width: 100%;
    margin-top: 18px;
  }

  .offer-line > div {
    padding-block: 9px 10px;
  }

  .offer-line dt {
    font-size: 9px;
  }

  .offer-line dd {
    font-size: 13px;
  }

  .proof-strip {
    min-height: 112px;
  }

  .proof-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px 18px;
    padding-block: 16px;
  }

  .proof-strip strong {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    font-size: 15px;
  }

  .proof-strip span {
    font-size: 11px;
    white-space: normal;
  }

  .proof-strip span:last-child {
    display: inline;
  }

  .section-heading {
    padding-top: 84px;
  }

  .section-heading--split,
  .delivery-grid,
  .trust-heading,
  .diagnosis-grid,
  .vertical-output-grid,
  .vertical-price-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading h2,
  .delivery-copy h2,
  .trust-heading h2,
  .diagnosis-copy h2,
  .vertical-output h2,
  .vertical-flow h2,
  .vertical-price h2 {
    font-size: 35px;
  }

  .section-heading--split > p,
  .trust-heading > p {
    font-size: 15px;
  }

  .product-section,
  .features-section,
  .solutions-section,
  .cases-section {
    padding-bottom: 90px;
  }

  .product-tool {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 34px;
    box-shadow: 0 14px 45px rgba(12, 15, 18, 0.12);
  }

  .tool-library {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 8px;
    padding: 14px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tool-library__head,
  .library-progress {
    display: none;
  }

  .library-item + .library-item {
    margin-top: 0;
  }

  .tool-workspace {
    padding: 16px 14px 22px;
  }

  .demo-panel {
    min-height: 500px;
    padding-top: 22px;
  }

  .demo-panel > header h3 {
    font-size: 20px;
  }

  .question-layout,
  .visual-layout {
    grid-template-columns: 1fr;
  }

  .question-content,
  .source-reference {
    min-height: 0;
    padding: 22px;
  }

  .question-content > p {
    font-size: 17px;
  }

  .source-reference span {
    margin-top: 26px;
  }

  .summary-layout {
    padding: 22px;
  }

  .summary-layout ol {
    grid-template-columns: 1fr;
  }

  .summary-layout li {
    min-height: 0;
  }

  .explanation-layout {
    padding: 22px;
  }

  .explanation-layout li {
    grid-template-columns: 70px 1fr;
  }

  .graph-paper {
    min-height: 300px;
  }

  .feature-list {
    margin-top: 36px;
  }

  .feature-list li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 25px 0;
  }

  .feature-list h3 {
    font-size: 19px;
  }

  .feature-list p {
    font-size: 14px;
  }

  .feature-list > li > strong {
    grid-column: 2;
    text-align: left;
  }

  .solution-list {
    margin-top: 38px;
  }

  .solution-row {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 12px;
    min-height: 130px;
  }

  .solution-row h3 {
    font-size: 20px;
  }

  .solution-row p {
    font-size: 12px;
  }

  .solution-row:hover,
  .solution-row:focus-visible {
    padding-inline: 12px;
  }

  .market-map {
    margin-top: 64px;
  }

  .market-map > header {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0 32px;
  }

  .market-map h3 {
    font-size: 29px;
  }

  .market-map li {
    grid-template-columns: 1fr;
    gap: 7px;
    min-height: 0;
    padding: 20px 0;
  }

  .delivery-section,
  .trust-section {
    padding: 84px 0 90px;
  }

  .price-block {
    padding-left: 22px;
  }

  .price-block > strong {
    font-size: 54px;
  }

  .timeline {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .timeline li,
  .timeline li:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 20px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .timeline li:first-child {
    border-top: 0;
  }

  .timeline strong {
    margin-top: 12px;
  }

  .scope-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 40px;
  }

  .scope-grid ul {
    grid-template-columns: 1fr;
  }

  .case-list {
    margin-top: 36px;
  }

  .case-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
  }

  .case-index {
    flex-direction: row;
    align-items: center;
  }

  .case-row h3 {
    font-size: 21px;
  }

  .case-row ul {
    grid-column: auto;
  }

  .trust-list {
    grid-template-columns: 1fr 1fr;
    margin-top: 38px;
  }

  .trust-list li {
    min-height: 230px;
    padding: 22px;
  }

  .trust-list li:nth-child(2) {
    border-right: 0;
  }

  .trust-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .trust-list h3 {
    margin-top: 34px;
    font-size: 18px;
  }

  .diagnosis-section {
    padding: 78px 0;
  }

  .diagnosis-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .diagnosis-form > label,
  .diagnosis-actions,
  .diagnosis-result {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .vertical-hero {
    height: calc(100svh - 96px);
    min-height: 560px;
  }

  .vertical-hero::after {
    right: -12%;
    font-size: 220px;
  }

  .vertical-hero h1 {
    font-size: 41px;
  }

  .vertical-meta {
    flex-wrap: wrap;
    gap: 18px 30px;
  }

  .vertical-output,
  .vertical-flow,
  .vertical-price,
  .vertical-cta {
    padding: 80px 0;
  }

  .vertical-flow-list {
    grid-template-columns: 1fr 1fr;
  }

  .vertical-flow-list li:nth-child(2) {
    border-right: 0;
  }

  .vertical-flow-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .vertical-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .vertical-cta h2 {
    font-size: 35px;
  }
}

@media (max-width: 860px) and (max-height: 760px) {
  .hero {
    height: calc(100svh - 94px);
    min-height: 565px;
  }

  .hero::before {
    height: 380px;
  }

  .hero-product {
    inset: 380px -150px -28px 18%;
  }

  .hero-content {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-lead {
    max-width: 420px;
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 13px;
  }

  .offer-line {
    margin-top: 13px;
  }

  .vertical-hero {
    height: calc(100svh - 96px);
    min-height: 0;
  }

  .vertical-hero h1 {
    font-size: 35px;
  }

  .vertical-hero p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 15px;
  }

  .vertical-hero .hero-actions {
    margin-top: 22px;
  }

  .vertical-meta {
    margin-top: 26px;
    padding-top: 14px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1;
    padding-inline: 9px;
  }

  .offer-line > div,
  .offer-line > div:not(:first-child) {
    padding-inline: 7px;
  }

  .offer-line dd {
    font-size: 12px;
  }

  .demo-panel > header {
    gap: 10px;
  }

  .demo-panel > header h3 {
    font-size: 17px;
  }

  .question-content ol {
    font-size: 13px;
  }

  .trust-list,
  .vertical-flow-list {
    grid-template-columns: 1fr;
  }

  .trust-list li,
  .vertical-flow-list li {
    min-height: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .trust-list li:first-child,
  .vertical-flow-list li:first-child {
    border-top: 0;
  }

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

  .footer-company {
    grid-column: auto;
  }
}

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

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