@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Instrument+Sans:wght@400;500;600;700&display=swap');

:root {
  --paper: #f3f0e8;
  --paper-deep: #e8e3d7;
  --ink: #18201c;
  --muted: #59615d;
  --line: #c8c5bb;
  --forest: #153c30;
  --forest-2: #205744;
  --lime: #c8f169;
  --orange: #e86134;
  --white: #fffef9;
  --danger: #9c2f21;
  --font-sans: "Instrument Sans", "Helvetica Neue", sans-serif;
  --font-mono: "DM Mono", monospace;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 232, .96);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand-mark {
  width: 30px;
  height: 30px;
  flex: none;
}

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

.site-nav a {
  color: #3f4743;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  padding: 0 18px;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-cta:hover,
.button:hover {
  border-color: var(--forest-2);
  background: var(--forest-2);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest);
}

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

.button-outline {
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
}

.hero {
  display: grid;
  min-height: calc(100vh - 70px);
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 96px max(6vw, 40px) 88px max(calc((100vw - var(--container)) / 2), 20px);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 30px;
  font-size: clamp(54px, 6.5vw, 104px);
  font-weight: 600;
  letter-spacing: -.07em;
  line-height: .92;
}

.hero h1 em {
  color: var(--forest-2);
  font-style: normal;
}

.hero-intro {
  max-width: 590px;
  margin: 0 0 32px;
  color: #3f4843;
  font-size: clamp(18px, 1.55vw, 22px);
  letter-spacing: -.015em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.hero-product {
  display: flex;
  min-width: 0;
  min-height: 610px;
  align-items: center;
  padding: 64px clamp(28px, 4vw, 72px);
  overflow: hidden;
  border-left: 1px solid #376152;
  background: var(--forest);
  color: var(--white);
}

.product-window {
  width: min(100%, 650px);
  margin: auto;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  background: #fbfaf5;
  color: var(--ink);
  box-shadow: 18px 18px 0 rgba(8, 26, 20, .42);
}

.window-top {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 14px;
  font-family: var(--font-mono);
  font-size: 10px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b2afa6;
}

.window-body {
  display: grid;
  min-height: 410px;
  grid-template-columns: 112px 1fr;
}

.window-rail {
  border-right: 1px solid var(--line);
  padding: 18px 12px;
  background: #efede5;
}

.rail-logo {
  width: 28px;
  height: 28px;
  margin-bottom: 30px;
  border-radius: 4px;
  background: var(--orange);
}

.window-rail span {
  display: block;
  height: 5px;
  margin: 13px 0;
  background: #c7c4ba;
}

.window-rail span:nth-of-type(2) {
  width: 64%;
  background: var(--forest-2);
}

.window-main {
  padding: 24px;
}

.window-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.window-title strong {
  font-size: 17px;
}

.window-title b {
  padding: 7px 10px;
  border-radius: 4px;
  background: var(--lime);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
}

.work-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 11px;
  border-top: 1px solid #d8d5cc;
  padding: 16px 0;
}

.work-row:last-child {
  border-bottom: 1px solid #d8d5cc;
}

.work-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #c4c1b8;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
}

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

.work-row strong {
  font-size: 12px;
}

.work-row span {
  color: #6f746f;
  font-size: 9px;
}

.work-row time {
  font-family: var(--font-mono);
  font-size: 9px;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 116px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  border-left: 1px solid var(--line);
}

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

