/* FINSECRA — marketing site
   No external requests: system fonts, no JS, no analytics.
   To self-host brand fonts later, add woff2 files to assets/fonts/ and
   uncomment the @font-face blocks below. */

/*
@font-face { font-family: "Space Grotesk"; src: url("fonts/SpaceGrotesk-Variable.woff2") format("woff2"); font-weight: 300 700; font-display: swap; }
@font-face { font-family: "Inter"; src: url("fonts/Inter-Variable.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }
*/

:root {
  --bg: #0a0c10;
  --surface: #0f1117;
  --surface-2: #151924;
  --surface-offset: #1a1e2a;
  --border: #252a3a;
  --border-strong: #303548;
  --text: #e8eaf0;
  --text-muted: #9aa3b5;
  --text-faint: #5d6679;
  --primary: #4f8ef7;
  --primary-hover: #6fa3ff;
  --primary-active: #3a78e8;
  --primary-soft: rgba(79, 142, 247, 0.12);
  --cost: #e3b341;
  --security: #f0736a;
  --governance: #5cc9a7;

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.6vw, 3.5rem);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --ease: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --content: 72rem;
  --gutter: clamp(1rem, 0.5rem + 2.5vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--primary-hover); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; margin: 0; font-weight: 600; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

.wrap { max-width: var(--content); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -999px; top: 0; background: var(--primary); color: #fff; padding: 0.5rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }

/* Pre-launch placeholders — remove every .todo before going live */
.todo { background: rgba(227, 179, 65, 0.14); color: #f3d27a; border-bottom: 1px dashed #e3b341; padding: 0 0.2em; border-radius: 2px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(10, 12, 16, 0.86); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--border); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--text); text-decoration: none; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.08em; font-size: 1.05rem; }
.brand:hover { color: var(--text); }
.brand svg { width: 1.6rem; height: 1.6rem; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.75rem); }
.nav a { color: var(--text-muted); text-decoration: none; font-size: var(--text-sm); transition: color var(--ease); }
.nav a:hover { color: var(--text); }
@media (max-width: 760px) { .nav a:not(.btn) { display: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.7rem 1.15rem; border-radius: var(--radius-md); font-weight: 600; font-size: var(--text-sm); text-decoration: none; border: 1px solid transparent; transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease); white-space: nowrap; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); color: #fff; }
.btn-primary:active { background: var(--primary-active); }
.btn-ghost { border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--text-faint); color: var(--text); background: var(--surface-2); }
.nav .btn { color: #fff; padding: 0.5rem 0.9rem; }

/* Sections */
section { padding-block: clamp(4rem, 3rem + 5vw, 7rem); border-top: 1px solid var(--border); }
.eyebrow { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; display: block; }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.section-head h2 { font-size: var(--text-xl); margin-bottom: 1rem; }
.section-head p { color: var(--text-muted); }

/* Hero */
.hero { border-top: 0; padding-block: clamp(3.5rem, 2rem + 6vw, 7rem) clamp(3rem, 2rem + 4vw, 5.5rem); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 56px 56px; opacity: 0.35; mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 20%, transparent 75%); pointer-events: none; }
.hero .wrap { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: minmax(0, 1fr); } }
.hero h1 { font-size: var(--text-2xl); margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--primary); }
.hero .lede { font-size: var(--text-lg); color: var(--text-muted); max-width: 38rem; margin-bottom: 2rem; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-note { font-size: var(--text-sm); color: var(--text-faint); display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; }
.hero-note span::before { content: "✓"; color: var(--governance); margin-right: 0.4rem; }

/* Finding card */
.finding { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-xl); box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(79, 142, 247, 0.06); font-size: var(--text-sm); overflow: hidden; }
.finding-top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--border); font-family: var(--font-mono); font-size: var(--text-xs); color: var(--text-faint); }
.finding-top .sev { color: var(--security); border: 1px solid rgba(240, 115, 106, 0.4); border-radius: 999px; padding: 0.1rem 0.55rem; }
.finding-body { padding: 1.25rem; }
.finding-body h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.finding-body dl { margin: 0; }
.finding-body > p { color: var(--text-muted); margin-bottom: 1.1rem; }
.lens { display: grid; grid-template-columns: 6.5rem 1fr; gap: 0.75rem; padding: 0.7rem 0; border-top: 1px dashed var(--border); }
.lens dt { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.08em; padding-top: 0.15rem; }
.lens dd { margin: 0; color: var(--text); }
.lens dd small { display: block; color: var(--text-faint); font-family: var(--font-mono); font-size: 0.75rem; margin-top: 0.2rem; }
.lens.cost dt { color: var(--cost); }
.lens.sec dt { color: var(--security); }
.lens.gov dt { color: var(--governance); }
.finding-sign { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.85rem 1.25rem; background: var(--surface-2); border-top: 1px solid var(--border); font-size: var(--text-xs); color: var(--text-muted); }
.finding-sign b { white-space: nowrap; font-family: var(--font-display); color: var(--text); font-weight: 600; }
.finding-caption { margin-top: 0.75rem; text-align: center; font-size: var(--text-xs); color: var(--text-faint); }

