:root {
  --ink: #08111f;
  --ink-muted: #59677b;
  --paper: #f5f6f4;
  --white: #ffffff;
  --blue: #315cff;
  --blue-deep: #1d2c8b;
  --orange: #ff9b42;
  --lime: #c7ed83;
  --line: #d6dde3;
  --dark-line: #26344a;
  --radius: 8px;
  --page-pad: clamp(24px, 5vw, 84px);
  --display: "Aptos Display", "Microsoft YaHei UI", "PingFang SC", sans-serif;
  --body: "Aptos", "Microsoft YaHei UI", "PingFang SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

.section-shell {
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--page-pad);
  background: var(--ink);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #1e2b40;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 22px;
  height: 22px;
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 3px;
  background: var(--blue);
}

.brand-mark i {
  display: block;
  background: var(--white);
}

.brand-mark i:nth-child(1) {
  height: 42%;
}

.brand-mark i:nth-child(2) {
  height: 72%;
}

.brand-mark i:nth-child(3) {
  height: 100%;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 22px;
}

.desktop-nav a,
.text-action {
  color: #aebbd0;
  font-size: 14px;
  border: 0;
  background: transparent;
  padding: 9px 0;
  position: relative;
}

.desktop-nav a:hover,
.text-action:hover {
  color: var(--white);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

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

.header-cta {
  min-height: 38px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
}

.header-cta:hover {
  background: var(--white);
  border-color: var(--white);
}

.hero {
  min-height: 716px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(470px, 1.04fr);
  align-items: center;
  position: relative;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid #1e2b40;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--page-pad) - 1px);
  width: 1px;
  background: #26354d;
}

.hero::after {
  content: "";
  position: absolute;
  top: 136px;
  left: var(--page-pad);
  width: min(36vw, 640px);
  height: 1px;
  background: #1d2a40;
}

.hero-copy {
  padding: 106px 50px 92px 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(56px, 6.5vw, 96px);
  line-height: 0.94;
  font-weight: 780;
}

.hero-lead {
  max-width: 440px;
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-description {
  max-width: 475px;
  margin-bottom: 34px;
  color: #aebbd0;
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.primary-action,
.secondary-action,
.closing-action {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  color: var(--white);
  background: var(--blue);
  font-size: 15px;
  font-weight: 760;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.primary-action:hover,
.closing-action:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.primary-action {
  box-shadow: 4px 4px 0 #172774;
}

.primary-action:hover {
  box-shadow: 4px 4px 0 #627a33;
  transform: translate(-1px, -1px);
}

.secondary-action {
  border-color: transparent;
  background: transparent;
  color: var(--white);
  padding-left: 0;
  padding-right: 0;
}

.secondary-action:hover {
  color: var(--lime);
}

.secondary-action span {
  font-size: 18px;
}

.hero-meta {
  display: flex;
  gap: clamp(20px, 3vw, 46px);
  margin-top: 70px;
}

.hero-meta div {
  display: grid;
  gap: 6px;
  min-width: 78px;
  position: relative;
}

.hero-meta div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -22px;
  width: 1px;
  height: 40px;
  background: #2b3a52;
}

.hero-meta strong {
  font-size: 24px;
  font-weight: 780;
}

.hero-meta span {
  color: #93a1b5;
  font-size: 12px;
}

.hero-visual {
  min-height: 716px;
  position: relative;
  z-index: 1;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-visual::before {
  top: 99px;
  bottom: 78px;
  left: 0;
  right: 0;
  border: 1px solid #2d3e5c;
}

.hero-visual::after {
  width: 8px;
  height: 8px;
  top: 95px;
  left: -4px;
  background: var(--orange);
}

.hero-visual img {
  position: absolute;
  top: 100px;
  right: -5%;
  width: min(910px, 108%);
  height: calc(100% - 178px);
  object-fit: cover;
  object-position: 68% center;
  opacity: 0.9;
  mix-blend-mode: screen;
  border: 1px solid rgba(94, 128, 213, 0.16);
}

.visual-topline,
.visual-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  right: -5%;
  color: #7f90ad;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  z-index: 3;
}

.visual-channel-state {
  font-style: normal;
}

.visual-channel-state b,
.visual-channel-state em {
  font: inherit;
}

.visual-topline {
  top: 66px;
}

.visual-bottomline {
  bottom: 44px;
}

.visual-bottomline strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
  font-size: 10px;
}

.visual-bottomline i {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(199, 237, 131, 0.1);
}

.visual-task-card {
  width: 186px;
  position: absolute;
  right: 9%;
  bottom: 102px;
  z-index: 4;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(8, 17, 31, 0.93);
  border: 1px solid #3c5279;
  box-shadow: 8px 8px 0 rgba(8, 17, 31, 0.46);
}

.task-card-label,
.visual-task-card small {
  display: block;
  color: #92a2bf;
  font-size: 10px;
}

.task-card-label {
  margin-bottom: 7px;
  color: var(--lime);
  font-weight: 700;
}

.visual-task-card strong {
  display: block;
  margin-bottom: 11px;
  font-size: 13px;
}

.task-card-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 9px;
}

.task-card-progress i {
  height: 3px;
  background: #33435e;
}

.task-card-progress i:nth-child(-n + 3) {
  background: var(--blue);
}

.hero-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--lime);
  z-index: 3;
}

