/* ============================================================
   NAVELO — design.css  (clean rebuild, no inheritance)
   Premium B2B SaaS atmosphere. Dark, restrained, confident.
   Single canonical stylesheet for index.html.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg:           #050714;
  --bg-2:         #080c20;
  --panel:        #0c1230;
  --panel-2:      #10173c;
  --panel-3:      #161e48;
  --line:         rgba(255,255,255,.06);
  --line-2:       rgba(255,255,255,.10);
  --line-bright:  rgba(255,255,255,.18);

  --text:         #f5f7ff;
  --text-2:       #d5dcef;
  --muted:        #8b95b3;
  --muted-2:      #5e6886;

  --blue:         #6f8dff;
  --blue-2:       #4f6bd9;
  --cyan:         #22d3ee;
  --violet:       #a78bfa;
  --success:      #34d399;
  --warn:         #fbbf24;
  --danger:       #f87171;

  --glow-blue:    rgba(111,141,255,.32);
  --glow-cyan:    rgba(34,211,238,.32);
  --glow-violet:  rgba(167,139,250,.32);
  --glow-success: rgba(52,211,153,.32);

  --maxw:         1180px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;

  --ease:         cubic-bezier(.4,0,.2,1);

  --shadow-sm:    0 4px 14px -2px rgba(0,0,0,.4);
  --shadow:      0 18px 40px -10px rgba(0,0,0,.6);
  --shadow-lg:   0 40px 100px -20px rgba(0,0,0,.7);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Background atmosphere (fixed, behind everything) ---------- */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1100px 700px at 50% -10%, rgba(111,141,255,.20), transparent 60%),
    radial-gradient(ellipse 900px 600px at 85% 30%, rgba(167,139,250,.14), transparent 70%),
    radial-gradient(ellipse 800px 500px at 15% 60%, rgba(34,211,238,.13), transparent 70%);
}
.atmosphere .grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125,144,200,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,144,200,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 1100px 800px at 50% 20%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 1100px 800px at 50% 20%, #000 0%, transparent 80%);
}
.atmosphere .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .55;
  will-change: transform;
}
.atmosphere .orb.o1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--glow-blue) 0%, transparent 65%);
  top: -150px; left: -120px;
  animation: drift 26s ease-in-out infinite;
}
.atmosphere .orb.o2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--glow-violet) 0%, transparent 65%);
  top: 26%; right: -200px;
  animation: drift 32s ease-in-out infinite reverse;
}
.atmosphere .orb.o3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 65%);
  top: 72%; left: 18%;
  animation: drift 36s ease-in-out infinite;
  animation-delay: -10s;
}
@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0); }
  50%      { transform: translate3d(40px,-30px,0); }
}

/* Stage above atmosphere */
header.nav, main, footer { position: relative; z-index: 1; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ---------- Navigation ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: rgba(5,7,20,.6);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.2px;
  color: var(--text);
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    conic-gradient(from 220deg at 50% 50%, var(--blue), var(--cyan), var(--violet), var(--blue));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.15),
    0 6px 18px -6px var(--glow-blue);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s var(--ease);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
@media (max-width: 720px) {
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }
}

/* ---------- Button system (high-contrast pill: dark text on bright gradient) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.1px;
  color: #051028;
  background:
    linear-gradient(135deg, #5eead4 0%, #22d3ee 35%, #6f8dff 100%);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -1px 0 rgba(0,0,0,.12),
    0 14px 34px -10px rgba(34,211,238,.6);
  text-shadow: 0 1px 0 rgba(255,255,255,.20);
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), filter .15s var(--ease);
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -1px 0 rgba(0,0,0,.14),
    0 20px 44px -10px rgba(34,211,238,.75);
}
.btn:active { transform: translateY(0); }
.btn.lg {
  padding: 16px 32px;
  font-size: 16px;
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
  box-shadow: none;
}
.btn.ghost:hover {
  background: rgba(111,141,255,.08);
  border-color: rgba(111,141,255,.35);
  box-shadow: 0 10px 24px -12px var(--glow-blue);
}
.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  transition: color .15s var(--ease), transform .15s var(--ease);
}
.ghost-link:hover { color: var(--cyan); }
.ghost-link:hover .arr { transform: translateY(1px); }
.ghost-link .arr { transition: transform .2s var(--ease); }

/* ---------- HERO ---------- */
.hero {
  padding: 96px 0 80px;
  position: relative;
  text-align: center;
}
@media (max-width: 720px) {
  .hero { padding: 64px 0 48px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #b6e4f0;
  background: rgba(34,211,238,.06);
  border: 1px solid rgba(34,211,238,.20);
  margin: 0 0 32px;
}
.eyebrow .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .45; }
}

