:root {
  --font-sans: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --radius: 0.875rem;
  --background: #fffdfa;
  --foreground: #282624;
  --card: #fffdfa;
  --secondary: #f6f3ef;
  --muted: #f6f3ef;
  --muted-foreground: #67625d;
  --border: #e6e0da;
  --primary: #527a00;
  --primary-display: #5f8f00;
  --primary-solid: #c6ff3d;
  --on-primary: #1d2900;
  --tint: #c6ff3d;
  --live: #009f2f;
  --danger: #b42318;
  --shell: 56rem;
}

html.dark {
  --background: #0b0c0a;
  --foreground: #f1f4ec;
  --card: #121410;
  --secondary: #191c16;
  --muted: #191c16;
  --muted-foreground: #98a091;
  --border: #272b22;
  --primary: #c6ff3d;
  --primary-display: #c6ff3d;
  --primary-solid: #c6ff3d;
  --on-primary: #1d2900;
  --tint: #c6ff3d;
  --live: #50c05f;
}

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

html { scrollbar-gutter: stable; }

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: color-mix(in srgb, var(--background) 85%, transparent);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.mark {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: var(--primary-solid);
  color: var(--on-primary);
  font-size: 11px;
  font-weight: 700;
}

.wordmark {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 15px;
}

.nav a:not(.btn) {
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  color: var(--muted-foreground);
}

.nav a:not(.btn):hover { color: var(--foreground); }

@media (max-width: 640px) {
  .nav a:not(.btn) { display: none; }
}

.theme-btn {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: 0.25rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
}
.theme-btn:hover { background: var(--secondary); color: var(--foreground); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-solid { background: var(--primary-solid); color: var(--on-primary); }
.btn-solid:hover:not(:disabled) { opacity: 0.9; }
.btn-ghost {
  background: var(--secondary);
  color: var(--foreground);
}
.btn-lg { padding: 0.8rem 1.4rem; font-size: 1rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 13px;
  color: var(--muted-foreground);
}
/* Hero */
.hero { padding: 2.5rem 0 1rem; text-align: center; }
.hero h1 {
  margin: 1.25rem 0 0;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.hero .lede {
  margin: 1.1rem auto 0;
  max-width: 38rem;
  font-size: 1.05rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

/* News mock */
.mock {
  margin: 2.4rem auto 0;
  max-width: 36rem;
  text-align: left;
  border: 2px solid color-mix(in srgb, var(--primary) 35%, var(--border));
  background: color-mix(in srgb, var(--tint) 18%, var(--card));
  border-radius: 1.1rem;
  padding: 1.15rem 1.25rem 1.2rem;
  box-shadow: 0 18px 40px color-mix(in srgb, var(--foreground) 6%, transparent);
}
.mock-kicker {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.mock h2 {
  margin: 0.55rem 0 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.mock p {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  color: var(--muted-foreground);
}
.mock-outlets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-foreground);
}

.marquee-wrap {
  overflow: hidden;
  margin-top: 2.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--muted-foreground);
}
.marquee span { white-space: nowrap; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
section { padding: 3.5rem 0; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
h2.section-title {
  margin: 0.4rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.muted { color: var(--muted-foreground); }

.steps {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.step-num {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--primary-solid);
  color: var(--on-primary);
  font-size: 12px;
  font-weight: 700;
}
.step h3 { margin: 0.7rem 0 0; font-size: 1.05rem; letter-spacing: -0.02em; }
.step p { margin: 0.4rem 0 0; font-size: 0.92rem; color: var(--muted-foreground); }

.honest {
  border: 1px solid var(--border);
  background: var(--secondary);
  border-radius: 1.15rem;
  padding: 1.5rem 1.4rem;
}
.honest h2 { margin: 0.35rem 0 0; }
.honest p { margin: 0.8rem 0 0; font-size: 1rem; line-height: 1.65; color: var(--muted-foreground); }

.grid-2 {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}
.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.card h3 { margin: 0; font-size: 1.05rem; }
.card p { margin: 0.45rem 0 0; font-size: 0.92rem; color: var(--muted-foreground); }

.plans {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}
@media (min-width: 800px) {
  .plans { grid-template-columns: repeat(3, 1fr); }
}
.plan {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1.1rem;
  padding: 1.25rem 1.2rem 1.3rem;
}
.plan.featured {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--tint) 16%, var(--card));
}
.plan .price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--primary-display);
}
.plan .price span { font-size: 0.95rem; font-weight: 500; color: var(--muted-foreground); }
.plan ul {
  margin: 0.2rem 0 0.6rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}
.plan li::before { content: "✓ "; color: var(--primary); font-weight: 700; }
/* Where a release is written to be found. Google and ChatGPT get their real
   marks; the mastheads are wordmark pills, which reads as a hierarchy rather
   than a mismatch. */
.plan .surfaces-label {
  margin: 0.35rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.surfaces {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0.1rem 0 0.2rem;
}
.surface {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.5rem 0.2rem 0.35rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted-foreground);
  background: var(--background);
  white-space: nowrap;
}
.surface.wordmark { padding-left: 0.5rem; letter-spacing: 0.02em; }
.surface svg,
.surface img { width: 13px; height: 13px; flex: none; border-radius: 3px; }

/* The a-la-carte comparison. The struck figure is real arithmetic from the
   add-on prices, so it stays honest when those move. */
.plan .value-line {
  margin: 0.1rem 0 0.35rem;
  font-size: 0.82rem;
  color: var(--muted-foreground);
}
.plan .value-line s { opacity: 0.75; }
.plan .value-line b {
  color: var(--primary-display);
  font-weight: 700;
}

/* The hero tier. It carries the strongest argument on the page, so it gets a
   lifted card and a heavier price rather than sitting flat beside the others. */
.plan { position: relative; }
.plan .badge {
  position: absolute;
  top: -0.65rem;
  right: 1rem;
  background: var(--primary-solid);
  color: var(--on-primary);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* .hero is safe in the composer too, where .featured already means "selected"
   and must stay the only thing that changes the border. */
.plan.plan-hero .price { font-size: 2.5rem; }
/* .hero-card is the landing-only lift, where nothing else competes for accent. */
.plan.plan-hero-card {
  border-color: var(--primary);
  border-width: 2px;
  background: color-mix(in srgb, var(--tint) 22%, var(--card));
  box-shadow: 0 18px 40px -24px color-mix(in srgb, var(--primary) 65%, transparent);
}
@media (min-width: 800px) {
  /* Lifted out of the row so the eye lands here first. */
  .plan.plan-hero-card { transform: translateY(-0.6rem); }
}
.plan.plan-hero .value-line {
  padding: 0.45rem 0.6rem;
  border-radius: 0.6rem;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  font-size: 0.86rem;
}


.plan .compare {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  color: var(--muted-foreground);
}
.plan .btn { margin-top: auto; }

/* Checkout controls. On a phone the add-on list and contact fields push the
   button off screen, so it pins to the bottom instead of being hunted for.
   Above 700px it goes back to sitting in the flow. */
.checkout-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .checkout-bar {
    position: sticky;
    bottom: 0;
    z-index: 20;
    flex-wrap: nowrap;
    gap: 0.6rem;
    margin: 0.8rem -1rem 0;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--background) 92%, transparent);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
  }
  .checkout-bar .btn { padding-top: 0.85rem; padding-bottom: 0.85rem; }
  .checkout-bar [data-prev] { flex: 0 0 auto; }
  .checkout-bar #send-btn { flex: 1 1 auto; }
}