.pulse-one {
  top: 184px;
  right: 15%;
}

.pulse-two {
  bottom: 176px;
  left: 8%;
  border-color: var(--orange);
}

.visual-caption {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  color: #cdd5ff;
  background: rgba(11, 18, 32, 0.83);
  border: 1px solid #3b4a69;
  font-size: 11px;
  white-space: nowrap;
}

.visual-caption-one {
  top: 194px;
  left: 4%;
}

.visual-caption-two {
  right: 26%;
  bottom: 214px;
}

.signal-strip {
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.signal-strip-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--page-pad);
}

.signal-strip p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 760;
}

.signal-tag {
  padding: 5px 7px;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.signal-list {
  display: flex;
  align-items: center;
  gap: 27px;
}

.signal-list span {
  position: relative;
  padding-left: 12px;
  font-size: 13px;
  font-weight: 650;
}

.signal-list span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  background: var(--blue);
}

.capabilities {
  padding-top: 152px;
  padding-bottom: 152px;
  background: var(--paper);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.workflow-copy h2,
.pricing h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(37px, 4.4vw, 64px);
  line-height: 1.03;
  font-weight: 760;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 78px;
  background: var(--line);
  border: 1px solid var(--line);
}

.capability-item {
  min-height: 456px;
  display: flex;
  flex-direction: column;
  padding: 29px 29px 24px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.capability-item:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-7px);
  box-shadow: 0 12px 0 #dfe5ed;
}

.capability-number {
  margin-bottom: auto;
  font-size: 12px;
  font-weight: 800;
}

.capability-item h3 {
  margin: 44px 0 15px;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.15;
  font-weight: 750;
}

.capability-item p {
  min-height: 68px;
  margin-bottom: 30px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.75;
}

.capability-blue .capability-number {
  color: var(--blue);
}

.capability-orange .capability-number {
  color: #e05f00;
}

.capability-lime .capability-number {
  color: #578414;
}

.mini-visual {
  min-height: 96px;
  margin-top: auto;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line);
}

.channel-visual {
  display: flex;
  align-items: end;
  gap: 7px;
  padding-top: 31px;
}

.channel-visual span {
  padding: 6px 8px;
  color: var(--blue-deep);
  background: #e4ebff;
  font-size: 11px;
  font-weight: 700;
}

.channel-visual i {
  width: 48px;
  height: 1px;
  margin: 0 0 16px auto;
  background: var(--blue);
  position: relative;
}

.channel-visual i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  background: var(--blue);
}

.reply-visual {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding-top: 26px;
}

.reply-visual span,
.reply-visual small {
  font-size: 11px;
  font-weight: 700;
}

.reply-visual b {
  font-size: 41px;
  font-weight: 760;
  line-height: 1;
  color: var(--orange);
}

.reply-visual small {
  padding: 5px 7px;
  color: var(--ink);
  background: var(--lime);
}

.flow-visual {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-top: 38px;
}

.flow-visual i {
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  position: relative;
}

.flow-visual i:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 12px;
  width: 18px;
  height: 2px;
  background: var(--lime);
}

.flow-visual i:nth-child(2),
.flow-visual i:nth-child(3) {
  border-color: #5a871b;
}

.flow-visual i:last-child {
  background: var(--lime);
}

.workflow {
  padding: 0;
  background: var(--ink);
  color: var(--white);
}

