@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-grotesque.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #11100f;
  --surface: #191715;
  --raised: #24211e;
  --text: #fff9f1;
  --muted: #b3aca4;
  --accent: #ff7a00;
  --accent-hover: #ff9638;
  --accent-ink: #321b0a;
  --accent-muted: #492609;
  --accent-soft: #ef6d00;
  --cream: #fff9f1;
  --line: #39332d;
  --font: "Segoe UI", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
select {
  font: inherit;
}
button,
a,
summary,
select {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--accent);
  color: #101112;
  padding: 12px;
  z-index: 20;
}
.skip:focus {
  top: 12px;
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
header {
  border-bottom: 1px solid var(--line);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  gap: 25px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 33px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.brand-dot {
  margin-left: -9px;
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 34px;
  font-size: 13px;
  color: #d0d0d0;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:hover,
.footer-links a:hover {
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--accent);
  color: #171310;
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.button.secondary {
  color: var(--text);
  background: transparent;
  border-color: #4e5051;
}
.button:disabled {
  color: #b3b3b3;
  background: #242526;
  border-color: #414344;
  transform: none;
  cursor: not-allowed;
}
.nav-cta {
  padding: 11px 17px;
  font-size: 12px;
  gap: 25px;
  background: var(--cream);
  border-color: var(--cream);
}

.eyebrow {
  font:
    11px/1.5 Consolas,
    "Courier New",
    monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
}
.signal-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", var(--font);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(64px, 7.8vw, 96px);
  line-height: 0.98;
  margin-bottom: 30px;
  letter-spacing: -0.04em;
}
.accent {
  color: var(--accent);
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  font-size: 13px;
  font-weight: 550;
  text-decoration: none;
  padding-block: 10px;
}
.text-link:hover {
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.protocol-strip {
  border-block: 1px solid var(--line);
  background: #141516;
}
.protocol-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 95px;
}
.protocol-strip span:first-child {
  font:
    9px/1.6 Consolas,
    monospace;
  letter-spacing: 0.07em;
  color: var(--muted);
  max-width: 150px;
}
.protocol-strip span {
  font-size: 17px;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.protocol-strip b {
  font-size: 13px;
  margin-left: 25px;
  font-weight: 400;
  color: var(--accent);
}
.section {
  padding-block: 105px;
}
.section-heading {
  max-width: 780px;
}
.section-heading h2 {
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(35px, 4.2vw, 56px);
  line-height: 1.1;
  margin-bottom: 25px;
}
h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 17px;
  letter-spacing: -0.035em;
}
.section-heading > p:last-child,
.section-lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  gap: 44px;
}
.steps article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
  color: var(--muted);
  font:
    11px Consolas,
    monospace;
}
.step-top svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.steps p {
  font-size: 14px;
  color: var(--muted);
  max-width: 310px;
  min-height: 92px;
}
.steps code {
  font-size: 10px;
  color: #cdcecf;
  background: var(--raised);
  padding: 6px 9px;
  border-radius: 4px;
}
.intelligence-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.intelligence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}
.query-tabs {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.query-tabs button {
  padding: 18px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.query-tabs button[aria-selected="true"] {
  color: var(--text);
}
.query-tabs button[aria-selected="true"] span {
  color: var(--accent);
}
.terminal {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 60px #0003;
  min-width: 0;
  overflow: hidden;
}
.terminal-bar {
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font:
    9px Consolas,
    monospace;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.terminal-bar > span:first-child {
  display: flex;
  gap: 5px;
}
.terminal-bar i {
  width: 6px;
  height: 6px;
  background: #525353;
  border-radius: 50%;
}
.example-label {
  color: #ffc68a;
  font-size: 8px;
}
.terminal-body {
  padding: 26px;
}
.code-label {
  font:
    11px Consolas,
    monospace;
  color: var(--accent);
  margin-bottom: 24px;
}
.code-label span {
  color: var(--muted);
}
.terminal-question {
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.4;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.response-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  margin: 22px 0 14px;
}
.terminal-body > p:not(.terminal-question):not(.code-label) {
  font-size: 12px;
  color: var(--muted);
}
.evidence-bars {
  height: 57px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin: 22px 0;
}
.evidence-bars span {
  flex: 1;
  background: var(--accent-muted);
  height: 25%;
  border-top: 1px solid var(--accent);
}
.evidence-bars span:nth-child(3n) {
  height: 65%;
}
.evidence-bars span:nth-child(2n) {
  height: 45%;
}
.evidence-bars span:nth-child(5n) {
  height: 92%;
}
.evidence-bars span:nth-child(7n) {
  height: 75%;
}
dl {
  margin: 0;
}
dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #28292a;
  font:
    10px/1.6 Consolas,
    monospace;
}
dt {
  color: var(--muted);
}
dd {
  margin: 0;
  text-align: right;
  color: #d7d6d2;
}
.terminal-note {
  margin: 18px 0 0;
  font-size: 10px !important;
}
.terminal-bottom {
  padding: 14px 25px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
.terminal-bottom .signal-dot {
  width: 4px;
  height: 4px;
}
.gossip-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 55px;
}
.observation {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transform: rotate(-1deg);
}
.observation-top {
  display: flex;
  justify-content: space-between;
  padding: 22px 27px;
  background: var(--raised);
  border-bottom: 1px solid var(--line);
  font:
    9px Consolas,
    monospace;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-radius: 8px 8px 0 0;
}
.observation-line {
  display: flex;
  gap: 25px;
  padding: 22px 27px;
  border-bottom: 1px solid #28292a;
}
.observation-line > span {
  font: 10px Consolas;
  color: #a19b95;
}
.observation-line small {
  display: block;
  font:
    9px/1.5 Consolas,
    monospace;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}
.observation-line strong {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.receipt-stamp {
  font-size: 11px;
  color: var(--muted);
  padding: 20px 27px;
}
.receipt-stamp > span {
  color: var(--accent);
  margin-right: 10px;
}
.gossip-copy h3 {
  font-size: 35px;
}
.gossip-copy p {
  font-size: 14px;
  color: var(--muted);
}
.gossip-copy .text-link {
  margin-top: 15px;
}
.privacy-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}
.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 95px;
  align-items: center;
}
.privacy-flow > div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #353637;
}
.flow-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 1px solid #4b4a48;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font: 10px Consolas;
  color: var(--accent);
}
.privacy-flow h3 {
  font-size: 17px;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.privacy-flow p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}
