:root {
  color-scheme: light;
  --page: #f4f6f2;
  --surface: #ffffff;
  --surface-strong: #171a18;
  --text: #171a18;
  --text-soft: #5e6560;
  --line: #d9ddd8;
  --line-strong: #aeb5af;
  --green: #8fd44f;
  --green-dark: #416d20;
  --blue: #365cf5;
  --orange: #e7672e;
  --focus: #1c56d8;
  --shell: 1180px;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Microsoft YaHei',
    sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 960px;
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

img {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 2px solid var(--focus);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  padding: 0 max(32px, calc((100vw - var(--shell)) / 2));
  background: rgba(244, 246, 242, 0.94);
  border-bottom: 1px solid transparent;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 750;
}

.brand img,
.footer-brand img {
  border-radius: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a,
.header-action,
.primary-action,
.secondary-action,
.download-option,
.closing-action {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-action {
  justify-self: end;
  padding: 8px 0;
  border-bottom: 1px solid var(--text);
  font-size: 14px;
  font-weight: 700;
}

.header-action:hover,
.header-action:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
}

.brand:focus-visible,
.site-nav a:focus-visible,
.header-action:focus-visible,
.primary-action:focus-visible,
.secondary-action:focus-visible,
.download-option:focus-visible,
.closing-action:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.section-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin: 0 auto;
}

.section-band {
  border-top: 1px solid var(--line);
}

.hero {
  position: relative;
  height: min(760px, calc(100vh - 92px));
  min-height: 640px;
  overflow: hidden;
  background: #101511;
  color: #ffffff;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(32px, calc((100vw - var(--shell)) / 2));
  width: 470px;
  transform: translateY(-54%);
}

.eyebrow,
.section-kicker,
.feature-label,
.step-meta {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  color: #b9ed8d;
}

.hero h1 {
  margin: 12px 0 8px;
  font-size: 84px;
  font-weight: 780;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 460px;
  margin: 28px 0 0;
  font-size: 28px;
  font-weight: 650;
  line-height: 1.35;
}

.hero-detail {
  max-width: 450px;
  margin: 18px 0 0;
  color: #c7cdc8;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
}

.primary-action {
  gap: 10px;
  background: var(--green);
  color: #10220a;
}

.primary-action:hover {
  background: #a5e66d;
  transform: translateY(-2px);
}

.secondary-action {
  border-color: rgba(255, 255, 255, 0.38);
  color: #ffffff;
}

.secondary-action:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-status {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - var(--shell)) / 2));
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d5dad6;
  font-size: 12px;
}

.hero-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-status i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.positioning {
  padding: 96px 0 0;
  background: var(--surface);
}

.positioning-grid {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 70px;
  align-items: start;
}

.section-kicker {
  color: var(--green-dark);
}

