/* QuotaBird — design system.
   Two colors: ink and blue. Greys are ink at reduced opacity. Blue means "go"
   and appears on exactly one element per screen. Everything else is type,
   spacing and hairlines. See HANDOFF.md §8. */

@font-face { font-family:'Inter'; font-style:normal; font-weight:100 900; font-display:swap; src:url(inter.woff2) format('woff2'); }

/* ── Tokens ──
   Seeded from the bird (#9DD2FF, hue 207). Neutrals are that hue at very low
   chroma, so the page and the mark belong to each other. Components consume
   these roles and never a literal hex. */
:root {
  color-scheme:light dark;
  --brand:#9DD2FF;
  --bg:#F9FCFF; --bg-2:#EDF2F7; --bg-3:#E0E6EC;
  --ink:#131619; --ink-2:#556270; --ink-3:#667380; --line:#DDE4EA;
  --accent:#1DA1F2; --on-accent:#FFFFFF; --accent-soft:#C2E3FF; --on-accent-soft:#00182B;
  /* Verdict pastels. Text stays ink; only the background carries the verdict. */
  --v-green:#C6EBC9; --v-yellow:#FFF982; --v-orange:#FFCF8A; --v-red:#F5B3AD; --on-verdict:#131619;
  --r-sm:10px; --r-md:14px; --r-lg:20px; --r-full:9999px;
  --ease:cubic-bezier(.25,.1,.25,1); --ease-out:cubic-bezier(.16,1,.3,1); --spring:cubic-bezier(.34,1.3,.64,1);
  --font:'Inter',-apple-system,BlinkMacSystemFont,'SF Pro Text','Segoe UI',Roboto,sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    /* In the dark the button is the bird. */
    --bg:#101418; --bg-2:#1B1F24; --bg-3:#293038;
    --ink:#E8EDF2; --ink-2:#A7B2BC; --ink-3:#8C97A3; --line:#2A3138;
    --accent:#9DD2FF; --on-accent:#00182B; --accent-soft:#184B71; --on-accent-soft:#C2E3FF;
    /* Dimmed a step so a card on black reads as a sticky note, not a neon sign. */
    --v-green:#A6D4AB; --v-yellow:#E6DE72; --v-orange:#E3B06B; --v-red:#D68F88; --on-verdict:#131619;
  }
}

/* ── Base ── */
*, *::before, *::after { box-sizing:border-box; }
html, body { margin:0; background:var(--bg); color:var(--ink); font:400 17px/1.47 var(--font); letter-spacing:-.01em;
  -webkit-font-smoothing:antialiased; -webkit-tap-highlight-color:transparent; }
a { color:var(--accent); text-decoration:none; }
a:hover { text-decoration:underline; }
button { font:inherit; letter-spacing:inherit; color:inherit; }
strong { font-weight:600; color:var(--ink); }
p { margin:0 0 14px; }
.mono { font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; letter-spacing:0; }
.sr { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
:focus-visible { outline:2px solid var(--accent); outline-offset:3px; }
[tabindex="-1"]:focus { outline:none; }

/* ── Type ── */
h1 { font-size:36px; line-height:1.12; font-weight:700; letter-spacing:-.025em; margin:32px 0 12px; }
h2 { font-size:28px; line-height:1.15; font-weight:700; letter-spacing:-.02em; margin:0 0 14px; }
h3 { font-size:19px; line-height:1.3; font-weight:600; letter-spacing:-.01em; margin:28px 0 6px; }
.dek { font-size:19px; line-height:1.42; color:var(--ink-2); margin:0 0 28px; }
.lede { font-size:19px; line-height:1.42; color:var(--ink); }
.overline { display:block; font-size:12px; line-height:16px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-2); }
.fine { font-size:13px; line-height:1.4; letter-spacing:0; color:var(--ink-2); }
.band p, .band li { color:var(--ink-2); }
.band ul, .band ol { margin:0 0 14px; padding-left:22px; }
.band li { margin-bottom:6px; }