/* Framework strip */
.frameworks { padding-block: 1.75rem; background: var(--surface); }
.frameworks .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 2rem; }
.frameworks .label { font-size: var(--text-xs); color: var(--text-faint); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.frameworks ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; }
.frameworks li { font-family: var(--font-display); font-weight: 500; color: var(--text-muted); }

/* Three lenses */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 860px) { .grid-3 { grid-template-columns: minmax(0, 1fr); } }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.25rem, 1rem + 1vw, 1.75rem); }
.card h3 { font-size: var(--text-lg); margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: var(--text-sm); }
.card .tag { display: inline-block; font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.card.cost .tag { color: var(--cost); }
.card.sec .tag { color: var(--security); }
.card.gov .tag { color: var(--governance); }
.card ul { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--text-muted); font-size: var(--text-sm); }
.card li + li { margin-top: 0.3rem; }

.callout { margin-top: 1rem; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.5rem; align-items: center; padding: clamp(1.25rem, 1rem + 1.5vw, 2rem); border-radius: var(--radius-lg); border: 1px solid rgba(79, 142, 247, 0.35); background: linear-gradient(120deg, var(--primary-soft), transparent 70%), var(--surface); }
.callout h3 { font-size: var(--text-lg); margin-bottom: 0.4rem; }
.callout p { color: var(--text-muted); }
@media (max-width: 760px) { .callout { grid-template-columns: minmax(0, 1fr); } }

/* Why now timeline */
.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: minmax(0, 1fr); } }
.split .section-head { margin-bottom: 0; }
.split .section-head p + p { margin-top: 1rem; }
.timeline { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--border-strong); }
.timeline li { position: relative; padding: 0 0 1.6rem 1.6rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: -5px; top: 0.45rem; width: 9px; height: 9px; border-radius: 50%; background: var(--bg); border: 2px solid var(--text-faint); }
.timeline li.done::before { background: var(--text-faint); }
.timeline li.next::before { border-color: var(--primary); background: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.timeline time { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--text-faint); display: block; }
.timeline li.next time { color: var(--primary); }
.timeline strong { font-family: var(--font-display); font-weight: 600; display: block; margin: 0.15rem 0; }
.timeline p { color: var(--text-muted); font-size: var(--text-sm); }
.fineprint { margin-top: 1.5rem; font-size: var(--text-xs); color: var(--text-faint); }

/* Offers */
.offers { display: grid; gap: 0.75rem; }
.offer { display: grid; grid-template-columns: 3rem minmax(0, 1.3fr) minmax(0, 1fr) 11rem; gap: 1.25rem; align-items: start; padding: 1.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.offer .num { font-family: var(--font-mono); color: var(--text-faint); font-size: var(--text-sm); padding-top: 0.2rem; }
.offer h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.offer .what { color: var(--text-muted); font-size: var(--text-sm); }
.offer .shape { color: var(--text-muted); font-size: var(--text-sm); }
.offer .shape b { color: var(--text); font-weight: 500; }
.offer .price { text-align: right; }
.offer .price strong { font-family: var(--font-display); font-size: 1.35rem; display: block; line-height: 1.2; }
.offer .price > span { font-size: var(--text-xs); color: var(--text-faint); }
.offer.featured { border-color: rgba(79, 142, 247, 0.55); background: linear-gradient(100deg, var(--primary-soft), transparent 55%), var(--surface); }
.offer .badge { display: inline-block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); border: 1px solid rgba(79, 142, 247, 0.45); border-radius: 999px; padding: 0.05rem 0.5rem; margin-left: 0.5rem; vertical-align: 0.15em; }
@media (max-width: 900px) {
  .offer { grid-template-columns: 2.25rem minmax(0, 1fr); }
  .offer .shape, .offer .price { grid-column: 2; }
  .offer .price { text-align: left; }
}
.offers-note { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-size: var(--text-sm); color: var(--text-faint); }

