:root {
  --paper: #f1ebdf;
  --cream: #fbf7ef;
  --stone: #e4dbcc;
  --ink: #24231f;
  --muted: #565149;
  --line: #d2c6b4;
  --gold: #76551d;
  --dark: #23221e;
  --white: #fffaf0;
  --green: #2d684f;
  --max: 1220px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
.shell {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 99;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: var(--white);
}
.skip:focus {
  top: 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(241, 235, 223, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.wordmark img {
  display: block;
  width: 260px;
  height: auto;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}
.nav-links a,
.login {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  color: #4d4942;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 780;
}
.nav-links a:hover,
.login:hover {
  color: var(--gold);
}
.account-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.08rem;
  border: 1px solid #8c6a34;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 850;
}
.button.primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--gold);
}
.button.quiet {
  background: transparent;
}
.eyebrow {
  margin: 0 0 0.75rem;
  color: #704f16;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.hero h1 {
  margin: 0.15rem 0 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 5.8vw, 6.2rem);
  line-height: 0.89;
  letter-spacing: -0.052em;
  font-weight: 500;
}
.hero h1 em {
  color: var(--gold);
  font-weight: 500;
}
.lede {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.13rem;
}
.microcopy {
  color: var(--muted);
  font-size: 0.8rem;
}
.app-window {
  margin: 0;
  border: 1px solid #a79c8c;
  border-radius: 14px;
  background: #f9f5ed;
  box-shadow: 0 28px 64px rgba(58, 48, 33, 0.2);
  overflow: hidden;
}
.hero-app {
  transform: rotate(0.6deg);
}
.creator-capture {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  padding: 0.65rem;
  overflow: hidden;
  border: 1px solid #4d483f;
  border-radius: 14px;
  background: #0d0c11;
  box-shadow: 0 28px 64px rgba(18, 15, 11, 0.3);
}
.creator-capture img {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  border-radius: 8px;
}
.creator-capture figcaption {
  position: static;
  align-self: flex-end;
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(224, 190, 110, 0.45);
  border-radius: 99px;
  background: rgba(12, 11, 15, 0.86);
  color: #e5c46f;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-capture {
  height: clamp(480px, 46vw, 650px);
  transform: rotate(0.35deg);
}
.hero-capture img {
  object-position: center top;
}
.app-topbar {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.1rem;
  background: #2a2925;
  color: #f8f1e5;
}
.app-brand {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #9c7a3d;
  border-radius: 7px;
  color: #ddb967;
  font-family: Georgia, serif;
  font-weight: 700;
}
.crumb {
  font-size: 0.76rem;
  color: #d2cabd;
}
.avatar {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e8ddc8;
  color: #463b2d;
  font-size: 0.7rem;
  font-weight: 900;
}
.app-body {
  display: grid;
  grid-template-columns: 128px 1fr;
  min-height: 440px;
}
.app-nav {
  display: grid;
  align-content: start;
  gap: 0.22rem;
  padding: 1.1rem 0.8rem;
  background: #e0d7ca;
  border-right: 1px solid var(--line);
}
.app-nav a {
  padding: 0.62rem 0.72rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 750;
}
.app-nav .active {
  background: #2a2925;
  color: #fff;
}
.app-content {
  padding: 1.35rem;
}
.app-heading,
.window-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-heading small,
.window-title small,
.mini-panel small,
.readiness-card small {
  display: block;
  color: #756f66;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.app-heading h2 {
  margin: 0.25rem 0;
  font-size: 1.45rem;
}
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.52rem;
  border-radius: 99px;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
}
.status.neutral {
  background: #e5ded2;
  color: #5f5a52;
}
.status.draft {
  background: #eadbc1;
  color: #6f4d15;
}
.status.ready {
  background: #dce9df;
  color: #275b45;
}
.status.live {
  background: #d6e6dc;
  color: #245b43;
}
.readiness-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
}
.readiness-card strong {
  display: block;
  margin: 0.25rem 0;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}