.proof-item strong {
  margin-bottom: 6px;
  font-size: 18px;
  letter-spacing: -.025em;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.section-compact {
  padding: 80px 0;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-forest {
  background: var(--forest);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, .36fr) minmax(0, 1fr);
  gap: 70px;
  margin-bottom: 72px;
}

.section-index {
  padding-top: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.section-dark .section-index,
.section-forest .section-index {
  color: #aeb9b3;
}

.section-heading h2,
.page-hero h1,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1;
}

.section-heading p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.section-dark .section-heading p,
.section-forest .section-heading p {
  color: #c3cdc8;
}

.feature-lines {
  border-top: 1px solid var(--line);
}

.feature-line {
  display: grid;
  grid-template-columns: 110px minmax(220px, .55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.feature-no {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
}

.feature-line h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.feature-line p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #48504c;
  border-left: 1px solid #48504c;
}

.workflow-step {
  min-height: 270px;
  border-right: 1px solid #48504c;
  border-bottom: 1px solid #48504c;
  padding: 28px;
}

.workflow-step span {
  display: block;
  margin-bottom: 78px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 12px;
}

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

.workflow-step p {
  margin: 0;
  color: #bbc4bf;
  font-size: 14px;
}

.pricing-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.billing-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 3px;
}

.billing-switch button {
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 13px;
}

.billing-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.price-plan {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 30px;
}

.price-plan.featured {
  background: var(--forest);
  color: var(--white);
}

.price-plan h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.price-plan > p {
  min-height: 52px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 14px;
}

.price-plan.featured > p,
.price-plan.featured .price-meta {
  color: #c7d1cc;
}

.price {
  margin-bottom: 4px;
  font-size: 40px;
  font-weight: 650;
  letter-spacing: -.05em;
}

.price .annual-price,
.price[data-cycle="annual"] .monthly-price {
  display: none;
}

.price[data-cycle="annual"] .annual-price {
  display: inline;
}

.price small {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.price-meta {
  min-height: 43px;
  margin: 0 0 26px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.price-plan ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.price-plan li {
  position: relative;
  margin: 11px 0;
  padding-left: 21px;
  font-size: 14px;
}

.price-plan li::before {
  position: absolute;
  top: .54em;
  left: 0;
  width: 8px;
  height: 5px;
  border-bottom: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  content: "";
  transform: rotate(-45deg);
}

.price-plan .button {
  width: 100%;
  margin-top: auto;
}

.pricing-footnote {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-band h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1;
}

.cta-band p {
  max-width: 670px;
  margin: 20px 0 0;
  color: #c5d0ca;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 28px;
  color: var(--muted);
}

.page-hero,
.legal-hero {
  border-bottom: 1px solid var(--line);
  padding: 110px 0 78px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  align-items: end;
  gap: 90px;
}

.page-hero p,
.legal-hero p {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.page-meta {
  padding-left: 28px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.page-meta div {
  margin: 11px 0;
}

.product-detail {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
  border-top: 1px solid var(--line);
  padding: 44px 0 72px;
}

.product-detail h2 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -.035em;
}

.detail-copy p:first-child {
  margin-top: 0;
  font-size: 20px;
}

.detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-list div {
  min-height: 140px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px;
}

.detail-list strong,
.detail-list span {
  display: block;
}

.detail-list strong {
  margin-bottom: 8px;
}

.detail-list span {
  color: var(--muted);
  font-size: 14px;
}

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

.company-block {
  min-height: 240px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
}

.company-block h3 {
  margin: 0 0 48px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

.company-block p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.contact-channels {
  border-top: 1px solid var(--line);
}

.contact-channel {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.contact-channel strong,
.contact-channel span,
.contact-channel a {
  display: block;
}

.contact-channel strong {
  margin-bottom: 6px;
  font-size: 13px;
}

.contact-channel span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
}

.contact-channel a {
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
}

.contact-form {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #aaa89f;
  border-radius: 5px;
  background: var(--white);
  padding: 12px 13px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--forest);
  outline: 2px solid rgba(21, 60, 48, .18);
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
}

.legal-hero {
  padding-bottom: 62px;
}

.legal-label {
  margin-bottom: 18px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
  padding: 72px 0 120px;
}

.legal-toc {
  align-self: start;
  position: sticky;
  top: 98px;
  border-top: 1px solid var(--line);
}

.legal-toc a {
  display: block;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  padding: 10px 0;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--ink);
}

.legal-content section {
  scroll-margin-top: 100px;
  margin-bottom: 52px;
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: #3f4743;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content li {
  margin: 8px 0;
}

.legal-notice {
  border-left: 3px solid var(--orange);
  background: var(--paper-deep);
  margin-bottom: 42px;
  padding: 20px 22px;
}

.legal-notice p {
  margin: 0;
}

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

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

.policy-table th {
  background: var(--paper-deep);
  font-weight: 600;
}

.site-footer {
  background: #101713;
  color: var(--white);
  padding: 68px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .6fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #aeb8b3;
  font-size: 14px;
}

.footer-col h2 {
  margin: 0 0 18px;
  color: #7f8c85;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: #dce2df;
  font-size: 13px;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #354039;
  padding-top: 24px;
  color: #8f9b95;
  font-size: 12px;
}

.footer-bottom a {
  color: #cbd3cf;
}

.required-update {
  border: 1px solid #d3a69c;
  background: #fff3ef;
  color: var(--danger);
  padding: 14px 16px;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 12px 20px 20px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .site-nav .nav-cta {
    margin-top: 7px;
    padding: 0 18px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 620px;
    padding: 84px 20px;
  }

  .hero-product {
    min-height: 560px;
    border-top: 1px solid #376152;
    border-left: 0;
  }

  .workflow,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .price-plan {
    min-height: 470px;
  }

  .page-hero-grid,
  .contact-grid,
  .product-detail {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .page-meta {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legal-toc {
    position: static;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-copy {
    min-height: 560px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-product {
    min-height: 450px;
    padding: 38px 16px 48px;
  }

  .product-window {
    box-shadow: 9px 9px 0 rgba(8, 26, 20, .42);
  }

  .window-body {
    min-height: 340px;
    grid-template-columns: 74px 1fr;
  }

  .window-main {
    padding: 16px;
  }

  .work-row {
    grid-template-columns: 30px 1fr;
  }

  .work-row time {
    display: none;
  }

  .proof-grid,
  .workflow,
  .company-grid,
  .detail-list,
  .field-row {
    grid-template-columns: 1fr;
  }

  .proof-item:first-child {
    border-left: 0;
  }

  .proof-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-inline: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 46px;
  }

  .feature-line {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .feature-line p {
    grid-column: 2;
  }

  .workflow-step {
    min-height: auto;
  }

  .workflow-step span {
    margin-bottom: 42px;
  }

  .pricing-intro,
  .cta-band,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-intro,
  .cta-band {
    display: flex;
  }

  .billing-switch {
    align-self: flex-start;
  }

  .price-plan {
    min-height: auto;
  }

  .price-plan .button {
    margin-top: 28px;
  }

  .page-hero,
  .legal-hero {
    padding: 78px 0 58px;
  }

  .legal-layout {
    padding: 50px 0 82px;
  }

  .policy-table {
    display: block;
    overflow-x: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
