/* ============================================================
   DataBison marketing site
   Design tokens mirror the real app's src/index.css (dark-first)
   ============================================================ */

:root{
  --background: 220 22% 7%;
  --surface: 220 18% 10%;
  --surface-raised: 220 18% 13%;
  --border-subtle: 220 16% 17%;
  --border: 217 14% 23%;
  --foreground: 220 25% 93%;
  --muted-foreground: 218 13% 66%;
  --subtle-foreground: 220 10% 46%;
  --accent: 172 60% 45%;
  --accent-foreground: 180 45% 8%;
  --danger: 4 72% 62%;
  --danger-foreground: 0 0% 100%;
  --warning: 38 75% 58%;
  --warning-foreground: 38 90% 10%;
  --success: 150 45% 48%;
  --success-foreground: 150 90% 8%;
  --ring: 172 60% 45%;

  /* literal brand-mark colors, used sparingly for hero glow / logo */
  --brand-teal:#3FCFB8;
  --brand-deep:#0B2E2A;

  --maxw:1180px;
  --r-sm:4px;
  --r-md:6px;
  --r-lg:8px;
  --r-xl:12px;

  --shadow-elevated:0 4px 16px -4px hsl(220 40% 2% / 0.35), 0 1px 2px hsl(220 40% 2% / 0.3);
  --shadow-popover:0 8px 24px -6px hsl(220 40% 2% / 0.45), 0 2px 6px hsl(220 40% 2% / 0.3);

  color-scheme: dark;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Helvetica,Arial,sans-serif;
  color:hsl(var(--foreground));
  background:hsl(var(--background));
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
::selection{background:hsl(var(--accent) / .3)}
* { scrollbar-width: thin; scrollbar-color: hsl(var(--border)) transparent; }
*::-webkit-scrollbar{width:10px;height:10px}
*::-webkit-scrollbar-track{background:transparent}
*::-webkit-scrollbar-thumb{background-color:hsl(var(--border));border-radius:999px;border:2px solid transparent;background-clip:padding-box}

:focus-visible{outline:none;box-shadow:0 0 0 2px hsl(var(--background)),0 0 0 4px hsl(var(--ring))}

/* ---------- type ---------- */
h1,h2,h3,h4{font-weight:650;line-height:1.08;letter-spacing:-.02em;margin:0}
h1{font-size:clamp(2.3rem,5vw,3.7rem)}
h2{font-size:clamp(1.7rem,3.4vw,2.5rem)}
h3{font-size:clamp(1.1rem,1.8vw,1.3rem)}
p{margin:0 0 1em}
a{color:hsl(var(--accent));text-decoration:none}
a:hover{text-decoration:underline}
.lead{font-size:clamp(1.05rem,1.6vw,1.25rem);color:hsl(var(--muted-foreground));line-height:1.55}
.mono{font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,"Liberation Mono",monospace}
.muted{color:hsl(var(--muted-foreground))}
.subtle{color:hsl(var(--subtle-foreground))}
.accent-text{color:hsl(var(--accent))}

.eyebrow{
  display:inline-flex;align-items:center;gap:.5em;
  font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;
  text-transform:uppercase;letter-spacing:.12em;font-size:.72rem;font-weight:600;
  color:hsl(var(--accent));
}
.eyebrow::before{content:"";width:16px;height:1.5px;background:hsl(var(--accent) / .6)}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px}
section{position:relative}
section[id]{scroll-margin-top:84px}
.section-pad{padding:88px 0}
.section-pad-sm{padding:56px 0}
@media (max-width:720px){
  .section-pad{padding:60px 0}
  .section-pad-sm{padding:40px 0}
}