/* ── Layout ── */
.wrap { max-width:680px; margin:0 auto; padding:0 20px 32px; }
#screen { max-width:480px; margin:0; padding-bottom:48px; }   /* left edge lines up with the prose below */
.band { padding:56px 0; border-top:1px solid var(--line); }
.band-inner { max-width:680px; margin:0 auto; padding:0 20px; }
.sitefoot { padding:40px 20px calc(40px + env(safe-area-inset-bottom)); text-align:center; font-size:13px; line-height:1.5; color:var(--ink-2); }
.sitefoot p { margin:0 0 4px; }
.foot-nav { display:flex; justify-content:center; flex-wrap:wrap; gap:4px 14px; margin-bottom:14px !important; }
.foot-nav a { color:var(--ink); font-weight:500; text-decoration:none; }
.foot-nav a:hover { text-decoration:underline; }

/* ── Screen transition ── */
#screen.enter { animation:screen .42s var(--ease-out) both; }
@keyframes screen { from { opacity:0; transform:translateY(10px); } }

/* ── App bar ── */
.appbar { display:flex; align-items:center; justify-content:space-between; height:64px; }
.logo { display:inline-flex; align-items:center; gap:10px; font-size:19px; font-weight:600; letter-spacing:-.01em; color:var(--ink);
  background:none; border:0; padding:8px 8px 8px 0; cursor:pointer; white-space:nowrap; border-radius:var(--r-sm); }
.logo:hover { text-decoration:none; opacity:.8; }
.brandmark { display:block; height:34px; width:auto; }
.chip { display:inline-flex; align-items:center; height:32px; padding:0 14px; font-size:14px; font-weight:500; letter-spacing:-.005em;
  color:var(--ink); background:var(--bg-2); border:0; border-radius:var(--r-full); white-space:nowrap; transition:background .15s var(--ease); }
.chip:hover { background:var(--bg-3); text-decoration:none; }

/* Tools menu: a chip that opens a short list. No JS. */
.menu { position:relative; }
.menu summary { list-style:none; cursor:pointer; }
.menu summary::-webkit-details-marker { display:none; }
.menu[open] summary .chip { background:var(--bg-3); }
.menu-list { position:absolute; right:0; top:40px; z-index:10; min-width:220px; background:var(--bg); border:1px solid var(--line); border-radius:var(--r-md);
  box-shadow:0 8px 28px rgba(0,0,0,.10); padding:6px; animation:screen .22s var(--ease-out) both; }
.menu-list a { display:block; padding:10px 12px; border-radius:var(--r-sm); color:var(--ink); font-size:15px; font-weight:500; text-decoration:none; }
.menu-list a:hover { background:var(--bg-2); text-decoration:none; }
.menu-list a.current { color:var(--ink-2); font-weight:400; }
.menu-list { display:grid; grid-template-columns:1fr 1fr; gap:6px 12px; width:min(340px, calc(100vw - 32px)); padding:8px; }
.menu-g:nth-child(1) { grid-row:span 2; }
.menu-foot { grid-column:1 / -1; }
.menu-list a { padding:7px 10px; font-size:14px; white-space:nowrap; }
.menu-foot { display:flex; gap:4px; border-top:1px solid var(--line); margin-top:6px; padding-top:6px; }
.menu-foot a { font-size:13px; color:var(--ink-2); padding:6px 8px; }
.menu-group { font-size:11px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-3); padding:10px 12px 4px; }
.menu-group + a { margin-top:0; }
@media (prefers-color-scheme: dark) { .menu-list { box-shadow:0 8px 28px rgba(0,0,0,.5); } }

/* Choice chips (win-rate presets, year end) */
.chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.chip.on { background:var(--accent); color:var(--on-accent); }
.card-accent .chip { background:var(--bg); }
.card-accent .chip.on { background:var(--accent); color:var(--on-accent); }
.tf.inline { margin:0; flex:1 1 160px; }
.tf.inline input { height:40px; font-size:15px; }

.tool-name { margin-top:24px; }
.tool-name + h1 { margin-top:6px; }