.flow-label {
  margin-left: auto;
  font: 8px Consolas;
  letter-spacing: 0.04em;
  color: #bbb8b4;
}
.engine-section {
  border-bottom: 1px solid var(--line);
}
.engine-heading {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
}
.engine-heading h2 {
  font-size: 40px;
}
.engine-heading p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 25px;
}
.engine-facts {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 40px;
}
.engine-facts span {
  font-size: 12px;
  color: var(--muted);
}
.engine-facts b {
  font-size: 23px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-right: 18px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.faqs details {
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
}
.faqs details:first-child {
  padding-top: 0;
}
.faqs summary {
  cursor: pointer;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  line-height: 1.5;
}
.faqs summary::-webkit-details-marker {
  display: none;
}
.faqs summary:after {
  content: "+";
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
}
.faqs details[open] summary:after {
  content: "−";
}
.faqs details p {
  font-size: 13px;
  color: var(--muted);
  margin: 18px 0 0;
}
.closing {
  padding: 75px 65px;
  border: 1px solid #47403b;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  background: #1b1917;
  margin-bottom: 80px;
}
.closing .eyebrow {
  font-size: 9px;
}
.closing h2 {
  font-size: 56px;
  margin: 0;
}
.closing .button {
  flex-shrink: 0;
}
footer {
  padding-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
footer p {
  font-size: 11px;
  color: var(--muted);
  margin: 16px 0 0;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
}
.footer-links a {
  text-decoration: none;
}
.footer-links > span {
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  width: 100%;
  padding-top: 24px;
  font:
    9px Consolas,
    monospace;
  color: var(--muted);
}
.guide-hero {
  padding: 70px 0 50px;
}
.guide-hero h1 {
  font-size: 72px;
  line-height: 1.04;
}
.guide-hero p:not(.eyebrow) {
  color: var(--muted);
  max-width: 650px;
}
.local-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #494440;
  border-radius: 4px;
  padding: 7px 10px;
  color: #ffd6ac;
  font:
    10px Consolas,
    monospace;
  letter-spacing: 0.04em;
}
.guide-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 70px;
  padding-bottom: 100px;
}
.aside {
  position: sticky;
  top: 30px;
  align-self: start;
}
.aside a {
  display: block;
  padding: 11px 0;
  text-decoration: none;
  font-size: 12px;
  color: var(--muted);
}
.aside a:hover {
  color: var(--accent);
}
.guide-content section {
  padding: 35px 0;
  border-top: 1px solid var(--line);
}
.guide-content h2 {
  font-size: 35px;
  letter-spacing: -0.04em;
}
.guide-content h3 {
  font-size: 22px;
}
.guide-content p,
.guide-content li {
  font-size: 14px;
  color: #b6b6b6;
}
.guide-content li {
  margin-bottom: 14px;
}
.guide-content strong {
  color: #e0dedb;
  font-weight: 600;
}
.guide-content pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 22px;
  color: #ded9d2;
  font:
    12px/1.8 Consolas,
    monospace;
}
.copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
}
.copy-row .button {
  font-size: 12px;
  padding: 10px 15px;
  gap: 20px;
}
.feedback {
  min-height: 20px;
  font-size: 11px !important;
  margin: 12px 0 0;
}
.guide-content .note {
  font-size: 12px;
}
.guide-content select {
  width: 100%;
  padding: 12px;
  color: var(--text);
  border: 1px solid #636465;
  border-radius: 4px;
  background: var(--raised);
  margin: 12px 0;
}
.table-scroll {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 12px;
}
caption {
  text-align: left;
  color: var(--muted);
  padding-bottom: 12px;
}
th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-weight: 600;
  color: #e2e0dc;
}
td {
  color: #b5b5b5;
}
td code {
  color: #ffc68a;
}
.guide-content .faqs {
  margin-top: 22px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
[hidden] {
  display: none !important;
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }

  .actions {
    gap: 12px;
  }

  .protocol-strip span {
    font-size: 14px;
  }
  .protocol-strip b {
    margin-left: 8px;
  }
  .intelligence-layout,
  .gossip-layout,
  .privacy-layout {
    gap: 45px;
  }
  .engine-heading {
    gap: 30px;
  }
  .engine-heading h2 {
    font-size: 34px;
  }
  .engine-facts b {
    display: block;
    margin-bottom: 6px;
  }
  .footer-links {
    gap: 16px;
  }
  .closing {
    padding: 50px;
  }
  .closing h2 {
    font-size: 46px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  nav {
    gap: 18px;
    min-height: 80px;
  }
  .nav-links {
    gap: 18px;
    font-size: 11px;
  }
  .nav-cta {
    padding: 10px 13px;
    font-size: 11px;
    gap: 15px;
  }
  .brand {
    font-size: 29px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }

  .protocol-strip .wrap {
    gap: 20px;
    flex-wrap: wrap;
    padding-block: 22px;
    justify-content: flex-start;
  }
  .protocol-strip span:first-child {
    width: 100%;
    max-width: none;
  }
  .protocol-strip span {
    font-size: 13px;
  }
  .section {
    padding-block: 72px;
  }
  .steps {
    gap: 25px;
    margin-top: 40px;
  }
  .steps h3 {
    font-size: 22px;
  }
  .steps p {
    font-size: 13px;
    min-height: 130px;
  }
  .intelligence-layout,
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .terminal {
    max-width: 580px;
    width: 100%;
  }
  .gossip-layout {
    gap: 35px;
  }
  .gossip-copy h3 {
    font-size: 29px;
  }
  .observation-line {
    padding: 20px;
    gap: 15px;
  }
  .observation-top {
    padding: 20px;
    font-size: 8px;
  }
  .engine-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .engine-heading h2 {
    font-size: 38px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .closing {
    padding: 40px;
    gap: 20px;
  }
  .closing h2 {
    font-size: 39px;
  }
  .closing .button {
    font-size: 12px;
    padding: 13px 16px;
    gap: 16px;
  }
  .footer-links {
    flex-wrap: wrap;
  }
  .guide-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .aside {
    display: flex;
    flex-wrap: wrap;
    position: static;
    gap: 0 22px;
  }
  .guide-hero h1 {
    font-size: 60px;
  }
  .guide-hero {
    padding-top: 50px;
  }
}
@media (max-width: 560px) {
  nav {
    flex-wrap: wrap;
    padding-block: 18px;
    gap: 20px;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    font-size: 12px;
  }
  .nav-cta {
    margin-left: auto;
  }

  .protocol-strip .wrap {
    justify-content: space-between;
    gap: 16px 10px;
  }
  .protocol-strip span {
    font-size: 12px;
  }
  .protocol-strip b {
    margin-left: 5px;
  }
  .protocol-strip span:first-child {
    font-size: 9px;
  }
  .section {
    padding-block: 58px;
  }
  h2 {
    font-size: 37px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 19px;
  }
  .section-heading p:last-child,
  .section-lead {
    font-size: 14px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .steps article {
    padding-top: 20px;
  }
  .step-top {
    margin-bottom: 22px;
  }
  .steps h3 {
    font-size: 25px;
  }
  .steps p {
    min-height: 0;
    max-width: none;
    margin-bottom: 22px;
    font-size: 14px;
  }
  .gossip-layout {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .observation {
    transform: none;
  }
  .gossip-copy h3 {
    font-size: 31px;
  }
  .terminal-body {
    padding: 20px;
  }
  .terminal-bar {
    padding: 15px 14px;
    font-size: 8px;
  }
  .terminal-question {
    font-size: 18px;
  }
  .privacy-flow > div {
    gap: 13px;
  }
  .flow-label {
    font-size: 7px;
  }
  .privacy-flow h3 {
    font-size: 16px;
  }
  .privacy-flow p {
    font-size: 11px;
  }
  .flow-icon {
    width: 30px;
    height: 30px;
    font-size: 9px;
  }
  .engine-heading h2 {
    font-size: 34px;
  }
  .engine-facts {
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 20px;
  }
  .engine-facts span {
    font-size: 10px;
  }
  .engine-facts b {
    font-size: 21px;
  }
  .closing {
    display: block;
    padding: 34px 25px;
    margin-bottom: 55px;
  }
  .closing h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .closing .button {
    padding: 13px 18px;
  }
  .closing .eyebrow {
    font-size: 8px;
  }
  .footer-links {
    gap: 19px;
    font-size: 10px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 8px;
  }
  .guide-hero h1 {
    font-size: 49px;
  }
  .guide-hero {
    padding-top: 38px;
    padding-bottom: 25px;
  }
  .guide-content h2 {
    font-size: 30px;
  }
  .guide-content p,
  .guide-content li {
    font-size: 13px;
  }
  .guide-content ol {
    padding-left: 22px;
  }
  .guide-content pre {
    font-size: 10px;
    padding: 15px;
  }
  .guide-content .copy-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .aside {
    gap: 0 15px;
  }
  .aside a {
    font-size: 10px;
  }
  .guide-layout {
    padding-bottom: 60px;
  }
  th,
  td {
    padding: 12px 8px;
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover {
    transform: none;
  }
}

/* Floating conversation: one focal motion, with an explicit pause control. */
.brand {
  font-family: "Bricolage Grotesque", var(--font);
  letter-spacing: -0.04em;
}
.arrow-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.hero {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  min-height: 720px;
  padding-block: 60px 72px;
  gap: 25px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(70px, 7.5vw, 96px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.04em;
  transform: rotate(-3deg);
  margin: 0 0 44px;
  white-space: nowrap;
}
.headline-sticker {
  display: inline-block;
  background: var(--accent);
  color: #171310;
  border-radius: 18px 38px 34px 6px;
  padding: 0 17px 10px;
  margin-top: 9px;
  transform: rotate(-4deg) translateX(22px);
}
.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: #bebdbb;
  margin: 0 0 26px;
}
.hero-proof {
  font-size: 11px;
  line-height: 1.8;
  margin: 30px 0 0;
}
.hero-art {
  display: grid;
  place-items: center;
  position: relative;
  min-width: 0;
  min-height: 530px;
  margin: 0 -22px 0 -32px;
}
.floating-object {
  position: relative;
  width: 112%;
  z-index: 1;
  animation: conversation-float 7s ease-in-out infinite paused;
}
.hero[data-motion="running"] .floating-object {
  animation-play-state: running;
}
.floating-object img {
  display: block;
  width: 100%;
  height: auto;
  mask-image: radial-gradient(
    ellipse 69% 69% at center,
    #000 62%,
    transparent 100%
  );
}
.conversation-tag {
  position: absolute;
  z-index: 2;
  padding: 11px 17px;
  background: var(--cream);
  color: #26221e;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 550;
  letter-spacing: -0.01em;
}
.tag-ask {
  top: 13px;
  left: 26px;
  transform: rotate(-9deg);
}
.tag-share {
  bottom: 51px;
  right: 0;
  transform: rotate(8deg);
  background: var(--accent);
}
.motion-toggle {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  color: #bcbcb9;
  border: 1px solid #555651;
  border-radius: 25px;
  white-space: nowrap;
  font-size: 10px;
}
.motion-toggle:hover {
  color: var(--text);
  border-color: #9b9c97;
}
.motion-toggle:disabled {
  cursor: default;
}
.motion-toggle svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.protocol-strip {
  background: transparent;
  border: 0;
  padding: 12px 0 45px;
}
.protocol-strip .wrap {
  background: var(--cream);
  color: #26221e;
  padding-inline: 28px;
  border-radius: 12px;
  transform: rotate(-1.5deg);
}
.protocol-strip span:first-child {
  color: #55504a;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
}
.protocol-strip b {
  color: #37332e;
}
#how-it-works {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 64px;
  border-radius: 28px;
  margin-top: 26px;
  margin-bottom: 90px;
}
#how-it-works h2 {
  max-width: 800px;
}
#how-it-works .section-heading > p:last-child,
#how-it-works .steps p {
  color: var(--accent-muted);
}
#how-it-works .steps {
  gap: 48px;
}
#how-it-works .steps article {
  border-top-color: #a94b00;
}
#how-it-works .step-top {
  color: var(--accent-muted);
}
#how-it-works .step-top svg {
  stroke: var(--accent-ink);
}
#how-it-works .steps code {
  color: var(--accent-ink);
  background: var(--accent-soft);
}
.intelligence-layout {
  align-items: start;
}
.terminal {
  box-shadow: none;
  border-radius: 14px;
}
.observation {
  border-radius: 14px;
}
.observation-top {
  border-radius: 14px 14px 0 0;
}
.closing {
  border-radius: 24px;
  background: var(--cream);
  color: #26221e;
  border: 0;
}
.closing .accent {
  color: #ac380b;
}
.closing .button {
  background: #26221e;
  color: #f1eee8;
  border-color: #26221e;
}
.closing .button:hover {
  background: #44372c;
}
@keyframes conversation-float {
  0%,
  100% {
    transform: translateY(5px) rotate(-2deg);
  }
  50% {
    transform: translateY(-9px) rotate(1deg);
  }
}
@media (max-width: 1100px) {
  .hero {
    gap: 15px;
    min-height: 650px;
  }
  .hero h1 {
    font-size: 80px;
  }
  .hero-art {
    min-height: 490px;
    margin-inline: -30px 0;
  }
  .tag-share {
    right: 8px;
  }
  #how-it-works {
    padding: 45px;
  }
  .hero-description {
    font-size: 16px;
  }
}
@media (max-width: 800px) {
  .hero {
    min-height: 590px;
    padding-block: 45px 52px;
  }
  .hero h1 {
    font-size: 66px;
    margin-bottom: 34px;
  }
  .floating-object {
    width: 96%;
  }
  .hero-art {
    min-height: 410px;
    margin-left: -30px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero .button {
    font-size: 12px;
    padding: 13px 17px;
    gap: 17px;
  }
  .hero .text-link {
    font-size: 11px;
  }
  .conversation-tag {
    font-size: 10px;
    padding: 9px 12px;
  }
  .tag-ask {
    top: 8px;
    left: 20px;
  }
  .tag-share {
    right: 8px;
    bottom: 39px;
  }
  .protocol-strip .wrap {
    padding: 20px 22px;
  }
  #how-it-works {
    padding: 38px 28px;
    margin-bottom: 60px;
  }
  #how-it-works .steps {
    gap: 25px;
  }
}
@media (max-width: 560px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-block: 34px 30px;
    gap: 20px;
  }
  .hero h1 {
    font-size: clamp(60px, 17vw, 80px);
    margin-bottom: 36px;
    white-space: normal;
  }
  .headline-sticker {
    transform: rotate(-4deg) translateX(14px);
    padding: 0 14px 7px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-proof {
    margin-top: 20px;
    font-size: 10px;
  }
  .hero-art {
    min-height: 310px;
    margin: 0;
  }
  .floating-object {
    width: 100%;
  }
  .tag-ask {
    left: 8px;
    top: 4px;
  }
  .tag-share {
    bottom: 37px;
    right: 0;
  }
  .motion-toggle {
    bottom: 0;
  }
  .protocol-strip {
    padding-bottom: 25px;
  }
  #how-it-works {
    padding: 34px 23px;
    border-radius: 22px;
    margin-top: 18px;
    margin-bottom: 50px;
  }
  #how-it-works h2 {
    font-size: 34px;
  }
  #how-it-works .steps {
    gap: 30px;
  }
  .closing h2 {
    font-size: 37px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .floating-object {
    animation: none !important;
    transform: none;
  }
}
.agent-setup {
  margin-bottom: 48px;
  padding: clamp(20px, 4vw, 44px);
  border: 1px solid #514033;
  border-radius: 18px;
  background: var(--surface);
}
.setup-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.setup-heading h2 {
  max-width: 580px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  margin: 0;
}
.setup-heading p,
.setup-note {
  color: var(--muted);
  font-size: 14px;
}
.setup-heading .button {
  flex-shrink: 0;
}
#agent-prompt {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  max-height: 260px;
  overflow-y: auto;
  padding: 24px;
  margin: 24px 0 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  font:
    13px/1.7 Consolas,
    monospace;
  color: #d8d5cf;
}
.technical-details {
  margin-bottom: 70px;
  border-top: 1px solid var(--line);
}
.technical-details > summary {
  padding: 24px 0;
  cursor: pointer;
  font-size: 20px;
}
.technical-details > summary span {
  margin-left: 20px;
  color: var(--muted);
  font-size: 13px;
}
.technical-details .guide-layout {
  padding-top: 24px;
  padding-bottom: 0;
}
@media (max-width: 700px) {
  .setup-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .setup-heading .button {
    justify-content: center;
  }
  #agent-prompt {
    padding: 16px;
  }
  .technical-details > summary span {
    display: block;
    margin: 8px 0 0 22px;
  }
}