.section-head{max-width:52ch;margin-bottom:44px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-head h2{margin-top:12px}
.section-head .lead{margin-top:12px}

hr.div{border:none;border-top:1px solid hsl(var(--border-subtle));margin:0}

/* ---------- wordmark ---------- */
.wordmark{display:inline-flex;align-items:center;gap:10px;font-weight:650;font-size:1.15rem;letter-spacing:-.01em;color:hsl(var(--foreground))}
.wordmark img{width:26px;height:26px;border-radius:6px;display:block}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55em;
  font-weight:600;font-size:.95rem;font-family:inherit;
  color:hsl(var(--accent-foreground));background:hsl(var(--accent));
  padding:.75em 1.4em;border:1px solid transparent;border-radius:var(--r-md);
  cursor:pointer;box-shadow:var(--shadow-elevated);
  transition:transform .12s ease, box-shadow .12s ease, opacity .12s ease, background .15s ease;
  white-space:nowrap;
}
.btn:hover{text-decoration:none;transform:translateY(-1px);box-shadow:var(--shadow-popover)}
.btn:active{transform:translateY(0)}
.btn.btn-lg{padding:.95em 1.7em;font-size:1.02rem}
.btn.btn-ghost{background:transparent;color:hsl(var(--foreground));border-color:hsl(var(--border));box-shadow:none}
.btn.btn-ghost:hover{background:hsl(var(--surface-raised));border-color:hsl(var(--border))}
.btn.btn-disabled{background:hsl(var(--surface-raised));color:hsl(var(--subtle-foreground));border-color:hsl(var(--border-subtle));box-shadow:none;cursor:not-allowed}
.btn.btn-disabled:hover{transform:none;box-shadow:none}
.btn svg{flex:none}

/* ---------- badges / pills / chips ---------- */
.pill{
  display:inline-flex;align-items:center;gap:.5em;
  font-size:.78rem;font-weight:600;
  padding:.42em .9em;border-radius:999px;
  border:1px solid hsl(var(--border));background:hsl(var(--surface-raised));
  color:hsl(var(--muted-foreground));
}
.pill .dot{width:6px;height:6px;border-radius:50%;background:hsl(var(--accent));flex:none}
.pill-beta{border-color:hsl(var(--accent) / .4);color:hsl(var(--accent));background:hsl(var(--accent) / .08)}

.badge{
  display:inline-flex;align-items:center;gap:.4em;
  font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;
  font-size:.72rem;font-weight:600;letter-spacing:.02em;
  padding:.3em .65em;border-radius:var(--r-sm);
  border:1px solid hsl(var(--border-subtle));
}
.badge-success{color:hsl(var(--success));background:hsl(var(--success) / .1);border-color:hsl(var(--success) / .3)}
.badge-warning{color:hsl(var(--warning));background:hsl(var(--warning) / .1);border-color:hsl(var(--warning) / .3)}
.badge-danger{color:hsl(var(--danger));background:hsl(var(--danger) / .1);border-color:hsl(var(--danger) / .3)}
.badge-neutral{color:hsl(var(--subtle-foreground));background:hsl(var(--surface-raised))}

/* ---------- trust-strip badges under hero ---------- */
.trust-strip{display:flex;flex-wrap:wrap;gap:10px}

/* ---------- cards ---------- */
.card{
  background:hsl(var(--surface));
  border:1px solid hsl(var(--border-subtle));
  border-radius:var(--r-xl);
  padding:28px;
}
.card-raised{background:hsl(var(--surface-raised))}
.card h3{margin-bottom:8px}
.card p:last-child{margin-bottom:0}
.icon-tile{
  width:38px;height:38px;border-radius:var(--r-md);
  display:grid;place-items:center;margin-bottom:16px;
  background:hsl(var(--accent) / .1);color:hsl(var(--accent));
  border:1px solid hsl(var(--accent) / .2);
}
.icon-tile svg{width:19px;height:19px}