/* ── QuotaBird: nav, home, notes ── */
.topnav { display:flex; align-items:center; gap:6px; }
.toplink { font-size:15px; font-weight:500; color:var(--ink-2); padding:6px 8px; border-radius:var(--r-sm); text-decoration:none; }
.toplink:hover { color:var(--ink); text-decoration:none; }
@media (max-width:699px) { .toplink { display:none; } }
@media (max-width:379px) { .chip-ask { display:none; } }
#screen.home-hero { max-width:620px; margin:0; padding-bottom:40px; }
.home-hero .dek { margin-bottom:20px; }
.home-hero h1 { font-size:clamp(34px, 7vw, 52px); line-height:1.06; margin-top:22px; }
.hero-ctas { display:flex; flex-direction:column; gap:10px; }
@media (min-width:560px) { .hero-ctas { flex-direction:row; } .hero-ctas .btn { flex:0 0 auto; } }
.doors { display:flex; flex-direction:column; gap:8px; margin:10px 0 8px; }
.doors .overline { margin:14px 0 0; }
.doors .overline:first-child { margin-top:0; }
.door { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px 18px; background:var(--bg-2);
  border-radius:var(--r-lg); color:var(--ink); text-decoration:none; transition:background .15s var(--ease); }
.door:hover { background:var(--bg-3); text-decoration:none; }
.door b { display:block; font-size:17px; font-weight:600; letter-spacing:-.01em; }
.door .q { display:block; font-size:15px; line-height:1.4; color:var(--ink-2); margin-top:2px; }
.door .to { font-size:14px; font-weight:600; color:var(--accent); white-space:nowrap; }
.door .to::after { content:' →'; }
@media (max-width:519px) { .door { display:block; } .door .to { display:block; margin-top:8px; } }
.note { max-width:680px; margin:0 auto; padding:8px 20px 48px; }
.note h1 { margin-top:10px; }
.note p { font-size:18px; line-height:1.6; color:var(--ink); }
.note p.lede { font-size:21px; line-height:1.45; }
.note h3 { font-size:20px; margin-top:30px; }
.note .card p { font-size:17px; }

/* ── Start, trust, booking ── */
.live { max-width:480px; margin-top:4px; }
.live .progress { margin:0 0 10px; }
.live .question { font-size:22px; margin:4px 0 14px; }
.live .choice { height:52px; font-size:17px; }
.live .choice-group { gap:8px; }
.live .choice { text-decoration:none; }
.live .choice-group { margin-bottom:6px; }
.live .startnote { text-align:left; margin-top:6px; }
.home-hero .sample { margin-top:28px; }
.startnote { font-size:13px; line-height:1.4; color:var(--ink-2); text-align:center; margin:10px 0 0; }
.home-hero .startnote { text-align:left; }
.byline { display:inline-flex; align-items:center; gap:10px; font-size:15px; line-height:1.35; color:var(--ink-2); margin:-8px 0 24px; text-decoration:none; }
.byline:hover { color:var(--ink); text-decoration:none; }
.byline img { width:32px; height:32px; border-radius:var(--r-full); object-fit:cover; flex:0 0 32px; }
.sample { max-width:480px; margin-top:32px; }
.sample .overline { margin-bottom:8px; }
.sample .verdict { margin:0; border-radius:var(--r-lg) var(--r-lg) 0 0; padding:22px 22px 20px; }
.sample .verdict-word, .sample .verdict-meta, .sample .verdict-attack { animation:none; }
.sample .verdict-word { font-size:36px; }
.sample .verdict-attack { font-size:18px; margin-top:12px; }
.sample-q { background:var(--bg-2); border-radius:0 0 var(--r-lg) var(--r-lg); padding:14px 22px 16px; }
.sample-q .overline { margin-bottom:4px; }
.sample-q p { margin:0; font-size:16px; color:var(--ink); }
.steps { list-style:none; counter-reset:step; padding:0; margin:16px 0 18px; }
.band .steps li { counter-increment:step; position:relative; padding:4px 0 14px 46px; margin:0; color:var(--ink-2); }
.steps li::before { content:counter(step); position:absolute; left:0; top:0; width:30px; height:30px; border-radius:var(--r-full);
  background:var(--bg-2); color:var(--ink); font-weight:700; font-size:14px; display:flex; align-items:center; justify-content:center; }