.readiness-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}
.ring {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 55%, transparent 57%),
    conic-gradient(var(--gold) 68%, #dfd7ca 0);
  font-size: 0.7rem;
  font-weight: 900;
}
.app-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.mini-panel {
  min-height: 110px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f3ede3;
}
.mini-panel strong {
  display: block;
  margin: 0.35rem 0;
  font-size: 0.85rem;
}
.mini-panel a {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}
.mini-products {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.65rem;
}
.swatch {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
.clay {
  background: #b87852;
}
.paper {
  background: #cbbb9d;
}
.ink {
  background: #48525a;
}

.product-story {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--dark);
  color: var(--white);
}
.section-heading {
  max-width: 760px;
}
.section-heading h2,
.workflow h2,
.features h2,
.ownership h2,
.pricing h2,
.contact h2 {
  margin: 0.2rem 0 0.9rem;
  font-family: Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 500;
}
.section-heading p,
.contact p {
  color: var(--muted);
}
.section-heading.inverse {
  margin-bottom: 3.5rem;
}
.section-heading.inverse p {
  color: #c8c0b4;
}
.visual-chapter {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin: 0 0 5rem;
}
.visual-chapter:last-child {
  margin-bottom: 0;
}
.visual-chapter.storefront-chapter {
  grid-template-columns: 0.64fr 0.36fr;
}
.chapter-copy span {
  color: #d4af68;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.chapter-copy h3 {
  margin: 0.65rem 0;
  font-size: 1.65rem;
  line-height: 1.1;
}
.chapter-copy p {
  color: #c8c0b4;
}
.product-window,
.order-window {
  color: var(--ink);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}
.overview-capture {
  height: 590px;
}
.stores-capture {
  height: 500px;
}
.dashboard-capture {
  height: 535px;
}
.window-title {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
}
.window-title strong {
  display: block;
  font-size: 1.05rem;
}
.window-title button,
.store-hero button {
  border: 0;
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}
.table-head,
.product-row {
  display: grid;
  grid-template-columns: 1fr 90px 70px;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.2rem;
}
.table-head {
  padding-left: 4.9rem;
  color: #777168;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}
.product-row {
  grid-template-columns: 44px 1fr 90px 70px;
  border-top: 1px solid #ded5c8;
}
.product-art {
  width: 42px;
  height: 42px;
  border-radius: 7px;
}
.product-row span small {
  display: block;
  color: #777168;
  font-size: 0.64rem;
}
.product-row > small {
  color: #666159;
}
.filter {
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.68rem;
}
.order-item {
  display: grid;
  grid-template-columns: 80px 1fr 90px 55px;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--line);
}
.order-item .customer,
.order-item > small {
  color: #68635b;
  font-size: 0.74rem;
}
.storefront-window {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f4ede0;
  color: #26241f;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.34);
}
.store-nav {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  background: #faf6ee;
  border-bottom: 1px solid #d9cfbf;
}
.store-nav b {
  font-family: Georgia, serif;
  font-size: 1.1rem;
}
.store-nav span {
  margin: auto;
  color: #6a645b;
  font-size: 0.7rem;
}
.store-nav i {
  font-style: normal;
  font-size: 0.7rem;
}
.store-hero {
  min-height: 235px;
  padding: 2rem;
  background:
    linear-gradient(90deg, rgba(39, 36, 30, 0.9), rgba(39, 36, 30, 0.25)),
    linear-gradient(135deg, #927258, #c9b391);
  color: white;
}
.store-hero p {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}
.store-hero h3 {
  margin: 0.6rem 0 1.2rem;
  font-family: Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
}
.store-hero button {
  background: #f7f1e6;
  color: #282621;
}
.store-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  padding: 0.8rem;
}
.store-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem;
  background: #fffaf1;
  border-radius: 7px;
}
.store-card i {
  width: 52px;
  height: 52px;
  border-radius: 6px;
}
.store-card small {
  color: #666159;
}

