@font-face {
  font-family: "ThreadCue Sans";
  src: url("/fonts/source-sans-3-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --canvas: #faf8f5;
  --canvas-deep: #f4f0eb;
  --surface: #ffffff;
  --surface-subtle: #f1ece6;
  --text: #2e241f;
  --text-strong: #1e1713;
  --text-muted: #736861;
  --text-faint: #786e67;
  --line: #e2dcd5;
  --line-strong: #cec5bc;
  --brand: #9a4a1e;
  --brand-hover: #7f3917;
  --brand-soft: #f7e8de;
  --brand-pale: #fff7f2;
  --reddit: #cc410b;
  --reddit-soft: #fff0e8;
  --success: #326b4f;
  --success-soft: #e6f1eb;
  --warning: #8d5a12;
  --warning-soft: #f7eedc;
  --danger: #a43b31;
  --danger-soft: #f8e7e5;
  --night: #181716;
  --night-surface: #211f1d;
  --night-line: #3b3632;
  --night-text: #eee9e3;
  --night-muted: #aaa099;
  --focus: rgba(154, 74, 30, 0.24);
  --header-height: 66px;
  --content-width: 1240px;
  --reading-width: 760px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 88px;
  --radius-sm: 5px;
  --radius: 8px;
  --radius-lg: 10px;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--canvas);
  font-family: "ThreadCue Sans", sans-serif;
  font-size: 16px;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
strong {
  color: var(--text-strong);
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 5.55rem);
  font-weight: 630;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 3.9vw, 3.5rem);
  font-weight: 620;
  line-height: 1.02;
}

h3 {
  font-size: 1.125rem;
  font-weight: 650;
  line-height: 1.28;
}

p {
  max-width: 68ch;
}

code {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.08em 0.34em;
  background: var(--surface-subtle);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.83em;
  word-break: break-word;
}

::selection {
  background: var(--brand-soft);
  color: var(--text-strong);
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-strong);
  font-weight: 650;
  transform: translateY(-150%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(100% - 48px, var(--content-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(206, 197, 188, 0.72);
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  width: min(100% - 48px, var(--content-width));
  height: 100%;
  display: flex;
  align-items: center;
  margin-inline: auto;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-strong);
  font-size: 1.025rem;
  font-weight: 690;
  letter-spacing: -0.025em;
}

.site-mark {
  width: 29px;
  height: 29px;
  border: 1px solid rgba(154, 74, 30, 0.42);
  border-radius: 7px;
  background: var(--surface);
  color: var(--brand);
  fill: var(--surface);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.development-stamp {
  margin-left: 11px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  padding: 2px 6px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 620;
  line-height: 1.35;
}

.desktop-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.desktop-navigation a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  padding: 0 12px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 560;
  transition: background-color 150ms ease, color 150ms ease;
}

.desktop-navigation a:hover,
.desktop-navigation a.active {
  background: var(--surface-subtle);
  color: var(--text-strong);
}

.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-left: 14px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  padding: 0 13px;
  background: var(--brand);
  color: #fffaf6;
  font-size: 0.875rem;
  font-weight: 640;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.header-cta:hover {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
}

.mobile-navigation {
  display: none;
  margin-left: auto;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 17px;
  font-size: 0.925rem;
  font-weight: 650;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fffaf6;
}

.button.primary:hover {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
}

.button.secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text-strong);
}

.button.secondary:hover {
  border-color: var(--text-faint);
  background: var(--surface-subtle);
}

.button.inverse {
  border-color: var(--night-line);
  background: var(--night-surface);
  color: var(--night-text);
}

.button.inverse:hover {
  border-color: #6f645c;
  background: #2c2825;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 650;
}

.text-link span {
  transition: transform 150ms ease;
}

.text-link:hover {
  color: var(--brand-hover);
}

.text-link:hover span {
  transform: translateX(3px);
}

.development-line {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 610;
}

.development-line > span {
  width: 18px;
  height: 1px;
  background: var(--brand);
}

.section-index {
  margin-bottom: 15px;
  color: var(--brand);
  font-size: 0.79rem;
  font-weight: 660;
}

.section-intro {
  max-width: 810px;
}

.section-intro > p {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.narrow-intro {
  max-width: 700px;
}

/* Home hero */
.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(400px, 0.82fr) minmax(600px, 1.18fr);
  align-items: center;
  gap: 48px;
  padding-block: 76px 84px;
}

.hero-copy {
  align-self: center;
}

.hero h1 {
  max-width: 690px;
  margin-top: 24px;
}

.hero-lede {
  max-width: 650px;
  margin-top: 27px;
  color: var(--text-muted);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 33px;
}

.hero-fine-print {
  margin-top: 17px;
  color: var(--text-faint);
  font-size: 0.75rem;
}

.hero-workbench {
  min-width: 0;
}

.hero-workbench figcaption {
  margin-top: 11px;
  color: var(--text-faint);
  font-size: 0.7rem;
  text-align: right;
}