.steps li b { color:var(--ink); font-weight:600; }
@media (max-width:519px) { #about .btn-row .btn { flex:1 1 100%; } }   /* booking buttons stack on phones so neither label is cut */
.startbar { position:fixed; left:0; right:0; bottom:calc(14px + env(safe-area-inset-bottom)); z-index:25; display:flex; justify-content:center;
  pointer-events:none; animation:screen .25s var(--ease-out) both; }
.startbar[hidden] { display:none; }
.startbar .btn { pointer-events:auto; min-width:230px; box-shadow:0 8px 24px rgba(0,0,0,.18); }
#screen.nf { margin:0 auto; }
.wide-page .band-inner { max-width:920px; }
.wide-page .band-inner > * { max-width:680px; }

/* ── Pipeline Check: calculator ── */
#screen.calc-screen { max-width:480px; }
.wrap.wide { max-width:920px; }
.calc-in .tf-label small { font-weight:400; color:var(--ink-3); }
.calc-out { margin-top:8px; }
.calc-out2 { margin-top:4px; }
.fields-note { text-align:left; margin:0 0 10px; }
.home-calc h1 { font-size:clamp(34px, 7vw, 46px); line-height:1.06; }
.home-calc .dek { margin-bottom:18px; }
.clock { font-size:15px; line-height:1.45; color:var(--ink-2); margin:4px 2px 16px; }
@media (min-width:880px) {
  #screen.calc-screen { max-width:880px; }
  .calc-screen h1, .calc-screen .dek { max-width:620px; }
  .calc { display:grid; grid-template-columns:minmax(0,5fr) minmax(0,6fr); grid-template-areas:'form out' 'form out2'; gap:0 32px; align-items:start; }
  .calc-in { grid-area:form; }
  .calc-out { grid-area:out; margin-top:0; }
  .calc-out2 { grid-area:out2; }
}
.cbar { margin:4px 0 14px; }
.cbar-track { position:relative; height:14px; background:var(--bg-3); border-radius:var(--r-full); margin:26px 0 8px; }
.cbar-fill { position:absolute; left:0; top:0; bottom:0; background:var(--ink); border-radius:var(--r-full); transition:width .45s var(--ease-out); }
.cbar-gap { position:absolute; top:0; bottom:0; border-radius:0 var(--r-full) var(--r-full) 0; opacity:.95;
  background-image:repeating-linear-gradient(135deg, rgba(0,0,0,.10) 0 4px, transparent 4px 8px); transition:left .45s var(--ease-out), width .45s var(--ease-out); }
.cbar-mark { position:absolute; top:-6px; bottom:-6px; width:2px; margin-left:-1px; background:var(--ink-2); transition:left .45s var(--ease-out); }
.cbar-mark span { position:absolute; bottom:calc(100% + 2px); left:50%; transform:translateX(-50%); font-size:12px; font-weight:600; color:var(--ink-2); white-space:nowrap; }
.cbar-mark.you { background:var(--ink); width:3px; }
.cbar-mark.you span { color:var(--ink); }
.cbar-legend { display:flex; gap:16px; font-size:13px; color:var(--ink-2); }
.cbar-legend i { display:inline-block; width:10px; height:10px; border-radius:3px; margin-right:6px; vertical-align:-1px; }
.cbar-legend .k-fill { background:var(--ink); }
.sumbar { position:fixed; left:12px; right:12px; bottom:calc(12px + env(safe-area-inset-bottom)); z-index:20; color:var(--on-verdict);
  border-radius:var(--r-md); padding:12px 16px; font-size:15px; box-shadow:0 6px 24px rgba(0,0,0,.18); animation:screen .25s var(--ease-out) both; }
.sumbar b { font-weight:700; margin-right:4px; }
@media (min-width:880px) { .sumbar { display:none; } }

/* ── Buttons ──
   Button labels: 18 characters or fewer, always one line. Details go in the text around
   the button, never in the label. */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; height:44px; padding:0 22px;
  font-size:16px; font-weight:600; letter-spacing:-.01em; border:0; border-radius:var(--r-full); cursor:pointer; text-decoration:none;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; background:var(--bg-2); color:var(--ink);
  transition:transform .15s var(--ease), background .15s var(--ease), opacity .15s var(--ease); }