.hero h1 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 700;
  margin: 0 auto 26px;
  max-width: 950px;
  color: var(--text);
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--cyan) 0%, var(--violet) 55%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 28px rgba(167,139,250,.22));
  font-weight: 800;
}
.hero .lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 660px;
  margin: 0 auto 36px;
}
.hero .ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--muted);
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
}
.chip .d {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
}
.chip.b .d { background: #fb923c; box-shadow: 0 0 8px #fb923c; }
.chip.a .d { background: var(--warn); box-shadow: 0 0 8px var(--warn); }
.chip.w .d { background: var(--success); box-shadow: 0 0 8px var(--success); }

/* ---------- Hero product mockup ---------- */
.product-stage {
  position: relative;
  margin: 64px auto 0;
  max-width: 1080px;
  perspective: 1800px;
}
@media (max-width: 720px) { .product-stage { margin-top: 36px; } }

.product-stage::before {
  content: "";
  position: absolute;
  left: 50%; top: 30%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background:
    radial-gradient(circle at 30% 40%, var(--glow-cyan), transparent 60%),
    radial-gradient(circle at 70% 60%, var(--glow-violet), transparent 60%);
  filter: blur(60px);
  opacity: .8;
  z-index: 0;
}

.product {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%), var(--panel);
  border: 1px solid var(--line-2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 60px 140px -30px rgba(0,0,0,.85),
    0 0 0 1px rgba(34,211,238,.06);
  overflow: hidden;
  transform: rotateX(2deg);
  transform-origin: center top;
}

.product .titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.25);
}
.product .titlebar .dots { display: flex; gap: 6px; }
.product .titlebar .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.product .titlebar .dot:nth-child(1) { background: #ff5f57; }
.product .titlebar .dot:nth-child(2) { background: #febc2e; }
.product .titlebar .dot:nth-child(3) { background: #28c840; }
.product .titlebar .url {
  margin-left: 14px;
  flex: 1;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
  padding: 5px 12px;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line);
  border-radius: 6px;
  max-width: 360px;
}
.product .titlebar .ts {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product .titlebar .live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: liveBlink 1.6s ease-in-out infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}
@media (max-width: 720px) {
  .product .titlebar .url, .product .titlebar .ts { display: none; }
}

.product .body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 380px;
}
@media (max-width: 720px) {
  .product .body { grid-template-columns: 1fr; min-height: 0; }
  .product .sidebar { display: none; }
}

.product .sidebar {
  border-right: 1px solid var(--line);
  padding: 18px 14px;
  background: rgba(0,0,0,.15);
}
.product .sidebar .lbl {
  font-size: 10.5px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 0 8px;
  margin-bottom: 8px;
}
.product .sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 22px;
}
.product .sidebar .nv {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 13px;
  color: var(--text-2);
  transition: background .15s var(--ease);
}
.product .sidebar .nv.active {
  background: linear-gradient(135deg, rgba(34,211,238,.12), rgba(111,141,255,.10));
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(34,211,238,.18);
}
.product .sidebar .nv .ico {
  width: 16px; height: 16px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}
.product .sidebar .nv:nth-child(2) .ico { background: linear-gradient(135deg, var(--violet), var(--cyan)); }
.product .sidebar .nv:nth-child(3) .ico { background: linear-gradient(135deg, var(--blue), var(--violet)); }
.product .sidebar .nv .badge {
  margin-left: auto;
  font-size: 9.5px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(52,211,153,.12);
  color: var(--success);
  border: 1px solid rgba(52,211,153,.3);
  letter-spacing: .3px;
  text-transform: uppercase;
  font-weight: 600;
}
.product .sidebar .nv:nth-child(2) .badge {
  background: rgba(251,191,36,.10);
  color: var(--warn);
  border-color: rgba(251,191,36,.3);
}
.product .sidebar .nv:nth-child(3) .badge {
  background: rgba(167,139,250,.10);
  color: var(--violet);
  border-color: rgba(167,139,250,.3);
}

