:root {
  color-scheme: dark;
  --bg: #090a0c;
  --bg-soft: #111418;
  --chrome: #252a30;
  --chrome-high: #353b44;
  --panel: #1b2026;
  --panel-soft: #14181d;
  --line: #3c444e;
  --line-soft: #252c34;
  --text: #f2f4f5;
  --muted: #aab1b8;
  --subtle: #77818b;
  --cyan: #34b7ff;
  --green: #35e0aa;
  --blue: #3478f6;
  --amber: #f2b84b;
  --red: #ff6767;
  --mint: #65e6cc;
  --shadow: rgba(0, 0, 0, 0.42);
  --header-height: 66px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-height);
  padding: 12px 32px;
  border-bottom: 1px solid #090b0d;
  background: linear-gradient(180deg, rgba(50, 56, 64, 0.96), rgba(31, 36, 42, 0.96));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.proof-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.nav-links {
  gap: 8px;
  padding: 5px;
  border: 1px solid #15191e;
  border-radius: 8px;
  background: rgba(13, 16, 20, 0.44);
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--text);
  background: #2a3038;
}

.header-buy {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(53, 224, 170, 0.54);
  border-radius: 7px;
  color: #dcfff5;
  background: rgba(53, 224, 170, 0.12);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 56px);
  overflow: hidden;
  padding: 72px 32px 72px;
  border-bottom: 1px solid #11151a;
  background: #08090b;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.82) 38%, rgba(8, 9, 11, 0.24) 66%, rgba(8, 9, 11, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 9, 11, 0.12), rgba(8, 9, 11, 0.68));
}

.hero-screenshot {
  position: absolute;
  right: clamp(-240px, -12vw, -96px);
  top: 106px;
  width: min(720px, 60vw);
  overflow: hidden;
  border: 1px solid #59636f;
  border-radius: 8px;
  background: #0e1115;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 48px rgba(52, 120, 246, 0.18);
  transform: rotate(1.2deg);
}

.hero-screenshot-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 13px;
  border-bottom: 1px solid #151a20;
  background: linear-gradient(180deg, #333a43, #242a31);
}

.hero-screenshot-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-screenshot-bar span:nth-child(1) {
  background: var(--red);
}

.hero-screenshot-bar span:nth-child(2) {
  background: var(--amber);
}

.hero-screenshot-bar span:nth-child(3) {
  background: var(--green);
}

.hero-screenshot-bar strong {
  margin-left: 8px;
  color: #e1e7ec;
  font-size: 0.84rem;
}

.hero-screenshot img {
  width: 100%;
}

