:root {
  color-scheme: light;
  --paper: #f7f6f0;
  --paper-strong: #ffffff;
  --ink: #171714;
  --muted: #68675f;
  --line: #deddd5;
  --lime: #e5ff57;
  --lime-soft: #f0ff9a;
  --max-width: 1160px;
  --page-gutter: clamp(20px, 4vw, 48px);
  --radius: 14px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3.45rem, 5.7vw, 5.2rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

p {
  color: var(--muted);
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid #537400;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--lime);
  font-weight: 750;
  text-decoration: none;
}

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

.site-header,
.site-footer,
.hero,
.workflow,
.starter-section,
.feature-band,
.share-section,
.pricing-summary,
.faq,
.closing,
.page-hero,
.breadcrumbs,
.directory-list,
.starter-detail,
.template-cta,
.related,
.editorial-layout,
.pricing-grid,
.pricing-disclosure,
.split-section {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max-width));
  margin-inline: auto;
}

.site-header {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 116px;
  height: auto;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
}

.site-header nav {
  justify-content: center;
  gap: clamp(18px, 2.3vw, 32px);
}

.site-header nav a,
.language-link,
.site-footer nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover,
.language-link:hover,
.site-footer nav a:hover {
  color: var(--ink);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--lime);
}

.button.small {
  min-height: 44px;
  padding: 9px 18px;
  font-size: 0.86rem;
}

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

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

.text-link {
  color: var(--ink);
  text-underline-offset: 4px;
}

.text-link.prominent {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  font-weight: 750;
  text-decoration-thickness: 1px;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.eyebrow,
.section-number,
.card-kicker,
.error-code {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
}

.section-number {
  min-width: 36px;
  padding-top: 7px;
  border-top: 2px solid var(--ink);
}

.section-number.light {
  border-color: var(--lime);
  color: var(--lime);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(46px, 5vw, 70px);
  min-height: 700px;
  padding-block: 82px 92px;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.45rem, 5.2vw, 4.8rem);
}

.japanese-hero h1 {
  font-size: clamp(2.65rem, 5.2vw, 4.6rem);
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

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

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-list li {
  min-width: 0;
  padding: 15px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.79rem;
  white-space: nowrap;
}

.proof-list li + li {
  border-left: 1px solid var(--line);
}

.proof-list kbd {
  padding: 2px 7px;
  border: 1px solid #bdbbb2;
  border-bottom-width: 2px;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

.bullet-key {
  width: 16px;
  height: 16px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid #bdbbb2;
  border-radius: 5px;
  background: #fff;
}

.bullet-key::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.hero-demo {
  min-width: 0;
}

.outline-window {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 16px 16px 0 var(--lime);
  transform: rotate(1.2deg);
}

.window-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #eeede6;
}

.window-bar > span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 1px solid #929086;
  border-radius: 50%;
  background: #faf9f4;
}

.window-bar small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.demo-canvas {
  min-height: 380px;
  padding: 30px 28px 34px;
}

.demo-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.outline-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.outline-list .outline-list {
  margin: 7px 0 3px 25px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.outline-item {
  margin: 0;
}

.outline-line {
  min-height: 31px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
  color: #33332e;
  font-size: 0.93rem;
  line-height: 1.45;
}

.outline-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.outline-check {
  width: 16px;
  height: 16px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border: 1px solid #8a887f;
  border-radius: 3px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
}

.outline-check.is-checked {
  border-color: var(--ink);
  background: var(--lime);
}

.outline-item.is-complete > .outline-line > span:last-child {
  color: #85837b;
  text-decoration: line-through;
}

.workflow,
.starter-section,
.share-section,
.pricing-summary,
.faq,
.starter-detail,
.editorial-layout,
.split-section {
  padding-block: 116px;
  border-top: 1px solid var(--line);
}

.workflow-heading,
.section-intro {
  display: grid;
  grid-template-columns: 120px minmax(0, 760px);
  gap: 26px;
  align-items: start;
  margin-bottom: 72px;
}

.workflow-heading h2,
.section-intro h2 {
  margin-bottom: 0;
}

.section-intro p {
  max-width: 650px;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.workflow-steps article {
  min-width: 0;
  padding: 28px 30px 0 0;
}

.workflow-steps article + article {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.workflow-steps h3 {
  margin-bottom: 16px;
}

.workflow-steps p {
  margin: 0;
}

.starter-list,
.directory-list {
  border-top: 1px solid var(--ink);
}

.starter-list {
  margin-bottom: 28px;
}

.starter-row,
.directory-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  min-height: 132px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.starter-number {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.starter-row h3,
.directory-row h2 {
  margin: 0 0 8px;
}

.starter-row h3 a,
.directory-row h2 a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}

.starter-row p,
.directory-row p {
  max-width: 690px;
  margin: 0;
}

.circle-link {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 140ms ease, transform 140ms ease;
}

.circle-link:hover {
  transform: translateX(3px);
  background: var(--lime);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(60px, 9vw, 130px);
  margin-block: 30px;
  padding: 96px clamp(28px, 6vw, 78px);
  border-radius: 20px;
  background: var(--ink);
  color: var(--paper);
}

.feature-band h2 {
  margin: 20px 0 26px;
  color: var(--paper);
}

.feature-band p {
  color: #aaa99f;
}

.feature-band-points {
  display: grid;
  align-content: center;
}

.feature-band-points article {
  padding: 30px 0;
  border-top: 1px solid #45453f;
}

.feature-band-points article:last-child {
  border-bottom: 1px solid #45453f;
}

.feature-band-points h3 {
  margin-bottom: 12px;
  color: var(--paper);
}

.feature-band-points p {
  margin: 0;
}

.share-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.share-section h2 {
  margin: 24px 0;
}

.share-section > div:last-child > p {
  max-width: 540px;
  font-size: 1.08rem;
}

.share-visual {
  position: relative;
  padding: 40px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: var(--lime-soft);
}

.share-page {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--paper-strong);
  box-shadow: 10px 10px 0 rgba(23, 23, 20, 0.12);
}

.share-page > span {
  display: block;
  margin-bottom: 32px;
  font-weight: 760;
}

.share-line {
  width: 74%;
  height: 9px;
  margin: 17px 0 17px 20px;
  border-radius: 99px;
  background: #d8d7cf;
}

.share-line.long {
  width: 88%;
}

.share-line.short {
  width: 51%;
}

.share-link-chip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 760;
}

.pricing-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(70px, 10vw, 150px);
}

