:root {
  --ink: #17202a;
  --muted: #5f6c7b;
  --line: #d9e1ea;
  --paper: #f7f9fb;
  --panel: #ffffff;
  --blue: #1769e0;
  --blue-dark: #0f4fb0;
  --teal: #0f766e;
  --amber: #a46312;
  --red: #9f332e;
  --soft-blue: #edf5ff;
  --soft-teal: #edf8f6;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.58;
}

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

a:hover {
  color: var(--blue);
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 32, 42, 0.08);
  background: rgba(247, 249, 251, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1180px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 760;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(23, 105, 224, 0.34);
  outline-offset: 3px;
}

.nav-toggle-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: background 0.16s ease;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition:
    transform 0.16s ease,
    top 0.16s ease;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.site-header.nav-open .nav-toggle-icon {
  background: transparent;
}

.site-header.nav-open .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-product-menu {
  position: relative;
  color: var(--muted);
}

.nav-product-menu::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  content: "";
}

.nav-product-menu summary {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  list-style: none;
  cursor: pointer;
  font-weight: 760;
}

.nav-product-menu summary::-webkit-details-marker {
  display: none;
}

.nav-product-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.16s ease;
}

.nav-product-menu[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-product-menu summary:hover,
.nav-product-menu summary:focus-visible {
  color: var(--blue);
}

.nav-product-menu summary:focus-visible {
  outline: 2px solid rgba(23, 105, 224, 0.34);
  outline-offset: 4px;
}

.nav-product-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  min-width: 230px;
  padding: 10px;
  border: 1px solid #c8d7e9;
  border-radius: 8px;
  background: #f2f7fd;
  box-shadow: 0 18px 46px rgba(23, 32, 42, 0.16);
  opacity: 0;
  transform: translateY(-4px);
  visibility: hidden;
  transition:
    opacity 0.14s ease,
    transform 0.14s ease,
    visibility 0.14s ease;
}

.nav-product-menu[open] .nav-product-list,
.nav-product-menu:hover .nav-product-list,
.nav-product-menu:focus-within .nav-product-list {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.nav-product-list a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 720;
  white-space: nowrap;
}

.nav-product-list a:hover,
.nav-product-list a:focus-visible {
  background: #fff;
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 760;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.button.primary:hover {
  background: var(--blue-dark);
  color: #fff;
}

.hero,
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 24px 60px;
  align-items: center;
}

.page-hero {
  border-bottom: 1px solid rgba(23, 32, 42, 0.08);
  background: linear-gradient(180deg, #fff, var(--paper));
  padding: 72px 24px 48px;
}

.inner {
  max-width: 1180px;
  margin: 0 auto;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 800px;
  font-size: 60px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  overflow-wrap: break-word;
}

.hero-actions,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
}

.hero-board {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.board-image,
.product-visual,
.product-card img {
  display: block;
  width: 100%;
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(23, 32, 42, 0.12);
}

.board-image.main {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.preview-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.preview-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 8px;
  background: #fff;
}

.product-visual {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
}

.product-visual.form-preview {
  object-fit: contain;
  padding: 14px;
}

.lp-hero {
  align-items: center;
  padding-bottom: 34px;
}

.lp-hero .lead {
  font-size: 20px;
}

.lp-hero-metrics,
.lp-proof-strip {
  display: grid;
  gap: 12px;
}

.lp-hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.lp-proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 34px;
}

.lp-metric {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px;
}

.lp-metric strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.lp-metric span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.lp-visual-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.lp-visual-panel img {
  display: block;
  width: 100%;
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(23, 32, 42, 0.12);
}

.lp-visual-note {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: #f3fbf9;
  padding: 16px;
  color: var(--muted);
}

.lp-visual-note strong {
  color: var(--ink);
}

.lp-card-grid,
.lp-offer-grid,
.lp-faq-grid {
  display: grid;
  gap: 18px;
}

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

.lp-card,
.lp-step,
.lp-offer,
.lp-faq-grid details {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.lp-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.lp-card p,
.lp-step p,
.lp-offer p,
.lp-faq-grid p {
  margin: 0;
  color: var(--muted);
}

.lp-card h3,
.lp-step h3,
.lp-offer h3 {
  font-size: 21px;
}

.lp-card.warning {
  border-color: rgba(164, 99, 18, 0.28);
  background: #fffaf2;
}

.lp-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 42px;
  align-items: start;
}