.product-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(61, 43, 32, 0.08);
}

.product-frame-bar {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas-deep);
  color: var(--text-faint);
  font-size: 0.66rem;
}

.product-frame-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-strong);
  font-size: 0.78rem;
  font-weight: 680;
}

.product-frame-brand svg {
  width: 23px;
  height: 23px;
  border: 1px solid rgba(154, 74, 30, 0.4);
  border-radius: 6px;
  fill: var(--surface);
  stroke: var(--brand);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.product-frame-body {
  min-height: 540px;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 9px;
  border-right: 1px solid var(--line);
  background: var(--canvas-deep);
}

.preview-nav,
.preview-nav-section {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  border-radius: 6px;
  padding: 0 7px;
  color: var(--text-muted);
  font-size: 0.68rem;
}

.preview-nav i {
  width: 17px;
  display: grid;
  place-items: center;
  color: var(--text-faint);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 700;
}

.preview-nav.active {
  background: #e9e2da;
  color: var(--text-strong);
  font-weight: 620;
}

.preview-nav-section {
  min-height: 27px;
  margin-top: 9px;
  color: var(--text-faint);
  font-weight: 620;
}

.preview-queue {
  min-width: 0;
  background: var(--surface);
}

.preview-queue > header {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
}

.preview-queue > header > div {
  display: flex;
  flex-direction: column;
}

.preview-queue > header strong {
  font-size: 0.95rem;
}

.preview-queue > header span {
  color: var(--text-faint);
  font-size: 0.61rem;
}

.preview-button {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 9px;
  background: var(--brand);
  color: #fffaf6 !important;
  font-size: 0.64rem !important;
  font-weight: 650;
}

.scan-finished {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 15px 18px 9px;
  border: 1px solid #c6dccf;
  border-radius: 7px;
  padding: 8px 9px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 0.65rem;
  font-weight: 610;
}

.scan-finished span {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 0.58rem;
}

.queue-caption {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0 18px;
  padding: 12px 0 7px;
  border-bottom: 1px solid var(--line);
}

.queue-caption strong {
  font-size: 0.73rem;
}

.queue-caption span {
  color: var(--text-faint);
  font-size: 0.58rem;
}

.preview-opportunity {
  min-height: 155px;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 11px;
  margin: 0 18px;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
}

.preview-opportunity.selected {
  position: relative;
}

.preview-opportunity.selected::after {
  content: "";
  position: absolute;
  top: 14px;
  right: -19px;
  bottom: 14px;
  width: 2px;
  background: var(--brand);
}

.opportunity-source {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--reddit-soft);
  color: var(--reddit);
  font-size: 0.66rem;
  font-weight: 750;
}

.opportunity-source.community {
  background: var(--success-soft);
  color: var(--success);
}

.preview-opportunity p {
  color: var(--text-faint);
  font-size: 0.6rem;
}

.preview-opportunity p span {
  color: var(--reddit);
  font-weight: 650;
}

.preview-opportunity h2 {
  margin-top: 4px;
  font-size: 0.82rem;
  letter-spacing: -0.015em;
}

.preview-opportunity small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.preview-opportunity em {
  display: block;
  margin-top: 9px;
  color: var(--text-muted);
  font-size: 0.6rem;
  font-style: normal;
  line-height: 1.42;
}

/* Home narrative */
.premise {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 90px;
  padding-block: 112px;
  border-top: 1px solid var(--line);
}

.premise-ledger {
  border-top: 1px solid var(--line-strong);
}

.premise-ledger > div {
  display: grid;
  grid-template-columns: 38px 190px minmax(0, 1fr);
  gap: 15px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.premise-ledger span {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 680;
}

.premise-ledger strong {
  font-size: 0.91rem;
}

.premise-ledger p {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(620px, 1.3fr);
  gap: 90px;
  padding-block: 112px;
  border-top: 1px solid var(--line);
}

.workflow-copy {
  position: sticky;
  top: calc(var(--header-height) + 44px);
  align-self: start;
}

.workflow-copy > p:last-child {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 1.03rem;
}

.workflow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow-steps li {
  min-height: 205px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0 38px;
  border-top: 1px solid var(--line-strong);
}

.workflow-steps li:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.workflow-steps li > span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 680;
}

.workflow-steps h3 {
  font-size: 1.5rem;
}

.workflow-steps p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.decision-room {
  padding-block: 112px;
  border-top: 1px solid var(--line);
}

.decision-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.decision-heading > div:first-child {
  max-width: 820px;
}

.demo-tabs {
  display: flex;
  border-bottom: 1px solid var(--line-strong);
}

.demo-tabs button {
  position: relative;
  min-width: 80px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 610;
  cursor: pointer;
}

.demo-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: transparent;
}

.demo-tabs button:hover,
.demo-tabs button[aria-selected="true"] {
  color: var(--text-strong);
}

