/* Orwell Lab brand stylesheet for the standalone pages.
   Every value here is lifted from the live Framer homepage so the whole
   site reads as one system. The canonical reference is /brand/ and
   /brand/README.md. */

:root{
  /* Colour tokens (from the homepage token set) */
  --ink:#465478;           /* headings and body text */
  --indigo:#7584d6;        /* primary interactive */
  --indigo-deep:#545c9e;   /* hover / active */
  --lavender:#a5a4fa;      /* accent */
  --cyan:#80e5ff;          /* accent */
  --pink:#ff9fd7;          /* accent */
  --orange:#fa6e43;        /* rare highlight accent */
  --bg:#f9fafb;
  --surface:#ffffff;
  --surface2:#f1f2f9;
  --tint:#e3e6fa;
  --border:#dfe1f5;
  --muted:#888891;

  /* Button gradient and layered glow, from the homepage CTA */
  --grad-btn:linear-gradient(123deg,#5967b5 -12%,#908eed 88.69%);
  --shadow-btn:0 1px 1px rgba(136,138,227,.46),0 4px 5px rgba(136,138,227,.4),0 12px 18px rgba(136,138,227,.24);
  --shadow-card:0 2px 6px rgba(84,92,158,.06),0 24px 60px rgba(84,92,158,.10);
  --radius-card:24px;
  --radius-btn:24px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Manrope',-apple-system,BlinkMacSystemFont,sans-serif;
  background:var(--bg);color:var(--ink);
  font-size:16.5px;line-height:1.7;-webkit-font-smoothing:antialiased;
  padding-top:104px; /* clears the fixed menu card */
}
.wrap{max-width:1080px;margin:0 auto;padding:0 28px;position:relative;z-index:1}
.narrow{max-width:820px}
.mono{font-weight:600;letter-spacing:.08em;font-size:.85em;color:var(--muted)}
a{color:var(--indigo);text-decoration:none;transition:color .15s}
a:hover{color:var(--indigo-deep)}

/* Background: the homepage's blurred blob art, fixed behind everything,
   with the same hue-rotate/saturate treatment and a slow crossfade. */
.ol-bg{position:fixed;inset:0;z-index:0;pointer-events:none;overflow:hidden;
  filter:hue-rotate(-20deg) saturate(1.14)}
.ol-bg img{position:absolute;inset:0;width:100%;height:100%;object-fit:contain}
.ol-bg img+img{opacity:0;animation:ol-bg-fade 24s ease-in-out infinite}
@keyframes ol-bg-fade{0%,35%{opacity:0}50%,85%{opacity:1}100%{opacity:0}}
@media (prefers-reduced-motion:reduce){.ol-bg img+img{animation:none}}

/* ---------------------------------------------------------------- */
/* Menu: the homepage's floating white card. Closed it holds the     */
/* logo, the 3x3 dot button and the call CTA; open it reveals two    */
/* columns of links.                                                 */
/* ---------------------------------------------------------------- */
nav.ol-nav{position:fixed;top:10px;left:0;right:0;z-index:50;display:flex;justify-content:center;pointer-events:none}
.ol-card{pointer-events:auto;background:var(--surface);border-radius:10px;
  box-shadow:0 2px 6px rgba(84,92,158,.08),0 18px 44px rgba(84,92,158,.14);
  width:340px;max-width:calc(100vw - 24px);overflow:hidden;
  transition:width .35s cubic-bezier(.3,.9,.3,1)}
.ol-card.open{width:460px}
.ol-bar{display:flex;align-items:center;justify-content:space-between;padding:10px 20px;height:67px}
.ol-logo img{width:72px;height:48px;object-fit:contain;display:block}
.ol-dots{background:none;border:none;cursor:pointer;padding:10px;border-radius:8px;display:grid;grid-template-columns:repeat(3,4px);gap:5px;transition:background .15s}
.ol-dots:hover{background:var(--surface2)}
.ol-dots span{width:4px;height:4px;border-radius:1px;background:var(--indigo-deep)}
.ol-cta{white-space:nowrap}
.ol-links{display:grid;grid-template-rows:0fr;opacity:0;transition:grid-template-rows .35s cubic-bezier(.3,.9,.3,1),opacity .25s}
.ol-card.open .ol-links{grid-template-rows:1fr;opacity:1}
.ol-links>div{overflow:hidden;display:flex;gap:0;padding:0 24px}
.ol-links ul{list-style:none;flex:1;padding:6px 0 18px}
.ol-links li a{display:block;padding:7px 0;font-size:16px;color:var(--indigo)}
.ol-links li a:hover,.ol-links li a.active{color:var(--indigo-deep)}
@media(max-width:560px){
  .ol-card{width:calc(100vw - 24px)}
  .ol-card.open{width:calc(100vw - 24px)}
  .ol-cta{display:none}
}

/* Buttons: homepage gradient pill */
.btn{display:inline-block;background:var(--grad-btn);color:#fff;font-weight:600;font-size:15px;
  padding:13px 22px;border-radius:var(--radius-btn);border:none;cursor:pointer;
  box-shadow:var(--shadow-btn);transition:transform .15s,box-shadow .15s,filter .15s}
.btn:hover{color:#fff;transform:translateY(-1px);filter:brightness(1.05)}
.btn.lg{padding:15px 30px;font-size:16px}
.btn.ghost{background:var(--surface);color:var(--indigo-deep);box-shadow:none;border:1px solid var(--border)}
.btn.ghost:hover{border-color:var(--indigo);filter:none}

/* Hero */
.hero{padding:72px 0 64px}
.eyebrow{font-size:12.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--indigo);margin-bottom:18px}
h1{font-size:56px;line-height:1.06;font-weight:500;color:var(--ink);letter-spacing:-0.045em;max-width:820px}
.hero p.lead{margin-top:22px;font-size:19.5px;max-width:640px;color:var(--ink)}
.hero .btn{margin-top:34px}
@media(max-width:720px){h1{font-size:38px}.hero{padding:48px 0 40px}body{padding-top:96px}}

section{padding:64px 0}
h2{font-size:34px;font-weight:500;color:var(--ink);letter-spacing:-0.03em;margin-bottom:16px;max-width:680px}
h3{font-size:18px;font-weight:700;color:var(--ink);margin-bottom:8px;letter-spacing:-0.01em}
p{margin-bottom:14px;max-width:66ch}
strong{color:var(--ink);font-weight:700}
.section-intro{font-size:17.5px;max-width:640px;margin-bottom:8px}

.grid2{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:36px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:36px}
@media(max-width:860px){.grid2,.grid3{grid-template-columns:1fr}}

.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-card);padding:32px;box-shadow:var(--shadow-card)}
.card .tag{font-size:11.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--indigo);display:block;margin-bottom:12px}
.card h3{margin-bottom:8px}
.card p{font-size:15px;margin-bottom:0}
.card p+p{margin-top:10px}
a.card-link{display:block;color:inherit;transition:transform .15s,box-shadow .15s}
a.card-link:hover{transform:translateY(-3px);color:inherit}
a.card-link .more{margin-top:16px;font-size:14.5px;font-weight:700;color:var(--indigo);display:inline-block}