.hero-content,
.section,
.site-footer {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-left: max(32px, calc((100% - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 10px;
  font-size: 4.05rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.75rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-subtitle {
  margin-bottom: 16px;
  color: #e9fcff;
  font-size: 1.28rem;
  font-weight: 760;
}

.hero-copy,
.section-copy p,
.step p,
.faq-list p {
  color: var(--muted);
}

.hero-copy {
  max-width: 580px;
  margin-bottom: 28px;
  font-size: 1.13rem;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
}

.button.primary {
  color: #06110e;
  background: linear-gradient(180deg, #78f4cf, var(--green));
  box-shadow: 0 12px 26px rgba(53, 224, 170, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button.primary:hover {
  background: linear-gradient(180deg, #91f9dc, #45eabb);
}

.button.secondary {
  border-color: #59626f;
  color: #e6ebef;
  background: linear-gradient(180deg, #2d333c, #1d2229);
}

.button.secondary:hover {
  border-color: #74808e;
  background: linear-gradient(180deg, #353d47, #252b34);
}

.proof-row {
  gap: 10px 18px;
  flex-wrap: wrap;
}

.proof-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dce3e8;
  font-size: 0.86rem;
  font-weight: 800;
}

.proof-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(53, 224, 170, 0.62);
}

.section {
  padding: 72px 0;
}

.section-copy {
  max-width: 660px;
}

.section-copy.centered {
  margin: 0 auto 34px;
  text-align: center;
}

.section-copy p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #1c2229, #14191e);
}

.step span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(52, 183, 255, 0.42);
  border-radius: 8px;
  color: #def4ff;
  background: rgba(52, 183, 255, 0.12);
  font-weight: 900;
}

.step strong {
  align-self: end;
}

.step p {
  margin-bottom: 0;
}

.feature-marker {
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 5px;
}

.feature-marker.cyan {
  background: var(--cyan);
}

.feature-marker.green {
  background: var(--green);
}

.feature-marker.blue {
  background: var(--blue);
}

.feature-marker.amber {
  background: var(--amber);
}

.feature-marker.red {
  background: var(--red);
}

.feature-marker.mint {
  background: var(--mint);
}

.buy-section {
  width: 100%;
  max-width: none;
  padding: 78px 32px;
  border-top: 1px solid #172029;
  border-bottom: 1px solid #172029;
  background:
    linear-gradient(90deg, rgba(52, 120, 246, 0.14), transparent 28%, transparent 72%, rgba(53, 224, 170, 0.14)),
    #0c0f12;
}

.price {
  margin: 0;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.price span {
  color: var(--subtle);
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 52px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #14191f;
}

.faq-list p {
  margin-bottom: 0;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  border-top: 1px solid #151a20;
  color: var(--subtle);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 750;
}

.footer-links a:hover,
.legal-document a,
.content-panel a {
  color: var(--green);
}

.page-main {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.page-hero {
  max-width: 820px;
  margin-bottom: 42px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: 3.8rem;
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
}

.docs-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.docs-nav {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #14191f;
}

.docs-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 800;
}

.docs-nav a:hover {
  color: var(--text);
  background: #242b33;
}

.docs-content {
  display: grid;
  gap: 18px;
}

.docs-layout > *,
.docs-content,
.docs-nav,
.content-panel,
.legal-document {
  min-width: 0;
}

.content-panel,
.legal-document {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #1a2027, #12171d);
}

.content-panel {
  padding: 24px;
}

.content-panel h2,
.legal-document h2 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.content-panel p,
.content-panel li,
.legal-document p,
.legal-document li,
.legal-document td,
.legal-document th {
  color: var(--muted);
}

.content-panel p:last-child,
.legal-document p:last-child {
  margin-bottom: 0;
}

.check-list,
.number-list,
.legal-document ul {
  margin: 0 0 18px;
  padding-left: 1.2rem;
}

.check-list li,
.number-list li,
.legal-document li {
  margin-bottom: 8px;
}

.table-wrap {
  overflow-x: auto;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11161c;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.table-wrap th,
.table-wrap td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
}

.table-wrap tr:last-child th,
.table-wrap tr:last-child td {
  border-bottom: 0;
}

.table-wrap th {
  color: var(--text);
  background: #1d242c;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.screenshot-frame {
  margin: 18px 0 28px;
  overflow: hidden;
  border: 1px solid #4a535e;
  border-radius: 8px;
  background: #0e1115;
}

.screenshot-frame img {
  width: 100%;
}

.screenshot-frame figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #151a20;
  font-size: 0.92rem;
}

.faq-list.compact article {
  padding: 16px;
}

.legal-main {
  max-width: 920px;
}

.legal-hero {
  margin-bottom: 28px;
}

.legal-document {
  padding: 30px;
}

.legal-document h2 {
  margin-top: 30px;
}

.legal-document h2:first-child {
  margin-top: 0;
}

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

.legal-grid .content-panel {
  min-height: 250px;
}

.comparison-main {
  display: grid;
  gap: 34px;
}

.winner-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #27313b;
  border-radius: 8px;
  background: #27313b;
}

.winner-strip div {
  padding: 20px;
  background: linear-gradient(180deg, #1d242c, #14191f);
}

.winner-strip strong,
.winner-strip span,
.choice-grid strong,
.choice-grid span {
  display: block;
}

.winner-strip strong,
.choice-grid strong {
  margin-bottom: 7px;
  color: var(--text);
}

.winner-strip span,
.choice-grid span,
.source-note {
  color: var(--muted);
}

.comparison-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.comparison-pair.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.comparison-table-section h2 {
  margin-bottom: 12px;
}

.source-note {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

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

.choice-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11161c;
}

.comparison-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 44px 24px;
  border: 1px solid rgba(53, 224, 170, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(52, 120, 246, 0.12), transparent 45%, rgba(53, 224, 170, 0.12)),
    #0c0f12;
  text-align: center;
}

.comparison-cta h2,
.comparison-cta p {
  margin-bottom: 0;
}

.comparison-cta p {
  max-width: 620px;
  color: var(--muted);
}

.about-main {
  display: grid;
  gap: 34px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 34px;
  max-width: none;
  align-items: center;
}

.about-hero-visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid #4a535e;
  border-radius: 8px;
  background: #0e1115;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.about-hero-visual img {
  width: 100%;
}

.about-hero-visual figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #151a20;
  font-size: 0.92rem;
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #27313b;
  border-radius: 8px;
  background: #27313b;
}

.story-strip div {
  padding: 20px;
  background: linear-gradient(180deg, #1d242c, #14191f);
}

.story-strip strong,
.story-strip span {
  display: block;
}

.story-strip strong {
  margin-bottom: 7px;
  color: var(--text);
}

.story-strip span {
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
}

.story-grid.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.narrative-panel {
  padding: 32px;
}

.narrative-panel h2 {
  max-width: 760px;
  font-size: 2.05rem;
}

.narrative-panel p:not(.eyebrow) {
  max-width: 920px;
  font-size: 1.05rem;
}

.about-screenshots {
  display: grid;
  gap: 24px;
}

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

.about-main .screenshot-frame {
  margin: 0;
}

/* Homepage redesign */
.hero {
  width: min(1180px, calc(100% - 64px));
  min-height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 46px;
  align-items: center;
  overflow: visible;
  padding: 44px 0 30px;
  border-bottom: 0;
  background: transparent;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.92) 0%, rgba(8, 9, 11, 0.72) 42%, rgba(8, 9, 11, 0.28) 100%),
    radial-gradient(circle at 75% 24%, rgba(52, 183, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(17, 20, 24, 0.55), rgba(8, 9, 11, 0.88));
}

.hero-content {
  margin-left: 0;
  max-width: 610px;
}

.hero-screenshot {
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
  margin: 0;
  opacity: 1;
  transform: none;
}

.hero-screenshot img {
  aspect-ratio: 980 / 760;
  object-fit: cover;
}

.summary-strip {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #26303a;
  border-radius: 8px;
  background: #11161c;
}

.summary-strip div {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid #26303a;
}

.summary-strip div:last-child {
  border-right: 0;
}

.summary-strip span,
.summary-strip strong {
  display: block;
}

.summary-strip span {
  margin-bottom: 3px;
  color: var(--subtle);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.summary-strip strong {
  color: var(--text);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.workflow-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.workflow-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  min-height: 0;
  padding: 18px;
  background: #131820;
}

.step span {
  border-radius: 6px;
  font-size: 0.86rem;
}

.comparison-strip {
  display: grid;
  gap: 0;
  border-top: 1px solid #131820;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #27313b;
  border-radius: 8px;
  background: #27313b;
}

.process-column {
  padding: 22px;
  background: #12171d;
}

.process-column h3 {
  margin-bottom: 16px;
}

.process-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-column li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.process-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--subtle);
}

.active-column {
  background: linear-gradient(180deg, #172126, #12171d);
}

.active-column li::before {
  height: 8px;
  top: 0.45em;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(53, 224, 170, 0.52);
}

.details-section {
  border-top: 1px solid #131820;
}

.feature-list {
  display: grid;
  border: 1px solid #27313b;
  border-radius: 8px;
  overflow: hidden;
  background: #27313b;
}

.feature-row {
  display: grid;
  grid-template-columns: 42px minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: #12171d;
  border-bottom: 1px solid #27313b;
}

.feature-row:last-child {
  border-bottom: 0;
}

.feature-row .feature-marker {
  width: 28px;
  height: 4px;
  margin: 0;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.buy-section {
  padding: 64px 32px;
}

.buy-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(53, 224, 170, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, #172026, #10151a);
}

.buy-copy h2 {
  max-width: 760px;
}

.buy-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.price-box {
  display: grid;
  gap: 16px;
  justify-items: stretch;
}

.price-box .button {
  width: 100%;
}

.faq-section {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
}

.faq-list article {
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid #27313b;
  border-radius: 0;
  background: transparent;
}

.faq-list article:first-child {
  border-top: 1px solid #27313b;
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    width: min(100% - 40px, 760px);
    padding: 48px 0 58px;
  }

  .section,
  .site-footer {
    width: min(100% - 40px, 760px);
  }

  .hero-content {
    width: 100%;
    margin-left: 0;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-screenshot {
    right: auto;
    top: auto;
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .summary-strip,
  .before-after,
  .buy-panel,
  .workflow-section,
  .faq-section,
  .docs-layout,
  .legal-grid,
  .winner-strip,
  .story-strip,
  .about-hero,
  .screenshot-grid,
  .comparison-pair,
  .comparison-pair.reverse,
  .story-grid,
  .story-grid.reverse {
    grid-template-columns: 1fr;
  }

  .summary-strip {
    width: min(100% - 40px, 760px);
  }

  .summary-strip div {
    border-right: 0;
    border-bottom: 1px solid #26303a;
  }

  .summary-strip div:last-child {
    border-bottom: 0;
  }

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

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

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

  .page-main {
    width: min(100% - 40px, 760px);
    padding-top: 54px;
  }

  .page-hero h1 {
    font-size: 2.9rem;
  }

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

  .docs-nav a {
    text-align: center;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 60px;
  }

  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .brand span {
    display: none;
  }

  .header-buy {
    min-height: 36px;
    padding: 7px 11px;
  }

  .hero {
    width: calc(100% - 28px);
    gap: 18px;
    padding: 34px 0 26px;
  }

  .section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .hero-content {
    width: 100%;
    margin-left: 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-copy,
  .section-copy p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-actions .button {
    width: auto;
    min-height: 48px;
    padding-inline: 10px;
  }

  .hero-screenshot {
    right: auto;
    top: auto;
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .hero-screenshot img {
    aspect-ratio: 980 / 440;
    object-position: top;
  }

  .section {
    padding: 52px 0;
  }

  .step {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 16px;
  }

  .step span {
    width: 36px;
    height: 36px;
  }

  .buy-section {
    padding: 52px 14px;
  }

  .buy-panel {
    padding: 18px;
  }

  .price {
    font-size: 2.2rem;
  }

  .summary-strip {
    width: calc(100% - 28px);
  }

  .site-footer {
    display: grid;
    align-content: center;
  }

  .page-main {
    width: calc(100% - 28px);
    padding: 44px 0 64px;
  }

  .page-hero h1 {
    font-size: 2.3rem;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .docs-nav {
    grid-template-columns: 1fr 1fr;
  }

  .content-panel,
  .legal-document {
    padding: 18px;
  }

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

  .narrative-panel {
    padding: 20px;
  }

  .narrative-panel h2 {
    font-size: 1.65rem;
  }

  .table-wrap table {
    min-width: 500px;
  }
}