.positioning h2,
.section-heading h2,
.closing h2 {
  max-width: 850px;
  margin: 0;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.positioning-grid > div > p {
  max-width: 800px;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.8;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 86px;
  border-top: 1px solid var(--line);
}

.proof-row > div {
  min-height: 156px;
  padding: 30px 34px 28px 0;
}

.proof-row > div + div {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  margin-bottom: 10px;
  font-size: 22px;
}

.proof-row span {
  color: var(--text-soft);
  font-size: 14px;
}

.capabilities,
.workflow,
.scenarios,
.pricing,
.download {
  padding: 112px 0;
}

.capabilities {
  background: var(--page);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 56px;
}

.section-heading > p:last-child {
  grid-column: 2;
  max-width: 650px;
  margin: -44px 0 0;
  color: var(--text-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  overflow: hidden;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.feature-large {
  grid-column: span 2;
  min-height: 430px;
}

.feature-index {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin-top: 62px;
}

.feature-large .feature-copy {
  max-width: 490px;
}

.feature-label {
  color: var(--green-dark);
}

.feature h3 {
  margin: 12px 0 14px;
  font-size: 30px;
  line-height: 1.25;
}

.feature p:last-child {
  margin: 0;
  color: var(--text-soft);
}

.feature-workspace {
  background: var(--surface-strong);
  border-color: var(--surface-strong);
  color: #ffffff;
}

.feature-workspace .feature-index,
.feature-workspace .feature-copy p:last-child {
  color: #aeb5b0;
}

.feature-workspace .feature-label {
  color: #b9ed8d;
}

.file-stack {
  position: absolute;
  top: 54px;
  right: 44px;
  width: 440px;
  padding: 18px;
  background: #232724;
  border: 1px solid #3b423d;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.file-stack span,
.file-stack b {
  display: block;
}

.file-stack span {
  padding: 5px 8px 13px;
  color: #89918b;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.file-stack b {
  margin-top: 5px;
  padding: 11px 12px;
  background: #2c312d;
  border-left: 3px solid #616a63;
  font-size: 13px;
  font-weight: 550;
}

.file-stack .file-created {
  border-left-color: var(--green);
  color: #d9ffc0;
}

.agent-line,
.tool-chips,
.team-map,
.schedule-strip,
.control-log,
.preview-pane {
  margin-top: auto;
}

.agent-line,
.tool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agent-line span,
.tool-chips span {
  padding: 8px 11px;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 650;
}

.agent-line .agent-active {
  background: #eff8e7;
  border-color: #a9ce8b;
  color: #355b18;
}

.team-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.team-map span {
  padding: 9px 10px;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-soft);
  font-size: 12px;
  text-align: center;
}

.team-map .leader {
  grid-column: 1 / -1;
  background: var(--text);
  color: #ffffff;
}

.schedule-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #f1f5ff;
  border-left: 3px solid var(--blue);
  font-size: 12px;
}

.schedule-strip span,
.schedule-strip em {
  color: var(--text-soft);
  font-style: normal;
}

.schedule-strip em {
  color: #3456d0;
  font-weight: 700;
}

.control-log {
  display: grid;
  gap: 8px;
}

.control-log span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-soft);
  font-size: 12px;
}

.control-log i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.control-log .pending {
  color: var(--orange);
}

.control-log .pending i {
  background: var(--orange);
}

.preview-pane {
  position: relative;
  min-height: 82px;
  padding: 13px;
  background: #eef1ed;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.preview-pane span {
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
}

.preview-pane div {
  position: absolute;
  top: 14px;
  right: 13px;
  display: flex;
  gap: 4px;
}

.preview-pane div i {
  width: 5px;
  height: 5px;
  background: var(--line-strong);
  border-radius: 50%;
}

.preview-pane b {
  display: block;
  width: 78%;
  height: 5px;
  margin-top: 7px;
  background: #cfd5d0;
}

.preview-pane b:nth-of-type(2) {
  width: 58%;
}

.preview-pane b:nth-of-type(3) {
  width: 68%;
  background: #acd68d;
}

.workflow {
  background: var(--surface-strong);
  color: #ffffff;
}

.workflow .section-kicker {
  color: #b9ed8d;
}

.workflow-heading {
  margin-bottom: 72px;
}

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #3a3e3b;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 150px;
  border-bottom: 1px solid #3a3e3b;
}

.step-number {
  color: #949c96;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
}

.workflow-list h3 {
  margin: 0 0 7px;
  font-size: 24px;
}

.workflow-list p {
  max-width: 660px;
  margin: 0;
  color: #adb4af;
}

.step-meta {
  color: #7c857f;
}

.scenarios {
  background: var(--surface);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.scenario-grid article {
  min-height: 320px;
  padding: 30px 32px 32px 0;
}

.scenario-grid article + article {
  padding-left: 32px;
  border-left: 1px solid var(--line-strong);
}

.scenario-grid p {
  margin: 0;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
}

.scenario-grid h3 {
  margin: 92px 0 22px;
  font-size: 25px;
  line-height: 1.35;
}

.scenario-grid span {
  color: var(--text-soft);
  font-size: 13px;
}

.pricing {
  background: var(--page);
}

.pricing-heading {
  margin-bottom: 48px;
}

.pricing-summary,
.pricing-recommendations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-summary article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 142px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.pricing-summary-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-soft);
}

.pricing-summary-icon svg {
  width: 22px;
  height: 22px;
}

