:root {
  --ink: #18202a;
  --muted: #626d79;
  --paper: #f7f4ed;
  --line: #dfe2e4;
  --accent: #315f7d;
  --accent-dark: #22465f;
  --green: #27714b;
  --amber: #926507;
  --violet: #67549c;
  --blue: #315f9b;
  --navy: #172631;
  --radius: 10px;
  font-family:
    "Segoe UI Variable",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
.shell {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.section {
  padding: 112px 0;
}
.site-header {
  height: 72px;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: #fbfaf7ed;
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, serif;
  font-size: 20px;
  letter-spacing: -0.04em;
}
.wordmark img {
  width: 32px;
  height: 32px;
}
.wordmark > span {
  display: block;
}
.wordmark small {
  color: var(--muted);
  font-weight: 500;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
.site-header nav a:hover {
  color: var(--accent);
}
.nav-cta {
  padding: 8px 13px;
  border: 1px solid var(--ink);
  border-radius: 7px;
}
.hero {
  min-height: 720px;
  padding-top: 90px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 74px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
}
.kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.hero h1 em {
  color: var(--accent);
  font-weight: 400;
}
.hero-lede {
  max-width: 650px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 19px;
}
.hero-actions,
.inline-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  font-weight: 720;
  cursor: pointer;
}
.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.button.primary:hover {
  background: var(--accent-dark);
}
.button.secondary:hover {
  background: #fff;
}
.micro,
.pricing-note {
  color: var(--muted);
  font-size: 12px;
}
.pack-stack {
  min-height: 550px;
  position: relative;
}
.paper {
  position: absolute;
  border: 1px solid #d4d9de;
  border-radius: 3px;
  background: white;
  box-shadow: 0 30px 70px #1a283623;
}
.paper-back {
  inset: 46px 0 0 82px;
  transform: rotate(5deg);
  padding: 36px;
  color: var(--muted);
}
.paper-lines {
  height: 330px;
  margin-top: 24px;
  background: repeating-linear-gradient(#fff 0 28px, #dfe3e7 29px 30px);
}
.paper-front {
  inset: 0 38px 34px 18px;
  transform: rotate(-2.5deg);
  padding: 54px 48px;
  background: linear-gradient(145deg, #fff, #f1f5f7);
}
.sample-chip {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 5px 8px;
  background: #fff4ce;
  color: #70500a;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.paper-kicker {
  margin-top: 72px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.paper h2 {
  font-family: Georgia, serif;
  font-size: 43px;
  line-height: 1.05;
}
.paper-rule {
  height: 1px;
  margin: 48px 0 24px;
  background: #ccd2d7;
}
.paper dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.paper dl div {
  display: flex;
  flex-direction: column;
}
.paper dt {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}
.paper dd {
  margin: 4px 0;
  font-weight: 700;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: #f3f4f2;
}
.trust-strip p {
  margin: 0;
  padding: 22px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 650;
}
.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-heading h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
}
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.problem-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-grid article,
.audience-grid article {
  padding: 26px;
  border-top: 2px solid var(--ink);
  background: #f4f4f1;
}
.problem-grid article > span {
  color: var(--accent);
  font:
    700 12px ui-monospace,
    monospace;
}
.problem-grid h3,
.audience-grid h3 {
  font-size: 18px;
}
.problem-grid p,
.audience-grid p {
  color: var(--muted);
}
.workflow,
.limits {
  background: var(--navy);
  color: #edf3f6;
}
.inverse .kicker {
  color: #8fbed8;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #ffffff25;
}
.steps li {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid #ffffff25;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.steps li > span {
  color: #8fbed8;
  font:
    600 14px ui-monospace,
    monospace;
}
.steps p,
.limits-grid p {
  color: #b9c7ce;
}
.app-window {
  overflow: hidden;
  border: 1px solid #cbd0d5;
  border-radius: 12px;
  background: white;
  box-shadow: 0 28px 70px #1726311f;
}
.window-bar {
  height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  background: #f0f0f2;
  color: var(--muted);
  font-size: 11px;
}
.window-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c1c5c9;
}
.window-bar span {
  margin-left: 10px;
}
.app-body {
  min-height: 490px;
  display: grid;
  grid-template-columns: 160px 1fr 270px;
}
.app-body > aside {
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f0f0f2;
  font-size: 12px;
}
.app-body > aside strong {
  margin: 0 8px 18px;
}
.app-body > aside a {
  padding: 8px;
  border-radius: 5px;
}
.app-body > aside a.active {
  background: #dce6ee;
  color: var(--accent);
  font-weight: 700;
}
.app-body > aside .settings {
  margin-top: auto;
}
.app-main {
  padding: 24px;
  min-width: 0;
}
.app-title {
  display: flex;
  justify-content: space-between;
}
.app-title h3 {
  margin: 4px 0;
  font-size: 22px;
}
.app-title p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.app-title button {
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}
.progress {
  display: flex;
  height: 8px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 4px;
}
.progress b {
  width: 67%;
  background: var(--green);
}
.progress i {
  width: 16.5%;
  background: #c99b36;
}
.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.filters span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  font-size: 10px;
}
.filters span:first-child {
  flex: 1;
}
.rows > div {
  min-height: 55px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.rows div.selected {
  margin-inline: -4px;
  padding-inline: 14px;
  border-left: 3px solid var(--accent);
  background: #edf4f8;
}
.rows small {
  grid-column: 1;
  color: var(--muted);
}
.green {
  color: var(--green) !important;
}
.amber {
  color: var(--amber) !important;
}
.violet {
  color: var(--violet) !important;
}
.blue {
  color: var(--blue) !important;
}
.inspector-preview {
  border-left: 1px solid var(--line);
  background: #fff !important;
}
.inspector-preview h3 {
  margin: 5px 0 8px;
  font-size: 18px;
}
.inspector-preview .badge {
  align-self: flex-start;
  padding: 4px 7px;
  border-radius: 4px;
  background: #fff6da;
  font-size: 10px;
}
.inspector-preview h4 {
  margin-top: 28px;
}
.inspector-preview p {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.inspector-preview p small {
  display: block;
  margin-left: 18px;
}
.inspector-preview p.done {
  color: var(--green);
}
.inspector-preview p.add {
  color: var(--accent);
  font-weight: 700;
}
.pack-feature {
  background: #edf1f2;
}
.pack-grid,
.privacy-grid,
.interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pack-grid h2,
.privacy h2,
.interest h2 {
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 1.1;
}
.pack-grid li {
  margin: 10px 0;
}
.text-link {
  color: var(--accent);
  font-weight: 700;
}
.manifest-card {
  padding: 26px;
  border: 1px solid #cad1d5;
  background: white;
  box-shadow: 0 20px 45px #17263115;
}
.manifest-card header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.manifest-card header b {
  color: var(--amber);
  font-size: 10px;
  text-transform: uppercase;
}
.manifest-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.manifest-stats p {
  color: var(--muted);
  font-size: 10px;
}
.manifest-stats strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
}
.manifest-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
.manifest-card td {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.manifest-card td:last-child {
  text-align: right;
  font-weight: 700;
}
.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}
.audience-grid article {
  border-top-color: var(--accent);
}
.audience-grid article > div {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #dfe9ed;
  color: var(--accent);
  font-weight: 800;
}
.privacy {
  background: #e7eceb;
}
.privacy-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.privacy-points p {
  padding: 18px;
  background: #f8f9f7;
}
.privacy-points span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-grid article {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  background: white;
}
.price-grid article.featured {
  border: 2px solid var(--accent);
  transform: translateY(-8px);
}
.popular {
  position: absolute;
  top: -14px;
  right: 18px;
  padding: 5px 9px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.plan {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.price-grid h3 {
  font-size: 32px;
}
.price-grid h3 small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}
.price-grid ul {
  min-height: 185px;
  padding-left: 20px;
  color: var(--muted);
}
.price-grid li {
  margin: 8px 0;
}
.price-grid .button {
  width: 100%;
}
.pricing-note {
  max-width: 760px;
  margin: 30px auto 0;
  text-align: center;
}
.limits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #ffffff26;
}
.limits-grid p {
  margin: 0;
  padding: 25px;
  background: var(--navy);
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  padding: 20px 4px;
  cursor: pointer;
  font-weight: 700;
}
.faq details p {
  max-width: 750px;
  margin: 0 4px 20px;
  color: var(--muted);
}
.interest {
  background: #dfe9ed;
}
.interest-grid {
  align-items: start;
}
.interest-card {
  padding: 28px;
  background: #fff;
}
.interest-card-label {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.interest-card h3 {
  margin: 8px 0;
  font-size: 24px;
}
.interest-card > p:not(.interest-card-label) {
  color: var(--muted);
}
.form-status {
  color: var(--muted);
  font-size: 11px;
}
.form-status.active {
  color: var(--green);
  font-weight: 700;
}
.site-footer {
  padding: 40px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.site-footer p {
  margin: 4px 0;
}
@media (max-width: 900px) {
  .site-header nav a:not(.nav-cta):not(.nav-back) {
    display: none;
  }
  .hero,
  .pack-grid,
  .privacy-grid,
  .interest-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 60px;
  }
  .pack-stack {
    min-height: 500px;
  }
  .problem-grid,
  .audience-grid,
  .steps,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps li {
    border-bottom: 1px solid #ffffff25;
  }
  .app-body {
    grid-template-columns: 120px 1fr;
  }
  .inspector-preview {
    display: none;
  }
  .price-grid article.featured {
    transform: none;
  }
  .pack-grid,
  .privacy-grid,
  .interest-grid {
    gap: 36px;
  }
}
@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 72px 0;
  }
  .wordmark small {
    display: none;
  }
  .site-header .nav-cta {
    display: none;
  }
  .hero h1 {
    font-size: 40px;
    overflow-wrap: anywhere;
  }
  .hero-lede {
    font-size: 17px;
  }
  .pack-stack {
    min-height: 430px;
  }
  .paper-front {
    inset: 0 10px 20px 0;
    padding: 38px 26px;
  }
  .paper-back {
    inset: 35px 0 0 38px;
  }
  .paper h2 {
    font-size: 34px;
  }
  .trust-strip,
  .problem-grid,
  .audience-grid,
  .steps,
  .price-grid,
  .limits-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip,
  .problem-grid,
  .audience-grid,
  .steps,
  .price-grid,
  .limits-grid,
  .trust-strip p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section-heading h2,
  .pack-grid h2,
  .privacy h2,
  .interest h2 {
    font-size: 36px;
  }
  .app-body {
    grid-template-columns: 1fr;
  }
  .app-body > aside {
    display: none;
  }
  .app-main {
    padding: 16px;
  }
  .filters span:not(:first-child) {
    display: none;
  }
  .privacy-points {
    grid-template-columns: 1fr;
  }
  .site-footer {
    flex-direction: column;
    gap: 18px;
  }
}
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 20;
  padding: 10px 16px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}
.skip-link:focus {
  top: 12px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}
.workflow a:focus-visible,
.limits a:focus-visible {
  outline-color: #8fbed8;
}
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.screenshot-grid figure {
  margin: 0;
}
.screenshot-grid img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #cbd0d5;
  border-radius: 8px;
  box-shadow: 0 16px 40px #17263115;
}
.screenshot-grid figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}
.limits-more {
  margin: 28px 0 0;
}
.limits-more a {
  color: #8fbed8;
  font-weight: 700;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 28px;
  align-content: start;
}
.footer-nav a:hover {
  color: var(--accent);
}
/* Lightweight subpages (privacy, terms, contact, status) */
.page-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.page-main h1 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.page-main h2 {
  margin-top: 40px;
  font-size: 22px;
}
.page-main p,
.page-main li {
  color: #3c4650;
}
.page-updated {
  color: var(--muted);
  font-size: 13px;
}
.draft-note {
  margin: 24px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--amber);
  background: #fdf6e3;
  font-size: 14px;
}
.page-back {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 900px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