.demo-tabs button[aria-selected="true"]::after {
  background: var(--brand);
}

.decision-workbench {
  min-height: 520px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(61, 43, 32, 0.06);
}

.decision-context {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: start;
  gap: 12px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  background: var(--canvas-deep);
}

.source-monogram {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--reddit-soft);
  color: var(--reddit);
  font-weight: 740;
}

.decision-context > div {
  display: flex;
  flex-direction: column;
}

.decision-context > div strong {
  font-size: 0.83rem;
}

.decision-context > div span,
.decision-context small {
  color: var(--text-faint);
  font-size: 0.69rem;
}

.decision-context > p {
  grid-column: 1 / -1;
  margin-top: 24px;
  color: var(--text-strong);
  font-size: 1.13rem;
  font-weight: 650;
  line-height: 1.28;
}

.decision-context > small {
  grid-column: 1 / -1;
}

.demo-panels {
  min-width: 0;
}

.demo-panels > section {
  min-height: 518px;
  padding: 36px clamp(28px, 5vw, 76px);
}

.demo-panels > section[hidden] {
  display: none;
}

.demo-panels header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 0.73rem;
}

.demo-panels header span:first-child {
  color: var(--text);
  font-weight: 650;
}

.demo-panels h3 {
  max-width: 710px;
  margin-top: 46px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.demo-panels > section > p {
  max-width: 740px;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 1.07rem;
  line-height: 1.75;
}

.reason-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  margin-top: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.reason-row b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.7rem;
}

.reason-row p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.draft-paper {
  min-height: 250px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 26px;
  background: var(--canvas);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.78;
}

.demo-panels footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  color: var(--text-faint);
  font-size: 0.7rem;
}

.audience {
  padding-block: 112px;
  border-top: 1px solid var(--line);
}

.audience-list {
  margin-top: 55px;
  border-top: 1px solid var(--line-strong);
}

.audience-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.audience-list span {
  color: var(--text-strong);
  font-size: 1.08rem;
  font-weight: 650;
}

.audience-list p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.integrations-home {
  padding-block: 112px;
  border-top: 1px solid var(--line);
}

.integrations-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 70px;
}

.integrations-heading p:last-child {
  color: var(--text-muted);
  font-size: 1rem;
}

.integration-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.integration-rail article {
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 16px;
  border-right: 1px solid var(--line);
  background: transparent;
}

.integration-rail article:last-child {
  border-right: 0;
}

.integration-rail article.current {
  background: var(--brand-pale);
}

.integration-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 730;
}

.integration-rail .current .integration-mark {
  border-color: rgba(217, 72, 15, 0.32);
  background: var(--reddit-soft);
  color: var(--reddit);
}

.integration-rail article > div {
  display: flex;
  flex-direction: column;
}

.integration-rail strong {
  font-size: 0.87rem;
}

.integration-rail article > div span {
  color: var(--text-faint);
  font-size: 0.68rem;
}

.integrations-home > .text-link {
  margin-top: 22px;
}

.trust-home {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--night);
  color: var(--night-text);
}

.trust-statement,
.trust-facts {
  padding: 88px max(24px, calc((100vw - var(--content-width)) / 2));
}

.trust-statement {
  padding-right: 70px;
  border-right: 1px solid var(--night-line);
}

.trust-statement h2 {
  color: var(--night-text);
}

.trust-statement > p:not(.section-index) {
  margin-top: 24px;
  color: var(--night-muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.trust-statement .button {
  margin-top: 30px;
}

.trust-facts {
  padding-left: 70px;
}

.trust-facts > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 0;
  border-bottom: 1px solid var(--night-line);
}

.trust-facts > div:first-child {
  border-top: 1px solid var(--night-line);
}

.trust-facts strong {
  color: var(--night-text);
  font-size: 0.93rem;
}

.trust-facts span {
  color: var(--night-muted);
  font-size: 0.81rem;
  line-height: 1.5;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 90px;
  padding-block: 112px;
}

.waitlist-copy > p:last-child {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 1.06rem;
}

.waitlist-form-wrap {
  align-self: center;
}

.waitlist-form {
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.waitlist-form > label:first-of-type {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 650;
}

.waitlist-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.waitlist-field-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 13px;
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.waitlist-field-row input::placeholder {
  color: var(--text-faint);
}

.waitlist-field-row input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--focus);
  outline: 0;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.waitlist-form > p {
  margin-top: 14px;
  color: var(--text-faint);
  font-size: 0.69rem;
}

.waitlist-form > p a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.field-error,
.validation-summary {
  display: block;
  color: var(--danger);
  font-size: 0.74rem;
}

.field-error:not(:empty) {
  margin-top: 6px;
}

.validation-summary ul {
  margin: 0 0 10px;
  padding-left: 18px;
}

.validation-summary:empty,
.validation-summary-valid {
  display: none;
}

.input-validation-error {
  border-color: var(--danger) !important;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--surface);
}