.pricing-summary h2 {
  margin: 24px 0;
}

.price-callout {
  padding: 34px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.price-callout strong {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.price-callout > span {
  display: block;
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.price-callout p {
  margin-bottom: 24px;
}

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

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

.faq-list summary {
  min-height: 70px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 720;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  width: 30px;
  flex: 0 0 auto;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}

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

.faq-list details p {
  max-width: 720px;
  margin: -3px 0 26px;
  padding-right: 44px;
}

.closing {
  display: grid;
  justify-items: center;
  margin-block: 30px 100px;
  padding: 88px var(--page-gutter);
  border: 1px solid var(--ink);
  border-radius: 20px;
  background: var(--lime);
  text-align: center;
}

.closing h2 {
  max-width: 800px;
  margin-bottom: 18px;
}

.closing p {
  max-width: 590px;
  margin-bottom: 28px;
  color: #414139;
  font-size: 1.06rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 46px;
  align-items: start;
  padding-block: 58px 36px;
  border-top: 1px solid var(--line);
}

.footer-brand-block p {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 24px;
}

.site-footer > small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.breadcrumbs {
  min-height: 66px;
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

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

.breadcrumbs [aria-current="page"] {
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-hero {
  padding-block: 96px 102px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 990px;
  margin-bottom: 28px;
}

.page-hero > p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.page-hero .hero-actions {
  margin-top: 32px;
}

.directory-list {
  margin-block: 68px 110px;
}

.directory-row {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  min-height: 158px;
}

.directory-row h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.starter-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.starter-explanation h2 {
  margin: 24px 0;
}

.starter-explanation > p {
  font-size: 1.06rem;
}

.muted-note {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem !important;
}

.outline-panel {
  min-width: 0;
  padding: 0 26px 30px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--paper-strong);
  box-shadow: 12px 12px 0 var(--lime);
}

.outline-panel-heading {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 -26px 24px;
  padding: 0 26px;
  border-bottom: 1px solid var(--line);
  background: #eeede6;
  border-radius: 13px 13px 0 0;
}

.outline-panel-heading strong {
  font-size: 0.9rem;
}

.outline-panel-heading span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.template-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  margin-block: 24px 96px;
  padding: 56px 60px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--paper);
}

.template-cta h2 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  color: var(--paper);
}

.template-cta p {
  max-width: 700px;
  margin: 0;
  color: #aaa99f;
}

.template-cta .button {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.related {
  padding-bottom: 110px;
}

.related h2 {
  margin-bottom: 32px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 34px;
  border-top: 1px solid var(--line);
}

.related-links a {
  min-height: 58px;
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.content-sections > section {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 52px;
}

.content-sections > section + section {
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.content-sections h2 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.content-sections p {
  font-size: 1.05rem;
}

.content-sections ul {
  color: var(--muted);
}

.editorial-example {
  position: sticky;
  top: 28px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-block: 80px 30px;
}

.price-card {
  display: flex;
  min-width: 0;
  min-height: 500px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: var(--paper-strong);
}

.price-card.featured {
  background: var(--lime);
}

.price-card h2 {
  margin: 24px 0 14px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.price-card h2 small {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.price-card ul {
  margin: 15px 0 34px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 7px 0 7px 24px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: 800;
}

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

.pricing-disclosure {
  max-width: 780px;
  margin-bottom: 100px;
  font-size: 0.82rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
}

.split-section h2 {
  margin-top: 24px;
}

.split-section > div:last-child > p {
  font-size: 1.08rem;
}

.not-found {
  min-height: 580px;
}

.error-code {
  margin-bottom: 30px;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .site-header {
    gap: 20px;
  }

  .site-header nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    min-height: 0;
    padding-block: 76px 90px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-demo {
    width: min(100%, 720px);
    justify-self: center;
  }

  .demo-canvas {
    min-height: 350px;
  }

  .feature-band,
  .share-section,
  .pricing-summary,
  .starter-detail,
  .editorial-layout,
  .split-section {
    gap: 60px;
  }

  .editorial-example {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 20px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .site-header {
    min-height: 68px;
  }

  .header-actions {
    gap: 10px;
  }

  .language-link {
    min-width: 44px;
    justify-content: center;
    font-size: 0.8rem;
  }

  .button.small {
    min-height: 42px;
    padding: 8px 14px;
  }

  .hero {
    gap: 42px;
    padding-block: 54px 68px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.66rem;
  }

  .hero h1 {
    margin-bottom: 22px;
  }

  .hero-copy > p {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .proof-list {
    margin-top: 28px;
  }

  .proof-list li {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding-inline: 5px;
    text-align: center;
    white-space: normal;
  }

  .outline-window {
    box-shadow: 10px 10px 0 var(--lime);
    transform: none;
  }

  .demo-canvas {
    min-height: 0;
    padding: 24px 18px 26px;
  }

  .demo-note {
    margin-top: 18px;
    text-align: left;
  }

  .outline-list .outline-list {
    margin-left: 17px;
    padding-left: 10px;
  }

  .outline-line {
    font-size: 0.86rem;
  }

  .workflow,
  .starter-section,
  .share-section,
  .pricing-summary,
  .faq,
  .starter-detail,
  .editorial-layout,
  .split-section {
    padding-block: 78px;
  }

  .workflow-heading,
  .section-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 46px;
  }

  .workflow-steps,
  .feature-band,
  .share-section,
  .pricing-summary,
  .starter-detail,
  .editorial-layout,
  .pricing-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .workflow-steps article,
  .workflow-steps article + article {
    padding: 26px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .starter-row,
  .directory-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 24px 0;
  }

  .starter-row .circle-link,
  .directory-row > .text-link {
    grid-column: 2;
    justify-self: start;
  }

  .feature-band {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--max-width));
    gap: 30px;
    margin-block: 20px;
    padding: 62px 28px;
  }

  .share-section,
  .pricing-summary,
  .starter-detail,
  .editorial-layout,
  .split-section {
    gap: 48px;
  }

  .share-visual {
    padding: 24px;
  }

  .share-page {
    min-height: 230px;
    padding: 24px;
  }

  .price-callout {
    padding-inline: 0;
  }

  .closing {
    margin-block: 20px 72px;
    padding: 64px 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 0 20px;
  }

  .site-footer > small {
    grid-column: auto;
  }

  .breadcrumbs {
    min-height: 58px;
  }

  .page-hero {
    padding-block: 68px 74px;
  }

  .directory-list {
    margin-block: 54px 78px;
  }

  .outline-panel {
    box-shadow: 8px 8px 0 var(--lime);
  }

  .template-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 76px;
    padding: 42px 28px;
  }

  .template-cta .button {
    justify-self: start;
  }

  .related {
    padding-bottom: 78px;
  }

  .content-sections > section {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
  }

  .pricing-grid {
    gap: 18px;
    padding-block: 54px 26px;
  }

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

@media (max-width: 520px) {
  .brand img {
    width: 101px;
  }

  .header-actions {
    gap: 4px;
  }

  .language-link {
    padding-inline: 5px;
  }

  .button.small {
    padding-inline: 12px;
    font-size: 0.79rem;
  }

  .hero {
    gap: 34px;
    padding-top: 44px;
  }

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

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .proof-list li span:last-child {
    font-size: 0.68rem;
  }

  .window-bar {
    padding-inline: 12px;
  }

  .starter-row,
  .directory-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .share-visual {
    padding: 16px;
  }

  .share-page {
    min-height: 210px;
    padding: 20px;
  }

  .share-link-chip {
    right: 8px;
    bottom: 8px;
  }

  .outline-panel {
    padding-inline: 18px;
  }

  .outline-panel-heading {
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .content-sections > section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .template-cta .button {
    width: 100%;
  }
}

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

  .button,
  .circle-link {
    transition: none;
  }
}
