/* theme/seedypea/seedypea.css */
:root {
  --sp-bg: #fff3d8;
  --sp-bg-soft: #f8e6bd;
  --sp-ink: #1f2718;
  --sp-muted: #5d654f;
  --sp-green: #42672d;
  --sp-green-dark: #162311;
  --sp-pea: #98bd4a;
  --sp-warm: #c85f2d;
  --sp-gold: #e1aa3f;
  --sp-cream: #fff8e9;
  --sp-line: rgba(31, 39, 24, 0.18);
  --sp-shadow: rgba(37, 31, 19, 0.22);
  --sp-radius: 8px;
  --sp-font:
    ui-serif,
    Georgia,
    "Times New Roman",
    serif;
  --sp-sans:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --sp-mono:
    ui-monospace,
    "SF Mono",
    Menlo,
    Consolas,
    monospace;
}
* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
  background: var(--sp-bg);
}
body {
  min-height: 100vh;
  margin: 0;
  color: var(--sp-ink);
  font-family: var(--sp-sans);
  background:
    linear-gradient(
      180deg,
      rgba(255, 248, 233, 0.88),
      rgba(248, 230, 189, 0.95)),
    radial-gradient(
      circle at 20% 8%,
      rgba(225, 170, 63, 0.26),
      transparent 32rem),
    radial-gradient(
      circle at 90% 14%,
      rgba(66, 103, 45, 0.22),
      transparent 28rem);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(31, 39, 24, 0.05) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(31, 39, 24, 0.04) 1px,
      transparent 1px);
  background-size: 42px 42px;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 32px;
  border-bottom: 1px solid var(--sp-line);
  background: rgba(255, 248, 233, 0.82);
  backdrop-filter: blur(14px);
  overflow: visible;
}
.brand,
.nav {
  display: flex;
  align-items: center;
}
.brand {
  gap: 12px;
  color: var(--sp-green-dark);
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 58px;
  height: 64px;
  place-items: center;
  overflow: visible;
}
.brand-mark img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  transform: translateY(10px) scale(1.64);
  transform-origin: center;
}
.brand-name {
  font-family: var(--sp-font);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--sp-green-dark);
  text-shadow: -2px -2px 0 rgba(255, 248, 233, 0.9), 3px 3px 0 rgba(200, 95, 45, 0.55);
}
.nav {
  gap: 20px;
}
.nav a {
  color: var(--sp-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.nav a:hover {
  color: var(--sp-warm);
}
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 56px 0 42px;
}
.hero-copy {
  max-width: 620px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sp-warm);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1,
h2 {
  margin: 0;
  color: var(--sp-green-dark);
  font-family: var(--sp-font);
  font-weight: 800;
  letter-spacing: 0;
}
h1 {
  max-width: 12ch;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.94;
}
h2 {
  max-width: 13ch;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 0.95;
}
.lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--sp-muted);
  font-size: 20px;
  line-height: 1.55;
}
.footer-badge {
  display: inline-grid;
  gap: 2px;
  padding: 12px 16px;
  transform: rotate(-1deg);
  border: 2px solid var(--sp-green);
  border-radius: var(--sp-radius);
  background: rgba(255, 248, 233, 0.76);
  color: var(--sp-green-dark);
  box-shadow: 0 10px 24px rgba(37, 31, 19, 0.09);
  text-transform: uppercase;
}
.footer-badge span {
  color: var(--sp-warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.footer-badge strong {
  font-family: var(--sp-font);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.03em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--sp-radius);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}
.button.primary {
  background: var(--sp-warm);
  color: var(--sp-cream);
  box-shadow: 0 12px 26px rgba(200, 95, 45, 0.24);
}
.button.secondary {
  border: 1px solid var(--sp-line);
  color: var(--sp-green-dark);
  background: rgba(255, 248, 233, 0.68);
}
seedy-cta {
  display: contents;
}
seedy-variant {
  display: none;
}
seedy-variant.is-active {
  display: contents;
}
.hero-art {
  position: relative;
  margin: 0;
  filter: drop-shadow(0 28px 34px rgba(37, 31, 19, 0.24));
}
.hero-art img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}
.hero-art .hero-board {
  position: absolute;
  top: -120px;
  right: 30%;
  width: 96%;
  opacity: 0.5;
  mix-blend-mode: luminosity;
  transform: scale(0.75);
  z-index: 0;
}
.section {
  position: relative;
  scroll-margin-top: 86px;
  padding: 76px 0;
  border-top: 1px solid var(--sp-line);
}
.section p {
  position: relative;
  max-width: 720px;
  color: var(--sp-muted);
  font-size: 18px;
  line-height: 1.7;
  z-index: 1;
}
.farmhouse-bg {
  position: absolute;
  top: 38px;
  right: 10%;
  width: min(420px, 48vw);
  opacity: 0.5;
  transform: rotate(1deg);
  z-index: 0;
  pointer-events: none;
}
.loop {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 22px 0;
  z-index: 1;
}
.loop-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  gap: 20px;
  align-items: stretch;
  margin: 34px 0 28px;
  z-index: 1;
}
.loop span,
.feature-card {
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background: rgba(255, 248, 233, 0.72);
  color: var(--sp-green-dark);
  box-shadow: 0 8px 24px rgba(37, 31, 19, 0.08);
}
.loop span {
  position: relative;
  min-height: 168px;
  display: grid;
  grid-template-rows: minmax(86px, 1fr) auto;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 18px 14px 16px;
  font-family: var(--sp-mono);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
.loop img {
  display: block;
  width: min(94px, 76%);
  max-height: 92px;
  justify-self: center;
  object-fit: contain;
  mix-blend-mode: luminosity;
  transform: scale(3);
}
.loop strong {
  display: block;
  position: relative;
  align-self: end;
  color: var(--sp-green-dark);
  font: inherit;
  z-index: 1;
}
.fold-art {
  min-height: 100%;
  margin: 0;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background: rgba(255, 248, 233, 0.72);
  box-shadow: 0 8px 24px rgba(37, 31, 19, 0.08);
  overflow: hidden;
}
.fold-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 48px;
  align-items: start;
}
.memory-section {
  display: grid;
  gap: 42px;
  padding-bottom: 32px;
}
.memory-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: center;
}
.memory-heading .section-kicker {
  flex: 0 0 100%;
  margin-bottom: -22px;
}
.memory-heading h2 {
  flex: 0 1 auto;
  max-width: 16ch;
}
.packet-card {
  display: flex;
  flex: 1 1 220px;
  justify-content: center;
  margin: 0;
  transform: scale(1.5);
}
.packet-card img {
  display: block;
  width: min(190px, 100%);
  height: auto;
  border-radius: var(--sp-radius);
  box-shadow: 8px 8px 0 rgba(200, 95, 45, 0.28), 0 18px 34px rgba(37, 31, 19, 0.2);
  transform: rotate(2.5deg);
}
.memory-copy .checks {
  margin-top: 0;
}
.memory-body {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 48px;
  align-items: center;
}
.memory-marginalia {
  display: grid;
  gap: 18px;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.badge-row img {
  display: block;
  width: clamp(78px, 7.4vw, 112px);
  height: auto;
  mix-blend-mode: luminosity;
  filter: drop-shadow(4px 5px 0 rgba(200, 95, 45, 0.22));
}
.badge-row-top img:nth-child(1),
.badge-row-bottom img:nth-child(2) {
  transform: rotate(-2deg);
}
.badge-row-top img:nth-child(2),
.badge-row-bottom img:nth-child(3) {
  transform: rotate(2deg);
}
.checks {
  display: grid;
  gap: 12px;
}
.feature-card {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 18px 22px 18px 32px;
  overflow: visible;
}
.feature-card p {
  flex: 1 1 auto;
  margin: 0;
  color: var(--sp-ink);
  font-size: 17px;
}
.feature-card img {
  flex: 0 0 180px;
  display: block;
  width: 180px;
  max-height: 108px;
  object-fit: contain;
  mix-blend-mode: luminosity;
  transform: scale(1.28);
}
.feature-card:nth-child(even) img {
  order: 2;
}
.feature-card:nth-child(even) p {
  order: 1;
}
.feature-card:not(:has(img)) {
  min-height: 104px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 248, 233, 0.78),
      rgba(248, 230, 189, 0.72)),
    radial-gradient(
      circle at 18% 50%,
      rgba(152, 189, 74, 0.28),
      transparent 9rem);
}
.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 48px;
  align-items: center;
  min-height: calc(82vh - 64px);
  padding: 72px 0 54px;
}
.pricing-hero h1 {
  max-width: 11ch;
}
.pricing-hero-art {
  margin: 0;
  justify-self: center;
}
.pricing-hero-art img {
  display: block;
  width: min(360px, 100%);
  height: auto;
  mix-blend-mode: luminosity;
  filter: drop-shadow(10px 12px 0 rgba(200, 95, 45, 0.22)) drop-shadow(0 24px 30px rgba(37, 31, 19, 0.18));
  transform: rotate(2deg);
}
.pricing-section h2,
.pricing-split h2 {
  max-width: 14ch;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.pricing-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 420px;
  padding: 24px;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background: rgba(255, 248, 233, 0.72);
  box-shadow: 0 14px 30px rgba(37, 31, 19, 0.1);
}
.pricing-card.is-featured {
  border-color: rgba(66, 103, 45, 0.42);
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 233, 0.84),
      rgba(248, 230, 189, 0.74)),
    radial-gradient(
      circle at 20% 18%,
      rgba(152, 189, 74, 0.28),
      transparent 14rem);
  box-shadow: 7px 7px 0 rgba(152, 189, 74, 0.22), 0 18px 36px rgba(37, 31, 19, 0.13);
}
.pricing-card-label {
  color: var(--sp-warm);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-card strong {
  color: var(--sp-green-dark);
  font-family: var(--sp-font);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
}
.pricing-card strong span {
  color: var(--sp-muted);
  font-family: var(--sp-sans);
  font-size: 18px;
}
.pricing-card p {
  margin: 0;
  color: var(--sp-muted);
  font-size: 16px;
  line-height: 1.55;
}
.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.pricing-card li {
  padding-left: 18px;
  color: var(--sp-green-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  background: linear-gradient(var(--sp-pea), var(--sp-pea)) 0 0.62em / 8px 8px no-repeat;
}
.pricing-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
}
.pricing-copy-stack {
  display: grid;
  gap: 18px;
}
.pricing-copy-stack p {
  margin: 0;
}
.pricing-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.pricing-notes article {
  padding: 20px;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background: rgba(255, 248, 233, 0.62);
}
.pricing-notes strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sp-green-dark);
  font-family: var(--sp-font);
  font-size: 24px;
}
.pricing-notes p {
  margin: 0;
  font-size: 16px;
}
.memory-art {
  position: relative;
  min-height: 540px;
  margin: 0;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 233, 0.82),
      rgba(248, 230, 189, 0.7)),
    radial-gradient(
      circle at 58% 38%,
      rgba(152, 189, 74, 0.32),
      transparent 18rem);
  box-shadow: 0 18px 38px rgba(37, 31, 19, 0.13);
  overflow: hidden;
}
.memory-art::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 2px solid rgba(66, 103, 45, 0.24);
  border-radius: var(--sp-radius);
}
.memory-catchphrase {
  position: absolute;
  right: 30px;
  bottom: 28px;
  color: var(--sp-green);
  font-family: var(--sp-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.seed-ledger {
  position: absolute;
  inset: 84px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: min-content;
  gap: 16px;
  align-content: center;
  padding: 34px;
  border: 2px solid rgba(66, 103, 45, 0.5);
  border-radius: var(--sp-radius);
  background: rgba(255, 248, 233, 0.78);
  box-shadow: 10px 10px 0 rgba(200, 95, 45, 0.16), -8px -8px 0 rgba(66, 103, 45, 0.16);
}
.ledger-tab {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid rgba(66, 103, 45, 0.34);
  border-radius: var(--sp-radius);
  color: var(--sp-green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.ledger-tab.active {
  background: var(--sp-pea);
  color: var(--sp-green-dark);
  box-shadow: 5px 5px 0 rgba(200, 95, 45, 0.34);
}
.ledger-line {
  grid-column: 1 / -1;
  height: 13px;
  border-radius: 999px;
  background: rgba(66, 103, 45, 0.24);
}
.ledger-line.wide {
  margin-top: 18px;
}
.ledger-line.short {
  width: 58%;
}
.ledger-bloom {
  grid-column: 2 / 4;
  justify-self: end;
  width: 116px;
  height: 116px;
  border: 3px solid var(--sp-green);
  border-radius: 999px;
  background:
    radial-gradient(
      circle at center,
      var(--sp-gold) 0 22%,
      transparent 23%),
    radial-gradient(
      circle at 50% 18%,
      var(--sp-pea) 0 14%,
      transparent 15%),
    radial-gradient(
      circle at 82% 50%,
      var(--sp-pea) 0 14%,
      transparent 15%),
    radial-gradient(
      circle at 50% 82%,
      var(--sp-pea) 0 14%,
      transparent 15%),
    radial-gradient(
      circle at 18% 50%,
      var(--sp-pea) 0 14%,
      transparent 15%);
}
code {
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--sp-green-dark);
  background: rgba(152, 189, 74, 0.18);
  font-family: var(--sp-mono);
  font-size: 0.88em;
}
.footer {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0;
  color: var(--sp-muted);
  font-size: 14px;
}
.farm-scene {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: luminosity;
}
.footer-inner {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3vw, 34px);
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0;
  transform: translateX(-50%);
}
.footer-badge {
  background: rgba(255, 248, 233, 0.9);
  box-shadow: 6px 6px 0 rgba(200, 95, 45, 0.42), 0 14px 30px rgba(0, 0, 0, 0.22);
  transform: rotate(0.8deg);
}
@media (max-width: 900px) {
  .topbar {
    padding: 0 18px;
  }
  .nav {
    gap: 14px;
  }
  .hero,
  .split,
  .pricing-hero,
  .pricing-split,
  .memory-body {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 42px;
  }
  h1 {
    max-width: 10ch;
    font-size: 58px;
  }
  .loop {
    grid-template-columns: 1fr;
  }
  .pricing-grid,
  .pricing-notes {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    min-height: auto;
  }
  .loop-wrap {
    grid-template-columns: 1fr;
  }
  .memory-art {
    min-height: 420px;
  }
}
@media (max-width: 540px) {
  main,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }
  .brand-name {
    font-size: 19px;
  }
  .nav a {
    font-size: 13px;
  }
  h1 {
    font-size: 46px;
  }
  .lede {
    font-size: 18px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .feature-card {
    flex-direction: column;
  }
  .feature-card img {
    flex-basis: auto;
    width: min(240px, 76%);
    max-height: 132px;
  }
  .seed-ledger {
    inset: 66px 24px;
    padding: 20px;
  }
  .memory-art::before {
    inset: 20px;
  }
}
.dirty-secrets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  max-width: 920px;
  position: relative;
  z-index: 1;
}
.dirty-secrets li {
  padding: 16px 18px;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background: rgba(255, 248, 233, 0.6);
  color: var(--sp-muted);
  font-size: 16px;
  line-height: 1.55;
}
.dirty-secrets strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sp-green-dark);
  font-family: var(--sp-font);
  font-size: 19px;
}
@media (max-width: 720px) {
  .dirty-secrets {
    grid-template-columns: 1fr;
  }
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  position: relative;
  z-index: 1;
}
.manifesto-card {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background: rgba(255, 248, 233, 0.72);
  color: var(--sp-green-dark);
  box-shadow: 0 8px 20px rgba(37, 31, 19, 0.08);
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.manifesto-card.is-active:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 31, 19, 0.14);
}
.manifesto-card.is-coming-soon {
  background: rgba(255, 248, 233, 0.4);
  color: var(--sp-muted);
  box-shadow: none;
}
.manifesto-card-eyebrow {
  margin: 0;
  color: var(--sp-warm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.manifesto-card.is-coming-soon .manifesto-card-eyebrow {
  color: var(--sp-muted);
}
.manifesto-card strong {
  font-family: var(--sp-font);
  font-size: 22px;
  line-height: 1.05;
  color: inherit;
}
.manifesto-card span {
  color: var(--sp-muted);
  font-size: 15px;
  line-height: 1.5;
}
.manifesto-card em {
  align-self: start;
  margin-top: 4px;
  padding: 2px 8px;
  border: 1px dashed var(--sp-line);
  border-radius: 999px;
  color: var(--sp-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .manifesto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
  }
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.cta-install {
  padding: 10px 14px;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background: rgba(31, 39, 24, 0.06);
  color: var(--sp-green-dark);
  font-family: var(--sp-mono);
  font-size: 14px;
}
.manifesto {
  max-width: 760px;
  margin: 0 auto;
  padding: 76px 0 60px;
}
.manifesto-header {
  margin-bottom: 36px;
}
.manifesto-eyebrow {
  margin: 0 0 14px;
  color: var(--sp-warm);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.manifesto h1 {
  max-width: 18ch;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.0;
  margin-bottom: 22px;
}
.manifesto-claim {
  max-width: 28ch;
  margin: 0;
  color: var(--sp-green-dark);
  font-family: var(--sp-font);
  font-size: clamp(22px, 2.6vw, 30px);
  font-style: italic;
  line-height: 1.3;
}
.manifesto-body {
  display: grid;
  gap: 18px;
}
.manifesto-body p {
  margin: 0;
  color: var(--sp-ink);
  font-size: 18px;
  line-height: 1.7;
}
.manifesto-body h2 {
  margin-top: 24px;
  max-width: none;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
}
.manifesto-body code {
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(31, 39, 24, 0.08);
  color: var(--sp-green-dark);
  font-family: var(--sp-mono);
  font-size: 0.92em;
}
.manifesto-body ol {
  margin: 0;
  padding-left: 26px;
  color: var(--sp-ink);
  font-size: 18px;
  line-height: 1.7;
}
.manifesto-body ol li {
  margin-bottom: 6px;
}
.manifesto-pre {
  margin: 4px 0;
  padding: 18px 20px;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background: rgba(31, 39, 24, 0.04);
  color: var(--sp-green-dark);
  overflow-x: auto;
  font-family: var(--sp-mono);
  font-size: 14px;
  line-height: 1.55;
}
.manifesto-pre code {
  padding: 0;
  background: none;
  font-size: inherit;
}
.manifesto-pullquote {
  margin: 36px 0 0;
  padding: 18px 22px;
  border-left: 3px solid var(--sp-warm);
  background: rgba(232, 170, 63, 0.12);
  color: var(--sp-green-dark);
  font-size: 17px;
  line-height: 1.55;
}
.manifesto-pullquote p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.manifesto-pullquote em {
  margin-right: 6px;
  color: var(--sp-warm);
  font-style: italic;
  font-weight: 700;
}
.manifesto-footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--sp-line);
}
@media (max-width: 720px) {
  .manifesto {
    padding: 48px 0 40px;
  }
  .manifesto-body p,
  .manifesto-body ol {
    font-size: 16px;
  }
}
.lander-hero {
  padding: 90px 0 30px;
  max-width: 880px;
}
.lander-hero h1 {
  max-width: 22ch;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.0;
  margin-top: 0;
  margin-bottom: 18px;
}
.lander-hero .lede {
  max-width: 700px;
  font-size: 20px;
  line-height: 1.55;
}
.lander-hero .hero-actions {
  margin-top: 28px;
}
.enterprise-bet {
  margin: 30px 0 6px;
  color: var(--sp-green-dark);
  font-family: var(--sp-font);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
  letter-spacing: 0;
  max-width: 720px;
}
.hard-list {
  display: grid;
  gap: 6px;
  margin: 20px 0;
  padding-left: 22px;
  color: var(--sp-ink);
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
}
.impact-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  max-width: 800px;
  position: relative;
  z-index: 1;
}
.impact-list li {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background: rgba(255, 248, 233, 0.6);
  color: var(--sp-muted);
  font-size: 16px;
  line-height: 1.6;
}
.impact-list strong {
  color: var(--sp-green-dark);
  font-family: var(--sp-font);
  font-size: 20px;
  letter-spacing: 0;
}

/* component/moat-catchphrase/moat-catchphrase.css */
moat-catchphrase {
  display: inline-grid;
  min-height: 1lh;
  align-items: center;
  color: inherit;
}
moat-catchphrase .catchphrase-text {
  display: inline-block;
  transition: opacity 180ms ease, transform 180ms ease;
}
moat-catchphrase .catchphrase-text.is-fading {
  opacity: 0;
  transform: translateY(0.25em);
}
@media (prefers-reduced-motion: reduce) {
  moat-catchphrase .catchphrase-text {
    transition: none;
  }
}

/* component/moat-deck/moat-deck.css */
moat-deck {
  display: block;
}
moat-deck[data-ready] {
  --moat-deck-bg: var(--sp-cream, #fff8e9);
  --moat-deck-fg: var(--sp-ink, #1f2718);
  --moat-deck-muted: var(--sp-muted, #5d654f);
  --moat-deck-line: var(--sp-line, rgba(31, 39, 24, 0.18));
  --moat-deck-accent: var(--sp-green, #42672d);
  --moat-deck-warm: var(--sp-warm, #c85f2d);
  --moat-deck-radius: var(--sp-radius, 8px);
  position: relative;
  display: grid;
  min-height: calc(100vh - 112px);
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--moat-deck-line);
  border-radius: var(--moat-deck-radius);
  background:
    linear-gradient(
      135deg,
      rgba(255, 248, 233, 0.96),
      rgba(248, 230, 189, 0.9)),
    var(--moat-deck-bg);
  color: var(--moat-deck-fg);
  box-shadow: 0 18px 48px rgba(37, 31, 19, 0.12);
}
moat-deck[data-ready]:fullscreen {
  min-height: 100vh;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
moat-deck[data-ready]:focus {
  outline: none;
}
moat-deck[data-ready]:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--moat-deck-accent), transparent 30%);
  outline-offset: 4px;
}
moat-deck[data-ready] > section {
  position: relative;
  isolation: isolate;
  grid-area: 1 / 1;
  display: none;
  min-height: calc(100vh - 112px);
  align-content: center;
  padding: clamp(28px, 7vw, 88px);
}
moat-deck[data-ready]:fullscreen > section {
  min-height: 100vh;
}
moat-deck[data-ready] > section[data-active] {
  display: grid;
}
moat-deck[data-ready] h1,
moat-deck[data-ready] h2 {
  max-width: 14ch;
  line-height: 1.04;
}
moat-deck[data-ready] p {
  max-width: 780px;
}
moat-deck[data-ready] ul {
  max-width: 820px;
  margin: 24px 0 0;
  padding-left: 1.25em;
}
moat-deck[data-ready] li {
  margin: 10px 0;
  line-height: 1.45;
}
moat-deck[data-ready] code,
moat-deck[data-ready] pre {
  font-family: var(--sp-mono, ui-monospace, monospace);
}
moat-deck[data-ready] .deck-marginalia {
  position: absolute;
  z-index: -1;
  width: min(58vw, 780px);
  max-width: none;
  opacity: 0.17;
  pointer-events: none;
  user-select: none;
}
moat-deck[data-ready] .deck-marginalia-recursive {
  right: clamp(-220px, -8vw, -72px);
  bottom: clamp(-160px, -8vw, -72px);
}
moat-deck[data-ready] .deck-marginalia-globe {
  right: clamp(-180px, -7vw, -56px);
  top: clamp(24px, 8vw, 92px);
  opacity: 0.2;
}
moat-deck[data-ready] .deck-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
moat-deck[data-ready] .deck-demo-placeholder,
moat-deck[data-ready] .deck-proof-card {
  border: 1px solid var(--moat-deck-line);
  border-radius: var(--moat-deck-radius);
  background: rgba(255, 248, 233, 0.72);
  box-shadow: 0 12px 28px rgba(37, 31, 19, 0.08);
}
moat-deck[data-ready] .deck-demo-placeholder {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 32px;
  color: var(--moat-deck-muted);
  text-align: center;
}
moat-deck[data-ready] .deck-demo-media {
  overflow: hidden;
  padding: 0;
}
moat-deck[data-ready] .deck-demo-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
moat-deck[data-ready] .deck-demo-placeholder strong {
  display: block;
  margin-bottom: 8px;
  color: var(--moat-deck-fg);
  font-family: var(--sp-font, ui-serif, Georgia, serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.98;
}
moat-deck[data-ready] .deck-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin-top: 28px;
}
moat-deck[data-ready] .deck-proof-card {
  padding: 18px;
}
moat-deck[data-ready] .deck-proof-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--moat-deck-accent);
}
moat-deck[data-ready] .deck-note {
  color: var(--moat-deck-muted);
  font-size: 15px;
}
@media (max-width: 840px) {
  moat-deck[data-ready] .deck-split,
  moat-deck[data-ready] .deck-proof-grid {
    grid-template-columns: 1fr;
  }
  moat-deck[data-ready] .deck-marginalia {
    width: 92vw;
    opacity: 0.11;
  }
}
.moat-deck-chrome {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--moat-deck-muted);
  font-size: 13px;
  pointer-events: none;
}
.moat-deck-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}
.moat-deck-button {
  display: inline-grid;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  border: 1px solid var(--moat-deck-line);
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.82);
  color: var(--moat-deck-fg);
  cursor: pointer;
  font: inherit;
}
.moat-deck-button:hover:not(:disabled),
.moat-deck-button:focus-visible {
  border-color: var(--moat-deck-accent);
  color: var(--moat-deck-accent);
}
.moat-deck-button:disabled {
  cursor: default;
  opacity: 0.42;
}
.moat-deck-progress {
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  moat-deck[data-ready] > section[data-active] {
    animation: moat-deck-enter 140ms ease-out;
  }
  @keyframes moat-deck-enter {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media print {
  moat-deck[data-ready] {
    display: block;
    min-height: 0;
    margin: 0;
    overflow: visible;
    border: 0;
    box-shadow: none;
  }
  moat-deck[data-ready] > section,
  moat-deck[data-ready] > section[data-active] {
    display: block;
    min-height: 100vh;
    page-break-after: always;
  }
  .moat-deck-chrome {
    display: none;
  }
}
moat-deck[data-ready] .deck-deep-cta {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  padding: 18px;
  border: 1px solid var(--moat-deck-line);
  border-radius: var(--moat-deck-radius);
  background: rgba(255, 248, 233, 0.72);
  box-shadow: 0 12px 28px rgba(37, 31, 19, 0.08);
  color: var(--moat-deck-fg);
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease, background 0.15s ease;
}
moat-deck[data-ready] .deck-deep-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  border-radius: 0 3px 3px 0;
  background: var(--moat-deck-warm);
  transition: transform 0.2s ease;
}
moat-deck[data-ready] .deck-deep-cta:hover,
moat-deck[data-ready] .deck-deep-cta:focus-visible {
  transform: translateX(4px);
  border-color: color-mix(in srgb, var(--moat-deck-accent), var(--moat-deck-line) 45%);
  background: rgba(255, 248, 233, 0.9);
  outline: none;
}
moat-deck[data-ready] .deck-deep-cta:hover::before,
moat-deck[data-ready] .deck-deep-cta:focus-visible::before {
  transform: translateY(-50%) scaleY(1);
}
moat-deck[data-ready] .deck-deep-cta .cta-text {
  flex: 1;
  min-width: 0;
}
moat-deck[data-ready] .deck-deep-cta .cta-title {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--moat-deck-accent);
  line-height: inherit;
}
moat-deck[data-ready] .deck-deep-cta .cta-description {
  display: block;
  color: var(--moat-deck-fg);
  font-size: inherit;
  line-height: inherit;
}
moat-deck[data-ready] .deck-deep-cta .cta-chevron {
  flex-shrink: 0;
  align-self: center;
  font-size: 20px;
  color: var(--moat-deck-muted);
  transition: transform 0.2s ease, color 0.15s ease;
}
moat-deck[data-ready] .deck-deep-cta:hover .cta-chevron {
  color: var(--moat-deck-warm);
  transform: translateX(2px);
}
moat-deck[data-ready] .deck-deep-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
moat-deck[data-ready] .deck-deep {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease;
}
moat-deck[data-ready] .deck-deep-scrim {
  position: absolute;
  inset: 0;
  background: rgba(31, 39, 24, 0.42);
  cursor: pointer;
}
moat-deck[data-ready] .deck-deep-panel {
  position: relative;
  width: 100%;
  max-width: 940px;
  max-height: 88vh;
  overflow: auto;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--moat-deck-line);
  border-radius: var(--moat-deck-radius);
  background:
    linear-gradient(
      135deg,
      rgba(255, 248, 233, 0.98),
      rgba(248, 230, 189, 0.94)),
    var(--moat-deck-bg);
  box-shadow: 0 28px 72px rgba(37, 31, 19, 0.3);
  transform: scale(0.96);
  transition: transform 0.18s ease;
}
moat-deck[data-ready] .deck-deep-toggle:checked ~ .deck-deep {
  opacity: 1;
  visibility: visible;
}
moat-deck[data-ready] .deck-deep-toggle:checked ~ .deck-deep .deck-deep-panel {
  transform: scale(1);
}
moat-deck[data-ready] .deck-deep-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  border: 1px solid var(--moat-deck-line);
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.82);
  color: var(--moat-deck-fg);
  cursor: pointer;
}
moat-deck[data-ready] .deck-deep-close:hover,
moat-deck[data-ready] .deck-deep-close:focus-visible {
  border-color: var(--moat-deck-warm);
  color: var(--moat-deck-warm);
  outline: none;
}
@media (prefers-reduced-motion: reduce) {
  moat-deck[data-ready] .deck-deep,
  moat-deck[data-ready] .deck-deep-panel,
  moat-deck[data-ready] .deck-deep-cta {
    transition: none;
  }
}