.form-status.success {
  border-color: #b8d1c1;
  background: var(--success-soft);
}

.form-status.error {
  margin-bottom: 12px;
  border-color: #e0bbb6;
  background: var(--danger-soft);
}

.form-status strong {
  font-size: 1.08rem;
}

.form-status span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.54fr) minmax(600px, 1.46fr);
  gap: 90px;
  padding-block: 112px;
  border-top: 1px solid var(--line);
}

.faq-heading {
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-strong);
  font-size: 1.02rem;
  font-weight: 620;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--brand);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 150ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 50px 24px 0;
  color: var(--text-muted);
  line-height: 1.68;
}

/* Shared interior page hero */
.page-hero {
  max-width: 1080px;
  margin-inline: auto;
  padding-block: 116px 104px;
}

.page-hero h1 {
  max-width: 1040px;
  margin-top: 25px;
}

.page-hero > p:last-of-type {
  max-width: 780px;
  margin-top: 30px;
  color: var(--text-muted);
  font-size: 1.19rem;
  line-height: 1.68;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

/* Product page */
.product-story {
  padding-block: 84px 112px;
  border-top: 1px solid var(--line);
}

.story-rail {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 15px;
  margin-bottom: 70px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 620;
}

.story-rail i {
  height: 1px;
  background: var(--line-strong);
}

.product-chapter {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(600px, 1.28fr);
  align-items: center;
  gap: 88px;
  padding-block: 112px;
  border-top: 1px solid var(--line);
}

.product-chapter.reverse {
  grid-template-columns: minmax(600px, 1.28fr) minmax(330px, 0.72fr);
}

.product-chapter.reverse .chapter-copy {
  grid-column: 2;
  grid-row: 1;
}

.product-chapter.reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.chapter-number {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 680;
}

.chapter-copy h2 {
  margin-top: 18px;
}

.chapter-copy p {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.brief-preview,
.queue-preview,
.task-preview {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 5px 16px rgba(61, 43, 32, 0.06);
}

.brief-preview > header {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas-deep);
}

.brief-preview header strong {
  font-size: 0.92rem;
}

.brief-preview header span,
.brief-preview footer {
  color: var(--text-faint);
  font-size: 0.69rem;
}

.brief-preview > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  margin: 0 20px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.brief-preview > div span {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 620;
}

.brief-preview > div p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.brief-preview footer {
  padding: 14px 20px;
  background: var(--canvas-deep);
}

.queue-preview > header {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.queue-preview > header > div {
  display: flex;
  flex-direction: column;
}

.queue-preview > header span {
  color: var(--text-faint);
  font-size: 0.68rem;
}

.queue-group-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 20px;
  padding: 17px 0 8px;
  border-bottom: 1px solid var(--line);
}

.queue-group-label strong {
  font-size: 0.78rem;
}

.queue-group-label span {
  color: var(--text-faint);
  font-size: 0.66rem;
}

.queue-group-label.later {
  margin-top: 5px;
}

.queue-preview article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 13px;
  margin: 0 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.queue-preview article > b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--reddit-soft);
  color: var(--reddit);
  font-size: 0.68rem;
}

.queue-preview article.quiet > b {
  background: var(--success-soft);
  color: var(--success);
}

.queue-preview article span {
  color: var(--text-faint);
  font-size: 0.68rem;
}

.queue-preview article h3 {
  margin-top: 4px;
  font-size: 0.94rem;
}

.queue-preview article p {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.task-preview > header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas-deep);
}

.task-preview > header > div {
  display: flex;
  flex-direction: column;
}

.task-preview header span {
  color: var(--text-faint);
  font-size: 0.65rem;
}

.task-preview header strong {
  font-size: 0.77rem;
}

.task-state {
  border-radius: 5px;
  padding: 3px 6px;
  background: var(--brand-soft);
  color: var(--brand) !important;
  font-weight: 650;
}

.task-preview > section {
  margin: 0 24px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.task-preview > section small,
.task-preview > section > span {
  color: var(--text-faint);
  font-size: 0.68rem;
}

.task-preview > section h3 {
  margin-top: 6px;
  font-size: 1.2rem;
}

.task-preview > section p {
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.task-preview .task-source {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--canvas-deep);
}

.task-source strong {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
}

.task-preview > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  color: var(--text-faint);
  font-size: 0.67rem;
}

.task-preview footer b {
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 6px 9px;
  color: var(--text);
  font-weight: 620;
}

.control-section {
  padding-block: 112px;
  border-top: 1px solid var(--line);
}

.control-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.control-heading p {
  color: var(--text-muted);
}

.control-list {
  margin-top: 50px;
  border-top: 1px solid var(--line-strong);
}

.control-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.control-list dt {
  color: var(--text-strong);
  font-size: 1.04rem;
  font-weight: 650;
}

.control-list dd {
  color: var(--text-muted);
}

.development-boundary {
  padding-block: 112px;
  border-top: 1px solid var(--line);
}

