@font-face {
  font-family: 'Satoshi';
  src: url('/assets/fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'Satoshi';
  src: url('/assets/fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'Satoshi';
  src: url('/assets/fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
}

:root {
  --bg: #f3f4ef;
  --paper: #fafaf6;
  --ink: #171d13;
  --muted: #616b57;
  --line: #d5dbcf;
  --accent: #5c684e;
  --accent-soft: #e3e8d8;
  --accent-deep: #20261a;
  --danger: #8d4d36;
  --shadow: 0 20px 60px rgba(23, 29, 19, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Satoshi', Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(92, 104, 78, 0.10), transparent 28%),
    linear-gradient(180deg, #f7f8f3 0%, #eff2ea 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 29, 19, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 29, 19, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.2), transparent 68%);
}

.site-frame {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 18px;
  border-bottom: 1px solid rgba(213, 219, 207, 0.72);
}

.wordmark {
  color: var(--ink);
  text-decoration: none;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -1px;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topnav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
}

.topnav a:hover {
  color: var(--accent);
}

.topnav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease;
}

.topnav-cta,
.btn-primary {
  background: var(--accent-deep);
  color: #f7f8f3 !important;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn:hover,
.topnav-cta:hover { transform: translateY(-1px); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 36px;
  padding: 52px 0 58px;
  min-height: 74vh;
  align-items: end;
}

.kicker {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.hero h1,
.section-head h2,
.manifesto-intro h2,
.pain-column h2,
.beta-copy h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -3px;
}

.lead,
.manifesto-copy p,
.pain-points p,
.proof-list p,
.steps-row p,
.beta-copy p,
.proof-tail {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
}

.lead {
  margin: 24px 0 0;
  max-width: 720px;
  display: grid;
  gap: 14px;
}

.lead p {
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.micro-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.micro-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  background: rgba(255,255,255,0.58);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-aside {
  align-self: center;
  padding: 18px 0 0 28px;
  border-left: 1px solid var(--line);
}

.aside-label {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -1px;
  font-weight: 700;
  margin-bottom: 10px;
}

.aside-kicker {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.aside-list {
  display: grid;
  gap: 14px;
}

.aside-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(213, 219, 207, 0.72);
}

.aside-list span {
  color: var(--muted);
  font-size: 14px;
}

.aside-list strong {
  font-size: 17px;
  font-weight: 600;
}

main section {
  margin-top: 34px;
}

.manifesto,
.pain-proof,
.product-proof,
.automation-note,
.steps,
.beta-band {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
}

.manifesto-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.manifesto-copy p,
.pain-points p,
.proof-list article,
.steps-row article {
  margin: 0;
}

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

.pain-points {
  display: grid;
  gap: 18px;
}

.pain-points p {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.pain-points span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 5px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head.slim h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 24px;
}

.proof-list article {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.proof-list strong,
.steps-row h3 {
  display: block;
  margin: 0 0 10px;
  font-size: 24px;
}

.proof-panel {
  padding: 22px 24px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-panel-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.proof-line strong {
  font-size: 18px;
}

.proof-line.muted strong {
  color: var(--muted);
}

.proof-line.danger strong {
  color: var(--danger);
}

.proof-tail {
  margin-top: 18px;
  font-size: 16px;
}

.automation-note {
  max-width: 880px;
}

.automation-note h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.automation-note p:last-child {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.steps-row article {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.steps-row span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.beta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: end;
}

.beta-side {
  padding: 20px 0 0 28px;
  border-left: 1px solid var(--line);
}

.beta-side-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price {
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 700;
  color: var(--ink);
}

.price span {
  font-size: 18px;
  color: var(--muted);
}

.price-note {
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.wide { width: 100%; }

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .hero,
  .manifesto,
  .pain-proof,
  .proof-layout,
  .steps-row,
  .beta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-aside {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .beta-side {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .site-frame {
    width: min(100% - 28px, 1180px);
  }

  .hero h1,
  .section-head h2,
  .manifesto-intro h2,
  .pain-column h2,
  .beta-copy h2 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }

  .lead,
  .manifesto-copy p,
  .pain-points p,
  .proof-list p,
  .steps-row p,
  .beta-copy p,
  .proof-tail,
  .product-stage-head p:last-child,
  .automation-note p:last-child {
    font-size: 20px;
    line-height: 1.74;
  }

  .kicker,
  .aside-kicker,
  .aside-list span,
  .aside-list strong,
  .micro-row span,
  .footer-links a,
  .footer-links span {
    font-size: 16px;
  }

  .price {
    font-size: 44px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}










.proof-visual {
  display: grid;
  gap: 18px;
}


















.product-stage {
  padding: 18px 0 42px;
}

.product-stage-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.product-stage-head h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.product-stage-head p:last-child {
  margin: 0;
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
}

.product-preview-frame {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-preview-image {
  display: block;
  width: 100%;
  height: auto;
}


.product-preview-frame {
  margin: 0;
}