.pricing-summary article div,
.pricing-summary article span,
.pricing-summary article strong,
.pricing-summary article small {
  min-width: 0;
}

.pricing-summary article div > span,
.pricing-summary article small {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
}

.pricing-summary article strong {
  display: block;
  margin: 2px 0 1px;
  color: var(--green-dark);
  font-size: 23px;
  line-height: 1.25;
}

.pricing-subheading {
  margin: 58px 0 20px;
}

.pricing-subheading h3,
.pricing-table-heading h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.pricing-subheading p,
.pricing-table-heading p {
  margin: 5px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.pricing-recommendation {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.pricing-recommendation.is-featured {
  background: #f3f9ed;
  border-color: #8aae70;
}

.pricing-recommendation-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.pricing-recommendation-meta span {
  color: var(--text-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.pricing-recommendation-meta b,
.pricing-family {
  padding: 4px 8px;
  background: var(--page);
  border-radius: 3px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.pricing-recommendation.is-featured .pricing-recommendation-meta b,
.pricing-family.is-deepseek {
  background: #e3f4d7;
  color: #355b18;
}

.pricing-recommendation h3 {
  margin: 30px 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

.pricing-recommendation > p:not(.pricing-recommendation-meta) {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.pricing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 22px;
}

.pricing-tags span {
  padding: 4px 8px;
  background: var(--page);
  color: var(--text-soft);
  font-size: 12px;
}

.pricing-rate {
  margin-top: 14px;
  color: var(--green-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.pricing-table-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 58px 0 18px;
}

.pricing-table-heading > span {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.pricing-table-wrap {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

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

.pricing-table th,
.pricing-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.pricing-table thead th {
  background: #ecefeb;
  color: #343a36;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.pricing-table tbody tr:last-child > * {
  border-bottom: 0;
}

.pricing-table tbody th {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.pricing-table td:not(:last-child) {
  white-space: nowrap;
}

.pricing-table .pricing-loading-row td {
  padding: 28px;
  color: var(--text-soft);
  text-align: center;
}

.pricing-discount {
  color: var(--green-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 750;
}

.showcase {
  padding: 112px 0;
  background: var(--page);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 16px;
}

.showcase-item {
  min-width: 0;
  margin: 0;
}

.showcase-item-featured {
  grid-column: 1 / -1;
}

.showcase-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8ebe7;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.showcase-item figcaption {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  margin-top: 15px;
}

.showcase-item figcaption span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.showcase-item figcaption strong {
  font-size: 17px;
  line-height: 1.45;
}

.download {
  background: var(--page);
}

.download-heading {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.download-heading h2 {
  margin: 12px 0 0;
  font-size: 46px;
  line-height: 1.2;
}

.download-heading > p {
  margin: 0;
  color: var(--text-soft);
}

.download-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.download-option {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.download-option:hover {
  background: #f9fbf7;
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.download-option[aria-disabled='true'] {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.download-option.is-unavailable {
  cursor: not-allowed;
}

.download-platform {
  position: absolute;
  top: 26px;
  left: 28px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.download-option strong {
  max-width: calc(100% - 64px);
  font-size: 28px;
  line-height: 1.25;
}

.download-meta {
  min-height: 26px;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 14px;
}

.download-arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  font-size: 28px;
  line-height: 1;
}

.download-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 13px;
}

.closing {
  padding: 90px 0;
  background: var(--green);
}

.closing .section-kicker {
  color: #2f5118;
}

.closing-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr auto;
  gap: 54px;
  align-items: end;
}

.closing h2 {
  margin-top: 14px;
}

.closing-layout > p {
  margin: 0;
  color: #294118;
}

.closing-action {
  padding: 9px 0;
  border-bottom: 1px solid #213414;
  font-size: 14px;
  font-weight: 750;
}

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

.site-footer {
  padding: 32px 0;
  background: var(--surface-strong);
  color: #ffffff;
}

.site-footer .section-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.site-footer p,
.site-footer span {
  margin: 0;
  color: #9ca39e;
  font-size: 12px;
}

.site-footer span {
  justify-self: end;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 480ms ease,
    transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 1120px) {
  .site-header {
    padding-inline: 32px;
  }

  .hero-copy {
    left: 48px;
    width: 440px;
  }

  .hero-visual {
    object-position: left center;
  }

  .hero-status {
    right: 48px;
  }

  .positioning h2,
  .section-heading h2,
  .download-heading h2,
  .closing h2 {
    font-size: 40px;
  }

  .file-stack {
    right: 28px;
    width: 390px;
  }

  .feature-large .feature-copy {
    max-width: 360px;
  }

  .pricing-summary article {
    padding: 20px;
  }

  .pricing-recommendation {
    padding: 22px;
  }

  .pricing-table th,
  .pricing-table td {
    padding-inline: 10px;
  }
}

@media (max-width: 900px) {
  body {
    min-width: 0;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 60px;
    padding-inline: 20px;
  }

  .site-nav {
    display: none;
  }

  .header-action {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .section-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

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

  .hero-visual {
    object-position: 64% center;
    opacity: 0.38;
  }

  .hero-copy {
    top: 46%;
    left: 20px;
    width: calc(100% - 40px);
    transform: translateY(-50%);
  }

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

  .hero-lead {
    margin-top: 22px;
    font-size: 23px;
  }

  .hero-detail {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    min-height: 48px;
  }

  .hero-status {
    right: auto;
    bottom: 18px;
    left: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .positioning,
  .capabilities,
  .workflow,
  .scenarios,
  .pricing,
  .showcase,
  .download {
    padding: 76px 0;
  }

  .positioning-grid,
  .section-heading,
  .download-heading,
  .closing-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .positioning h2,
  .section-heading h2,
  .download-heading h2,
  .closing h2 {
    font-size: 34px;
  }

  .positioning-grid > div > p {
    font-size: 16px;
  }

  .proof-row {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .proof-row > div {
    min-height: auto;
    padding: 24px 0;
  }

  .proof-row > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading > p:last-child {
    grid-column: auto;
    margin: 0;
  }

  .feature-grid,
  .showcase-grid,
  .download-options {
    grid-template-columns: 1fr;
  }

  .feature,
  .feature-large {
    grid-column: auto;
    min-height: 360px;
  }

  .feature-copy {
    margin-top: 38px;
  }

  .file-stack {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 32px;
  }

  .workflow-heading {
    margin-bottom: 46px;
  }

  .workflow-list li {
    grid-template-columns: 42px 1fr;
    min-height: 170px;
  }

  .step-meta {
    display: none;
  }

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

  .scenario-grid article {
    min-height: auto;
    padding: 26px 0 32px;
  }

  .scenario-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .scenario-grid h3 {
    margin: 44px 0 18px;
  }

  .showcase-item-featured {
    grid-column: auto;
  }

  .showcase-item figcaption {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .download-heading {
    align-items: start;
  }

  .download-option {
    min-height: 190px;
  }

  .closing {
    padding: 72px 0;
  }

  .closing-layout {
    align-items: start;
  }

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

  .site-footer .section-shell {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer span {
    justify-self: start;
  }

  .pricing-summary,
  .pricing-recommendations {
    grid-template-columns: 1fr;
  }

  .pricing-summary article,
  .pricing-recommendation {
    min-height: auto;
  }

  .pricing-recommendation h3 {
    margin-top: 22px;
  }

  .pricing-tags {
    margin-top: 20px;
  }

  .pricing-table-heading {
    align-items: start;
    flex-direction: column;
  }

  .pricing-table-wrap {
    overflow: visible;
    background: transparent;
    border: 0;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
  }

  .pricing-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .pricing-table tbody {
    display: grid;
    gap: 12px;
  }

  .pricing-table tbody tr {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .pricing-table tbody th {
    padding: 0 0 14px;
    border-bottom: 1px solid var(--line-strong);
    font-size: 15px;
  }

  .pricing-table td {
    display: grid;
    grid-template-columns: minmax(110px, 0.8fr) 1fr;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    white-space: normal !important;
  }

  .pricing-table td::before {
    content: attr(data-label);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
  }

  .pricing-table .pricing-loading-row td {
    display: block;
    padding: 24px 0;
  }

  .pricing-table .pricing-loading-row td::before {
    content: none;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