.grid{display:grid;gap:22px}
.cols-2{grid-template-columns:repeat(2,1fr)}
.cols-3{grid-template-columns:repeat(3,1fr)}
.cols-4{grid-template-columns:repeat(4,1fr)}
@media (max-width:900px){
  .cols-3{grid-template-columns:repeat(2,1fr)}
  .cols-4{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .cols-2,.cols-3,.cols-4{grid-template-columns:1fr}
}

/* ---------- spotlight (2-col feature) sections ---------- */
.spotlight{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.spotlight.reverse .spotlight-copy{order:2}
.spotlight.reverse .spotlight-visual{order:1}
.spotlight-copy ul{margin:20px 0 0;padding:0;list-style:none;display:flex;flex-direction:column;gap:14px}
.spotlight-copy ul li{display:flex;gap:12px;font-size:.96rem;color:hsl(var(--muted-foreground))}
.spotlight-copy ul li strong{color:hsl(var(--foreground));font-weight:600}
.spotlight-copy ul li .check{flex:none;width:18px;height:18px;margin-top:.2em;color:hsl(var(--accent))}
@media (max-width:900px){
  .spotlight, .spotlight.reverse{grid-template-columns:1fr;gap:32px}
  .spotlight.reverse .spotlight-copy{order:1}
  .spotlight.reverse .spotlight-visual{order:2}
}

/* ---------- app-window mockup ---------- */
.app-window{
  background:hsl(var(--surface));border:1px solid hsl(var(--border-subtle));
  border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-popover);
}
.app-window__bar{
  height:38px;display:flex;align-items:center;gap:7px;padding:0 14px;
  background:hsl(var(--surface-raised));border-bottom:1px solid hsl(var(--border-subtle));
}
.app-window__dot{width:9px;height:9px;border-radius:50%}
.app-window__dot.d1{background:hsl(var(--danger) / .6)}
.app-window__dot.d2{background:hsl(var(--warning) / .6)}
.app-window__dot.d3{background:hsl(var(--success) / .6)}
.app-window__title{
  margin-left:6px;font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;
  font-size:.74rem;color:hsl(var(--subtle-foreground));
}
.app-window__body{padding:22px;display:flex;flex-direction:column;gap:16px}

.conn-row{
  display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:var(--r-md);
  background:hsl(var(--surface-raised));border:1px solid hsl(var(--border-subtle));
  font-size:.85rem;
}
.conn-row .env-dot{width:8px;height:8px;border-radius:50%;flex:none}
.env-dot.local{background:hsl(var(--subtle-foreground))}
.env-dot.dev{background:hsl(var(--accent))}
.env-dot.staging{background:hsl(var(--warning))}
.env-dot.prod{background:hsl(var(--danger))}
.conn-row .name{font-weight:600;color:hsl(var(--foreground))}
.conn-row .meta{margin-left:auto;font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;font-size:.74rem;color:hsl(var(--subtle-foreground))}

.toggle-row{display:flex;gap:6px;flex-wrap:wrap}
.toggle-pill{
  font-size:.78rem;padding:.4em .8em;border-radius:999px;
  border:1px solid hsl(var(--border));color:hsl(var(--subtle-foreground));
  font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;
}
.toggle-pill.active{border-color:hsl(var(--accent) / .5);color:hsl(var(--accent));background:hsl(var(--accent) / .1)}

.status-line{
  display:flex;align-items:center;gap:10px;padding:12px 14px;border-radius:var(--r-md);
  background:hsl(var(--success) / .08);border:1px solid hsl(var(--success) / .25);
  font-size:.84rem;color:hsl(var(--success));
}
.status-line .pulse{width:7px;height:7px;border-radius:50%;background:hsl(var(--success));flex:none;box-shadow:0 0 0 0 hsl(var(--success) / .5);animation:pulse 2s infinite}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 hsl(var(--success) / .45)}
  70%{box-shadow:0 0 0 7px hsl(var(--success) / 0)}
  100%{box-shadow:0 0 0 0 hsl(var(--success) / 0)}
}