.product .main { padding: 20px 22px; }
.product .main .hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.product .main .hdr h4 {
  margin: 0;
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.2px;
}
.product .main .hdr .sub {
  font-size: 11.5px;
  color: var(--muted-2);
  font-family: 'Geist Mono', monospace;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
@media (max-width: 540px) { .kpis { grid-template-columns: 1fr; } }
.kpi {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005));
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.kpi .lbl {
  font-size: 10.5px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.kpi .val {
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.4px;
  font-variant-numeric: tabular-nums;
}
.kpi.cy .val { color: #b6e4f0; }
.kpi.vi .val { color: #d9caff; }
.kpi.bl .val { color: #cfd9ff; }
.kpi .delta {
  font-size: 11px;
  margin-top: 2px;
  color: var(--success);
  font-variant-numeric: tabular-nums;
}
.kpi .spark {
  margin-top: 6px;
  height: 18px;
}

.chart-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.04));
  margin-bottom: 0;
}
.chart-card .chart-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.chart-card .chart-hdr .ti {
  font-size: 11.5px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--muted-2);
}
.chart-card .chart-hdr .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--success);
  font-family: 'Geist Mono', monospace;
}
.chart-card .chart-hdr .live::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: liveBlink 1.6s ease-in-out infinite;
}

/* Floating accent labels (above product surface) */
.float-tag {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(15,21,48,.95), rgba(10,15,36,.95));
  border: 1px solid rgba(34,211,238,.35);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--text);
  font-weight: 500;
  backdrop-filter: blur(10px);
  box-shadow:
    0 18px 40px -10px rgba(0,0,0,.65),
    0 0 0 1px rgba(34,211,238,.08);
}
.float-tag .ic {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}
.float-tag.ft1 { top: 22%; left: -28px; }
.float-tag.ft2 { bottom: 18%; right: -28px; border-color: rgba(167,139,250,.4); }
.float-tag.ft2 .ic { background: linear-gradient(135deg, var(--violet), var(--cyan)); }
@media (max-width: 1180px) {
  .float-tag.ft1 { left: 12px; }
  .float-tag.ft2 { right: 12px; }
}
@media (max-width: 720px) {
  .float-tag { display: none; }
}

/* ---------- Section base ---------- */
section.sec {
  position: relative;
  padding: 128px 0;
}
@media (max-width: 720px) { section.sec { padding: 80px 0; } }

.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.sec-head .kicker {
  display: inline-block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #b6e4f0;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34,211,238,.06);
  border: 1px solid rgba(34,211,238,.18);
  margin-bottom: 18px;
}
.sec-head h2 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--text);
  font-weight: 700;
}
.sec-head h2 .grad {
  background: linear-gradient(120deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

/* ---------- Card primitive ---------- */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.002)), var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-bright);
  box-shadow: 0 30px 60px -28px rgba(34,211,238,.18);
}
.card h3 {
  font-family: 'Geist', sans-serif;
  font-size: 21px;
  letter-spacing: -.3px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text);
}
.card .lead {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 16px;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cyan);
  margin-top: 8px;
  transition: transform .2s var(--ease), color .15s var(--ease);
}
.card:hover .card-cta { transform: translateX(4px); }

/* ---------- Products section ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: 1fr; } }

.products-grid .card {
  display: flex;
  flex-direction: column;
}
.products-grid .pico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34,211,238,.10), rgba(111,141,255,.06));
  border: 1px solid rgba(34,211,238,.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform .35s var(--ease);
}
.card:hover .pico { transform: scale(1.05) rotate(-2deg); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 600;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.02);
  color: var(--muted);
  width: max-content;
}
.tag .d { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); }
.tag.available {
  background: rgba(52,211,153,.10);
  border-color: rgba(52,211,153,.4);
  color: #6ee7b7;
  box-shadow: 0 0 16px rgba(52,211,153,.30);
}
.tag.available .d {
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2.2s ease-in-out infinite;
}
.tag.dev {
  background: rgba(251,191,36,.08);
  border-color: rgba(251,191,36,.32);
  color: #fcd34d;
}
.tag.dev .d { background: var(--warn); }
.tag.planned {
  background: rgba(255,255,255,.025);
  color: var(--muted);
}

/* CareFlow — premium ring */
.products-grid .card.featured {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet)) border-box;
  box-shadow: 0 24px 60px -25px var(--glow-cyan);
}
.products-grid .card.featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  pointer-events: none;
  background: radial-gradient(circle at 100% 0%, var(--glow-cyan), transparent 50%);
  opacity: .35;
}
.products-grid .card.featured > * { position: relative; }

