:root {
  color-scheme: light;
  --ink: #102a43;
  --ink-soft: #334e68;
  --muted: #587188;
  --line: #d8e2ec;
  --paper: #ffffff;
  --paper-blue: #f3f8fc;
  --paper-warm: #fffaf4;
  --blue: #1463ff;
  --blue-dark: #0847bd;
  --blue-pale: #eaf1ff;
  --pin: #f15b2a;
  --pin-dark: #c83d14;
  --pin-pale: #fff0e9;
  --green: #147d64;
  --green-pale: #e6f6f1;
  --shadow: 0 22px 65px rgb(16 42 67 / 12%);
  --radius: 22px;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 280px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 85% 6%, rgb(20 99 255 / 8%), transparent 27rem),
    var(--paper);
}

body,
button,
input,
textarea {
  font: inherit;
}

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

a {
  color: var(--blue-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--blue);
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgb(216 226 236 / 80%);
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(16px);
}

.nav-shell,
.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 26px rgb(20 99 255 / 24%);
}

.button--primary:hover {
  color: #fff;
  background: var(--blue-dark);
}

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

.button--secondary:hover {
  color: var(--ink);
  border-color: #9fb3c8;
  box-shadow: 0 8px 20px rgb(16 42 67 / 9%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pin);
  content: "";
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 76px;
  padding-block: 86px 104px;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--blue);
}

.hero__lede {
  max-width: 55ch;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero__note::before {
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green-pale);
  content: "";
}

.product-frame {
  position: relative;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgb(255 255 255 / 82%);
  box-shadow: var(--shadow);
  transform: rotate(0.6deg);
}

.product-frame::before {
  position: absolute;
  z-index: -1;
  inset: 28px -20px -20px 40px;
  border-radius: 28px;
  background: var(--blue-pale);
  content: "";
  transform: rotate(-3deg);
}

.product-ui {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid #cbd8e5;
  border-radius: 16px;
  background: #f8fafc;
}

.product-ui__bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 13px 10px 17px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.product-ui__title strong,
.product-ui__title small {
  display: block;
}

.product-ui__title strong {
  font-size: 14px;
}

.product-ui__title small {
  overflow: hidden;
  max-width: 27ch;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fake-actions {
  display: flex;
  gap: 6px;
}

.fake-button {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  background: #fff;
  font-size: 8px;
  font-weight: 720;
}

.fake-button--blue {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.product-ui__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 165px;
  gap: 10px;
  padding: 10px;
}

.plan {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid #b8c8d8;
  border-radius: 5px;
  background-color: #fff;
  background-image:
    linear-gradient(rgb(20 99 255 / 8%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(20 99 255 / 8%) 1px, transparent 1px);
  background-size: 18px 18px;
}

.plan__room {
  position: absolute;
  border: 2px solid #7695b2;
}

.plan__room--one {
  inset: 34px 38% 48% 28px;
}

.plan__room--two {
  inset: 51% 18px 25px 45%;
}

.plan__wall {
  position: absolute;
  height: 3px;
  background: #7695b2;
  transform-origin: left;
}

.plan__wall--one {
  top: 42%;
  left: 17%;
  width: 64%;
  transform: rotate(-9deg);
}

.plan__wall--two {
  top: 67%;
  left: 8%;
  width: 43%;
  transform: rotate(14deg);
}

.plan__label {
  position: absolute;
  color: #829ab1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.plan__label--one {
  top: 58px;
  left: 51px;
}

.plan__label--two {
  right: 42px;
  bottom: 64px;
}

.map-pin {
  position: absolute;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 8%;
  color: #fff;
  background: var(--pin);
  box-shadow: 0 6px 13px rgb(16 42 67 / 24%);
  font-size: 9px;
  font-weight: 800;
  transform: rotate(-45deg);
}

.map-pin span {
  transform: rotate(45deg);
}

.map-pin--one {
  top: 29%;
  left: 34%;
}

.map-pin--two {
  right: 24%;
  bottom: 24%;
  background: var(--blue);
}

.task-card {
  min-height: 340px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.task-card__heading {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
}

.task-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pin);
}

.fake-field {
  margin-top: 15px;
}

.fake-field span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 750;
  text-transform: uppercase;
}

.fake-input {
  min-height: 27px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink-soft);
  font-size: 8px;
}

.fake-input--status {
  width: fit-content;
  border-color: #bfe3d8;
  color: var(--green);
  background: var(--green-pale);
  font-weight: 750;
}

