:root {
  --bg: #f3f2ee;
  --ink: #11110f;
  --muted: #77756f;
  --line: rgba(17, 17, 15, .13);
  --card: #faf9f5;
  --dark: #0d0d0c;
  --acid: #e6ff75;
  --blue: #315cff;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 132px 0; }

.noise {
  position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.nav {
  height: 88px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  position: relative; z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 600; letter-spacing: -.02em; }
.brand-mark { width: 17px; height: 17px; border-radius: 50%; background: var(--ink); display: inline-block; box-shadow: inset 5px -4px 0 var(--acid); }
.nav nav { display: flex; gap: 28px; font-size: 14px; color: #55534e; }
.nav nav a, .text-link, .footer a { transition: opacity .2s ease; }
.nav nav a:hover, .text-link:hover, .footer a:hover { opacity: .55; }
.nav-cta { justify-self: end; padding: 11px 15px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; background: rgba(255,255,255,.28); }

.hero { padding-top: 114px; text-align: center; }
.eyebrow, .section-kicker {
  text-transform: uppercase; font: 500 11px/1.2 "DM Mono", monospace; letter-spacing: .11em; color: #6d6b64;
}
.hero h1 {
  max-width: 1040px; margin: 22px auto 0; font-size: clamp(64px, 8.4vw, 126px); line-height: .88;
  letter-spacing: -.075em; font-weight: 500;
}
.hero h1 span { color: #9d9a91; }
.hero-copy { max-width: 680px; margin: 34px auto 0; font-size: 20px; line-height: 1.52; letter-spacing: -.025em; color: #4c4b46; }
.hero-actions { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 24px; }
.button {
  border: 0; cursor: pointer; border-radius: 999px; padding: 15px 19px; display: inline-flex; gap: 22px; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; transition: transform .18s ease, opacity .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--ink); color: white; }
.button.primary span { color: var(--acid); }
.text-link { font-size: 14px; color: #5f5d57; display: inline-flex; gap: 9px; }

.agent-window {
  width: min(880px, 100%); margin: 88px auto 0; text-align: left; border: 1px solid var(--line);
  background: rgba(250,249,245,.72); backdrop-filter: blur(18px); border-radius: 28px; overflow: hidden;
  box-shadow: 0 35px 90px rgba(40,38,30,.10), 0 4px 12px rgba(40,38,30,.04);
}
.window-top { min-height: 57px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid var(--line); font-size: 12px; color: #6d6b65; }
.status { display: flex; align-items: center; gap: 8px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #36b76a; box-shadow: 0 0 0 4px rgba(54,183,106,.10); }
.mono { font: 500 10px/1.2 "DM Mono", monospace; letter-spacing: .08em; }
.conversation { padding: 36px; }
.message.user {
  margin-left: auto; width: min(570px, 88%); background: var(--ink); color: white; border-radius: 22px 22px 5px 22px;
  padding: 18px 20px; font-size: 15px; line-height: 1.55;
}
.agent-response { display: grid; grid-template-columns: 34px 1fr; gap: 12px; margin-top: 32px; }
.agent-icon { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--acid); font-size: 15px; }
.agent-response p { margin: 5px 0 18px; font-size: 14px; color: #55534d; }
.obligation-list { border-top: 1px solid var(--line); }
.obligation { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.ob-name, .ob-meta { display: block; }
.ob-name { font-size: 13px; font-weight: 600; }
.ob-meta { margin-top: 4px; color: #8b887f; font-size: 11px; }
.tag { border-radius: 999px; padding: 6px 9px; font-size: 10px; white-space: nowrap; }
.tag.ready { background: #e7f7e9; color: #287445; }
.tag.scheduled { background: #e8edff; color: #3751a8; }
.tag.approval { background: #fff0dc; color: #8a5b15; }
.permission-bar { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 17px 22px; border-top: 1px solid var(--line); background: rgba(0,0,0,.018); font-size: 11px; color: #6e6b64; }
.meter { height: 5px; background: #e2e0d8; border-radius: 99px; overflow: hidden; }
.meter i { display: block; height: 100%; background: var(--ink); border-radius: inherit; }
.permission-bar strong { color: var(--ink); font-size: 11px; }

.statement { border-top: 1px solid var(--line); margin-top: 132px; }
.section-kicker { margin-bottom: 36px; }
.statement-copy { margin: 0; max-width: 1080px; font-size: clamp(42px, 6vw, 82px); line-height: 1.02; letter-spacing: -.055em; font-weight: 500; }
.statement-copy span { color: #aaa79e; }

.manifesto { padding-top: 48px; }
.manifesto-grid { display: grid; grid-template-columns: 220px 1fr; border-top: 1px solid var(--line); }
.manifesto-label, .manifesto-content { padding: 34px 0 56px; border-bottom: 1px solid var(--line); }
.manifesto-label { font: 500 10px "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; color: #817e76; }
.manifesto-content .big-line { font-size: clamp(27px, 4vw, 48px); letter-spacing: -.045em; margin: 0 0 12px; }
.big-line.muted { color: #a5a299; }
.manifesto-content > p:last-child { max-width: 700px; color: #66635c; line-height: 1.55; font-size: 16px; }
.quote-card { margin-top: 58px; padding: 54px; border-radius: var(--radius); background: var(--acid); }
.quote-card span, .quote-card strong { display: block; }
.quote-small { font: 500 11px "DM Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }
.quote-card strong { margin-top: 18px; font-size: clamp(50px, 7vw, 100px); letter-spacing: -.065em; line-height: .95; font-weight: 500; }

.section-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 50px; margin-bottom: 72px; }
.section-head h2 { margin: 0; width: 72%; font-size: clamp(46px, 6vw, 84px); line-height: .96; letter-spacing: -.06em; font-weight: 500; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { padding: 26px 32px 0 0; min-height: 280px; border-right: 1px solid var(--line); }
.step + .step { padding-left: 32px; }
.step:last-child { border-right: none; }
.step-num { color: #929087; }
.step h3 { margin: 68px 0 14px; font-size: 22px; letter-spacing: -.035em; }
.step p { margin: 0; color: #716e67; line-height: 1.6; font-size: 14px; }

.trust-panel { border-radius: 30px; background: var(--dark); color: white; padding: 72px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: center; overflow: hidden; position: relative; }
.trust-panel::after { content:""; position:absolute; width:360px; height:360px; border-radius:50%; background:rgba(230,255,117,.08); filter:blur(20px); right:-140px; top:-170px; }
.section-kicker.light { color: #8c8b84; }
.trust-copy h2 { margin: 0; font-size: clamp(46px, 5.3vw, 78px); line-height: .97; letter-spacing: -.06em; font-weight: 500; }
.trust-copy p { max-width: 600px; margin-top: 28px; color: #aaa9a3; line-height: 1.65; font-size: 15px; }
.policy-card { border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.055); border-radius: 22px; padding: 22px; position: relative; z-index: 2; backdrop-filter: blur(14px); }
.policy-top { color: #8d8c85; padding-bottom: 17px; border-bottom: 1px solid rgba(255,255,255,.12); }
.policy-row { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 12px; color: #aaa9a4; }
.policy-row strong { color: white; font-weight: 500; }
.policy-row .policy-approval { color: var(--acid); }
.policy-footer { display: flex; align-items: center; gap: 10px; padding-top: 18px; color: #8d8c85; font-size: 11px; }
.shield { color: var(--acid); font-size: 18px; }

.base-section { padding-top: 80px; }
.architecture { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 14px; align-items: center; }
.arch-node { border: 1px solid var(--line); background: rgba(255,255,255,.28); border-radius: 18px; padding: 22px; min-height: 120px; display: flex; flex-direction: column; justify-content: space-between; }
.arch-node.active { background: var(--ink); color: white; }
.arch-node span { color: #85827a; }
.arch-node.active span { color: var(--acid); }
.arch-node strong { font-size: 15px; letter-spacing: -.02em; }
.arch-arrow { color: #aaa79e; }
.architecture-note { margin: 30px 0 0; color: #75726a; max-width: 820px; line-height: 1.62; font-size: 13px; }

.founder { padding-top: 20px; }
.founder-card { max-width: 700px; margin-left: auto; border-top: 1px solid var(--line); padding-top: 26px; }
.founder-top { display: flex; align-items: center; gap: 15px; }
.founder-avatar { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items:center; background: #ddd9cf; font-weight: 600; font-size: 13px; }
.founder-top h3 { margin: 5px 0 0; font-size: 19px; letter-spacing: -.03em; }
.founder-card > p { margin: 28px 0; font-size: 24px; line-height: 1.4; letter-spacing: -.035em; color: #393833; }
.founder-links { display: flex; gap: 18px; font-size: 12px; color: #706e67; }

.cta { padding-top: 80px; }
.cta-inner { padding: 100px 40px; text-align: center; border-radius: 30px; background: #dedcd5; }
.cta-inner h2 { margin: 22px auto 0; max-width: 970px; font-size: clamp(54px, 7.2vw, 102px); line-height: .92; letter-spacing: -.07em; font-weight: 500; }
.cta-inner h2 span { color: #939087; }
.cta-inner > p { margin-top: 26px; color: #69675f; }
.waitlist { display: flex; width: min(520px, 100%); margin: 32px auto 0; gap: 10px; }
.waitlist input { width: 100%; border: 1px solid rgba(0,0,0,.12); background: rgba(255,255,255,.62); border-radius: 999px; padding: 0 18px; outline: none; }
.waitlist input:focus { border-color: rgba(0,0,0,.35); }
.form-message { min-height: 20px; margin-top: 14px; font-size: 12px; color: #5f5c55; }

.footer { min-height: 140px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; border-top: 1px solid var(--line); font-size: 11px; color: #76736b; }
.footer .brand { color: var(--ink); font-size: 13px; }
.footer p { text-align: center; }
.footer-links { justify-self: end; display: flex; gap: 16px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

@media (max-width: 900px) {
  .shell { width: min(100% - 30px, 1180px); }
  .nav { grid-template-columns: 1fr auto; }
  .nav nav { display: none; }
  .hero { padding-top: 80px; }
  .hero h1 { font-size: clamp(58px, 14vw, 98px); }
  .hero-copy { font-size: 17px; }
  .section { padding: 90px 0; }
  .statement { margin-top: 90px; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-label { padding-bottom: 10px; border-bottom: 0; }
  .manifesto-content { padding-top: 10px; }
  .quote-card { padding: 36px 28px; }
  .section-head { display: block; }
  .section-head h2 { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 28px 0; min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .step h3 { margin-top: 34px; }
  .trust-panel { padding: 44px 26px; grid-template-columns: 1fr; gap: 44px; }
  .architecture { grid-template-columns: 1fr; }
  .arch-arrow { transform: rotate(90deg); justify-self: center; }
  .waitlist { flex-direction: column; }
  .waitlist input { min-height: 50px; }
  .footer { grid-template-columns: 1fr; padding: 34px 0; text-align: left; }
  .footer p { text-align: left; margin: 0; }
  .footer-links { justify-self: start; }
}

@media (max-width: 560px) {
  .hero h1 { letter-spacing: -.07em; }
  .hero-actions { flex-direction: column; }
  .conversation { padding: 22px 17px; }
  .message.user { width: 94%; }
  .permission-bar { grid-template-columns: 1fr auto; }
  .permission-bar .meter { grid-column: 1 / -1; grid-row: 2; }
  .agent-window { border-radius: 20px; }
  .statement-copy { font-size: 42px; }
}


/* --- v2 refinements --- */
body { overflow-x: hidden; }
.nav { position: sticky; top: 0; z-index: 30; backdrop-filter: blur(16px); }
.nav::before {
  content: ""; position: absolute; inset: 0 -24px;
  background: rgba(243,242,238,.78); border-bottom: 1px solid rgba(17,17,15,.07);
  z-index: -1;
}
.hero { min-height: calc(100vh - 88px); display: flex; flex-direction: column; justify-content: center; }
.hero h1 { text-wrap: balance; }
.hero-copy { text-wrap: pretty; }
.agent-window { transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease; }
.agent-window:hover {
  transform: translateY(-6px);
  box-shadow: 0 45px 110px rgba(40,38,30,.14), 0 6px 18px rgba(40,38,30,.05);
}
.cred-strip {
  margin: 28px auto 0; width: min(880px, 100%);
  display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr;
  gap: 14px; align-items: center; text-align: left;
  font: 500 10px/1.3 "DM Mono", monospace; letter-spacing: .04em;
  color: #8a877f; padding: 0 8px;
}
.cred-strip strong { color: #35342f; font-weight: 500; }
.statement { padding-bottom: 74px; }
.statement-copy { max-width: 990px; }
.manifesto { padding-top: 28px; }

.section-head.compact { margin-bottom: 44px; }
.section-head.compact h2 { width: 55%; }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.feature-card {
  border: 1px solid var(--line); border-radius: 24px; padding: 22px;
  background: rgba(255,255,255,.28); min-height: 440px;
  display: flex; flex-direction: column;
}
.feature-index { color: #8f8c84; }
.feature-visual {
  margin: 28px 0 34px; border-radius: 17px; min-height: 180px;
  background: #ebe9e2; border: 1px solid rgba(17,17,15,.07);
}
.mini-calendar { display: grid; align-content: center; gap: 8px; padding: 18px; }
.mini-calendar div {
  display: grid; grid-template-columns: 38px 1fr; align-items: center;
  padding: 12px; border-radius: 12px; background: rgba(255,255,255,.68);
}
.mini-calendar b { font: 500 12px "DM Mono", monospace; }
.mini-calendar span { font-size: 12px; }
.anomaly-card {
  padding: 24px; display: flex; flex-direction: column; justify-content: center;
}
.anomaly-card span { font-size: 11px; color: #77746d; }
.anomaly-card strong { display: block; margin-top: 10px; font-size: 24px; letter-spacing: -.04em; }
.anomaly-card em {
  display: inline-flex; width: fit-content; margin-top: 18px; padding: 7px 9px;
  border-radius: 999px; background: #fff0dc; color: #8a5b15;
  font-size: 10px; font-style: normal;
}
.action-card {
  padding: 24px; display: flex; align-items: center; justify-content: center; gap: 13px;
}
.action-check {
  width: 38px; height: 38px; border-radius: 50%; background: var(--acid);
  display: grid; place-items: center; font-weight: 700;
}
.action-card strong, .action-card span { display: block; }
.action-card strong { font-size: 13px; }
.action-card span { margin-top: 4px; font-size: 10px; color: #858279; }
.feature-card h3 { margin: auto 0 10px; font-size: 24px; letter-spacing: -.04em; }
.feature-card p { margin: 0; color: #706d65; font-size: 13px; line-height: 1.6; }

.trust-panel { box-shadow: 0 40px 100px rgba(0,0,0,.12); }
.policy-card { transform: rotate(1deg); transition: transform .35s ease; }
.trust-panel:hover .policy-card { transform: rotate(0deg) translateY(-3px); }
.arch-node { transition: transform .25s ease, background .25s ease; }
.arch-node:hover { transform: translateY(-4px); }
.arch-node.active:hover { background: #1b1b18; }

.cta-inner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 50% 120%, rgba(230,255,117,.75), transparent 35%),
    #dedcd5;
}
.cta-inner::before {
  content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  border: 1px solid rgba(17,17,15,.08); left: 50%; top: 84%; transform: translate(-50%,-50%);
}
.cta-inner > * { position: relative; z-index: 2; }

@media (max-width: 900px) {
  .nav { position: relative; }
  .hero { min-height: auto; }
  .cred-strip { grid-template-columns: 1fr 1fr; row-gap: 8px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 390px; }
  .section-head.compact h2 { width: 100%; }
}

@media (max-width: 560px) {
  .cred-strip { grid-template-columns: 1fr; text-align: center; gap: 5px; }
  .cred-strip strong { margin-bottom: 9px; }
  .feature-card { padding: 18px; }
}


/* --- memo --- */
.memo { padding: 72px 0 40px; }
.memo-head { padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.memo-head > * { max-width: 760px; }
.memo-head h1 { margin: 22px 0 0; font-size: clamp(56px, 8vw, 108px); line-height: .9; letter-spacing: -.07em; font-weight: 500; }
.memo-dek { margin: 30px 0 0; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.32; letter-spacing: -.035em; color: #4c4b46; text-wrap: pretty; }
.memo-byline { display: flex; align-items: center; gap: 14px; margin-top: 40px; font-size: 13px; }
.memo-byline .founder-avatar { width: 42px; height: 42px; font-size: 12px; }
.memo-byline strong { display: block; font-weight: 600; }
.memo-byline span:last-child { color: var(--muted); }

.memo-layout { display: grid; grid-template-columns: 240px minmax(0, 68ch); gap: 96px; padding-top: 56px; }
.memo-toc { position: sticky; top: 112px; align-self: start; font-size: 13px; }
.memo-toc .mono { color: #8f8c84; text-transform: uppercase; margin-bottom: 18px; }
.memo-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.memo-toc li { counter-increment: toc; }
.memo-toc a { display: flex; gap: 12px; padding: 6px 0; color: #77756f; transition: color .2s ease; }
.memo-toc a::before { content: counter(toc, decimal-leading-zero); font: 500 10px/1.7 "DM Mono", monospace; color: #b0ada4; min-width: 18px; }
.memo-toc a:hover, .memo-toc a.active { color: var(--ink); }
.memo-toc a.active::before { color: var(--ink); }

.memo-body { font-size: 18px; line-height: 1.6; letter-spacing: -.012em; color: #2b2a26; text-wrap: pretty; }
.memo-body p { margin: 0 0 1.35em; }
.memo-body .lede { font-size: 21px; line-height: 1.5; letter-spacing: -.02em; color: var(--ink); }
.memo-body section { margin-top: 72px; scroll-margin-top: 120px; }
.memo-body h2 { margin: 0 0 26px; font-size: 30px; line-height: 1.1; letter-spacing: -.045em; font-weight: 500; text-wrap: balance; }
.memo-body h2 a { display: flex; align-items: baseline; gap: 16px; }
.memo-body h2 .mono { color: #a5a299; font-size: 11px; }
.memo-body h2 a:hover .mono { color: var(--ink); }
.memo-body strong { font-weight: 600; color: var(--ink); }
.memo-body sup { font: 500 10px "DM Mono", monospace; margin-left: 2px; }
.memo-body sup a { color: var(--blue); }
.memo-body .flow { margin: 0 0 1.35em; padding: 18px 22px; border-radius: 14px; background: rgba(255,255,255,.5); border: 1px solid var(--line); font: 400 14px/1.6 "DM Mono", monospace; white-space: pre-wrap; color: var(--ink); }
.memo-body blockquote { margin: 1.6em 0; padding: 0 0 0 26px; border-left: 2px solid var(--ink); font-size: 24px; line-height: 1.3; letter-spacing: -.035em; color: var(--ink); font-weight: 500; }
.memo-body blockquote.intent { border-color: var(--acid); border-left-width: 4px; font-weight: 400; font-size: 21px; color: #3a3934; }
.memo-body .flow-list, .memo-body .stages { margin: 0 0 1.35em; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.memo-body .flow-list li, .memo-body .stages li { display: flex; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; counter-increment: step; }
.memo-body .flow-list li::before { content: counter(step); font: 500 11px/1.9 "DM Mono", monospace; color: #a5a299; min-width: 16px; }
.memo-body .stages .mono { color: #a5a299; line-height: 1.9; min-width: 60px; }
.memo-body .aside { padding: 16px 20px; border-radius: 12px; background: rgba(0,0,0,.035); font-size: 14px; line-height: 1.55; color: #6a685f; }
.memo-body .risks { margin: 0 0 1.35em; display: grid; grid-template-columns: 170px 1fr; border-top: 1px solid var(--line); }
.memo-body .risks dt, .memo-body .risks dd { margin: 0; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.memo-body .risks dt { font-weight: 600; color: var(--ink); padding-right: 20px; }
.memo-body .risks dd { color: #55534d; }
.memo-body .closing { margin-top: 2.4em; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.18; letter-spacing: -.045em; color: #7d7a72; }
.memo-body .closing strong { color: var(--ink); font-weight: 500; }
.signature { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; }
.signature strong { display: block; font-weight: 600; }
.signature span { color: var(--muted); }
.sources h2 { font-size: 22px; }
.sources ol { margin: 0; padding: 0 0 0 22px; font-size: 14px; line-height: 1.6; color: #55534d; }
.sources li { margin-bottom: 8px; scroll-margin-top: 120px; }
.sources ol a { color: var(--blue); }
.memo-cta { margin-top: 80px; padding: 40px; border-radius: var(--radius); background: var(--acid); }
.memo-cta p { margin: 0 0 22px; font-size: 22px; line-height: 1.3; letter-spacing: -.03em; color: var(--ink); }

@media (max-width: 1040px) {
  .memo-layout { grid-template-columns: minmax(0, 68ch); gap: 0; }
  .memo-toc { position: static; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .memo-toc ol { columns: 2; column-gap: 32px; }
}
@media (max-width: 560px) {
  .memo { padding-top: 36px; }
  .memo-body { font-size: 17px; }
  .memo-body h2 { font-size: 26px; }
  .memo-body blockquote { font-size: 20px; padding-left: 18px; }
  .memo-body .risks { grid-template-columns: 1fr; }
  .memo-body .risks dt { padding-bottom: 4px; border-bottom: 0; }
  .memo-toc ol { columns: 1; }
  .memo-cta { padding: 28px; }
}

@media print {
  .noise, .nav, .memo-toc, .memo-cta, .footer { display: none; }
  body { background: white; }
  .memo-layout { grid-template-columns: 1fr; }
  .memo-body section { break-inside: avoid; }
  .sources a::after { content: " (" attr(href) ")"; font-size: 11px; }
}