/* CompetitorPilot — muted ghost */
.products-grid .card.muted {
  border-style: dashed;
  border-color: rgba(255,255,255,.10);
  opacity: .9;
}
.products-grid .card.muted:hover { opacity: 1; }

.bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  font-size: 14px;
}
.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  color: var(--text-2);
  line-height: 1.55;
}
.bullets li::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(34,211,238,.25), rgba(111,141,255,.15));
  border: 1px solid rgba(34,211,238,.35);
  background-image:
    linear-gradient(135deg, rgba(34,211,238,.2), rgba(111,141,255,.15)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3.5 7.5l2.5 2.5 4.5-5' fill='none' stroke='%2322d3ee' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-blend-mode: normal;
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---------- Steps (How it works) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.003)), var(--panel);
  padding: 30px;
  overflow: hidden;
}
.step .num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 84px;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(180deg, rgba(111,141,255,.18), rgba(34,211,238,.04));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
}
.step h4 {
  font-family: 'Geist', sans-serif;
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -.2px;
  color: var(--text);
  font-weight: 600;
  position: relative;
}
.step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
}
@media (min-width: 901px) {
  .steps::before {
    content: "";
    position: absolute;
    top: 50%; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-2) 20%, var(--line-2) 80%, transparent);
    z-index: -1;
  }
}

/* ---------- Who section (4-grid) ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .who-grid { grid-template-columns: 1fr; } }

/* ---------- Why section (6 cards, bento) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why-grid .card {
  position: relative;
}
.why-grid .card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0% 0%, rgba(111,141,255,.06), transparent 60%);
  pointer-events: none;
}

/* ---------- Status section ---------- */
.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) { .status-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px 40px;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet), var(--blue)) border-box;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 90% 50%, var(--glow-violet), transparent 60%);
  opacity: .35;
}
.cta-band > * { position: relative; }
.cta-band h3 {
  font-family: 'Geist', sans-serif;
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -.3px;
  font-weight: 600;
  color: var(--text);
}
.cta-band p {
  margin: 0;
  color: var(--text-2);
  font-size: 14.5px;
}
@media (max-width: 720px) {
  .cta-band { padding: 28px 24px; }
}

/* ---------- Section accent SVGs (centered behind section title) ---------- */
.acc {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 760px;
  height: auto;
  max-width: 90vw;
  pointer-events: none;
  opacity: .32;
  z-index: 0;
  filter: blur(1px);
  animation: accentDrift 9s ease-in-out infinite;
  /* combine center translate + drift via composed transform set by keyframes */
}
.acc.right, .acc.left { left: 50%; right: auto; }
.acc.d1 { animation-delay: -3s; }
.acc.d2 { animation-delay: -6s; }
@keyframes accentDrift {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-10px); }
}
/* Ensure section content sits above the accent backdrop */
section.sec > .container { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .acc { width: 520px; opacity: .26; top: -10px; }
}
@media (max-width: 540px) {
  .acc { display: none; }
}

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(34,211,238,.025));
  padding: 56px 0 40px;
  margin-top: 64px;
}
footer.site .frow {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 720px) { footer.site .frow { grid-template-columns: 1fr; } }
footer.site .bb .l {
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.2px;
  margin-bottom: 8px;
  color: var(--text);
}
footer.site .bb p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
}
footer.site .flinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-content: start;
}
footer.site .flinks a {
  font-size: 13.5px;
  color: var(--muted);
  padding: 4px 0;
  transition: color .15s var(--ease);
}
footer.site .flinks a:hover { color: var(--text); }
footer.site .copy {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted-2);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animations on initial paint */
.hero .eyebrow, .hero h1, .hero .lede, .hero .ctas, .chips, .product-stage {
  animation: fadeUp .8s var(--ease) both;
}
.hero h1 { animation-delay: .05s; }
.hero .lede { animation-delay: .12s; }
.hero .ctas { animation-delay: .18s; }
.chips { animation-delay: .24s; }
.product-stage { animation-delay: .35s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Float tags appear after the stage */
.float-tag {
  opacity: 0;
  animation: fadeUp .7s var(--ease) forwards, ftGlow 4.5s ease-in-out infinite;
}
.float-tag.ft1 { animation-delay: .9s, 1.6s; }
.float-tag.ft2 { animation-delay: 1.1s, 1.8s; animation-name: fadeUp, ftGlowVi; }
@keyframes ftGlow {
  0%, 100% { box-shadow: 0 18px 40px -10px rgba(0,0,0,.6), 0 0 0 1px rgba(34,211,238,.05); }
  50%      { box-shadow: 0 22px 48px -10px rgba(0,0,0,.6), 0 0 26px -6px var(--glow-cyan); }
}
@keyframes ftGlowVi {
  0%, 100% { box-shadow: 0 18px 40px -10px rgba(0,0,0,.6), 0 0 0 1px rgba(167,139,250,.05); }
  50%      { box-shadow: 0 22px 48px -10px rgba(0,0,0,.6), 0 0 26px -6px var(--glow-violet); }
}

/* KPI tiles + chart stagger */
.product .kpi, .product .chart-card {
  animation: fadeUp .55s var(--ease) both;
}
.product .kpi:nth-child(1) { animation-delay: .55s; }
.product .kpi:nth-child(2) { animation-delay: .62s; }
.product .kpi:nth-child(3) { animation-delay: .69s; }
.product .chart-card       { animation-delay: .80s; }

/* ---------- Focus visible ---------- */
.btn:focus-visible,
.nav-links a:focus-visible,
.ghost-link:focus-visible,
.card-cta:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .product { transform: none; }
  .atmosphere .orb { animation: none; }
}