/* Steps */
.steps{margin-top:36px;counter-reset:step}
.step{display:flex;gap:24px;padding:26px 0;border-bottom:1px solid var(--border)}
.step:last-child{border-bottom:none}
.step .n{font-size:13px;font-weight:700;letter-spacing:.08em;color:var(--indigo);min-width:44px;padding-top:4px}
.step h3{margin-bottom:4px}
.step p{font-size:15.5px;margin-bottom:0}

/* Governance band */
.band{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-card);padding:44px;box-shadow:var(--shadow-card);margin-top:36px}
.band .rule{font-size:24px;font-weight:500;letter-spacing:-0.02em;color:var(--ink);max-width:560px;margin-bottom:10px}
.band p{font-size:15.5px}

/* CTA section */
.cta{padding:88px 0;text-align:center}
.cta h2{margin:0 auto 14px;max-width:560px}
.cta p{margin:0 auto 30px;max-width:520px}

/* Form */
form{max-width:560px;margin-top:32px}
.field{margin-bottom:18px}
label{display:block;font-size:14px;font-weight:700;color:var(--ink);margin-bottom:7px}
input,textarea{width:100%;font-family:'Manrope',sans-serif;font-size:15.5px;color:var(--ink);background:var(--surface);border:1px solid var(--border);border-radius:14px;padding:13px 18px;outline:none;transition:border-color .15s,box-shadow .15s}
input:focus,textarea:focus{border-color:var(--indigo);box-shadow:0 0 0 3px rgba(117,132,214,.15)}
textarea{min-height:120px;resize:vertical}
.form-note{font-size:13.5px;color:var(--muted);margin-top:14px}
.thanks{display:none;background:var(--surface2);border:1px solid var(--border);border-radius:var(--radius-card);padding:28px;font-size:16px;color:var(--ink);font-weight:500}

footer{border-top:1px solid var(--border);padding:56px 0 64px;margin-top:0;position:relative;z-index:1;background:rgba(255,255,255,.55);backdrop-filter:blur(10px)}
.foot-grid{display:flex;justify-content:space-between;align-items:flex-start;gap:32px;flex-wrap:wrap}
.foot-logo img{width:87px;height:58px;object-fit:contain;display:block}
.foot-meta{font-size:13px;color:var(--muted);line-height:2;letter-spacing:.02em}
.foot-links{display:flex;gap:24px;flex-wrap:wrap;font-size:14px}
.foot-links a{color:var(--ink)}
.foot-links a:hover{color:var(--indigo-deep)}
.copyright{margin-top:36px;font-size:12.5px;color:var(--muted)}

/* Journal */
.article-head{padding:64px 0 32px}
.article-head h1{font-size:44px;max-width:780px}
@media(max-width:720px){.article-head h1{font-size:32px}}
.prose{max-width:760px;background:rgba(255,255,255,.66);backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.85);border-radius:28px;padding:44px 48px;box-shadow:var(--shadow-card)}
@media(max-width:720px){.prose{padding:28px 22px;border-radius:20px}}
.prose p{font-size:17px;line-height:1.78;margin-bottom:18px;max-width:none}
.prose h2{font-size:24px;margin:44px 0 12px}
.prose ul{margin:0 0 18px 22px}
.prose li{font-size:17px;line-height:1.7;margin-bottom:8px}
.j-card{display:block;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-card);padding:30px 34px;box-shadow:var(--shadow-card);color:inherit;margin-top:18px;transition:transform .15s}
.j-card:hover{transform:translateY(-3px);color:inherit}
.j-card .j-meta{font-size:11.5px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--indigo);margin-bottom:8px}
.j-card h3{font-size:20px;letter-spacing:-0.01em}
.j-card p{font-size:15px;margin:8px 0 0;color:var(--ink)}

/* Make main page blocks paint above the fixed background */
.hero,section,.cta,.article-head{position:relative;z-index:1}