.boundary-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
}

.boundary-columns h3 {
  margin-bottom: 16px;
}

.boundary-columns ul,
.posture-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.boundary-columns li,
.posture-columns li {
  position: relative;
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
}

.boundary-columns li::before,
.posture-columns li::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.development-boundary > .button {
  margin-top: 38px;
}

/* Integrations page */
.integration-status {
  padding-block: 100px;
  border-top: 1px solid var(--line);
}

.integration-table {
  margin-top: 52px;
  border-top: 1px solid var(--line-strong);
}

.integration-table article {
  display: grid;
  grid-template-columns: 52px 150px 130px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 110px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}

.integration-table article.current {
  background: var(--brand-pale);
}

.integration-table h3 {
  font-size: 1rem;
}

.integration-state {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 3px 7px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 640;
}

.integration-table .current .integration-state {
  border-color: rgba(154, 74, 30, 0.24);
  background: var(--brand-soft);
  color: var(--brand);
}

.integration-table p {
  color: var(--text-muted);
  font-size: 0.87rem;
}

.reddit-boundary {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(560px, 1.25fr);
  gap: 90px;
  padding-block: 108px;
  border-top: 1px solid var(--line);
}

.reddit-facts > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.reddit-facts dl {
  margin-top: 30px;
  border-top: 1px solid var(--line-strong);
}

.reddit-facts dl > div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.reddit-facts dt,
.permission-list-public dt {
  color: var(--brand);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.77rem;
  font-weight: 650;
}

.reddit-facts dd {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.boundary-note {
  margin-top: 24px;
  border-left: 2px solid var(--brand);
  padding: 5px 0 5px 16px;
  color: var(--text-muted);
  font-size: 0.86rem !important;
}

.integration-principles {
  padding-block: 108px;
  border-top: 1px solid var(--line);
}

.integration-principles ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 52px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.integration-principles li {
  min-height: 190px;
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 15px;
  padding: 26px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.integration-principles li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.integration-principles li:nth-child(even) {
  padding-left: 28px;
}

.integration-principles li > span {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 680;
}

.integration-principles li p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.87rem;
}

.integration-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 100px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding-block: 32px;
}

.integration-cta h2 {
  font-size: 1.6rem;
}

.integration-cta p {
  margin-top: 5px;
  color: var(--text-muted);
}

/* Trust page */
.trust-hero {
  max-width: 1120px;
}

.data-map,
.permission-section,
.retention-section,
.security-posture,
.trust-links {
  padding-block: 106px;
  border-top: 1px solid var(--line);
}

.data-map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.data-map-grid article {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.data-map-grid article:last-child {
  border-right: 0;
}

.data-map-grid article > span {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 660;
}

.data-map-grid h3 {
  margin-top: 36px;
  font-size: 1.4rem;
}

.data-map-grid p {
  margin-top: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

.data-map-grid small {
  margin-top: auto;
  padding-top: 22px;
  color: var(--text-faint);
  font-size: 0.72rem;
}

.permission-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: 90px;
}

.permission-section > div:first-child > p:last-child {
  margin-top: 20px;
  color: var(--text-muted);
}

.permission-list-public {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.permission-list-public > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.permission-list-public dd {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.permission-list-public dd strong {
  font-size: 0.92rem;
}

.permission-list-public dd span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.permission-section > .boundary-note {
  grid-column: 2;
  margin-top: -58px;
}

.retention-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line-strong);
}

.retention-timeline article {
  min-height: 300px;
  padding: 25px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
}

.retention-timeline article:last-child {
  border-right: 0;
}

.retention-timeline span {
  color: var(--text-strong);
  font-size: 0.86rem;
  font-weight: 650;
}

.retention-timeline p {
  margin-top: 30px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.62;
}

.retention-timeline a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.security-posture {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(620px, 1.38fr);
  gap: 90px;
}

.posture-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.posture-columns h3 {
  margin-bottom: 12px;
}

.posture-columns li {
  font-size: 0.84rem;
}

.trust-links {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(600px, 1.45fr);
  gap: 90px;
}

.trust-links > div p {
  margin-top: 12px;
  color: var(--text-muted);
}

.trust-links nav {
  border-top: 1px solid var(--line-strong);
}

.trust-links nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--text-strong);
  font-weight: 620;
}

.trust-links nav a span {
  color: var(--brand);
}

.trust-links nav a:hover {
  color: var(--brand);
}

/* Legal pages */
.legal-document {
  max-width: 920px;
  padding-block: 100px 120px;
}

.legal-document > header {
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-strong);
}

.legal-document h1 {
  max-width: 850px;
}

.legal-summary {
  max-width: 740px;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-top: 28px;
}

.legal-meta > div {
  display: flex;
  gap: 7px;
  font-size: 0.76rem;
}

.legal-meta dt {
  color: var(--text-faint);
}

.legal-meta dd {
  color: var(--text);
  font-weight: 620;
}