/* ============================================================
   Legal / Contact pages — shared typography on design.css shell
   ============================================================ */
.legal main {
  position: relative;
  z-index: 1;
  padding: 96px 0 72px;
}
@media (max-width: 720px) {
  .legal main { padding: 64px 0 48px; }
}
.legal main > .container { max-width: 780px; }

.legal .page-head {
  text-align: center;
  margin: 0 auto 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.legal .page-head .kicker {
  display: inline-block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #b6e4f0;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34,211,238,.06);
  border: 1px solid rgba(34,211,238,.18);
  margin-bottom: 22px;
}
.legal .page-head h1 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -1.3px;
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 700;
  color: var(--text);
}
.legal .page-head h1 .grad {
  background: linear-gradient(120deg, var(--cyan) 0%, var(--violet) 60%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  filter: drop-shadow(0 4px 22px rgba(167,139,250,.20));
}
.legal .page-head .summary {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
}
.legal .page-head .meta {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 14px;
  letter-spacing: .3px;
}

.legal main h2 {
  font-family: 'Geist', sans-serif;
  font-size: 24px;
  letter-spacing: -.4px;
  margin: 52px 0 14px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
}
.legal main h3 {
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  letter-spacing: -.2px;
  margin: 36px 0 10px;
  color: var(--text);
  font-weight: 600;
}
.legal main p,
.legal main li {
  color: var(--text-2);
  line-height: 1.7;
  font-size: 15.5px;
}
.legal main p { margin: 0 0 14px; }
.legal main ul,
.legal main ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal main li { margin-bottom: 6px; }
.legal main strong { color: var(--text); font-weight: 600; }
.legal main a:not(.btn):not(.ghost-link) {
  color: var(--cyan);
  border-bottom: 1px solid rgba(34,211,238,.3);
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.legal main a:not(.btn):not(.ghost-link):hover {
  color: #67e8f9;
  border-bottom-color: var(--cyan);
}
.legal main hr {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}

/* Contact form premium treatment */
.legal main form {
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 24px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.6);
}
.legal main form label {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: 12.5px;
  letter-spacing: .3px;
  color: var(--text-2);
  font-weight: 600;
  margin: 16px 0 6px;
}
.legal main form input,
.legal main form textarea,
.legal main form select {
  width: 100%;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
  box-sizing: border-box;
}
.legal main form input::placeholder,
.legal main form textarea::placeholder { color: var(--muted-2); }
.legal main form input:focus,
.legal main form textarea:focus,
.legal main form select:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0,0,0,.45);
  box-shadow: 0 0 0 3px rgba(34,211,238,.15);
}
.legal main form textarea { resize: vertical; min-height: 140px; }
.legal main form button,
.legal main form .btn {
  margin-top: 24px;
}

/* Contact info grid (if used) */
.legal main .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0;
}