.section {
  padding-block: 92px;
}

.section--tint {
  border-block: 1px solid #e5edf4;
  background: var(--paper-blue);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

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

.feature-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-size: 22px;
  font-weight: 800;
}

.feature-card:nth-child(2) .feature-card__icon,
.feature-card:nth-child(5) .feature-card__icon {
  color: var(--pin-dark);
  background: var(--pin-pale);
}

.feature-card:nth-child(3) .feature-card__icon,
.feature-card:nth-child(6) .feature-card__icon {
  color: var(--green);
  background: var(--green-pale);
}

.feature-card h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding-top: 64px;
  counter-increment: steps;
}

.step::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid #b9c9d8;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #fff;
  content: counter(steps, decimal-leading-zero);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 800;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 22px;
  left: 58px;
  width: calc(100% - 34px);
  border-top: 1px dashed #9fb3c8;
  content: "";
}

.step h3 {
  margin: 0 0 9px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 850px;
}

.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.price-card--pro {
  border: 2px solid var(--blue);
  box-shadow: 0 18px 48px rgb(20 99 255 / 13%);
}

.price-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  border-radius: 99px;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: 28px;
}

.price-card__lead {
  min-height: 48px;
  margin: 9px 0 24px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-pale);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.pricing-note {
  max-width: 850px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.trust-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.trust-band h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.045em;
}

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

.trust-point {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.trust-point strong,
.trust-point span {
  display: block;
}

.trust-point strong {
  margin-bottom: 5px;
}

.trust-point span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
  padding: 48px;
  border-radius: 28px;
  color: #fff;
  background: var(--ink);
}

.cta::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  border: 54px solid rgb(255 255 255 / 7%);
  border-radius: 50%;
  content: "";
}

.cta h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.cta p {
  position: relative;
  z-index: 1;
  max-width: 58ch;
  margin: 10px 0 0;
  color: #cbd8e5;
  line-height: 1.6;
}

.cta .button {
  position: relative;
  z-index: 1;
  color: var(--ink);
  background: #fff;
}

.site-footer {
  padding-block: 52px 38px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.footer-brand p {
  max-width: 48ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 28px;
  align-content: start;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 30px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  padding-block: 78px 55px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--paper-blue), #fff 68%);
}

.page-hero__inner {
  max-width: 820px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 65ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.page-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.prose-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 70px;
  align-items: start;
  padding-block: 66px 100px;
}

.prose-nav {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-blue);
}

.prose-nav strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.prose-nav a {
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}

.prose {
  min-width: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  margin: 58px 0 15px;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -0.035em;
}

.prose h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 19px;
}

.prose p,
.prose ul,
.prose ol {
  margin-block: 13px;
}

.prose li + li {
  margin-top: 8px;
}

.prose strong {
  color: var(--ink);
}

.prose table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.prose th,
.prose td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prose th {
  color: var(--ink);
  background: var(--paper-blue);
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  background: var(--blue-pale);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding-block: 68px 100px;
}

.support-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.support-card--highlight {
  color: #fff;
  background: var(--ink);
}

.support-card h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.support-card--highlight p {
  color: #cbd8e5;
}

.support-email {
  display: inline-block;
  margin-top: 25px;
  color: #fff;
  font-size: clamp(21px, 3vw, 29px);
  font-weight: 760;
  letter-spacing: -0.03em;
}

.support-email:hover {
  color: #fff;
}