.launch-placeholder {
  margin: 34px 0;
  border: 1px solid #dfc795;
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--warning-soft);
  color: var(--warning);
}

.launch-placeholder strong {
  color: var(--warning);
  font-size: 0.9rem;
}

.launch-placeholder p {
  margin-top: 5px;
  color: #745125;
  font-size: 0.82rem;
  line-height: 1.56;
}

.legal-document > section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-document > section h2 {
  font-size: 1.4rem;
  line-height: 1.2;
}

.legal-document > section p,
.legal-document > section li {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.legal-document > section p {
  margin-top: 14px;
}

.legal-document > section a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-document > section strong {
  color: var(--text);
}

.deletion-step {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
}

.deletion-step > span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 680;
}

.deletion-step > div > p:first-of-type {
  margin-top: 12px;
}

.deletion-step ol {
  margin: 16px 0;
  padding-left: 22px;
}

.deletion-step table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.deletion-step th,
.deletion-step td {
  padding: 11px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.deletion-step th {
  background: var(--canvas-deep);
  color: var(--text-strong);
}

/* Contact + error */
.contact-shell {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(540px, 1.2fr);
  align-content: center;
  gap: 80px;
  padding-block: 100px;
}

.contact-copy h1 {
  margin-top: 24px;
}

.contact-copy > p:last-child {
  margin-top: 25px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 28px 0;
}

.contact-panel > span {
  color: var(--text-faint);
  font-size: 0.75rem;
}

.contact-panel > a,
.contact-panel > strong {
  margin-top: 12px;
  color: var(--brand);
  font-size: clamp(1.6rem, 3.2vw, 2.55rem);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.1;
  word-break: break-word;
}

.contact-panel > p {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.contact-topics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.contact-topics > div {
  min-height: 180px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.contact-topics > div:last-child {
  border-right: 0;
}

.contact-topics dt {
  color: var(--text-strong);
  font-weight: 650;
}

.contact-topics dd {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.error-shell {
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding-block: 100px;
}

.error-shell > span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 680;
}

.error-shell h1 {
  max-width: 850px;
  margin-top: 22px;
}

.error-shell > p {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.error-shell > div {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line-strong);
  background: var(--canvas-deep);
}

.footer-main,
.footer-base {
  width: min(100% - 48px, var(--content-width));
  margin-inline: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) minmax(140px, 0.45fr) minmax(140px, 0.45fr);
  gap: 80px;
  padding-block: 62px;
}

.footer-identity p {
  max-width: 430px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-identity > span {
  display: block;
  margin-top: 10px;
  color: var(--text-faint);
  font-size: 0.7rem;
}

.footer-main nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-main nav strong {
  margin-bottom: 4px;
  font-size: 0.76rem;
}

.footer-main nav a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-main nav a:hover {
  color: var(--brand);
}

.footer-base {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 0.68rem;
}

/* Rendering performance */
.premise,
.workflow,
.decision-room,
.audience,
.integrations-home,
.trust-home,
.waitlist,
.faq,
.product-chapter,
.control-section,
.development-boundary,
.integration-status,
.reddit-boundary,
.integration-principles,
.data-map,
.permission-section,
.retention-section,
.security-posture {
  content-visibility: auto;
  contain-intrinsic-size: auto 850px;
}

/* Tablet */
@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(320px, 0.72fr) minmax(500px, 1.28fr);
    gap: 34px;
  }

  .product-frame-body {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .preview-sidebar {
    padding-inline: 7px;
  }

  .preview-nav {
    gap: 4px;
    padding-inline: 4px;
    font-size: 0.61rem;
  }

  .premise,
  .workflow,
  .waitlist,
  .faq,
  .reddit-boundary,
  .permission-section,
  .security-posture,
  .trust-links,
  .contact-shell {
    gap: 55px;
  }

  .product-chapter,
  .product-chapter.reverse {
    grid-template-columns: minmax(290px, 0.65fr) minmax(500px, 1.35fr);
    gap: 55px;
  }

  .integration-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .integration-rail article:nth-child(3) {
    border-right: 0;
  }

  .integration-rail article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .data-map-grid article {
    padding-inline: 20px;
  }

  .retention-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .retention-timeline article:nth-child(2) {
    border-right: 0;
  }

  .contact-topics {
    grid-template-columns: 1fr 1fr;
  }

  .contact-topics > div:nth-child(2) {
    border-right: 0;
  }

  .contact-topics > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 60px;
  }

  .section-shell,
  .site-header-inner,
  .footer-main,
  .footer-base {
    width: min(100% - 36px, var(--content-width));
  }

  .desktop-navigation,
  .header-cta {
    display: none;
  }

  .mobile-navigation {
    display: block;
  }

  .mobile-navigation summary {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    border-radius: 7px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-navigation summary::-webkit-details-marker {
    display: none;
  }

  .mobile-navigation summary span {
    width: 19px;
    height: 1px;
    background: var(--text-strong);
    transition: transform 150ms ease;
  }

  .mobile-navigation[open] summary span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .mobile-navigation[open] summary span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-navigation nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    padding: 10px 18px 16px;
    border-bottom: 1px solid var(--line-strong);
    background: var(--canvas);
    box-shadow: 0 5px 12px rgba(61, 43, 32, 0.06);
  }

  .mobile-navigation nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-weight: 620;
  }

  .mobile-navigation nav a:last-child {
    border-bottom: 0;
    color: var(--brand);
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 56px;
    padding-block: 76px 84px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 780px;
  }

  .hero-workbench {
    width: 100%;
  }

  .premise,
  .workflow,
  .waitlist,
  .faq,
  .reddit-boundary,
  .permission-section,
  .security-posture,
  .trust-links,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .workflow-copy {
    position: static;
  }

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

  .decision-workbench {
    grid-template-columns: 225px minmax(0, 1fr);
  }

  .integrations-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .trust-home {
    grid-template-columns: 1fr;
  }

  .trust-statement,
  .trust-facts {
    padding: 72px 18px;
  }

  .trust-statement {
    padding-right: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--night-line);
  }

  .trust-facts {
    padding-left: 18px;
  }

  .page-hero {
    padding-block: 90px 80px;
  }

  .product-chapter,
  .product-chapter.reverse {
    grid-template-columns: 1fr;
  }

  .product-chapter.reverse .chapter-copy,
  .product-chapter.reverse > :last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .product-chapter.reverse .chapter-copy {
    order: 0;
  }

  .product-chapter.reverse > :last-child {
    order: 1;
  }

  .integration-table article {
    grid-template-columns: 52px 1fr auto;
  }

  .integration-table article p {
    grid-column: 2 / -1;
  }

  .data-map-grid {
    grid-template-columns: 1fr;
  }

  .data-map-grid article {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .data-map-grid article:last-child {
    border-bottom: 0;
  }

  .permission-section > .boundary-note {
    grid-column: auto;
    margin-top: -24px;
  }

  .posture-columns {
    gap: 28px;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    gap: 34px;
  }
}