/* component/moat-lazy/moat-lazy.css */
moat-lazy {
  display: block;
  height: 100%;
}
moat-lazy img,
moat-lazy video {
  display: block;
  width: 100%;
}
moat-lazy:not([awake]) img,
moat-lazy:not([awake]) video {
  visibility: hidden;
}

/* component/seedy-demo-pane/seedy-demo-pane.css */
seedy-demo-pane {
  display: block;
  margin: 0 0 56px;
}
.demo-exit-bar {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 10px max(16px, calc((100vw - 1120px) / 2));
  border-bottom: 2px solid rgba(31, 39, 24, 0.18);
  background: rgba(200, 95, 45, 0.96);
  color: var(--sp-cream);
  box-shadow: 0 12px 32px rgba(37, 31, 19, 0.22);
}
.demo-exit-bar.is-visible {
  display: grid;
}
.demo-exit-bar div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
}
.demo-exit-bar strong {
  font-family: var(--sp-font);
  font-size: 22px;
  line-height: 1;
}
.demo-exit-bar span {
  font: 800 13px/1.25 var(--sp-sans);
}
.demo-exit-bar button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 248, 233, 0.62);
  border-radius: var(--sp-radius);
  background: var(--sp-pea);
  color: var(--sp-green-dark);
  cursor: pointer;
  font: 900 13px/1 var(--sp-sans);
}
.demo-pane {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background: rgba(255, 248, 233, 0.78);
  box-shadow: 0 18px 38px rgba(37, 31, 19, 0.12);
  overflow: hidden;
}
.demo-pane h2,
.demo-pane h3,
.demo-pane p {
  margin: 0;
}
.demo-copy,
.demo-live {
  padding: 24px;
}
.demo-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}
.demo-kicker,
.demo-label {
  color: var(--sp-warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.demo-pane h2 {
  max-width: 13ch;
  font-size: clamp(30px, 4vw, 54px);
}
.demo-copy > p {
  max-width: 58ch;
  color: var(--sp-muted);
  font-size: 17px;
  line-height: 1.6;
}
.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.demo-choice,
.demo-copy-button {
  min-height: 42px;
  border-radius: var(--sp-radius);
  border: 1px solid var(--sp-line);
  background: rgba(255, 248, 233, 0.86);
  color: var(--sp-green-dark);
  cursor: pointer;
  font: 800 14px/1 var(--sp-sans);
}
.demo-choice {
  padding: 0 14px;
}
.demo-choice[aria-pressed=true],
.demo-copy-button {
  border-color: rgba(66, 103, 45, 0.55);
  background: var(--sp-pea);
  box-shadow: 4px 4px 0 rgba(200, 95, 45, 0.25);
}
.demo-code {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(31, 39, 24, 0.18);
  border-radius: var(--sp-radius);
  background: rgba(31, 39, 24, 0.9);
}
.demo-code code {
  min-width: 0;
  padding: 0 4px;
  overflow: hidden;
  color: var(--sp-cream);
  background: transparent;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.demo-copy-button {
  padding: 0 12px;
}
.demo-live {
  display: grid;
  gap: 14px;
  align-content: start;
  border-left: 1px solid var(--sp-line);
  background:
    linear-gradient(
      145deg,
      rgba(248, 230, 189, 0.74),
      rgba(255, 248, 233, 0.72)),
    radial-gradient(
      circle at 72% 24%,
      rgba(152, 189, 74, 0.32),
      transparent 13rem);
}
.demo-live-head {
  display: flex;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
}
.demo-live h3 {
  color: var(--sp-green-dark);
  font-family: var(--sp-font);
  font-size: 30px;
  line-height: 1;
}
.demo-live-actions {
  display: flex;
  gap: 6px;
}
.demo-refresh,
.demo-forget {
  width: auto;
  height: 34px;
  padding: 0 10px;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background: rgba(255, 248, 233, 0.82);
  color: var(--sp-green-dark);
  cursor: pointer;
  font: 800 12px/1 var(--sp-sans);
}
.demo-forget {
  border-color: rgba(150, 60, 60, 0.4);
  color: rgba(120, 40, 40, 0.95);
}
.demo-forget:hover {
  background: rgba(255, 235, 230, 0.92);
}
.demo-forget-notice {
  margin: 4px 0 0;
  padding: 6px 10px;
  border: 1px dashed rgba(120, 40, 40, 0.4);
  border-radius: var(--sp-radius);
  background: rgba(255, 235, 230, 0.6);
  color: rgba(90, 30, 30, 0.95);
  font: 600 12px/1.3 var(--sp-sans);
}
.demo-identify-notice {
  margin: 4px 0 0;
  padding: 6px 10px;
  border: 1px dashed rgba(40, 110, 40, 0.4);
  border-radius: var(--sp-radius);
  background: rgba(230, 248, 225, 0.7);
  color: rgba(30, 80, 30, 0.95);
  font: 600 12px/1.3 var(--sp-sans);
}
.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.demo-stat,
.demo-events,
.demo-segments,
.demo-offer {
  border: 1px solid rgba(31, 39, 24, 0.14);
  border-radius: var(--sp-radius);
  background: rgba(255, 248, 233, 0.68);
}
.demo-stat {
  display: grid;
  gap: 3px;
  min-height: 72px;
  padding: 12px;
}
.demo-stat strong {
  color: var(--sp-green-dark);
  font-family: var(--sp-font);
  font-size: 26px;
  line-height: 1;
}
.demo-stat span {
  color: var(--sp-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.demo-segments,
.demo-events,
.demo-offer {
  padding: 14px;
}
.demo-segment-list,
.demo-event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.demo-why {
  margin-top: 10px;
  color: var(--sp-muted);
  font: 700 12px/1.4 var(--sp-mono);
}
.demo-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(152, 189, 74, 0.22);
  color: var(--sp-green-dark);
  font: 800 12px/1 var(--sp-mono);
}
.demo-pill.is-anonymous {
  background: rgba(180, 180, 180, 0.22);
  color: rgba(70, 70, 70, 0.95);
}
.demo-pill.is-known {
  background: rgba(70, 140, 60, 0.28);
  color: rgba(30, 80, 30, 0.98);
  box-shadow: inset 0 0 0 1px rgba(30, 80, 30, 0.3);
}
.demo-event-list {
  display: grid;
}
.demo-event {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  color: var(--sp-green-dark);
  font: 700 12px/1.35 var(--sp-mono);
}
.demo-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--sp-warm);
  box-shadow: 0 0 0 4px rgba(200, 95, 45, 0.14);
}
.demo-offer {
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.demo-offer.is-visible {
  display: flex;
}
.demo-offer p {
  color: var(--sp-green-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
.demo-offer button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--sp-radius);
  background: var(--sp-warm);
  color: var(--sp-cream);
  cursor: pointer;
  font: 900 13px/1 var(--sp-sans);
}
.demo-catchphrase {
  display: grid;
  max-width: 36rem;
  min-height: 2.8em;
  color: var(--sp-green);
  font-family: var(--sp-serif);
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 600;
  line-height: 1.18;
}
@media (max-width: 900px) {
  .demo-pane {
    grid-template-columns: 1fr;
  }
  .demo-live {
    border-left: 0;
    border-top: 1px solid var(--sp-line);
  }
}
.demo-receipts {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(31, 39, 24, 0.18);
}
.demo-receipts .demo-note {
  margin: 4px 0 10px;
  font-size: 12px;
  color: var(--sp-muted, #5d654f);
}
.demo-receipt-list {
  display: grid;
  gap: 6px;
  margin: 0;
}
.demo-receipt-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(255, 248, 233, 0.55);
  font-size: 13px;
}
.demo-receipt-row dt {
  margin: 0;
  color: var(--sp-muted, #5d654f);
  font-weight: 800;
  text-transform: lowercase;
}
.demo-receipt-row dd {
  margin: 0;
  color: var(--sp-green-dark);
  word-break: break-word;
}
.demo-receipt-row em {
  color: var(--sp-muted, #5d654f);
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
}
.demo-seediness {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(31, 39, 24, 0.18);
}
.demo-seediness .demo-note {
  margin: 4px 0 10px;
  font-size: 12px;
  color: var(--sp-muted, #5d654f);
}
.demo-seediness .demo-note code {
  font-size: 11px;
}
.demo-trap-state {
  margin: 0 0 10px;
  color: var(--sp-green-dark);
  font: 800 12px/1.35 var(--sp-mono);
}
.demo-seediness-list {
  display: grid;
  gap: 6px;
}
.demo-seediness-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
}
.demo-seediness-row:hover {
  background: rgba(152, 189, 74, 0.12);
}
.demo-seediness-row input {
  margin-top: 3px;
}
.demo-seediness-label {
  display: grid;
  gap: 2px;
  font-size: 13px;
}
.demo-seediness-label em {
  color: var(--sp-muted, #5d654f);
  font-size: 11px;
  font-style: normal;
}
@media (max-width: 540px) {
  seedy-demo-pane {
    margin-bottom: 42px;
  }
  .demo-copy,
  .demo-live {
    padding: 18px;
  }
  .demo-stats {
    grid-template-columns: 1fr;
  }
  .demo-code {
    grid-template-columns: 1fr;
  }
  .demo-exit-bar {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=seedypea-PH5XHNL6.css.map */