.workflow {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}
.workflow-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2rem, 8vw, 7rem);
  align-items: start;
}
.workflow ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.workflow li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.workflow li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #a98c5c;
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
}
.workflow li b {
  font-size: 1rem;
}
.workflow li p {
  margin: 0.2rem 0;
  color: var(--muted);
}
.features {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--cream);
}
.feature-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(2rem, 7vw, 6rem);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.feature-grid article {
  min-height: 185px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: #f5eee3;
}
.feature-grid span {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.feature-grid h3 {
  margin: 0.55rem 0;
  font-family: Georgia, serif;
  font-size: 1.35rem;
}
.feature-grid p {
  color: var(--muted);
}
.ownership {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background: var(--stone);
}
.ownership-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}
.ownership-grid > div > p {
  color: var(--muted);
}
.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #c3b6a3;
  border-left: 1px solid #c3b6a3;
}
.control-grid article {
  padding: 1.2rem;
  border-right: 1px solid #c3b6a3;
  border-bottom: 1px solid #c3b6a3;
}
.control-grid p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.pricing {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.4rem;
}
.plans article {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--cream);
}
.plans article.featured {
  background: #dfd0b6;
  border-color: #9b7a43;
  box-shadow: 0 12px 30px rgba(78, 61, 35, 0.12);
}
.plan-name {
  margin: 0;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.plans h3 {
  min-height: 2.5rem;
  margin: 0.6rem 0;
  font-family: Georgia, serif;
  font-size: 1.3rem;
}
.price {
  margin: 0.5rem 0;
  font-size: 1.55rem;
  font-weight: 900;
}
.price small {
  font-size: 0.7rem;
}
.plans ul {
  padding-left: 1.05rem;
  color: var(--muted);
  font-size: 0.76rem;
}
.plans li {
  margin: 0.42rem 0;
}
.plan-link {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  color: #5d4216;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}
.plan-shared-note {
  max-width: 76rem;
  margin: 1.5rem 0 0;
  padding: 1rem 1.2rem;
  border: 1px solid #d8c7ab;
  border-radius: 9px;
  background: linear-gradient(90deg, #efe2cb, #f7f0e5);
  color: var(--muted);
}
.plan-shared-note strong { color: #4c3715; }
.plan-comparison { margin-top: 2rem; }
.comparison-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1rem; }
.comparison-heading .eyebrow { margin-bottom: .35rem; }
.comparison-heading h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 2rem); }
.comparison-heading > p { max-width: 34rem; margin: 0 0 .2rem; color: var(--muted); text-align: right; }
.plan-table-wrap { overflow: hidden; border: 1px solid #cdbfa9; border-radius: 12px; box-shadow: 0 14px 36px rgba(70, 52, 26, .08); }
.plan-matrix { width: 100%; table-layout: fixed; border-collapse: separate; border-spacing: 0; background: #fffaf1; }
.plan-matrix th, .plan-matrix td { padding: .88rem 1rem; border-bottom: 1px solid #e2d9ca; text-align: center; font-size: .78rem; vertical-align: middle; }
.plan-matrix thead th { height: 118px; background: #e9decb; color: #4d3918; border-bottom-color: #bda987; }
.plan-matrix thead th:first-child { width: 25%; text-align: left; }
.plan-matrix tbody th { position: sticky; left: 0; z-index: 1; background: #f7f0e5; color: #423d35; text-align: left; font-weight: 760; }
.plan-matrix tbody tr:last-child th, .plan-matrix tbody tr:last-child td { border-bottom: 0; }
.plan-matrix .starter-column { background: #f0e2c8; }
.plan-matrix thead .starter-column { box-shadow: inset 0 4px 0 #9b7a43; }
.matrix-plan, .matrix-price, .matrix-capacity { display: block; }
.matrix-plan { color: #73531e; font-size: .69rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.matrix-price { margin-top: .45rem; color: #2f2b24; font-family: Georgia, serif; font-size: 1.35rem; }
.matrix-price small { margin-left: .15rem; color: var(--muted); font-family: inherit; font-size: .65rem; }
.matrix-capacity { margin-top: .3rem; color: var(--muted); font-size: .68rem; font-weight: 650; }
.value { display: inline-flex; align-items: center; justify-content: center; gap: .32rem; min-width: 58px; padding: .28rem .48rem; border-radius: 999px; font-size: .72rem; }
.value.yes { background: #e5ecdd; color: #36512e; }
.value.no { background: #eee9e1; color: #625d55; }
.value.limited { background: #eee4d3; color: #61481f; white-space: nowrap; }
.plan-mobile-comparison { display: none; }
.contact {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background: #dcd0bd;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: end;
}
.contact aside {
  padding: 1.3rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 250, 240, 0.55);
}
.contact aside span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact aside a {
  display: block;
  margin: 0.35rem 0;
  font-weight: 850;
}

footer {
  padding: 3rem 0 1.4rem;
  background: var(--dark);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
}
.footer-grid strong {
  font-size: 1.25rem;
}
.footer-grid strong span {
  color: #d6b267;
}
.footer-grid p {
  max-width: 320px;
  color: #cbc4b9;
}
.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 0.4rem;
}
.footer-grid nav a {
  color: #cbc4b9;
  text-decoration: none;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #4a4741;
  color: #bdb6ab;
  font-size: 0.76rem;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #6c4d16;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
  }
  .nav-links {
    grid-column: 1/-1;
    grid-row: 2;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    max-width: 680px;
  }
  .hero h1 {
    font-size: clamp(4rem, 10vw, 6rem);
  }
  .hero-app {
    transform: none;
  }
  .hero-capture {
    height: 620px;
    transform: none;
  }
  .visual-chapter,
  .visual-chapter.storefront-chapter,
  .workflow-layout,
  .feature-layout,
  .ownership-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .visual-chapter.storefront-chapter .chapter-copy {
    grid-row: 1;
  }
  .chapter-copy {
    max-width: 620px;
  }
  .feature-grid,
  .plans {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-grid nav:last-child {
    grid-column: 2;
  }
  .product-story {
    padding-top: 5rem;
  }
}
@media (max-width: 860px) {
  .comparison-heading { align-items: start; flex-direction: column; gap: .5rem; }
  .comparison-heading > p { text-align: left; }
  .plan-table-wrap { display: none; }
  .plan-mobile-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
  .plan-mobile-comparison article { overflow: hidden; border: 1px solid #d4c6b2; border-radius: 11px; background: #fffaf1; box-shadow: 0 10px 28px rgba(70, 52, 26, .07); }
  .plan-mobile-comparison article.featured { border-color: #9b7a43; box-shadow: inset 0 4px 0 #9b7a43, 0 12px 30px rgba(78, 61, 35, .10); }
  .plan-mobile-comparison header { padding: 1rem 1rem .9rem; background: #eee2cf; }
  .plan-mobile-comparison header p { margin: 0; color: #73531e; font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
  .plan-mobile-comparison header strong { display: block; margin-top: .35rem; color: #2f2b24; font-family: Georgia, serif; font-size: 1.45rem; }
  .plan-mobile-comparison header strong small { margin-left: .15rem; color: var(--muted); font-size: .65rem; }
  .plan-mobile-comparison header span { display: block; margin-top: .25rem; color: var(--muted); font-size: .76rem; font-weight: 700; }
  .plan-mobile-comparison ul { margin: 0; padding: .65rem 1rem .85rem; list-style: none; }
  .plan-mobile-comparison li { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid #e5dccf; font-size: .76rem; }
  .plan-mobile-comparison li:last-child { border-bottom: 0; }
  .plan-mobile-comparison li span { color: var(--muted); }
  .plan-mobile-comparison li b { max-width: 55%; text-align: right; }
}
@media (max-width: 620px) {
  .shell {
    width: min(var(--max), calc(100% - 1.25rem));
  }
  .wordmark img {
    width: 156px;
  }
  .nav {
    gap: 0.35rem;
  }
  .nav-links {
    overflow-x: auto;
  }
  .account-actions .login {
    display: none;
  }
  .hero {
    padding: 3.5rem 0;
  }
  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.5rem);
  }
  .hero-capture {
    height: 440px;
  }
  .overview-capture,
  .dashboard-capture {
    height: 430px;
  }
  .stores-capture {
    height: 390px;
  }
  .creator-capture figcaption {
    max-width: 100%;
    font-size: 0.52rem;
  }
  .app-body {
    grid-template-columns: 1fr;
  }
  .app-nav {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0.6rem;
  }
  .app-nav a {
    white-space: nowrap;
  }
  .app-content {
    padding: 0.85rem;
  }
  .app-split {
    grid-template-columns: 1fr;
  }
  .mini-panel {
    min-height: auto;
  }
  .readiness-card {
    padding: 0.85rem;
  }
  .ring {
    width: 54px;
    height: 54px;
  }
  .product-story {
    padding: 4rem 0;
  }
  .section-heading.inverse {
    margin-bottom: 2.5rem;
  }
  .visual-chapter {
    gap: 1.4rem;
    margin-bottom: 3.5rem;
  }
  .table-head {
    display: none;
  }
  .product-row {
    grid-template-columns: 36px 1fr auto;
    padding: 0.75rem;
  }
  .product-art {
    width: 36px;
    height: 36px;
  }
  .product-row > small {
    display: none;
  }
  .store-nav span {
    display: none;
  }
  .store-hero {
    min-height: 205px;
    padding: 1.4rem;
  }
  .store-hero h3 {
    font-size: 1.7rem;
  }
  .store-products {
    grid-template-columns: 1fr;
  }
  .order-item {
    grid-template-columns: 60px 1fr auto;
  }
  .order-item > small {
    display: none;
  }
  .workflow,
  .features,
  .ownership,
  .pricing,
  .contact {
    padding: 4rem 0;
  }
  .feature-grid,
  .plans,
  .control-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .control-grid {
    border-left: 0;
  }
  .control-grid article {
    border-left: 1px solid #c3b6a3;
  }
  .plans h3 {
    min-height: auto;
  }
  .plan-mobile-comparison { grid-template-columns: 1fr; }
  .footer-grid nav:last-child {
    grid-column: auto;
  }
  .footer-meta {
    display: grid;
    gap: 0.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.app-heading small,
.window-title small,
.mini-panel small,
.readiness-card small,
.product-row span small {
  color: #625d55;
}
.plans article.featured .plan-name {
  color: #684914;
}