.btn:hover { text-decoration:none; background:var(--bg-3); }
.card .btn:not(.btn-primary):not(.btn-text) { background:var(--bg); }
.btn:active { transform:scale(.97); }
.btn-primary { background:var(--accent); color:var(--on-accent); }
.btn-primary:hover { background:var(--accent); opacity:.9; }
.btn-text { background:none; color:var(--accent); padding:0 10px; height:40px; font-weight:500; }
.btn-text:hover { background:none; text-decoration:underline; }
.btn-lg { height:54px; padding:0 28px; font-size:17px; }
.btn-full { width:100%; }
.btn-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.btn-row .btn { flex:1 1 150px; }
.btn-row.center { justify-content:center; }
.btn-row.center .btn { flex:0 1 auto; }

/* ── Choices (answers) ── */
.choice-group { display:flex; flex-direction:column; gap:10px; margin:0 0 20px; }
.choice { display:flex; align-items:center; justify-content:center; height:60px; width:100%; font-size:19px; font-weight:600; letter-spacing:-.01em;
  background:var(--bg-2); color:var(--ink); border:0; border-radius:var(--r-lg); cursor:pointer;
  transition:transform .15s var(--ease), background .15s var(--ease); }
.choice:hover { background:var(--accent-soft); color:var(--on-accent-soft); }
.choice:active { transform:scale(.98); background:var(--accent-soft); color:var(--on-accent-soft); }

/* ── Segmented progress ── */
.progress { display:flex; gap:6px; margin:12px 0 28px; }
.progress i { flex:1; height:4px; border-radius:var(--r-full); background:var(--bg-3); transition:background .3s var(--ease); }
.progress i.done { background:var(--accent); }

/* ── Cards ── */
.card { background:var(--bg-2); border-radius:var(--r-lg); padding:20px; }
.card + .card { margin-top:12px; }
.card h3 { margin:0 0 6px; font-size:17px; }
.card p { margin:0 0 6px; font-size:15px; line-height:1.45; color:var(--ink-2); }
.card p:last-child { margin-bottom:0; }
.card .overline { margin-bottom:6px; }
.card .lede { font-size:17px; color:var(--ink); }
.card-accent { background:var(--accent-soft); color:var(--on-accent-soft); }
.card-accent .overline, .card-accent p, .card-accent .lede { color:inherit; }
.card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:12px; margin:16px 0 8px; }
.card-grid .card { margin:0; }

/* ── Verdict ── */
.verdict { color:var(--on-verdict); border-radius:var(--r-lg); padding:28px 24px 26px; margin:8px 0 12px; }
.verdict-ready { background:var(--v-green); }
.verdict-proof { background:var(--v-yellow); }
.verdict-prove { background:var(--v-orange); }
.verdict-dont  { background:var(--v-red); }
.verdict-number { font-size:76px; line-height:1; font-weight:700; letter-spacing:-.04em; animation:pop .55s var(--spring) both; }
/* The verdict word is the hero. Sized to fit two lines at the narrowest phone;
   never breaks mid-word, never overflows the card. Keep labels to 15 characters. */
.verdict-word { font-size:clamp(34px, 11.5vw, 48px); line-height:1.02; font-weight:700; letter-spacing:-.03em; text-transform:uppercase;
  text-wrap:balance; overflow-wrap:normal; animation:pop .55s var(--spring) both; }
.verdict-meta { font-size:15px; line-height:1.4; font-weight:500; margin-top:10px; opacity:.8; animation:pop .55s var(--spring) .06s both; }
.verdict-label { font-size:22px; line-height:1.2; font-weight:600; letter-spacing:-.01em; margin-top:8px; opacity:.92; animation:pop .55s var(--spring) .06s both; }
.verdict-attack { font-size:21px; line-height:1.3; font-weight:500; letter-spacing:-.015em; margin-top:18px; animation:fade .5s var(--ease-out) .18s both; }
.verdict-sub { font-size:15px; line-height:1.45; margin-top:8px; opacity:.72; animation:fade .5s var(--ease-out) .26s both; }
@keyframes pop { from { opacity:0; transform:translateY(14px) scale(.92); } }
@keyframes fade { from { opacity:0; transform:translateY(6px); } }