.scan-row{display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--r-md);border:1px solid hsl(var(--border-subtle));font-size:.84rem}
.scan-row .glyph{flex:none;width:20px;height:20px;color:hsl(var(--muted-foreground))}
.scan-row .name{font-weight:600}
.scan-row .port{margin-left:auto;font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;font-size:.74rem;color:hsl(var(--subtle-foreground))}
.scan-note{display:flex;align-items:center;gap:8px;font-size:.78rem;color:hsl(var(--accent));padding-left:4px}

/* ---------- feature tour grid ---------- */
.feature-item{display:flex;gap:16px}
.feature-item .icon-tile{flex:none;margin-bottom:0}
.feature-item h3{margin-bottom:6px;font-size:1.05rem}
.feature-item p{color:hsl(var(--muted-foreground));font-size:.92rem;margin:0}

/* ---------- under the hood ---------- */
.stack-diagram{display:flex;flex-direction:column;gap:10px}
.stack-layer{
  border:1px solid hsl(var(--border-subtle));border-radius:var(--r-md);
  padding:16px 18px;background:hsl(var(--surface));
}
.stack-layer .k{font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;font-size:.72rem;text-transform:uppercase;letter-spacing:.08em;color:hsl(var(--accent));display:block;margin-bottom:4px}
.stack-layer .v{font-size:.92rem;color:hsl(var(--muted-foreground))}
.stack-layer.omit{
  border-style:dashed;opacity:.55;text-decoration:line-through;
}

/* ---------- comparison table ---------- */
.table-wrap{overflow-x:auto;border:1px solid hsl(var(--border-subtle));border-radius:var(--r-lg)}
table.compare{width:100%;border-collapse:collapse;font-size:.9rem;min-width:640px}
table.compare th, table.compare td{text-align:left;padding:14px 18px;border-bottom:1px solid hsl(var(--border-subtle));vertical-align:top}
table.compare thead th{
  background:hsl(var(--surface-raised));font-size:.72rem;text-transform:uppercase;letter-spacing:.08em;
  color:hsl(var(--subtle-foreground));font-weight:600;
}
table.compare tbody tr:last-child td{border-bottom:none}
table.compare tbody tr:hover{background:hsl(var(--surface-raised) / .5)}
table.compare td.angle{font-weight:600;color:hsl(var(--foreground));white-space:nowrap}
table.compare td{color:hsl(var(--muted-foreground))}

/* ---------- engines table (supported databases) ---------- */
table.engines{width:100%;border-collapse:collapse;font-size:.88rem;min-width:580px}
table.engines th,table.engines td{text-align:left;padding:12px 16px;border-bottom:1px solid hsl(var(--border-subtle))}
table.engines thead th{background:hsl(var(--surface-raised));font-size:.7rem;text-transform:uppercase;letter-spacing:.08em;color:hsl(var(--subtle-foreground))}
table.engines td.eng{font-weight:600}
table.engines td.drv{font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;font-size:.8rem;color:hsl(var(--accent))}
table.engines td{color:hsl(var(--muted-foreground))}
table.engines tbody tr:last-child td{border-bottom:none}

/* ---------- trust checklist ---------- */
.trust-item{display:flex;gap:14px;padding:20px 0;border-bottom:1px solid hsl(var(--border-subtle))}
.trust-item:last-child{border-bottom:none}
.trust-item .check{
  flex:none;width:26px;height:26px;border-radius:50%;
  background:hsl(var(--success) / .12);color:hsl(var(--success));
  display:grid;place-items:center;margin-top:2px;
}
.trust-item .check svg{width:14px;height:14px}
.trust-item h3{font-size:1rem;margin-bottom:4px}
.trust-item p{margin:0;color:hsl(var(--muted-foreground));font-size:.9rem}