/* Mobile */
@media (max-width: 620px) {
  :root {
    --space-9: 72px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 9.2vw, 2.85rem);
  }

  .section-shell,
  .site-header-inner,
  .footer-main,
  .footer-base {
    width: min(100% - 28px, var(--content-width));
  }

  .development-stamp {
    display: none;
  }

  .hero {
    gap: 44px;
    padding-block: 58px 72px;
  }

  .hero h1 {
    margin-top: 19px;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 1.05rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-fine-print {
    line-height: 1.5;
  }

  .product-frame {
    overflow: visible;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .product-frame-bar {
    padding-inline: 10px;
  }

  .product-frame-body {
    min-height: 480px;
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-queue > header {
    padding-inline: 13px;
  }

  .scan-finished,
  .queue-caption,
  .preview-opportunity {
    margin-inline: 13px;
  }

  .preview-opportunity {
    min-height: 148px;
  }

  .preview-opportunity.selected::after {
    right: -14px;
  }

  .premise,
  .workflow,
  .decision-room,
  .audience,
  .integrations-home,
  .waitlist,
  .faq,
  .product-story,
  .product-chapter,
  .control-section,
  .development-boundary,
  .integration-status,
  .reddit-boundary,
  .integration-principles,
  .data-map,
  .permission-section,
  .retention-section,
  .security-posture,
  .trust-links {
    padding-block: 76px;
  }

  .premise-ledger > div {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .premise-ledger p {
    grid-column: 2;
  }

  .workflow-steps li {
    min-height: 0;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding-block: 24px 30px;
  }

  .workflow-steps h3 {
    font-size: 1.28rem;
  }

  .workflow-steps p {
    font-size: 0.93rem;
  }

  .demo-tabs {
    width: 100%;
  }

  .demo-tabs button {
    flex: 1;
    min-width: 0;
  }

  .decision-workbench {
    grid-template-columns: 1fr;
    margin-top: 30px;
    border-radius: 8px;
  }

  .decision-context {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 19px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .decision-context > p {
    margin-top: 11px;
    font-size: 1rem;
  }

  .demo-panels > section {
    min-height: 480px;
    padding: 24px 18px;
  }

  .demo-panels header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .demo-panels h3 {
    margin-top: 30px;
    font-size: 1.65rem;
  }

  .demo-panels > section > p {
    font-size: 0.95rem;
  }

  .reason-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    margin-top: 26px;
  }

  .draft-paper {
    padding: 17px;
    font-size: 0.88rem;
  }

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

  .audience-list article {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .integration-rail {
    grid-template-columns: 1fr 1fr;
  }

  .integration-rail article,
  .integration-rail article:nth-child(3) {
    min-height: 135px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .integration-rail article:nth-child(even) {
    border-right: 0;
  }

  .integration-rail article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .trust-statement,
  .trust-facts {
    padding-block: 60px;
  }

  .waitlist-form {
    padding: 20px 16px;
  }

  .waitlist-field-row {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    min-height: 64px;
    font-size: 0.94rem;
  }

  .faq-list details p {
    padding-right: 15px;
  }

  .page-hero {
    padding-block: 72px 66px;
  }

  .page-hero > p:last-of-type {
    font-size: 1.03rem;
  }

  .page-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .story-rail {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 46px;
  }

  .story-rail i {
    width: 1px;
    height: 18px;
    margin-left: 5px;
  }

  .product-chapter {
    gap: 38px;
  }

  .brief-preview > div {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-inline: 15px;
  }

  .brief-preview > header,
  .brief-preview footer {
    padding-inline: 15px;
  }

  .queue-preview > header,
  .task-preview > header {
    padding-inline: 13px;
  }

  .queue-group-label,
  .queue-preview article {
    margin-inline: 13px;
  }

  .task-preview > section {
    margin-inline: 16px;
  }

  .task-preview > footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding-block: 10px;
  }

  .control-heading,
  .integration-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .control-list > div {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 15px;
  }

  .boundary-columns,
  .posture-columns {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .integration-table article {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding-block: 20px;
  }

  .integration-table article .integration-mark {
    grid-row: 1 / span 2;
  }

  .integration-table .integration-state {
    grid-column: 2;
  }

  .integration-table article p {
    grid-column: 2;
  }

  .reddit-facts dl > div,
  .permission-list-public > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .integration-principles ol {
    grid-template-columns: 1fr;
  }

  .integration-principles li,
  .integration-principles li:nth-child(even),
  .integration-principles li:nth-child(odd) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
  }

  .data-map-grid article {
    min-height: 280px;
    padding: 22px 18px;
  }

  .retention-timeline {
    grid-template-columns: 1fr;
  }

  .retention-timeline article,
  .retention-timeline article:nth-child(2) {
    min-height: 0;
    border-right: 0;
  }

  .trust-links nav a {
    min-height: 56px;
  }

  .legal-document {
    padding-block: 72px 90px;
  }

  .legal-document > header {
    padding-bottom: 32px;
  }

  .legal-summary {
    font-size: 1rem;
  }

  .legal-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .legal-document > section {
    padding-block: 28px;
  }

  .deletion-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
  }

  .deletion-step table,
  .deletion-step thead,
  .deletion-step tbody,
  .deletion-step tr,
  .deletion-step th,
  .deletion-step td {
    display: block;
  }

  .deletion-step thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .deletion-step tr {
    margin-bottom: 10px;
    border: 1px solid var(--line);
  }

  .deletion-step td {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .deletion-step td:last-child {
    border-bottom: 0;
  }

  .contact-shell {
    min-height: 0;
    padding-block: 72px;
  }

  .contact-topics {
    grid-template-columns: 1fr;
  }

  .contact-topics > div,
  .contact-topics > div:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-topics > div:last-child {
    border-bottom: 0;
  }

  .error-shell > div {
    width: 100%;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    padding-block: 48px;
  }

  .footer-identity {
    grid-column: 1 / -1;
  }

  .footer-base {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 20px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --canvas: #181716;
    --canvas-deep: #1d1b1a;
    --surface: #211f1d;
    --surface-subtle: #2a2724;
    --text: #eee9e3;
    --text-strong: #fffaf5;
    --text-muted: #aaa099;
    --text-faint: #938981;
    --line: #3b3632;
    --line-strong: #514942;
    --brand: #d88b58;
    --brand-hover: #e4a075;
    --brand-soft: #3a251a;
    --brand-pale: #251d19;
    --reddit: #ff7545;
    --reddit-soft: #3a2118;
    --success: #78b394;
    --success-soft: #1e3027;
    --warning: #d7a65c;
    --warning-soft: #352a19;
    --danger: #df7b72;
    --danger-soft: #38211f;
    --focus: rgba(216, 139, 88, 0.28);
  }

  .site-header {
    border-bottom-color: rgba(81, 73, 66, 0.72);
    background: rgba(24, 23, 22, 0.94);
  }

  .site-mark,
  .product-frame-brand svg {
    fill: var(--surface);
  }

  .preview-nav.active {
    background: #302c29;
  }

  .scan-finished {
    border-color: #31503e;
  }

  .form-status.success {
    border-color: #31503e;
  }

  .form-status.error {
    border-color: #5a302c;
  }

  .launch-placeholder {
    border-color: #5c4827;
  }

  .launch-placeholder p {
    color: #ceb078;
  }

  .site-footer {
    background: #1d1b1a;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .skip-link,
  .page-hero-actions,
  .button {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .section-shell {
    width: 100%;
  }

  .legal-document {
    max-width: none;
    padding: 0;
  }

  .legal-document > section {
    break-inside: avoid;
  }

  a {
    text-decoration: underline;
  }
}