/* ── Lists ── */
.list { background:var(--bg-2); border-radius:var(--r-lg); padding:2px 20px; margin:12px 0; }
.list-item { display:flex; align-items:center; justify-content:space-between; gap:16px; min-height:52px; padding:10px 0; border-bottom:1px solid var(--line); }
.list-item:last-child { border-bottom:0; }
.list-item .headline { font-size:16px; color:var(--ink); }
.list-item .trailing { font-size:15px; font-weight:500; color:var(--ink-2); white-space:nowrap; }
.list-item .trailing.strong { font-size:17px; font-weight:600; color:var(--ink); }
.list-item .trailing.v-no { color:var(--ink); font-weight:600; }
.list-item.compact { min-height:44px; }
.list-item.compact .headline { font-size:15px; color:var(--ink-2); }

/* ── Expansion ── */
details.exp { border-bottom:1px solid var(--line); }
details.exp summary { display:flex; align-items:center; justify-content:space-between; gap:16px; min-height:56px; padding:10px 0;
  font-size:17px; font-weight:500; cursor:pointer; list-style:none; }
details.exp summary::-webkit-details-marker { display:none; }
details.exp summary::after { content:''; width:9px; height:9px; flex:0 0 9px; border-right:1.5px solid var(--ink-3); border-bottom:1.5px solid var(--ink-3);
  transform:rotate(45deg) translate(-2px,-2px); margin-right:6px; transition:transform .25s var(--ease); }
details.exp[open] summary::after { transform:rotate(225deg) translate(-2px,-2px); }
details.exp .body { font-size:16px; line-height:1.5; color:var(--ink-2); padding:0 0 18px; }
details.exp .body p { margin:0 0 8px; }
details.exp.quiet { border-bottom:0; }
details.exp.quiet summary { font-size:15px; color:var(--accent); min-height:44px; }

/* ── Text fields ── */
.tf { display:block; margin-bottom:12px; }
.tf .tf-label { display:block; font-size:13px; font-weight:500; color:var(--ink-2); margin:0 0 6px 2px; }
.tf input { width:100%; height:50px; padding:0 16px; font:500 19px/1 var(--font); letter-spacing:-.01em; color:var(--ink);
  background:var(--bg-2); border:1.5px solid transparent; border-radius:var(--r-md); outline:none; transition:border-color .15s var(--ease), background .15s var(--ease); }
.tf input:focus { border-color:var(--accent); background:var(--bg); }
.tf input::placeholder { color:var(--ink-3); font-weight:400; }
.tf-grid { display:grid; grid-template-columns:1fr 1fr; gap:0 12px; }
.supporting { font-size:13px; line-height:1.4; color:var(--ink-2); margin:-2px 2px 18px; }

/* ── Preview, banner ── */
.preview { background:var(--bg); border:1px solid var(--line); border-radius:var(--r-md); padding:14px 16px; font-size:14px; line-height:1.55; color:var(--ink-2); margin:12px 0 4px; overflow-wrap:anywhere; }
.banner { background:var(--bg-2); border-radius:var(--r-md); padding:12px 16px; font-size:15px; line-height:1.45; color:var(--ink-2); margin-bottom:12px; }
.banner button { background:none; border:0; padding:0; color:var(--accent); cursor:pointer; font:inherit; }
.banner button:hover { text-decoration:underline; }

/* ── Bio ── */
.who img { float:left; width:112px; height:112px; border-radius:var(--r-full); object-fit:cover; shape-outside:circle(50%); margin:4px 24px 12px 0; }
.who::after { content:''; display:block; clear:both; }
@media (max-width:560px) { .who img { width:88px; height:88px; margin-right:16px; } }

/* ── Misc ── */
.question { font-size:28px; line-height:1.18; font-weight:700; letter-spacing:-.02em; margin:10px 0 28px; }
.question-lg { font-size:26px; line-height:1.22; font-weight:600; letter-spacing:-.02em; margin:14px 0 28px; color:var(--ink); }
.empty { background:var(--bg-2); border-radius:var(--r-lg); padding:20px; font-size:15px; line-height:1.45; color:var(--ink-2); }
.pillars { font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-3); margin:18px 0 0; text-align:center; }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; } }