.support-list {
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.support-list li + li {
  margin-top: 9px;
}

.faq {
  grid-column: 1 / -1;
  margin-top: 18px;
}

.faq h2 {
  margin: 0 0 20px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.faq details {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 730;
}

.faq details p {
  max-width: 72ch;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.help-body {
  background: var(--paper-blue);
}

.help-shell {
  width: min(940px, calc(100% - 32px));
  margin-inline: auto;
  padding-block: 32px 60px;
}

.help-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 780;
}

.help-brand img {
  width: 34px;
  height: 34px;
}

.help-intro {
  padding: 44px 0 32px;
}

.help-intro h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(38px, 7vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.help-intro p {
  max-width: 65ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.help-card {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 45px rgb(16 42 67 / 7%);
}

.help-card + .help-card {
  margin-top: 22px;
}

.help-card h2 {
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.prerequisites {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.prerequisite {
  padding: 17px;
  border-radius: 12px;
  color: var(--ink-soft);
  background: var(--paper-blue);
  font-size: 14px;
  line-height: 1.55;
}

.prerequisite strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.quick-start {
  display: grid;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: quick-start;
}

.quick-start > li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  counter-increment: quick-start;
}

.quick-start > li::before {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--blue);
  content: counter(quick-start);
  font-weight: 820;
}

.quick-start h3 {
  margin: 2px 0 6px;
  font-size: 18px;
}

.quick-start p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.mini-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 25px;
}

.mini-screen {
  min-height: 150px;
  padding: 13px;
  border: 1px solid #c7d5e2;
  border-radius: 11px;
  background: #f8fafc;
}

.mini-screen__bar {
  width: 50%;
  height: 7px;
  margin-bottom: 12px;
  border-radius: 9px;
  background: #b8c8d8;
}

.mini-screen__plan {
  position: relative;
  height: 102px;
  border: 1px solid #9fb3c8;
  background:
    linear-gradient(rgb(20 99 255 / 8%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(20 99 255 / 8%) 1px, transparent 1px),
    #fff;
  background-size: 12px 12px;
}

.mini-screen__plan::after {
  position: absolute;
  top: 35px;
  left: 49%;
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 6px;
  background: var(--pin);
  box-shadow: 0 4px 8px rgb(16 42 67 / 20%);
  content: "";
  transform: rotate(-45deg);
}

.mini-screen__rows {
  display: grid;
  gap: 8px;
}

.mini-screen__rows span {
  height: 19px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.mini-screen__rows span:last-child {
  width: 68%;
  border-color: #bfe3d8;
  background: var(--green-pale);
}

.mini-screen__report {
  position: relative;
  width: 72px;
  height: 105px;
  margin: 2px auto 0;
  border: 1px solid #9fb3c8;
  background: #fff;
  box-shadow: 5px 5px 0 #dce6ef;
}

.mini-screen__report::before,
.mini-screen__report::after {
  position: absolute;
  left: 12px;
  height: 5px;
  border-radius: 4px;
  background: #b8c8d8;
  content: "";
}

.mini-screen__report::before {
  top: 17px;
  width: 46px;
  box-shadow: 0 12px 0 #d8e2ec, 0 24px 0 #d8e2ec;
}

.mini-screen__report::after {
  bottom: 14px;
  width: 28px;
  background: var(--blue);
}

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

.help-columns h3 {
  margin: 0 0 10px;
}

.help-columns p,
.help-columns ul {
  color: var(--muted);
  line-height: 1.6;
}

.help-columns ul {
  padding-left: 20px;
}

.help-contact {
  margin: 28px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.error-card {
  max-width: 540px;
  text-align: center;
}

.error-card img {
  width: 58px;
  margin-inline: auto;
}

.error-card h1 {
  margin: 24px 0 12px;
  font-size: clamp(40px, 7vw, 64px);
  letter-spacing: -0.05em;
}

.error-card p {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 68px 86px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero__copy {
    max-width: 700px;
  }

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

  .trust-band {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .prose-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prose-nav {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .prose-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .nav-shell {
    min-height: 64px;
  }

  .site-nav a:not(.nav-support) {
    display: none;
  }

  .hero {
    padding-block: 50px 70px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .product-frame {
    padding: 8px;
  }

  .product-ui {
    min-height: 330px;
  }

  .product-ui__bar {
    align-items: flex-start;
  }

  .fake-actions .fake-button:not(.fake-button--blue) {
    display: none;
  }

  .product-ui__body {
    grid-template-columns: 1fr 112px;
  }

  .plan,
  .task-card {
    min-height: 250px;
  }

  .feature-grid,
  .steps,
  .pricing-grid,
  .trust-points,
  .support-grid,
  .prerequisites,
  .mini-flow,
  .help-columns {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .price-card__lead {
    min-height: 0;
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .cta .button {
    width: fit-content;
  }

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

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    display: grid;
  }

  .page-hero {
    padding-block: 56px 42px;
  }

  .prose-layout {
    padding-block: 42px 72px;
  }

  .prose-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .prose table,
  .prose thead,
  .prose tbody,
  .prose th,
  .prose td,
  .prose tr {
    display: block;
  }

  .prose th {
    border-bottom: 0;
  }

  .prose td + td {
    border-top: 0;
  }

  .prose tr + tr th {
    margin-top: 14px;
  }

  .support-grid {
    padding-block: 46px 72px;
  }

  .faq {
    grid-column: auto;
  }
}

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

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