.upsells {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .upsells { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .upsells-lg { grid-template-columns: 1fr 1fr 1fr; }
}
.upsell {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.9rem;
  padding: 0.7rem 0.8rem;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.upsell input { margin-top: 0.2rem; accent-color: var(--primary); }
.upsell img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-contain;
  background: var(--secondary);
  flex-shrink: 0;
}
.upsell b { display: block; font-size: 1rem; letter-spacing: -0.02em; }
.upsell span { display: block; font-size: 0.82rem; color: var(--muted-foreground); margin-top: 0.15rem; }
.upsell .add {
  margin-left: auto;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary-display);
  white-space: nowrap;
}
.upsell .was {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: line-through;
}
.upsells-lg .upsell {
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.05rem;
  min-height: 6.5rem;
}
.upsells-lg .upsell img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.upsell.on {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--tint) 16%, var(--card));
}
.upsells.locked { opacity: 0.45; pointer-events: none; }
.total {
  margin: 0.2rem 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.faq { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.4rem; }
.faq details {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.9rem;
  padding: 0.9rem 1.05rem;
}
.faq summary { cursor: pointer; font-weight: 650; }
.faq p { margin: 0.55rem 0 0; color: var(--muted-foreground); font-size: 0.95rem; line-height: 1.6; }

.prose { max-width: 40rem; }
.prose h1 { font-size: 2.1rem; letter-spacing: -0.03em; margin: 0; }
.prose h2 { margin: 2rem 0 0; font-size: 1.2rem; letter-spacing: -0.02em; }
.prose p { margin: 0.8rem 0 0; color: var(--muted-foreground); line-height: 1.65; }
.prose ul { margin: 0.6rem 0 0; padding-left: 1.1rem; color: var(--muted-foreground); display: flex; flex-direction: column; gap: 0.35rem; }

/* Forms */
.more {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.9rem;
  padding: 0.8rem 1rem;
}
.more summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 0.92rem;
}