/* ---------- parser demo ---------- */
.demo-panel{background:hsl(var(--surface));border:1px solid hsl(var(--border-subtle));border-radius:var(--r-xl);padding:26px;box-shadow:var(--shadow-elevated)}
.demo-input-row{display:flex;gap:10px;align-items:center}
.demo-input{
  flex:1;font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;font-size:.92rem;
  background:hsl(var(--background));border:1px solid hsl(var(--border));border-radius:var(--r-md);
  color:hsl(var(--foreground));padding:.85em 1em;outline:none;
}
.demo-input:focus{border-color:hsl(var(--ring));box-shadow:0 0 0 3px hsl(var(--ring) / .18)}
.demo-examples{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
.demo-example{
  font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;font-size:.74rem;
  color:hsl(var(--muted-foreground));background:hsl(var(--surface-raised));
  border:1px solid hsl(var(--border-subtle));border-radius:999px;padding:.35em .85em;
  cursor:pointer;transition:.15s;
}
.demo-example:hover{color:hsl(var(--accent));border-color:hsl(var(--accent) / .4)}
.demo-output{margin-top:20px;border-top:1px solid hsl(var(--border-subtle));padding-top:20px}
.demo-fields{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:14px}
.demo-field .k{font-size:.68rem;text-transform:uppercase;letter-spacing:.08em;color:hsl(var(--subtle-foreground));margin-bottom:4px}
.demo-field .v{font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;font-size:.92rem;color:hsl(var(--foreground));word-break:break-all}
.demo-field .v.empty{color:hsl(var(--subtle-foreground))}
.demo-field .v.locked{color:hsl(var(--warning));display:flex;align-items:center;gap:6px}
.demo-field .v.locked svg{width:12px;height:12px;flex:none}
.demo-hint{margin-top:16px;font-size:.78rem;color:hsl(var(--subtle-foreground))}
.demo-hint strong{color:hsl(var(--muted-foreground))}

/* ---------- download section ---------- */
.dl-card{position:relative;display:flex;flex-direction:column;gap:4px}
.dl-card.is-soon{opacity:.6}
.dl-card__icon{width:36px;height:36px;color:hsl(var(--muted-foreground));margin-bottom:8px}
.dl-card h3{font-size:1.15rem}
.dl-card .filemeta{font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;font-size:.74rem;color:hsl(var(--subtle-foreground));margin-top:10px}
.dl-note{display:flex;gap:8px;font-size:.8rem;color:hsl(var(--subtle-foreground));margin-top:12px;line-height:1.5}
.dl-note svg{flex:none;width:15px;height:15px;margin-top:.15em;color:hsl(var(--warning))}
.dl-toast{
  position:fixed;bottom:24px;left:50%;transform:translateX(-50%) translateY(20px);
  background:hsl(var(--surface-raised));border:1px solid hsl(var(--border));
  border-radius:var(--r-md);padding:.8em 1.2em;font-size:.85rem;box-shadow:var(--shadow-popover);
  opacity:0;pointer-events:none;transition:opacity .25s ease, transform .25s ease;z-index:80;
  display:flex;align-items:center;gap:10px;
}
.dl-toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
.dl-toast svg{width:16px;height:16px;color:hsl(var(--success));flex:none}

/* ---------- good-to-know list ---------- */
.gtk-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
.gtk-list li{display:flex;gap:10px;font-size:.86rem;color:hsl(var(--muted-foreground))}
.gtk-list li::before{content:"";flex:none;width:5px;height:5px;border-radius:50%;background:hsl(var(--subtle-foreground));margin-top:.6em}

/* ---------- reveal ---------- */
[data-reveal]{opacity:0;transform:translateY(18px);transition:opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1)}
[data-reveal].in{opacity:1;transform:none}
[data-reveal][data-delay="1"]{transition-delay:.06s}
[data-reveal][data-delay="2"]{transition-delay:.12s}
[data-reveal][data-delay="3"]{transition-delay:.18s}
[data-reveal][data-delay="4"]{transition-delay:.24s}
@media (prefers-reduced-motion: reduce){
  *{animation:none!important}
  [data-reveal]{opacity:1!important;transform:none!important}
  html{scroll-behavior:auto}
}