.lp-checklist,
.lp-deliverables {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.lp-checklist li,
.lp-deliverables li {
  position: relative;
  min-width: 0;
  padding-left: 28px;
  color: var(--muted);
}

.lp-checklist li::before,
.lp-deliverables li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

.lp-flow {
  counter-reset: lp-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lp-step {
  display: grid;
  gap: 10px;
}

.lp-step::before {
  counter-increment: lp-step;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  content: counter(lp-step);
  font-weight: 820;
}

.lp-offer-grid {
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  align-items: stretch;
}

.lp-offer {
  display: grid;
  align-content: start;
  gap: 14px;
}

.lp-offer.featured {
  border-color: rgba(23, 105, 224, 0.4);
  box-shadow: 0 20px 58px rgba(23, 105, 224, 0.13);
}

.lp-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.lp-price strong {
  font-size: 30px;
  line-height: 1;
}

.lp-price span {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.lp-offer .button {
  width: 100%;
}

.lp-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-faq-grid summary {
  cursor: pointer;
  font-weight: 820;
}

.lp-faq-grid p {
  margin-top: 12px;
}

.lp-cta-band {
  border-top: 1px solid rgba(23, 32, 42, 0.08);
  border-bottom: 1px solid rgba(23, 32, 42, 0.08);
  background: linear-gradient(120deg, #fff, #edf8f6);
}

.lp-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px;
}

.lp-cta-inner h2 {
  font-size: 38px;
}

.lp-cta-inner p {
  margin: 12px 0 0;
  color: var(--muted);
}

.lp-note-line {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 64px 24px;
}

.section.band {
  background: linear-gradient(120deg, var(--soft-blue), var(--soft-teal));
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p,
.copy p,
.legal-copy p {
  margin: 0;
  color: var(--muted);
}

.copy {
  display: grid;
  gap: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

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

.product-card,
.feature-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-card.wide {
  grid-template-columns: 260px minmax(0, 1fr);
  grid-column: 1 / -1;
  align-items: center;
}

.product-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  box-shadow: none;
}

.product-card p,
.feature-card p {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--teal);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  color: var(--blue);
  font-weight: 800;
}

.pill-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.status-list,
.price-list {
  display: grid;
  gap: 12px;
}

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

.plan-card,
.checkout-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.plan-card.featured {
  border-color: rgba(23, 105, 224, 0.36);
  box-shadow: 0 18px 52px rgba(23, 105, 224, 0.12);
}

.plan-card p,
.checkout-card p {
  color: var(--muted);
}

.price-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.checkout-note {
  margin-top: 18px;
}

.status-item,
.price-row,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
}

.status-item {
  display: grid;
  gap: 6px;
}

.status-item span,
.price-row span {
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.notice {
  color: var(--muted);
}

.notice.strong {
  border-color: rgba(159, 51, 46, 0.24);
  background: #fff7f6;
  color: #4b2320;
}

.legal-copy {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 18px;
  font-size: 24px;
}

.app-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 56px;
}

.app-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.app-nav a:first-child {
  color: var(--ink);
  font-weight: 820;
}

.app-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(23, 32, 42, 0.08);
}

.app-panel h1 {
  font-size: 34px;
}

.app-panel h2 {
  font-size: 20px;
}

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

.app-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--paper);
}

.product-report {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.product-report article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 16px;
}