/* ============================================================
   PAGE-HERO (legal/contact page hero strip)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 96px 0 56px;
  text-align: center;
}
@media (max-width: 720px) {
  .page-hero { padding: 64px 0 40px; }
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 800px; max-width: 90vw; height: 320px;
  background:
    radial-gradient(ellipse at 50% 0%, var(--glow-cyan), transparent 60%),
    radial-gradient(ellipse at 30% 50%, var(--glow-violet), transparent 70%);
  filter: blur(40px);
  opacity: .55;
  pointer-events: none;
}
.page-hero .kicker {
  display: inline-block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #b6e4f0;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34,211,238,.06);
  border: 1px solid rgba(34,211,238,.18);
  margin-bottom: 22px;
}
.page-hero h1 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(38px, 5.5vw, 64px);
  letter-spacing: -1.5px;
  line-height: 1.04;
  margin: 0 0 18px;
  font-weight: 700;
  color: var(--text);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================================
   CONTACT PAGE — proper icon sizing + card polish
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 8px;
}
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005)), var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.contact-card h3 {
  font-family: 'Geist', sans-serif;
  font-size: 19px;
  letter-spacing: -.2px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}
.contact-card .lead {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 16px;
}
.contact-card .em {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 15px;
  margin: 14px 0 6px;
}
.contact-card .em a {
  color: var(--cyan);
  border-bottom: 1px solid rgba(34,211,238,.35);
  padding-bottom: 1px;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.contact-card .em a:hover { color: #67e8f9; border-bottom-color: var(--cyan); }

/* The huge SVG fix — constrain icon container + svg child */
.product-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(34,211,238,.10), rgba(111,141,255,.06));
  border: 1px solid rgba(34,211,238,.20);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex: 0 0 44px;
}
.product-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Section-head used on contact "Inquiry types" */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-head .kicker {
  display: inline-block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #b6e4f0;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34,211,238,.06);
  border: 1px solid rgba(34,211,238,.18);
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(28px, 3.8vw, 40px);
  letter-spacing: -.7px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--text);
  font-weight: 700;
}
.section-head p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

/* 2-col card grid used for "Inquiry types" */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } }
.grid-2 .card h3 {
  font-size: 17px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  letter-spacing: -.2px;
  margin: 0 0 8px;
}
.grid-2 .card .lead {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

/* ============================================================
   LEGAL PAGES — wrap content in proper boxes
   ============================================================ */
.legal-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
  padding-top: 32px;
}
@media (max-width: 900px) {
  .legal-wrap { grid-template-columns: 1fr; }
}

/* Each <article class="legal"> becomes the main content panel */
article.legal {
  background: linear-gradient(180deg, rgba(255,255,255,.022), rgba(255,255,255,.004)), var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.5);
}
@media (max-width: 720px) {
  article.legal { padding: 26px 22px; }
}
article.legal .updated {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: .3px;
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
article.legal h2 {
  font-family: 'Geist', sans-serif;
  font-size: 19px;
  letter-spacing: -.2px;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 12px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.3;
}
article.legal h2:first-of-type { margin-top: 0; }
article.legal h2 .n {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.22);
  letter-spacing: .4px;
  flex: 0 0 auto;
}
article.legal h3 {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  letter-spacing: -.1px;
  font-weight: 600;
  color: var(--text);
  margin: 26px 0 10px;
}
article.legal p,
article.legal li {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}
article.legal p { margin: 0 0 14px; }
article.legal ul,
article.legal ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
article.legal li { margin-bottom: 6px; }
article.legal strong { color: var(--text); font-weight: 600; }
article.legal a {
  color: var(--cyan);
  border-bottom: 1px solid rgba(34,211,238,.3);
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
article.legal a:hover { color: #67e8f9; border-bottom-color: var(--cyan); }

/* Sticky side-note panel */
aside.side-note {
  background: linear-gradient(180deg, rgba(167,139,250,.04), rgba(34,211,238,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 88px;
}
@media (max-width: 900px) {
  aside.side-note { position: static; }
}
aside.side-note h4 {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  letter-spacing: -.1px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px;
}
aside.side-note p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 8px;
}
aside.side-note a {
  color: var(--cyan);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  border-bottom: 1px solid rgba(34,211,238,.35);
  transition: color .15s var(--ease);
}
aside.side-note a:hover { color: #67e8f9; }