/* Delivery */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; counter-reset: step; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps { grid-template-columns: minmax(0, 1fr); } }
.steps li { counter-increment: step; padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.steps li::before { content: "0" counter(step); font-family: var(--font-mono); font-size: var(--text-xs); color: var(--primary); display: block; margin-bottom: 0.9rem; }
.steps h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.steps p { font-size: var(--text-sm); color: var(--text-muted); }
.steps li.human { border-color: rgba(92, 201, 167, 0.45); }
.steps li.human::before { color: var(--governance); }

.assurances { margin-top: 1rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 760px) { .assurances { grid-template-columns: minmax(0, 1fr); } }
.assurance { padding: 1.5rem; border-radius: var(--radius-lg); background: var(--surface-2); border: 1px solid var(--border); }
.assurance h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.assurance p { font-size: var(--text-sm); color: var(--text-muted); }

/* Sample report */
.report { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
@media (max-width: 860px) { .report { grid-template-columns: minmax(0, 1fr); } }
.report ul { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: 0.6rem; }
.report li { padding-left: 1.6rem; position: relative; color: var(--text-muted); }
.report li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 0.7rem; height: 0.7rem; border: 1.5px solid var(--primary); border-radius: 2px; }
.doc { position: relative; aspect-ratio: 0.77; max-width: 22rem; width: 100%; margin-inline: auto; }
.doc .sheet { position: absolute; inset: 0; background: #f4f5f8; border-radius: var(--radius-sm); padding: 9% 10%; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8); color: #1a1e2a; overflow: hidden; }
.doc .sheet.back { transform: rotate(4deg) translate(6%, 2%); background: #d9dde6; }
.doc .sheet.mid { transform: rotate(2deg) translate(3%, 1%); background: #e6e9ef; }
.doc .kicker { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-active); }
.doc .title { font-family: var(--font-display); font-weight: 700; font-size: clamp(0.95rem, 0.8rem + 0.6vw, 1.25rem); line-height: 1.15; margin: 0.5rem 0 1rem; }
.doc .bar { height: 0.4rem; background: #cfd4de; border-radius: 2px; margin-bottom: 0.45rem; }
.doc .bar.w70 { width: 70%; } .doc .bar.w85 { width: 85%; } .doc .bar.w55 { width: 55%; }
.doc .heat { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; margin: 1rem 0; }
.doc .heat i { aspect-ratio: 1; border-radius: 2px; background: #cfd4de; }
.doc .heat i.h { background: #f0736a; } .doc .heat i.m { background: #e3b341; } .doc .heat i.l { background: #5cc9a7; }
.doc .redact { display: inline-block; height: 0.55rem; width: 40%; background: #1a1e2a; border-radius: 1px; }
.doc .stamp { position: absolute; right: 9%; bottom: 7%; font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; color: #2f8f72; border: 1.5px solid #2f8f72; padding: 0.25rem 0.45rem; border-radius: 3px; transform: rotate(-6deg); }

/* About */
.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; }
@media (max-width: 860px) { .about { grid-template-columns: minmax(0, 1fr); } }
.founder { display: grid; grid-template-columns: 4.5rem minmax(0, 1fr); gap: 1.25rem; align-items: start; }
.avatar { width: 4.5rem; height: 4.5rem; border-radius: 50%; display: grid; place-items: center; background: var(--surface-offset); border: 1px solid var(--border-strong); font-family: var(--font-display); font-weight: 600; color: var(--text-muted); font-size: 1.25rem; }
.founder h3 { font-size: var(--text-lg); }
.founder .role { color: var(--primary); font-size: var(--text-sm); margin-bottom: 0.9rem; }
.founder p + p { margin-top: 0.8rem; }
.founder p { color: var(--text-muted); font-size: var(--text-sm); }
.clients { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.75rem; }
.clients li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; padding: 1rem 1.1rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface-2); }
.clients .name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.clients .aff { font-size: var(--text-xs); color: var(--cost); font-family: var(--font-mono); margin-left: 0.4rem; }
.clients .work { font-size: var(--text-sm); color: var(--text-muted); }
.disclosure { margin-top: 1rem; font-size: var(--text-xs); color: var(--text-faint); }

/* FAQ */
.faq { display: grid; gap: 0.6rem; max-width: 52rem; }
.faq details { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 1.25rem; font-family: var(--font-display); font-weight: 500; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--text-faint); font-family: var(--font-mono); transition: transform var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.25rem 1.2rem; color: var(--text-muted); font-size: var(--text-sm); }

/* Contact */
.contact { text-align: center; background: radial-gradient(ellipse 60% 80% at 50% 100%, var(--primary-soft), transparent 70%); }
.contact h2 { font-size: var(--text-2xl); margin-bottom: 1rem; }
.contact p { color: var(--text-muted); max-width: 38rem; margin: 0 auto 2rem; }
.contact .hero-actions { justify-content: center; margin-bottom: 1.25rem; }
.contact .mail { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--text-muted); overflow-wrap: anywhere; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding-block: 2rem; font-size: var(--text-sm); color: var(--text-faint); }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.site-footer a { color: var(--text-muted); text-decoration: none; }
.site-footer a:hover { color: var(--text); }

/* Prose pages (privacy, 404) */
.prose { max-width: 46rem; padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.prose h1 { font-size: var(--text-xl); margin-bottom: 0.5rem; }
.prose h2 { font-size: 1.2rem; margin: 2.25rem 0 0.75rem; }
.prose p, .prose li { color: var(--text-muted); }
.prose p + p { margin-top: 0.9rem; }
.prose ul { padding-left: 1.2rem; }
.prose li + li { margin-top: 0.4rem; }
.prose .updated { color: var(--text-faint); font-size: var(--text-sm); margin-bottom: 2rem; }
.report h2 { font-size: var(--text-xl); }
#sample-report { overflow-x: clip; }
@media (max-width: 860px) { .doc { width: 86%; } }
.card .tag { color: var(--primary); }
.card .clients { padding-left: 0; list-style: none; }
.clients .name { color: var(--text); }
figure { margin: 0; }
@media (max-width: 560px) { .lens { grid-template-columns: minmax(0, 1fr); gap: 0.2rem; } }

/* Cloud cost services */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: minmax(0, 1fr); } }
.card.service h3 { margin-bottom: 0.6rem; }
.card .chips { list-style: none; padding: 0; margin: 1.1rem 0 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.card .chips li { margin: 0; font-family: var(--font-mono); font-size: var(--text-xs); color: var(--text-muted); border: 1px solid var(--border-strong); border-radius: 999px; padding: 0.15rem 0.6rem; background: var(--surface-2); }
.platforms { margin-top: 1rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; padding: 1.25rem 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.platforms .label { font-size: var(--text-xs); color: var(--text-faint); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.platforms ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; flex: 1 1 20rem; }
.platforms li { font-family: var(--font-display); font-weight: 500; color: var(--text-muted); }
section[id] { scroll-margin-top: 4.5rem; }

/* Hero background: original blue perspective-tunnel + padlock artwork (assets/hero-bg.svg) */
.hero {
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.95) 0%, rgba(10, 12, 16, 0.82) 36%, rgba(10, 12, 16, 0.2) 68%, rgba(10, 12, 16, 0.3) 100%),
    url("hero-bg.svg") center / cover no-repeat,
    var(--bg);
}
.hero::before { background-image: none; opacity: 1; mask-image: none; -webkit-mask-image: none; background: linear-gradient(180deg, transparent 70%, var(--bg) 100%); }
@media (max-width: 900px) {
  .hero { background: linear-gradient(180deg, rgba(10, 12, 16, 0.9) 0%, rgba(10, 12, 16, 0.72) 55%, rgba(10, 12, 16, 0.9) 100%), url("hero-bg.svg") 70% 30% / cover no-repeat, var(--bg); }
}
.hero .finding { background: rgba(15, 17, 23, 0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.hero .finding-sign { background: rgba(21, 25, 36, 0.8); }