.product-report pre {
  margin: 10px 0 0;
  color: var(--muted);
  font: inherit;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.stack {
  display: grid;
  gap: 14px;
  max-width: 420px;
  margin-top: 20px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
}

button {
  min-height: 42px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-weight: 760;
}

.admin-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  font-size: 14px;
}

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

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 34px 24px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 16px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .product-hero,
  .split {
    grid-template-columns: 1fr;
  }

  .lp-hero-metrics,
  .lp-proof-strip,
  .lp-card-grid,
  .lp-flow,
  .lp-offer-grid,
  .lp-faq-grid,
  .lp-two-column,
  .lp-cta-inner {
    grid-template-columns: 1fr;
  }

  .lp-proof-strip {
    padding-bottom: 24px;
  }

  .lp-cta-inner .button {
    width: fit-content;
  }

  .hero,
  .product-hero {
    padding-top: 48px;
  }

  .product-grid,
  .feature-grid,
  .pricing-grid,
  .checkout-grid,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .product-card.wide {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(247, 249, 251, 0.98);
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px 12px;
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand {
    max-width: calc(100% - 112px);
    gap: 8px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    align-items: stretch;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 2px;
    padding: 10px;
    border: 1px solid rgba(23, 32, 42, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(23, 32, 42, 0.12);
    font-size: 14px;
  }

  .site-header.nav-open .nav-links {
    display: grid;
  }

  .nav-links > a,
  .nav-product-menu summary {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid rgba(217, 225, 234, 0.9);
    border-radius: 8px;
    background: var(--paper);
    padding: 0 12px;
    color: var(--ink);
  }

  .nav-product-menu {
    width: 100%;
  }

  .nav-product-menu::before {
    display: none;
  }

  .nav-product-list {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    padding: 8px;
    border-color: rgba(23, 105, 224, 0.16);
    background: var(--soft-blue);
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav-product-menu[open] .nav-product-list {
    display: grid;
  }

  .nav-product-list a {
    min-height: 42px;
    padding: 10px 12px;
    white-space: normal;
  }

  .hero,
  .product-hero {
    gap: 28px;
    padding-top: 40px;
    padding-bottom: 38px;
  }

  .page-hero {
    padding-top: 46px;
    padding-bottom: 34px;
  }

  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .lp-cta-inner h2 {
    font-size: 30px;
  }

  h3,
  .lp-card h3,
  .lp-step h3,
  .lp-offer h3 {
    font-size: 20px;
  }

  .lead,
  .lp-hero .lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .lp-offer .button,
  .checkout-card .button,
  .plan-card .button,
  .price-list .button {
    width: 100%;
  }

  .lp-card,
  .lp-step,
  .lp-offer,
  .lp-faq-grid details,
  .product-card,
  .plan-card,
  .checkout-card {
    padding: 18px;
  }

  .lp-hero-metrics {
    margin-top: 22px;
  }

  .footer-inner {
    gap: 18px;
  }

  .app-shell {
    width: min(100% - 24px, 1180px);
    padding: 24px 0 44px;
  }

  .app-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
  }

  .app-nav a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 0 10px;
    color: var(--ink);
    text-align: center;
  }

  .app-nav a:first-child {
    grid-column: 1 / -1;
    background: var(--soft-blue);
  }

  .app-panel {
    overflow-x: auto;
    padding: 18px;
  }

  .app-panel h1 {
    font-size: 30px;
  }

  .stack {
    max-width: none;
  }

  .stack button {
    width: 100%;
  }

  .admin-table {
    min-width: 620px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .nav-links {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 8px;
    font-size: 14px;
  }

  .site-header:not(.nav-open) .nav-links {
    display: none;
  }

  .nav-links a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero,
  .product-hero,
  .page-hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lp-proof-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lp-price {
    display: grid;
    gap: 7px;
  }

  .lp-price span {
    text-align: left;
  }

  .lp-cta-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lp-cta-inner .button {
    width: 100%;
  }

  h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  h2 {
    font-size: 27px;
  }

  .lp-cta-inner h2 {
    font-size: 27px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .lp-card-grid,
  .lp-offer-grid,
  .lp-faq-grid,
  .product-grid,
  .feature-grid,
  .pricing-grid,
  .checkout-grid,
  .app-grid {
    gap: 14px;
  }

  .product-card {
    gap: 14px;
  }

  .app-shell {
    width: calc(100% - 24px);
    padding-top: 18px;
  }

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

  .app-nav a:first-child {
    grid-column: auto;
  }

  .app-panel {
    padding: 16px;
  }

  .app-panel h1 {
    font-size: 27px;
  }

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

  .price-row {
    display: grid;
  }

  .plan-card .button,
  .checkout-card .button,
  .price-list .button {
    width: 100%;
  }

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