/* ---------- header ---------- */
.site-head{
  position:sticky;top:0;z-index:70;
  background:hsl(var(--background) / .82);backdrop-filter:blur(10px);
  border-bottom:1px solid hsl(var(--border-subtle));
}
.site-head .wrap{display:flex;align-items:center;gap:20px;height:68px}
.nav{margin-left:auto;display:flex;align-items:center;gap:4px}
.nav a{
  font-weight:500;font-size:.9rem;color:hsl(var(--muted-foreground));
  padding:.5em .85em;border-radius:var(--r-md);transition:.15s;
}
.nav a:hover{color:hsl(var(--foreground));background:hsl(var(--surface-raised));text-decoration:none}
.nav .btn{margin-left:8px}
.hamb{
  display:none;margin-left:auto;background:none;border:1px solid hsl(var(--border));
  border-radius:var(--r-md);width:38px;height:38px;color:hsl(var(--foreground));cursor:pointer;
  align-items:center;justify-content:center;
}
@media (max-width:860px){
  .nav{
    position:fixed;top:68px;left:0;right:0;background:hsl(var(--background));
    border-bottom:1px solid hsl(var(--border-subtle));
    flex-direction:column;align-items:stretch;gap:2px;padding:10px 20px 18px;
    transform:translateY(-8px);opacity:0;pointer-events:none;transition:.18s ease;
  }
  .nav.open{transform:translateY(0);opacity:1;pointer-events:auto}
  .nav a{padding:.75em .5em;border-radius:var(--r-sm)}
  .nav .btn{margin-left:0;margin-top:8px;justify-content:center}
  .hamb{display:flex}
}

/* ---------- hero ---------- */
.hero{
  padding:96px 0 64px;position:relative;overflow:hidden;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, hsl(var(--accent) / .16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 0%, var(--brand-deep) 0%, transparent 55%);
}
.hero::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.5;
  background-image:radial-gradient(hsl(var(--border-subtle)) 1px, transparent 1px);
  background-size:26px 26px;
  mask-image:linear-gradient(to bottom, black, transparent 75%);
}
.hero .wrap{position:relative}
.hero-top{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:22px}
.hero h1{max-width:18ch}
.hero h1 .accent-text{display:block}
.hero .lead{max-width:56ch;margin-top:18px}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-top:32px;align-items:center}
.fine{font-size:.78rem;color:hsl(var(--subtle-foreground))}
.hero .trust-strip{margin-top:36px}
@media (max-width:720px){
  .hero{padding:56px 0 44px}
}

/* ---------- footer ---------- */
.site-foot{margin-top:20px;border-top:1px solid hsl(var(--border-subtle));background:hsl(var(--surface) / .5)}
.site-foot .wrap{padding:56px 28px 34px}
.foot-grid{display:flex;flex-wrap:wrap;gap:44px;justify-content:space-between}
.foot-col strong{display:block;font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;color:hsl(var(--subtle-foreground));margin-bottom:14px;font-weight:600}
.foot-col{display:flex;flex-direction:column;gap:9px}
.foot-col a{color:hsl(var(--muted-foreground));font-size:.9rem}
.foot-col a:hover{color:hsl(var(--foreground))}
.foot-col .tag{font-size:.78rem;color:hsl(var(--subtle-foreground));border:1px dashed hsl(var(--border));border-radius:999px;padding:.3em .7em;display:inline-flex;width:fit-content}
.foot-brand p{max-width:32ch;color:hsl(var(--muted-foreground));font-size:.9rem;margin-top:12px}
.foot-fine{
  margin-top:44px;padding-top:22px;border-top:1px solid hsl(var(--border-subtle));
  font-size:.82rem;color:hsl(var(--subtle-foreground));
  display:flex;flex-wrap:wrap;gap:10px 24px;align-items:center;justify-content:space-between;
}
