:root {
  --ink: #121411;
  --ink-2: #242821;
  --muted: #646b61;
  --paper: #fbfcf7;
  --panel: #ffffff;
  --soft: #f2f5ed;
  --line: #dde2d8;
  --chalk: #d8ff63;
  --chalk-strong: #bde934;
  --mint: #efffd1;
  --radius: 8px;
  --section-heading-size: clamp(2rem, 3vw, 3rem);
}

* { box-sizing: border-box; }
* { min-width: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
p { color: var(--muted); line-height: 1.65; }
.section-shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  background: rgba(251, 252, 247, 0.92);
  border-bottom: 1px solid rgba(221, 226, 216, 0.8);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 9px; width: fit-content; font-size: 1.03rem; font-weight: 800; letter-spacing: -0.02em; }
.brand-logo { width: 34px; height: 34px; object-fit: contain; }
.brand-lockup { width: 154px; height: 38px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 30px; color: #4f554c; font-size: 0.87rem; font-weight: 600; }
.nav-links a, .site-footer nav a { transition: color 150ms ease; }
.nav-links a:hover, .site-footer nav a:hover { color: var(--ink); }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 10px; font-size: 0.87rem; font-weight: 700; }
.header-cta span { display: grid; width: 28px; height: 28px; place-items: center; background: var(--ink); color: #fff; border-radius: 50%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 42px;
  text-align: center;
  isolation: isolate;
}
.hero::before {
  position: absolute;
  inset: 0 50%;
  width: min(1040px, 100vw);
  content: "";
  background:
    linear-gradient(rgba(18, 20, 17, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 20, 17, .045) 1px, transparent 1px),
    radial-gradient(circle at 50% 22%, rgba(216, 255, 99, .28), transparent 42%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
  mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0,0,0,.78) 38%, transparent 74%);
  transform: translateX(-50%);
  z-index: -2;
}
.hero-copy { position: relative; z-index: 1; max-width: 910px; margin: 0 auto 58px; }
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-icon {
  position: absolute;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18,20,17,.08);
  border-radius: 50%;
  opacity: .28;
  filter: grayscale(.15);
  box-shadow: 0 18px 40px rgba(35,43,28,.08);
}
.hero-icon img { width: 25px; height: 25px; }
.hi-facebook { top: 68px; left: 8%; transform: rotate(-9deg); }
.hi-instagram { top: 142px; right: 11%; transform: rotate(8deg); }
.hi-linkedin { top: 340px; left: 14%; transform: rotate(6deg); }
.hi-x { top: 320px; right: 18%; transform: rotate(-7deg); }
.hi-youtube { top: 24px; right: 28%; transform: rotate(11deg); }
.hi-tiktok { top: 214px; left: 27%; transform: rotate(-5deg); }
.hi-bluesky { top: 205px; right: 5%; transform: rotate(7deg); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #4c5549; font: 500 0.72rem/1 DM Mono, monospace; letter-spacing: 0.08em; text-transform: uppercase; }
.eyebrow i { width: 7px; height: 7px; background: var(--chalk-strong); border: 1px solid var(--ink); border-radius: 50%; box-shadow: 0 0 0 5px rgba(216, 255, 99, 0.28); }
h1 {
  margin: 24px 0 22px;
  font-size: clamp(3.2rem, 6.4vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.hero-accent { color: #6f9f1f; }
.hero-subheading {
  margin: -8px auto 18px;
  color: #4f574b;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}
.hero-description { max-width: 690px; margin: 0 auto; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 20px; border: 1px solid transparent; border-radius: 6px; cursor: pointer; font-weight: 700; transition: transform 150ms ease, background 150ms ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--ink); background: var(--chalk); border-color: #b7dc3f; }
.button.primary:hover { background: #cafa3e; }
.text-button { gap: 10px; padding-inline: 12px; color: var(--ink); background: transparent; }

.publish-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 42px 54px;
  background: #ecf1e7;
  border: 1px solid #d7ddd1;
  border-radius: var(--radius);
  text-align: left;
  isolation: isolate;
}
.stage-glow { position: absolute; inset: -25% 20% auto; height: 95%; z-index: -1; background: radial-gradient(circle, rgba(216,255,99,.72) 0, rgba(216,255,99,.2) 38%, transparent 68%); filter: blur(24px); }
.channel-rail { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 940px; margin: 0 auto 32px; }
.channel-label span, .channel-label strong { display: block; }
.channel-label span { margin-bottom: 4px; color: var(--muted); font: 500 .7rem/1 DM Mono, monospace; text-transform: uppercase; }
.channel-label strong { font-size: .95rem; }
.channel-list { display: flex; gap: 10px; }
.channel { position: relative; display: grid; width: 42px; height: 42px; place-items: center; background: rgba(255,255,255,.92); border: 1px solid rgba(18,20,17,.12); border-radius: 50%; transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease; }
.channel img { width: 19px; height: 19px; }
.channel.receiving { transform: translateY(-4px) scale(1.12); box-shadow: 0 0 0 4px rgba(216,255,99,.6), 0 10px 22px rgba(38,48,31,.18); }
.channel.sent { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(38,48,31,.16); }
.channel.sent::after { position: absolute; right: -2px; bottom: -2px; display: grid; width: 14px; height: 14px; place-items: center; content: "\2713"; color: var(--ink); background: var(--chalk); border: 1px solid var(--ink); border-radius: 50%; font-size: 8px; font-weight: 900; transform: scale(0); animation: channel-check 220ms ease forwards; }
@keyframes channel-check { to { transform: scale(1); } }

.composer { width: min(700px, 100%); margin: 0 auto; background: rgba(255,255,255,.96); border: 1px solid rgba(18,20,17,.14); border-radius: var(--radius); box-shadow: 0 24px 70px rgba(35,43,28,.15); }
.composer-top, .composer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; }
.composer-top { border-bottom: 1px solid var(--line); }
.composer-brand { display: flex; align-items: center; gap: 11px; }
.composer-brand img { width: 34px; height: 34px; }
.composer-brand strong, .composer-brand span { display: block; }
.composer-brand strong { font-size: .9rem; }
.composer-brand span, .draft-state { margin-top: 2px; color: var(--muted); font-size: .72rem; }
.draft-state { padding: 6px 8px; background: var(--soft); border-radius: 4px; }
.post-content { min-height: 170px; padding: 28px 26px; }
.post-label { color: #899087; font: 500 .68rem/1 DM Mono, monospace; letter-spacing: .06em; text-transform: uppercase; }
.post-content p { max-width: 580px; margin: 17px 0 12px; color: var(--ink); font-size: 1.18rem; line-height: 1.52; }
.post-link { color: #60753c; font-size: .87rem; font-weight: 600; }
.composer-bottom { border-top: 1px solid var(--line); }
.post-tools { display: flex; gap: 8px; }
.post-tools span { padding: 6px 8px; color: var(--muted); background: var(--soft); border-radius: 4px; font: 500 .66rem/1 DM Mono, monospace; }
.publish-button { display: flex; min-height: 42px; align-items: center; gap: 12px; padding: 0 16px; color: var(--ink); background: var(--chalk); border: 1px solid #adc944; border-radius: 5px; cursor: pointer; font-weight: 800; }
.publish-button:disabled { cursor: default; opacity: .9; }
.publish-button.is-active { box-shadow: 0 0 0 3px rgba(216,255,99,.5); }
.publish-button.is-done { color: #fff; background: #26331f; border-color: #26331f; }
.delivery-toast { position: absolute; left: 50%; bottom: 28px; display: flex; min-width: 330px; align-items: center; gap: 12px; padding: 12px 15px; background: var(--ink); color: #fff; border-radius: 6px; box-shadow: 0 15px 30px rgba(18,20,17,.24); transform: translateX(-50%); transition: transform 250ms ease, background 250ms ease; }
.delivery-toast.success { background: #26331f; transform: translateX(-50%) translateY(-3px); }
.delivery-icon { display: grid; width: 32px; height: 32px; place-items: center; background: var(--chalk); border-radius: 4px; }
.delivery-icon img { width: 22px; height: 22px; }
.delivery-toast strong, .delivery-toast span { display: block; }
.delivery-toast strong { font-size: .8rem; }
.delivery-toast div span { margin-top: 2px; color: rgba(255,255,255,.62); font-size: .68rem; }
.hero-footnote { display: flex; justify-content: center; gap: 30px; margin: 24px 0 0; color: #747b70; font: 500 .7rem/1 DM Mono, monospace; text-transform: uppercase; }
.hero-footnote span::before { display: inline-block; width: 5px; height: 5px; margin: 0 8px 1px 0; content: ""; background: var(--chalk-strong); border-radius: 50%; }

.platform-band { padding: 54px 0; background: #fff; border-block: 1px solid var(--line); }
.platform-band-inner > p { margin: 0 0 30px; text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }

.proof-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 2rem; margin-bottom: 5rem; padding: 1px; border: 1px solid var(--line); border-radius: 18px; background: var(--line); overflow: hidden; }
.proof-strip > div { padding: 1.4rem; background: var(--paper); }
.proof-strip span { display: block; margin-bottom: .55rem; color: var(--muted); font: 500 .72rem/1.2 "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.proof-strip strong { display: block; font-size: 1.05rem; }
.proof-strip p { margin: .45rem 0 .7rem; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.proof-strip a { color: inherit; font-size: .86rem; font-weight: 700; }
.platform-wordmarks { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px 34px; }
.platform-wordmarks span { display: inline-flex; align-items: center; gap: 8px; color: #3f443d; font-size: .87rem; font-weight: 700; }
.platform-wordmarks img { width: 19px; height: 19px; }

.product-story, .outcome-section, .faq-section { padding: 120px 0; }
.section-heading {
  display: grid;
  justify-items: center;
  max-width: 820px;
  margin: 0 auto 68px;
  text-align: center;
}
.section-heading h2, .developer-copy h2, .pricing-callout h2, .pricing-head h2, .trust-head h2, .cta-section h2 { margin-bottom: 0; font-size: var(--section-heading-size); line-height: 1.08; letter-spacing: -.035em; }
.section-heading > p { max-width: 620px; margin: 18px auto 0; }
.narrative-heading {
  max-width: 820px;
  gap: 16px;
}
.section-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
  justify-items: center;
}
.section-copy h2 { margin: 0; }
.section-copy p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.02rem;
}
.kicker { color: #71796e; font: 500 .68rem/1.3 DM Mono, monospace; letter-spacing: .09em; }
.kicker.light { color: #b9c0b2; }
.story-list { border-top: 1px solid var(--ink); }
.story-list article { display: grid; grid-template-columns: 72px minmax(0, 1fr) minmax(72px, max-content); gap: 20px; align-items: start; padding: 30px 0; border-bottom: 1px solid var(--line); }
.story-number { color: #8b9188; font: 500 .7rem/1 DM Mono, monospace; }
.story-list h3 { margin-bottom: 6px; font-size: 1.22rem; }
.story-list p { max-width: 640px; margin: 0; }
.story-tag { padding: 7px 10px; color: #596054; background: var(--soft); border-radius: 4px; font: 500 .66rem/1 DM Mono, monospace; text-transform: uppercase; }

.developer-section { padding: 104px 0; color: #fff; background: var(--ink); }
.developer-grid {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  gap: 48px;
  align-items: center;
  text-align: center;
}
.developer-copy h2 { margin: 20px 0 24px; }
.developer-copy p { max-width: 660px; margin-inline: auto; color: #adb5a9; }
.inline-link { display: inline-flex; gap: 10px; margin-top: 18px; color: var(--chalk); font-weight: 700; }
.code-window { overflow: hidden; width: 100%; max-width: 860px; margin-inline: auto; background: #1c201b; border: 1px solid #373d34; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.28); text-align: left; }
.code-tabs { display: flex; align-items: center; gap: 22px; min-height: 48px; padding: 0 18px; color: #777f74; border-bottom: 1px solid #373d34; font: 500 .68rem/1 DM Mono, monospace; }
.code-tabs button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.code-tabs button:hover,
.code-tabs button.active { color: #fff; }
.code-tabs button.active { text-decoration: underline; text-decoration-color: var(--chalk); text-underline-offset: 6px; }
.code-tabs i { margin-left: auto; color: #949d90; font-style: normal; }
.code-window pre { overflow: auto; min-height: 260px; margin: 0; padding: 30px 24px; color: #dfe4dc; font: 400 .79rem/1.8 DM Mono, monospace; }
.code-panel[hidden] { display: none; }
.code-muted { color: #687064; }.code-key { color: #d8ff63; }.code-string { color: #b9d6ff; }
.code-result { display: grid; grid-template-columns: auto auto 1fr; gap: 9px; align-items: center; padding: 13px 18px; background: #222820; border-top: 1px solid #373d34; }
.code-result > span { width: 8px; height: 8px; background: var(--chalk); border-radius: 50%; }
.code-result strong { font: 500 .7rem/1 DM Mono, monospace; }
.code-result p { justify-self: end; margin: 0; color: #8d9589; font-size: .7rem; }

.section-heading.compact { max-width: 900px; }
.outcomes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.outcomes article { padding: 34px 34px 10px 0; }
.outcomes article + article { padding-left: 34px; border-left: 1px solid var(--line); }
.outcomes strong { display: block; margin-bottom: 42px; font-size: clamp(2.6rem, 5vw, 4.5rem); letter-spacing: -.06em; }
.outcomes h3 { margin-bottom: 8px; font-size: 1.05rem; }
.outcomes p { max-width: 280px; margin-bottom: 0; font-size: .9rem; }

.pricing-callout { display: grid; grid-template-columns: 1fr .75fr auto; gap: 50px; align-items: end; padding: 48px 0; border-block: 1px solid var(--ink); }
.pricing-callout h2 { margin-top: 12px; }
.pricing-callout p { margin: 0; }

.button.secondary { color: var(--ink); background: transparent; border-color: var(--ink); }
.button.secondary:hover { background: var(--ink); color: #fff; }

.pricing-section { padding: 120px 0; }
.pricing-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.pricing-head .kicker { display: block; margin-bottom: 14px; }
.pricing-head h2 { margin-bottom: 16px; }
.pricing-head p { max-width: 640px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 34px 26px; background: #fff; }
.price-card.featured { background: var(--ink); color: #fff; }
.price-badge { position: absolute; top: 18px; right: 18px; padding: 5px 9px; color: var(--ink); background: var(--chalk); border-radius: 100px; font: 600 .6rem/1 DM Mono, monospace; letter-spacing: .05em; text-transform: uppercase; }
.price-name { color: #6b7266; font: 500 .72rem/1 DM Mono, monospace; letter-spacing: .12em; text-transform: uppercase; }
.price-card.featured .price-name { color: #b9c0b2; }
.price-amount { margin: 14px 0 4px; font-size: 2.9rem; font-weight: 800; letter-spacing: -.04em; }
.price-amount span { font-size: 1rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-card.featured .price-amount span { color: #aeb6a8; }
.price-posts { margin: 0 0 22px; color: var(--muted); font-size: .92rem; }
.price-card.featured .price-posts { color: #c7cdc0; }
.price-features { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: .9rem; }
.price-features li { position: relative; padding-left: 22px; color: #3f463c; }
.price-card.featured .price-features li { color: #d7dccf; }
.price-features li::before { content: "\2713"; position: absolute; left: 0; color: #7fa22e; font-weight: 800; font-size: .82rem; }
.price-card.featured .price-features li::before { color: var(--chalk); }
.price-card .button { margin-top: auto; width: 100%; }
.pricing-notes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 1px; background: var(--line); border: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--radius) var(--radius); overflow: hidden; }
.pricing-notes p { margin: 0; padding: 22px 26px; background: var(--soft); color: var(--muted); font-size: .85rem; line-height: 1.6; }
.pricing-notes span { display: block; margin-bottom: 5px; color: var(--ink); font: 600 .68rem/1 DM Mono, monospace; letter-spacing: .08em; text-transform: uppercase; }

.cta-section { display: grid; grid-template-columns: 1fr .85fr; gap: 80px; align-items: center; margin-top: 120px; padding: 72px; color: #fff; background: var(--ink); border-radius: var(--radius); }
.cta-section h2 { max-width: 650px; margin: 18px 0; }
.cta-section p { margin-bottom: 0; color: #adb5a9; }
.waitlist-form > div { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.waitlist-form input { min-width: 0; min-height: 50px; padding: 0 16px; color: var(--ink); background: #fff; border: 1px solid #fff; border-radius: 5px; outline: none; }
.waitlist-form input:focus { border-color: var(--chalk); box-shadow: 0 0 0 3px rgba(216,255,99,.2); }
.form-note { margin: 10px 0 0; color: #7f887b !important; font-size: .72rem; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { padding: 24px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding-right: 40px; cursor: pointer; list-style: none; font-size: 1.04rem; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 6px; content: "+"; font: 400 1.4rem/1 DM Mono, monospace; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p { max-width: 720px; margin: 16px 0 0; }

.site-footer { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 54px 0 30px; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: minmax(210px, 260px) minmax(0, 1fr); gap: clamp(48px, 8vw, 110px); align-items: start; }
.footer-brand { display: grid; justify-items: start; gap: 15px; text-align: left; }
.footer-lockup { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: .98rem; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.footer-lockup img { width: 28px; height: 28px; object-fit: contain; }
.footer-brand p { max-width: 230px; margin: 0; font-size: .82rem; line-height: 1.65; }
.footer-nav-grid { display: grid; grid-template-columns: repeat(4, minmax(110px, 1fr)); gap: 34px 24px; }
.footer-group { display: grid; align-content: start; justify-items: start; gap: 12px; }
.footer-group strong { margin-bottom: 3px; color: var(--ink); font: 600 .68rem/1.2 DM Mono, monospace; letter-spacing: .08em; text-transform: uppercase; }
.footer-group a { color: var(--muted); font-size: .78rem; font-weight: 600; line-height: 1.35; transition: color 150ms ease; }
.footer-group a:hover { color: var(--ink); }
.copyright { margin: 44px 0 0; padding-top: 22px; color: #989e95; border-top: 1px solid var(--line); font-size: .72rem; }

/* Shared SEO and legal pages */
.seo-hero { padding: 92px 0 60px; }
.seo-hero .hero-copy { max-width: 900px; margin: 0; }
.seo-hero h1 { max-width: 920px; font-size: clamp(3rem, 6vw, 5.7rem); }
.seo-hero .hero-copy > p { margin: 0; }
.breadcrumb { display: inline-flex; margin-bottom: 28px; color: var(--muted); font: 500 .72rem/1 DM Mono, monospace; }
.seo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-bottom: 100px; background: var(--line); border: 1px solid var(--line); }
.seo-card { padding: 36px; background: #fff; }
.seo-card.featured { color: #fff; background: var(--ink); }
.seo-card h2 { margin-bottom: 18px; font-size: clamp(1.7rem, 3vw, 2.6rem); letter-spacing: -.035em; }
.seo-card.featured p { color: #b5bdb1; }
.seo-card ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }
.api-seo-hero { padding-bottom: 86px; text-align: center; }
.api-seo-hero .hero-copy { margin-inline: auto; }
.api-seo-hero .hero-copy > p { margin-inline: auto; }
.api-seo-hero .hero-actions { justify-content: center; }
.api-seo-story { padding: 110px 0; }
.api-capability-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.api-capability-row > div { padding: 30px 30px 0 0; }
.api-capability-row > div + div { padding-left: 30px; border-left: 1px solid var(--line); }
.api-capability-row span { display: block; margin-bottom: 38px; color: #8b9188; font: 500 .7rem/1 DM Mono, monospace; }
.api-capability-row strong { display: block; margin-bottom: 8px; font-size: 1.15rem; }
.api-capability-row p { max-width: 280px; margin-bottom: 0; }
.api-seo-cta { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding: 88px 0; }
.api-seo-cta h2 { max-width: 740px; margin: 14px 0 0; font-size: clamp(2.4rem, 4.5vw, 4.2rem); line-height: 1.04; letter-spacing: -.045em; }
.legal-content { max-width: 760px; padding: 12px 0 100px; line-height: 1.75; }
.legal-content h2 { margin: 40px 0 12px; font-size: 1.25rem; }
.blog-hero { padding-bottom: 42px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; padding: 10px 0 100px; }
.blog-card { display: grid; gap: 18px; align-content: start; min-height: 100%; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.blog-card span, .article-meta { color: #71796e; font: 500 .68rem/1.35 DM Mono, monospace; letter-spacing: .08em; text-transform: uppercase; }
.blog-card h2 { margin: 0; font-size: 1.24rem; line-height: 1.18; letter-spacing: -.02em; }
.blog-card p { margin: 0; font-size: .95rem; }
.blog-card a { color: #526d1d; font-weight: 800; }
.article-shell { display: grid; grid-template-columns: minmax(0, 760px) 280px; gap: 64px; align-items: start; padding: 26px 0 112px; }
.article-content { min-width: 0; }
.article-content pre { max-width: 100%; overflow-x: auto; }
.article-content pre code { display: block; width: max-content; min-width: 100%; }
.article-content h2 { margin: 44px 0 14px; font-size: clamp(1.7rem, 2.4vw, 2.35rem); line-height: 1.12; letter-spacing: -.03em; }
.article-content h3 { margin: 30px 0 10px; font-size: 1.16rem; }
.article-content p, .article-content li { color: #4f574b; font-size: 1.02rem; line-height: 1.78; }
.article-content ul, .article-content ol { padding-left: 22px; }
.article-content li + li { margin-top: 10px; }
.article-callout { margin: 34px 0; padding: 24px; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--chalk-strong); border-radius: var(--radius); }
.article-callout p { margin: 0; color: var(--ink); font-weight: 700; }
.article-toc { position: sticky; top: 98px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.article-toc strong { display: block; margin-bottom: 14px; font-size: .85rem; }
.article-toc a { display: block; padding: 9px 0; color: var(--muted); border-top: 1px solid var(--line); font-size: .86rem; font-weight: 700; }
.article-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.article-links a { padding: 10px 12px; background: var(--soft); border: 1px solid var(--line); border-radius: 5px; font-size: .86rem; font-weight: 800; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 20px; }
  .nav-links { display: none; }
  .publish-stage { min-height: 570px; padding: 34px 24px; }
  .channel-rail { align-items: flex-start; }
  .channel-list { max-width: 360px; flex-wrap: wrap; justify-content: flex-end; }
  .section-heading { max-width: 720px; }
  .developer-grid { grid-template-columns: 1fr; gap: 50px; }
  .outcomes { grid-template-columns: 1fr; }
  .outcomes article, .outcomes article + article { display: grid; grid-template-columns: 180px 1fr; column-gap: 28px; padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .outcomes strong { grid-row: span 2; margin: 0; }
  .pricing-callout { grid-template-columns: 1fr 1fr; }
  .pricing-callout .button { grid-column: 1 / -1; justify-self: start; }
  .pricing-section { padding: 82px 0; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-notes { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; gap: 40px; padding: 50px; }
  .api-seo-cta { align-items: flex-start; flex-direction: column; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-shell { grid-template-columns: 1fr; gap: 34px; }
  .article-toc { position: static; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand p { max-width: 360px; }
}

@media (max-width: 620px) {
  .proof-strip { grid-template-columns: 1fr; }
  :root { --section-heading-size: 2.15rem; }
  .section-shell { width: min(100% - 28px, 1160px); }
  .site-header { min-height: 64px; }
  .header-cta { font-size: 0; }
  .header-cta span { font-size: .9rem; }
  .hero { padding-top: 66px; }
  .hero-copy { margin-bottom: 40px; }
  .hero::before { background-size: 54px 54px, 54px 54px, 100% 100%; }
  .hero-icon { width: 44px; height: 44px; opacity: .2; }
  .hero-icon img { width: 20px; height: 20px; }
  .hi-facebook { top: 50px; left: -2px; }
  .hi-instagram { top: 122px; right: 2px; }
  .hi-linkedin { display: none; }
  .hi-x { top: 312px; right: 8px; }
  .hi-youtube { display: none; }
  .hi-tiktok { top: 258px; left: 8px; }
  .hi-bluesky { top: 210px; right: -3px; }
  h1 { margin-top: 20px; font-size: clamp(2.75rem, 12vw, 4rem); letter-spacing: -.04em; }
  .hero-subheading { margin-top: -6px; font-size: 1.18rem; }
  .hero-description { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .text-button { min-height: 38px; }
  .publish-stage { min-height: 570px; margin-inline: -2px; padding: 24px 14px; }
  .channel-rail { display: block; margin-bottom: 20px; }
  .channel-label { margin-bottom: 14px; }
  .channel-list { max-width: none; justify-content: flex-start; gap: 7px; }
  .channel { width: 34px; height: 34px; }
  .channel img { width: 16px; height: 16px; }
  .composer-top, .composer-bottom { padding: 14px; }
  .post-content { min-height: 190px; padding: 24px 16px; }
  .post-content p { font-size: 1.02rem; }
  .post-tools span:nth-child(2) { display: none; }
  .publish-button { padding-inline: 12px; }
  .publish-button .button-label { font-size: 0; }
  .publish-button .button-label::after { content: "Publish"; font-size: .82rem; }
  .delivery-toast { bottom: 18px; min-width: min(310px, calc(100% - 28px)); }
  .hero-footnote { flex-wrap: wrap; gap: 12px 20px; }
  .platform-band { padding: 42px 0; }
  .platform-wordmarks { gap: 18px 22px; }
  .product-story, .outcome-section, .faq-section { padding: 82px 0; }
  .section-heading { margin-bottom: 42px; }
  .story-list article { grid-template-columns: 44px 1fr; }
  .story-tag { display: none; }
  .developer-section { padding: 78px 0; }
  .code-tabs { gap: 14px; }
  .code-tabs i { display: none; }
  .code-window pre { min-height: 285px; padding: 22px 16px; font-size: .69rem; }
  .code-result p { display: none; }
  .outcomes article, .outcomes article + article { grid-template-columns: 1fr; }
  .outcomes strong { margin-bottom: 22px; }
  .pricing-callout { grid-template-columns: 1fr; gap: 22px; }
  .pricing-callout .button { grid-column: auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-section { width: 100%; margin-top: 80px; padding: 58px 20px; border-radius: 0; }
  .waitlist-form > div { grid-template-columns: 1fr; }
  .site-footer { width: min(100% - 28px, 1160px); padding-top: 42px; }
  .footer-nav-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 20px; }
  .copyright { margin-top: 36px; }
  .seo-hero { padding-top: 68px; }
  .seo-hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .seo-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; padding-bottom: 72px; }
  .blog-card { padding: 22px; }
  .article-shell { padding-bottom: 82px; }
  .article-content h2 { margin-top: 34px; }
  .api-seo-hero { padding-bottom: 66px; }
  .api-seo-story { padding: 78px 0; }
  .api-capability-row { grid-template-columns: 1fr; }
  .api-capability-row > div, .api-capability-row > div + div { padding: 24px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .api-capability-row span { margin-bottom: 18px; }
  .api-seo-cta { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ---- Hero: live multi-platform delivery console ---- */
.dispatch-stage {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  overflow: hidden;
  color: #eef2eb;
  background:
    radial-gradient(circle at 32% 50%, rgba(190,239,72,.08), transparent 30%),
    linear-gradient(145deg, #151914, #0e110e 72%);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(21,28,17,.2), inset 0 1px rgba(255,255,255,.05);
  text-align: left;
  isolation: isolate;
}
.dispatch-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.dispatch-head,
.dispatch-foot { display: flex; align-items: center; justify-content: space-between; }
.dispatch-head { padding: 20px 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dispatch-head > div { display: flex; align-items: center; gap: 14px; }
.dispatch-head strong { font-size: .94rem; font-weight: 650; letter-spacing: -.01em; }
.dispatch-head > code { color: #7f887b; font: 500 .66rem/1 DM Mono, monospace; }
.dispatch-kicker { display: inline-flex; align-items: center; gap: 7px; color: #aeb7a8; font: 500 .64rem/1 DM Mono, monospace; letter-spacing: .13em; text-transform: uppercase; }
.dispatch-kicker i { width: 6px; height: 6px; background: var(--chalk); border-radius: 50%; box-shadow: 0 0 12px rgba(216,255,99,.65); }
.dispatch-body { display: grid; grid-template-columns: minmax(190px,.72fr) 108px minmax(430px,1.65fr); align-items: center; gap: 18px; padding: 34px 30px; }
.dispatch-label { color: #737d70; font: 600 .6rem/1 DM Mono, monospace; letter-spacing: .13em; text-transform: uppercase; }
.dispatch-source {
  min-height: 244px;
  padding: 21px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}
.dispatch-source-mark { display: grid; width: 42px; height: 42px; margin: 30px 0 22px; place-items: center; background: var(--chalk); border-radius: 8px; box-shadow: 0 0 0 1px rgba(216,255,99,.25), 0 12px 34px rgba(159,201,50,.15); }
.dispatch-source-mark img { width: 28px; height: 28px; }
.dispatch-source > code { display: block; margin-bottom: 10px; color: #aeb7a8; font: 500 .68rem/1 DM Mono, monospace; }
.dispatch-source > code b { margin-right: 5px; color: var(--chalk); font-weight: 600; }
.dispatch-source > strong { display: block; font-size: 1.03rem; }
.dispatch-source > p { margin: 7px 0 0; color: #778174; font: 500 .68rem/1 DM Mono, monospace; }
.dispatch-source > p span { padding: 0 3px; color: #41483f; }
.dispatch-payload { display: grid; gap: 5px; margin-top: 23px; }
.dispatch-payload span { width: 72%; height: 4px; background: #2c332a; border-radius: 10px; }
.dispatch-payload span:nth-child(2) { width: 90%; }
.dispatch-payload span:nth-child(3) { width: 54%; }
.dispatch-router { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.dispatch-router > span { color: #596156; font: 500 .55rem/1 DM Mono, monospace; letter-spacing: .1em; text-transform: uppercase; }
.dispatch-rail { position: relative; width: 100%; height: 1px; overflow: visible; background: #343b31; }
.dispatch-rail::before,
.dispatch-rail::after { content: ""; position: absolute; top: -2px; width: 5px; height: 5px; background: #697264; border-radius: 50%; }
.dispatch-rail::before { left: 0; }
.dispatch-rail::after { right: 0; }
.dispatch-rail i { position: absolute; inset: -1px auto auto 0; width: 42%; height: 3px; opacity: .7; background: linear-gradient(90deg, transparent, var(--chalk)); border-radius: 10px; filter: drop-shadow(0 0 5px rgba(216,255,99,.65)); }
.dispatch-rail b { position: absolute; top: -3px; left: 0; width: 7px; height: 7px; background: #e2ff89; border-radius: 50%; box-shadow: 0 0 13px rgba(216,255,99,.8); }
.delivery-panel { min-width: 0; }
.delivery-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.delivery-panel-head > span:last-child { display: inline-flex; align-items: center; gap: 6px; color: #91a187; font: 500 .6rem/1 DM Mono, monospace; }
.delivery-panel-head > span:last-child i { width: 5px; height: 5px; background: var(--chalk); border-radius: 50%; }
.delivery-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; }
.delivery-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  box-shadow: inset 0 1px rgba(255,255,255,.025);
  transition: border-color 180ms ease, background 180ms ease;
}
.delivery-card > span { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; background: #f7f8f4; border-radius: 7px; }
.delivery-card > span img { width: 20px; height: 20px; }
.delivery-card > div { min-width: 0; }
.delivery-card strong { display: block; overflow: hidden; color: #e6ebe2; font-size: .76rem; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.delivery-card small { display: flex; align-items: center; gap: 5px; margin-top: 5px; color: #596257; font: 500 .57rem/1 DM Mono, monospace; }
.delivery-card small i { width: 5px; height: 5px; background: #485046; border-radius: 50%; }
.dispatch-foot { padding: 14px 22px; color: #687165; border-top: 1px solid rgba(255,255,255,.08); font: 500 .58rem/1 DM Mono, monospace; letter-spacing: .03em; }
.dispatch-foot span:first-child { display: flex; align-items: center; gap: 6px; color: #899583; }
.dispatch-foot span:first-child i { width: 5px; height: 5px; background: var(--chalk); border-radius: 50%; }

@media (prefers-reduced-motion: no-preference) {
  .dispatch-kicker i { animation: dispatch-live 2.8s ease-in-out infinite; }
  .dispatch-source { animation: dispatch-source 9s ease infinite; }
  .dispatch-rail i { animation: dispatch-flow 2.3s linear infinite; }
  .dispatch-rail b { animation: dispatch-packet 2.3s cubic-bezier(.45,0,.2,1) infinite; }
  .delivery-card { animation: delivery-ack 9s ease infinite; animation-delay: calc(1.35s + var(--i) * .34s); }
  .delivery-card small { animation: delivery-status-text 9s ease infinite; animation-delay: calc(1.35s + var(--i) * .34s); }
  .delivery-card small i { animation: delivery-status-dot 9s ease infinite; animation-delay: calc(1.35s + var(--i) * .34s); }
}
@keyframes dispatch-live { 0%,100% { opacity: .55; box-shadow: 0 0 6px rgba(216,255,99,.25); } 50% { opacity: 1; box-shadow: 0 0 14px rgba(216,255,99,.8); } }
@keyframes dispatch-source { 0%,10%,92%,100% { border-color: rgba(255,255,255,.1); } 15%,24% { border-color: rgba(216,255,99,.38); } }
@keyframes dispatch-flow { from { transform: translateX(-100%); } to { transform: translateX(240%); } }
@keyframes dispatch-packet { 0%,7% { left: 0; opacity: 0; } 14% { opacity: 1; } 84% { opacity: 1; } 94%,100% { left: calc(100% - 7px); opacity: 0; } }
@keyframes delivery-ack { 0%,13%,88%,100% { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.08); } 17%,23% { background: rgba(216,255,99,.085); border-color: rgba(216,255,99,.34); } 28%,82% { background: rgba(255,255,255,.045); border-color: rgba(216,255,99,.14); } }
@keyframes delivery-status-text { 0%,13%,88%,100% { color: #596257; } 17%,82% { color: #b9caae; } }
@keyframes delivery-status-dot { 0%,13%,88%,100% { background-color: #485046; box-shadow: none; } 17%,82% { background-color: var(--chalk); box-shadow: 0 0 8px rgba(216,255,99,.38); } }

@media (max-width: 820px) {
  .dispatch-body { grid-template-columns: minmax(165px,.75fr) 72px minmax(340px,1.5fr); gap: 12px; padding-inline: 20px; }
  .delivery-card { gap: 8px; padding: 10px 8px; }
}
@media (max-width: 680px) {
  .dispatch-head { padding: 17px 16px; }
  .dispatch-head > div { align-items: flex-start; flex-direction: column; gap: 6px; }
  .dispatch-head > code { display: none; }
  .dispatch-body { grid-template-columns: 1fr; gap: 20px; padding: 22px 16px; }
  .dispatch-source { min-height: 0; padding: 18px; }
  .dispatch-source-mark { float: left; margin: 24px 14px 14px 0; }
  .dispatch-source > code { padding-top: 26px; }
  .dispatch-payload { display: none; }
  .dispatch-router { height: 36px; justify-content: center; }
  .dispatch-router > span { display: none; }
  .dispatch-rail { width: 1px; height: 100%; background: #343b31; }
  .dispatch-rail::before { top: 0; left: -2px; }
  .dispatch-rail::after { top: auto; right: auto; bottom: 0; left: -2px; }
  .dispatch-rail i { inset: 0 auto auto -1px; width: 3px; height: 42%; background: linear-gradient(180deg, transparent, var(--chalk)); }
  .dispatch-rail b { top: 0; left: -3px; }
  .dispatch-rail i,
  .dispatch-rail b { animation: none; }
  .dispatch-rail i { height: 100%; opacity: .45; }
  .dispatch-rail b { top: calc(50% - 3px); }
  .delivery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dispatch-foot span:nth-child(2) { display: none; }
}
@media (max-width: 390px) {
  .delivery-card strong { font-size: .7rem; }
  .delivery-card > span { flex-basis: 31px; width: 31px; height: 31px; }
  .dispatch-foot { gap: 12px; }
}

/* ---- Hero: open content bloom ---- */
.social-bloom {
  position: relative;
  display: grid;
  grid-template-columns: 240px minmax(190px,260px) minmax(340px,390px);
  min-height: 390px;
  max-width: 930px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  padding: 20px 0 30px;
  text-align: left;
  isolation: isolate;
}
.social-bloom::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 15%;
  left: 18%;
  width: 64%;
  height: 66%;
  opacity: .72;
  background: radial-gradient(ellipse at center, rgba(216,255,99,.25), rgba(216,255,99,.07) 42%, transparent 72%);
  filter: blur(20px);
  transform: rotate(-7deg);
}
.bloom-post { position: relative; z-index: 2; width: 240px; overflow: hidden; background: rgba(255,255,252,.88); border: 1px solid rgba(74,84,67,.16); border-radius: 16px; box-shadow: 0 18px 45px rgba(57,67,49,.09), 0 2px 8px rgba(57,67,49,.04); backdrop-filter: blur(10px); }
.composer-head { display: flex; align-items: center; gap: 9px; padding: 12px 13px 10px; border-bottom: 1px solid rgba(74,84,67,.1); }
.composer-brand { display: grid; width: 31px; height: 31px; flex: 0 0 31px; place-items: center; background: var(--chalk); border-radius: 9px; }
.composer-brand img { width: 21px; height: 21px; }
.composer-head div { min-width: 0; }
.composer-head strong,
.composer-head small { display: block; }
.composer-head strong { color: #252a22; font-size: .76rem; line-height: 1.2; }
.composer-head small { display: flex; align-items: center; gap: 5px; margin-top: 3px; color: #858c80; font: 500 .52rem/1 DM Mono, monospace; }
.composer-head small i { width: 5px; height: 5px; background: #9bc62e; border-radius: 50%; }
.composer-more { margin-left: auto; color: #93998f; font-size: .62rem; letter-spacing: .1em; }
.composer-body { min-height: 96px; padding: 15px 14px 10px; }
.composer-body p { margin: 0 0 25px; color: #282d25; font-size: .93rem; font-weight: 650; line-height: 1.36; letter-spacing: -.02em; }
.composer-body > span { color: #a2a89e; font-size: .65rem; }
.composer-tools { display: flex; align-items: center; gap: 7px; padding: 0 14px 11px; color: #737b6f; }
.composer-tools > span { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid #dfe3da; border-radius: 6px; font-size: .72rem; }
.composer-tools small { margin-left: auto; color: #9aa095; font: 500 .52rem/1 DM Mono, monospace; }
.composer-foot { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: rgba(241,244,237,.72); border-top: 1px solid rgba(74,84,67,.1); }
.composer-accounts { display: flex; align-items: center; padding-left: 5px; }
.composer-accounts img,
.composer-accounts span { width: 23px; height: 23px; margin-left: -5px; border: 2px solid #f5f7f1; border-radius: 50%; background: #fff; object-fit: contain; }
.composer-accounts span { display: grid; place-items: center; color: #62695e; background: #e8ece3; font-size: .48rem; font-weight: 750; }
.composer-foot button { display: inline-flex; align-items: center; gap: 7px; margin-left: auto; padding: 8px 11px; color: #1f241d; background: var(--chalk); border: 1px solid rgba(139,178,39,.32); border-radius: 8px; font: 750 .67rem/1 Inter, sans-serif; box-shadow: 0 6px 14px rgba(124,158,34,.12); cursor: default; }
.composer-foot button span { font-size: .78rem; }
.bloom-flow { position: relative; width: 100%; height: 300px; }
.bloom-flow svg { width: 100%; height: 100%; overflow: visible; }
.bloom-path,
.bloom-streak { fill: none; vector-effect: non-scaling-stroke; }
.bloom-path { stroke: rgba(99,111,91,.18); stroke-width: 1.25; }
.bloom-streak { stroke: #b5df42; stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 18 520; filter: drop-shadow(0 0 4px rgba(177,221,61,.48)); }
.bloom-streak.s2 { animation-delay: .7s !important; }
.bloom-streak.s3 { animation-delay: 1.4s !important; }
.bloom-spark { position: absolute; width: 5px; height: 5px; background: #b2dc3e; border-radius: 50%; box-shadow: 0 0 0 5px rgba(178,220,62,.1); }
.bloom-spark.sp1 { top: calc(16.667% - 2px); right: -1px; }
.bloom-spark.sp2 { top: calc(50% - 2px); right: -1px; }
.bloom-spark.sp3 { right: -1px; bottom: calc(16.667% - 2px); }
.bloom-cloud { position: relative; width: 100%; height: 340px; }
.bloom-platform { position: absolute; top: var(--y); left: var(--x); display: flex; align-items: center; gap: 8px; color: #51594d; transform: translate(-50%,-50%); transform-origin: center; }
.bloom-platform img { width: 31px; height: 31px; object-fit: contain; filter: drop-shadow(0 8px 12px rgba(35,43,28,.1)); }
.bloom-platform small { color: #666e61; font-size: .7rem; font-weight: 700; letter-spacing: -.01em; }

@media (prefers-reduced-motion: no-preference) {
  .composer-head small i { animation: bloom-breathe 2.8s ease-in-out infinite; }
  .composer-foot button { animation: composer-ready 4.8s ease-in-out infinite; }
  .bloom-streak { animation: bloom-flow 4.8s linear infinite; }
  .bloom-spark { animation: bloom-breathe 2.4s ease-in-out infinite; }
  .bloom-platform { animation: bloom-platform 10s ease-in-out infinite; animation-delay: calc(var(--i) * .32s); }
}
@keyframes bloom-flow { from { stroke-dashoffset: 20; } to { stroke-dashoffset: -520; } }
@keyframes bloom-breathe { 0%,100% { opacity: .45; transform: scale(.86); } 50% { opacity: 1; transform: scale(1); } }
@keyframes composer-ready { 0%,72%,100% { box-shadow: 0 6px 14px rgba(124,158,34,.12); } 78%,88% { box-shadow: 0 0 0 4px rgba(178,220,62,.12), 0 8px 18px rgba(124,158,34,.18); } }
@keyframes bloom-platform { 0%,8%,90%,100% { opacity: .48; filter: grayscale(.65); transform: translate(-50%,-50%) scale(.96); } 14%,82% { opacity: 1; filter: grayscale(0); transform: translate(-50%,-50%) scale(1); } 20% { transform: translate(-50%,calc(-50% - 2px)) scale(1); } }

@media (max-width: 820px) {
  .social-bloom { grid-template-columns: 210px 170px minmax(310px,360px); }
  .bloom-platform img { width: 28px; height: 28px; }
  .bloom-platform small { font-size: .65rem; }
}
@media (max-width: 680px) {
  .social-bloom { grid-template-columns: 1fr; min-height: 0; max-width: 390px; padding-top: 16px; }
  .bloom-post { width: 250px; margin: 0 auto; }
  .bloom-flow { width: 100%; height: 76px; }
  .bloom-flow svg { display: none; }
  .bloom-flow::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(transparent, rgba(137,170,53,.52), transparent); }
  .bloom-flow::after { content: ""; position: absolute; top: 0; left: calc(50% - 2px); width: 5px; height: 5px; background: #b2dc3e; border-radius: 50%; box-shadow: 0 0 8px rgba(178,220,62,.5); animation: bloom-drop 2.6s ease-in-out infinite; }
  .bloom-spark { display: none; }
  .bloom-cloud { max-width: 360px; height: 310px; margin: 0 auto; }
  .bloom-platform:nth-child(1),
  .bloom-platform:nth-child(7) { left: 13% !important; }
}
@keyframes bloom-drop { 0% { top: 0; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { top: 72px; opacity: 0; } }

/* ---- Mobile navigation ---- */
.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px; height: 42px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 200ms ease, opacity 200ms ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px max(24px, calc((100vw - 1160px) / 2)) 20px;
  background: rgba(251, 252, 247, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(35, 43, 28, 0.1);
  backdrop-filter: blur(18px);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 12px 4px; color: #33382f; font-size: 1rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav .button { margin-top: 12px; }
body.nav-open { overflow: hidden; }
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
}
@media (max-width: 620px) {
  .mobile-nav { top: 64px; }
}

/* ---- For AI agents ---- */
.agents-section { padding: 20px 0 120px; }
.agents-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.agents-grid article { padding: 30px 26px; background: #fff; }
.agents-grid h3 { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; font-size: 1.02rem; }
.agents-grid h3::before { content: ""; width: 8px; height: 8px; background: var(--chalk-strong); border: 1px solid var(--ink); border-radius: 2px; }
.agents-grid p { margin: 0; font-size: .9rem; }
.agents-grid code { padding: 1px 5px; background: var(--soft); border-radius: 4px; font: 500 .82em/1 DM Mono, monospace; color: #3f463c; }

/* ---- Agent integrations ---- */
.agent-runtime-section { padding: 112px 0; background: #fff; border-top: 1px solid var(--line); }
.agent-doc-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -34px 0 44px;
}
.agent-doc-links a {
  padding: 9px 12px;
  color: #3d4439;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  font: 600 .72rem/1 DM Mono, monospace;
}
.agent-workflows { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.agent-workflows article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 14px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.agent-card-label {
  color: #6b7266;
  font: 600 .68rem/1 DM Mono, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.agent-workflows h3 { margin: 0; font-size: 1.18rem; line-height: 1.25; letter-spacing: -.02em; }
.agent-workflows p { margin: 0; font-size: .9rem; }
.agent-workflows pre {
  overflow: auto;
  min-height: 190px;
  margin: 8px 0 0;
  padding: 18px;
  color: #dfe4dc;
  background: var(--ink);
  border-radius: 6px;
  font: 400 .74rem/1.75 DM Mono, monospace;
}
.agent-workflows code { font: inherit; }

/* ---- Secure by design ---- */
.trust-section { padding: 104px 0; color: #fff; background: var(--ink); }
.trust-section .kicker { color: #b9c0b2; }
.trust-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.trust-head h2 { margin: 14px 0 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.trust-grid article { padding: 26px; background: #1c201b; border: 1px solid #373d34; border-radius: var(--radius); }
.trust-grid strong { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; font-size: 1rem; }
.trust-grid strong::before { content: ""; width: 9px; height: 9px; background: var(--chalk); border-radius: 50%; }
.trust-grid p { margin: 0; color: #aab2a4; font-size: .88rem; }
.trust-note { margin: 40px auto 0; max-width: 760px; text-align: center; color: #8f978a !important; font-size: .82rem; }

/* ---- Why MonoChalk / comparison ---- */
.compare-section { padding: 120px 0; }
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.compare-table { width: 100%; min-width: 560px; table-layout: fixed; border-collapse: collapse; font-size: .92rem; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; vertical-align: top; overflow-wrap: anywhere; word-break: normal; border-bottom: 1px solid var(--line); }
.compare-table th:first-child { width: 28%; }
.compare-table th:not(:first-child),
.compare-table td:not(:first-child) { width: 36%; }
.compare-table:has(thead th:nth-child(4)) th:first-child { width: 25%; }
.compare-table:has(thead th:nth-child(4)) th:not(:first-child),
.compare-table:has(thead th:nth-child(4)) td:not(:first-child) { width: 25%; }
.compare-table thead th { color: #6b7266; font: 500 .68rem/1.3 DM Mono, monospace; letter-spacing: .08em; text-transform: uppercase; }
.compare-table thead th.col-us { color: var(--ink); }
.compare-table tbody th { font-weight: 600; color: var(--ink); }
.compare-table td { color: var(--muted); }
.compare-table .col-us { background: var(--mint); color: var(--ink); font-weight: 600; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-foot { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; }
.last-updated { color: #989e95; font: 500 .72rem/1 DM Mono, monospace; }

@media (max-width: 900px) {
  .agents-grid { grid-template-columns: 1fr 1fr; }
  .agent-workflows { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .agents-section { padding: 0 0 82px; }
  .agent-runtime-section { padding: 82px 0; }
  .agent-doc-links { margin: -22px 0 32px; }
  .agents-grid { grid-template-columns: 1fr; }
  .trust-section { padding: 78px 0; }
  .trust-head { margin-bottom: 36px; }
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .compare-section { padding: 82px 0; }
  .compare-table-wrap { overflow-x: visible; }
  .compare-table { min-width: 0; }
  .compare-table thead { display: none; }
  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td { display: block; width: 100%; }
  .compare-table tbody tr { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .compare-table tbody tr:last-child { border-bottom: 0; }
  .compare-table th,
  .compare-table td { padding: 5px 16px; border-bottom: 0; }
  .compare-table tbody th { padding-top: 0; }
  .compare-table tbody td:last-child { padding-bottom: 0; }
}

/* ---- SEO page building blocks (used to give each platform page its own shape) ---- */
.seo-section { padding: 56px 0; }
.seo-section:first-of-type { padding-top: 8px; }
.seo-section .section-heading.compact { margin-bottom: 34px; }

.answer-lede { max-width: 860px; margin: 0 0 8px; padding: 26px 30px; background: var(--soft); border: 1px solid var(--line); border-left: 3px solid var(--chalk-strong); border-radius: var(--radius); }
.answer-lede p { margin: 0; color: var(--ink-2); font-size: 1.1rem; line-height: 1.7; }
.answer-lede strong { color: var(--ink); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); letter-spacing: -.035em; margin-bottom: 16px; }

.code-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 22px 50px rgba(35, 43, 28, 0.08); }
.code-card .code-card-head { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.code-card .code-card-head .dot { width: 8px; height: 8px; background: var(--chalk-strong); border-radius: 50%; }
.code-card .code-card-head strong { font: 600 .74rem/1 DM Mono, monospace; }
.code-card .code-card-head i { margin-left: auto; font-style: normal; color: #8b9188; font: 500 .7rem/1 DM Mono, monospace; }
.code-card pre { overflow: auto; margin: 0; padding: 22px 22px; color: #2b2f28; font: 400 .8rem/1.75 DM Mono, monospace; }
.code-card .k { color: #6c7a2e; }
.code-card .s { color: #3f6ea5; }
.code-card .c { color: #9aa295; }

.spec-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-list > div { display: grid; grid-template-columns: minmax(160px, 220px) minmax(0, 1fr); gap: 22px; align-items: start; padding: 20px 26px; margin: 0; background: #fff; }
.spec-list dt { margin: 0; color: var(--ink); font-weight: 700; font-size: .96rem; }
.spec-list dd { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }
.spec-list code { padding: 1px 6px; background: var(--soft); border-radius: 4px; font: 500 .82em/1 DM Mono, monospace; }

.callout { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; padding: 24px 28px; background: var(--mint); border: 1px solid #cfe98f; border-radius: var(--radius); }
.callout .badge { padding: 6px 10px; background: var(--ink); color: var(--chalk); border-radius: 100px; font: 600 .6rem/1 DM Mono, monospace; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.callout p { margin: 0; color: var(--ink-2); line-height: 1.6; }

.surface-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.surface-row article { padding: 28px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.surface-row .surface-icon { display: inline-flex; width: 40px; height: 40px; margin-bottom: 16px; padding: 9px; background: var(--soft); border-radius: 10px; }
.surface-row h3 { margin: 0 0 8px; font-size: 1.12rem; }
.surface-row p { margin: 0; font-size: .9rem; }

/* ---- Scroll reveal (progressive enhancement; content is fully visible without JS) ---- */
@media (prefers-reduced-motion: no-preference) {
  html.reveal-ready .reveal { opacity: 0; transform: translateY(18px); will-change: opacity, transform; }
  html.reveal-ready .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
}

/* ---- Card hover lift (subtle, consistent across grids) ---- */
.seo-card, .agents-grid article, .surface-row article, .price-card, .agent-workflows article, .code-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.surface-row article:hover, .agent-workflows article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(35, 43, 28, 0.1);
}
.price-card:hover { transform: translateY(-3px); z-index: 1; box-shadow: 0 20px 44px rgba(35, 43, 28, 0.12); }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 34px; }
  .surface-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .seo-section { padding: 42px 0; }
  .answer-lede { padding: 20px 22px; }
  .answer-lede p { font-size: 1rem; }
  .spec-list > div { grid-template-columns: 1fr; gap: 6px; }
  .callout { grid-template-columns: 1fr; gap: 12px; }
}