.workflow-inner {
  min-height: 702px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(48px, 7vw, 132px);
  align-items: center;
  padding-top: 110px;
  padding-bottom: 110px;
}

.workflow-copy {
  max-width: 480px;
}

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

.workflow-copy h2 {
  margin-bottom: 25px;
}

.workflow-copy > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: #aebbd0;
  font-size: 15px;
  line-height: 1.85;
}

.underlined-action {
  display: inline-flex;
  gap: 18px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  font-size: 15px;
  font-weight: 700;
}

.underlined-action:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.workflow-board {
  width: 100%;
  max-width: 630px;
  justify-self: end;
  border: 1px solid #344259;
  background: #0e1a2c;
  box-shadow: 12px 12px 0 #17263c;
}

.board-head,
.board-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 21px;
  border-bottom: 1px solid #344259;
  color: #a9b7cc;
  font-size: 12px;
}

.board-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
}

.workflow-steps {
  list-style: none;
  margin: 0;
  padding: 3px 0;
}

.workflow-steps li {
  min-height: 92px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 18px 21px;
  border-bottom: 1px solid #29364a;
}

.workflow-steps li:last-child {
  border-bottom: 0;
}

.step-index {
  color: #77849a;
  font-size: 12px;
  font-weight: 800;
}

.workflow-steps strong,
.workflow-steps small {
  display: block;
}

.workflow-steps strong {
  margin-bottom: 6px;
  font-size: 14px;
}

.workflow-steps small {
  color: #8c9bb2;
  font-size: 12px;
}

.step-state {
  color: #8290a5;
  font-size: 12px;
  white-space: nowrap;
}

.workflow-steps .complete .step-state {
  color: var(--lime);
}

.workflow-steps .active {
  background: #14203b;
}

.workflow-steps .active .step-index,
.workflow-steps .active .step-state {
  color: var(--orange);
}

.board-foot {
  border-top: 1px solid #344259;
  border-bottom: 0;
}

.board-foot strong {
  color: var(--orange);
  font-size: 23px;
}

.proof {
  padding-top: 128px;
  padding-bottom: 128px;
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) 1.06fr;
  gap: clamp(48px, 9vw, 164px);
  align-items: end;
}

.proof-statement {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.5vw, 49px);
  line-height: 1.15;
  font-weight: 730;
}

.proof-points p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
}

.proof-points p:last-child {
  border-bottom: 1px solid var(--line);
}

.proof-points span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.pricing {
  padding-top: 130px;
  padding-bottom: 40px;
  background: #e7edf5;
}

.pricing-intro {
  max-width: 720px;
}

.pricing-intro h2 {
  margin-bottom: 20px;
}

.pricing-intro > p:last-child {
  max-width: 490px;
  margin-bottom: 58px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.75;
}

.price-card {
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 10px 10px 0 #c7d2df;
}

.price-card-main {
  min-height: 205px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding: 34px;
  border-bottom: 1px solid var(--ink);
}

.plan-name {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 800;
}

.plan-description {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
}

.price-lockup {
  display: flex;
  align-items: baseline;
  color: var(--blue);
  white-space: nowrap;
}

.price-lockup .currency {
  margin-right: 3px;
  font-size: 32px;
  font-weight: 750;
}

.price-lockup strong {
  font-family: var(--display);
  font-size: clamp(57px, 7vw, 94px);
  line-height: 0.8;
  font-weight: 800;
}

.price-lockup .period {
  margin-left: 7px;
  font-size: 15px;
  font-weight: 750;
}

.price-card-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 34px;
}

.price-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  font-weight: 650;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border: 1px solid var(--ink);
}

.price-action {
  min-width: 132px;
  white-space: nowrap;
}

.pricing-note {
  margin: 17px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.closing {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding-top: 56px;
  padding-bottom: 56px;
  background: #2949da;
  color: var(--white);
}

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

.closing-action {
  flex: 0 0 auto;
  min-width: 152px;
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.closing-action:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.site-footer {
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px var(--page-pad);
  background: var(--ink);
  color: #aab6c9;
  font-size: 12px;
}

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

.site-footer p {
  margin: 0;
}

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

.contact-dialog {
  width: min(500px, calc(100vw - 32px));
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--blue);
}

.contact-dialog::backdrop {
  background: rgba(11, 18, 32, 0.78);
}

.dialog-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 38px;
}