.form { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-size: 0.85rem; font-weight: 650; }
.field .hint { font-size: 0.8rem; color: var(--muted-foreground); }
/* The wire-required group carries a hint of its own, outside any one field. */
.wire-required > .hint { font-size: 0.8rem; color: var(--muted-foreground); }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.75rem;
  padding: 0.7rem 0.85rem;
  outline: none;
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--tint) 45%, transparent);
}
.row {
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 640px) {
  .row-2 { grid-template-columns: 1fr 1fr; }
  .row-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.cats label {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  background: var(--card);
}
.cats input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cats label:has(input:checked) {
  background: var(--primary-solid);
  color: var(--on-primary);
  border-color: var(--primary-solid);
}

.serp {
  background: #fff;
  color: #202124;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.9rem 1.05rem 1.1rem;
}
html.dark .serp {
  background: #17181b;
  color: #e8eaed;
}
.serp-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #5f6368;
}
html.dark .serp-brand { color: #9aa0a6; }
.serp-g { display: block; flex-shrink: 0; }
.serp-hit { min-width: 0; }
.serp-url {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  color: #4d5156;
}
.serp-url img {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  object-contain;
}
html.dark .serp-url { color: #9aa0a6; }
.serp-title {
  margin: 0.15rem 0 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  color: #1a0dab;
  outline: none;
}
html.dark .serp-title { color: #8ab4f8; }
.serp-desc {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #4d5156;
  outline: none;
}
html.dark .serp-desc { color: #bdc1c6; }

.story {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem 1.35rem 2rem;
}
.story-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.story h1 {
  margin: 0.55rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  outline: none;
}
.story-meta {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}
.story-body {
  margin-top: 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.75;
  outline: none;
  min-height: 8rem;
}
.story-body p { margin: 1rem 0 0; }
.story-body p:first-child { margin-top: 0.85rem; }
.story-body h2, .story-body h3 {
  margin: 1.6rem 0 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.story-body ul, .story-body ol { margin: 0.7rem 0 0; padding-left: 1.2rem; }
.story-body blockquote {
  margin: 1.2rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--primary-solid);
  color: var(--muted-foreground);
  font-style: italic;
}
.story-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
[contenteditable][data-placeholder]:empty:before {
  content: attr(data-placeholder);
  color: var(--muted-foreground);
  pointer-events: none;
}

.ed-bar {
  position: fixed;
  z-index: 30;
  display: flex;
  gap: 0.15rem;
  padding: 0.25rem;
  border-radius: 0.6rem;
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.ed-bar button {
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 0.4rem;
  padding: 0.35rem 0.5rem;
  font-size: 0.85rem;
  cursor: pointer;
}
.ed-bar button:hover { background: rgba(255,255,255,0.12); }
.permalink { font-size: 0.82rem; }
.permalink a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

.cats-panel {
  margin-top: 1.25rem;
  padding: 1rem 1.05rem 1.1rem;
  border: 1px dashed var(--border);
  border-radius: 1rem;
  background: var(--secondary);
}
.cats-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.cats-panel .hint { margin: 0.25rem 0 0.75rem; }
.cats-panel .cats { margin-top: 0.15rem; }

.compose-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.compose-actions .btn-solid {
  margin-left: auto;
}

.alert {
  border: 1px solid var(--border);
  background: var(--secondary);
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
}
.alert.error { border-color: color-mix(in srgb, var(--danger) 40%, var(--border)); color: var(--danger); }

.promo-banner {
  display: grid;
  gap: 0.2rem;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid color-mix(in srgb, var(--primary) 44%, var(--border));
  border-radius: 0.9rem;
  background: color-mix(in srgb, var(--tint) 18%, var(--card));
}
.promo-banner[hidden] { display: none; }
.promo-banner b { font-size: 0.92rem; }
.promo-banner span { color: var(--muted-foreground); font-size: 0.83rem; }

.wordcount { font-size: 0.8rem; color: var(--muted-foreground); }
.wordcount.bad { color: var(--danger); }

.editor-preview {
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  background: var(--secondary);
  font-size: 0.95rem;
}
.editor-preview h2 { font-size: 1.05rem; margin: 1rem 0 0.4rem; }
.editor-preview p { margin: 0.5rem 0; }
.editor-preview ul { margin: 0.4rem 0; padding-left: 1.1rem; }

.stepper {
  display: flex;
  gap: 0.35rem;
  margin: 1.2rem 0 1.4rem;
}
.stepper span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--border);
}
.stepper span.on { background: var(--primary-solid); }

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.table th, .table td {
  text-align: left;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.table th { font-size: 12px; color: var(--muted-foreground); font-weight: 650; }

.status {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 12px;
  font-weight: 700;
  background: var(--secondary);
}
.status.live { background: color-mix(in srgb, var(--live) 18%, var(--card)); color: var(--live); }

.footer {
  margin-top: 4rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  padding: 2.5rem 0 3rem;
  text-align: center;
}
.footer p { margin: 0; font-size: 13px; color: var(--muted-foreground); }
.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.2rem;
  margin-top: 1rem;
  font-size: 13px;
  color: var(--muted-foreground);
}
.footer nav a:hover { color: var(--foreground); }

@media (max-width: 800px) {
  .page-landing .footer { padding-bottom: 5.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .dot, .marquee { animation: none; }
}