.dialog-card .eyebrow {
  margin-bottom: -4px;
}

.dialog-card h2 {
  margin-bottom: -6px;
  font-size: 34px;
  line-height: 1.08;
}

.dialog-lead {
  margin-bottom: 7px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.6;
}

.dialog-card label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 750;
}

.dialog-card input,
.dialog-card select {
  width: 100%;
  min-height: 45px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid #aeb8c6;
  border-radius: 3px;
  background: var(--white);
  outline: none;
}

.dialog-card input:focus,
.dialog-card select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(49, 89, 245, 0.15);
}

.dialog-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
}

.dialog-close:hover {
  color: var(--blue);
}

.dialog-submit {
  margin-top: 2px;
}

.form-success {
  min-height: 0;
  margin: 0;
  color: #356a15;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .site-header {
    height: 62px;
  }

  .desktop-nav,
  .text-action {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-copy {
    padding-top: 75px;
    padding-bottom: 42px;
  }

  .hero-visual {
    min-height: 410px;
    margin-right: calc(var(--page-pad) * -1);
  }

  .hero-visual::before {
    top: 0;
    bottom: 34px;
    left: 0;
  }

  .hero-visual::after {
    top: -4px;
    left: -4px;
  }

  .hero-visual img {
    top: 14px;
    right: -14px;
    width: 120%;
    height: 390px;
    object-position: 70% center;
  }

  .pulse-one {
    top: 88px;
  }

  .pulse-two {
    bottom: 80px;
  }

  .visual-caption-one {
    top: 80px;
    left: 7%;
  }

  .visual-caption-two {
    right: 20%;
    bottom: 124px;
  }

  .visual-topline {
    top: -28px;
    right: 18px;
    font-size: 9px;
  }

  .visual-bottomline {
    right: 18px;
    bottom: 9px;
  }

  .visual-task-card {
    right: 8%;
    bottom: 48px;
  }

  .signal-strip-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 19px;
    padding-bottom: 19px;
  }

  .signal-list {
    gap: 17px;
    flex-wrap: wrap;
  }

  .capabilities,
  .proof,
  .pricing {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .capability-item {
    min-height: 360px;
  }

  .workflow-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .workflow-board {
    justify-self: stretch;
    max-width: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .price-card-main,
  .price-card-details {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-card-main {
    min-height: 0;
    padding: 28px 22px;
  }

  .price-card-details {
    gap: 28px;
    padding: 24px 22px;
  }

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

  .price-action {
    width: 100%;
  }

  .closing {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

@media (max-width: 520px) {
  :root {
    --page-pad: 22px;
  }

  h1 {
    font-size: 51px;
  }

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

  .hero-lead {
    font-size: 19px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-meta {
    gap: 18px;
    margin-top: 52px;
  }

  .hero-meta strong {
    font-size: 21px;
  }

  .hero-meta span {
    font-size: 11px;
  }

  .hero-visual {
    min-height: 315px;
  }

  .hero-visual img {
    width: 130%;
    height: 322px;
  }

  .visual-caption {
    padding: 5px 6px;
    font-size: 10px;
  }

  .visual-task-card {
    width: 158px;
    padding: 10px;
    right: 4%;
    bottom: 36px;
  }

  .visual-task-card strong {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .task-card-progress {
    margin-bottom: 6px;
  }

  .visual-bottomline {
    font-size: 8px;
  }

  .visual-bottomline strong {
    font-size: 8px;
  }

  .visual-topline {
    left: 0;
    right: 18px;
  }

  .visual-channel-state em {
    display: none;
  }

  .section-heading h2,
  .workflow-copy h2,
  .pricing h2,
  .closing h2 {
    font-size: 37px;
  }

  .capability-item {
    min-height: 330px;
    padding: 24px 22px;
  }

  .capability-item h3 {
    margin-top: 32px;
    font-size: 27px;
  }

  .workflow-steps li {
    grid-template-columns: 30px 1fr;
    gap: 11px;
    padding: 16px;
  }

  .step-state {
    grid-column: 2;
  }

  .board-head,
  .board-foot {
    padding-left: 16px;
    padding-right: 16px;
  }

  .proof-statement {
    font-size: 30px;
  }

  .price-lockup strong {
    font-size: 64px;
  }

  .dialog-card {
    padding: 32px 22px 24px;
  }
}
