:root {
  --bg: #000c1d;
  --bg-raised: #04162b;
  --surface: #071f3b;
  --border: #163f6e;
  --border-soft: #0d2c50;
  --text: #dbe4ef;
  --text-strong: #f2f6fb;
  --muted: #93a4b8;
  --silver: #c9d3df;
  --accent: #1e6fe0;
  --accent-glow: rgba(47, 140, 255, 0.35);
  --link: #6db3ff;
  --link-hover: #a6d0ff;
  --ok: #5fd3a0;
  --radius: 14px;
  --max: 1080px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { color-scheme: dark; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1 0 auto; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--link-hover); }

:focus-visible { outline: 2px solid var(--link); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: #fff; padding: .6rem 1rem; z-index: 100;
}
.skip:focus { left: 0; }

.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border-soft);
  background: rgba(0, 12, 29, 0.92);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .85rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--silver); }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.brand span { font-weight: 600; letter-spacing: .16em; font-size: .78rem; text-transform: uppercase; }
.brand:hover { color: var(--text-strong); }
nav ul { list-style: none; display: flex; gap: 1.4rem; margin: 0; padding: 0; }
nav a { color: var(--silver); text-decoration: none; font-size: .95rem; padding-block: .3rem; border-bottom: 1px solid transparent; }
nav a:hover, nav a[aria-current="page"] { color: var(--text-strong); border-bottom-color: var(--link); }

/* Hero */
.hero { padding-block: 2.5rem 1rem; }
.hero-art { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-soft); box-shadow: 0 0 60px -20px var(--accent-glow); }
.hero-copy { text-align: center; max-width: 46rem; margin: 2.2rem auto 0; }
h1, h2, h3 { color: var(--text-strong); line-height: 1.2; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin: 0 0 1rem; font-weight: 650; }
h2 { font-size: clamp(1.45rem, 2.6vw, 1.85rem); margin: 0 0 .8rem; font-weight: 640; }
h3 { font-size: 1.15rem; margin: 0 0 .4rem; font-weight: 620; }
.lead { font-size: 1.2rem; color: var(--silver); margin: 0 0 1.6rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; color: var(--link); margin: 0 0 .8rem; font-weight: 600; }

/* Buttons */
.btn {
  display: inline-block; font: inherit; font-weight: 600; text-decoration: none;
  background: var(--accent); color: #fff; padding: .8rem 1.5rem; border-radius: 10px;
  border: 1px solid #3b86f0; transition: box-shadow .2s, transform .2s;
}
.btn:hover { color: #fff; box-shadow: 0 0 24px -2px var(--accent-glow); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--silver); border-color: var(--border); }
.btn-ghost:hover { color: var(--text-strong); box-shadow: none; border-color: var(--link); }
.btn[aria-disabled="true"] { background: var(--surface); border-color: var(--border); color: var(--muted); cursor: not-allowed; }
.btn[aria-disabled="true"]:hover { box-shadow: none; transform: none; color: var(--muted); }
.btn-row { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }

/* Sections */
section { padding-block: 3rem; }
section + section { border-top: 1px solid var(--border-soft); }
.section-intro { max-width: 42rem; color: var(--muted); margin: 0 0 2rem; }

.grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: linear-gradient(180deg, var(--bg-raised), var(--surface));
  border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 1.4rem 1.5rem;
}
.card p { margin: 0; color: var(--text); }
.card .meta { color: var(--muted); font-size: .92rem; margin-top: .8rem; }
a.card { text-decoration: none; display: block; color: inherit; transition: border-color .2s, box-shadow .2s; }
a.card:hover { border-color: var(--link); box-shadow: 0 0 40px -18px var(--accent-glow); }
.price { font-size: 2.2rem; font-weight: 650; color: var(--text-strong); line-height: 1; }
.price small { font-size: .95rem; font-weight: 500; color: var(--muted); margin-left: .4rem; }

/* Product page */
.page-head { padding-block: 3rem 1.5rem; }
.page-head .lead { max-width: 44rem; }
.buybox {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
  background: linear-gradient(180deg, var(--bg-raised), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin-top: 1.6rem;
}
.platform-note {
  margin: 1.4rem 0 0; padding: .9rem 1.2rem; border-radius: var(--radius);
  border: 1px solid #b8892b; background: rgba(184,137,43,.12);
  color: var(--text-strong); font-size: clamp(1.1rem, 2.4vw, 1.5rem); line-height: 1.35;
}
.platform-note strong { color: #ffcf6b; }
.buybox ul { list-style: none; margin: .7rem 0 0; padding: 0; color: var(--muted); font-size: .95rem; }
.buybox li::before { content: "\2713"; color: var(--ok); margin-right: .55rem; }

table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .98rem; }
th, td { text-align: left; padding: .75rem .9rem; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
th { color: var(--silver); font-weight: 600; background: var(--bg-raised); }
.table-scroll { overflow-x: auto; border: 1px solid var(--border-soft); border-radius: var(--radius); }
.table-scroll table { margin: 0; min-width: 34rem; }

code { font-family: var(--mono); font-size: .9em; background: var(--surface); border: 1px solid var(--border-soft); padding: .1em .4em; border-radius: 6px; color: var(--silver); }
pre { background: var(--bg-raised); border: 1px solid var(--border-soft); border-radius: 10px; padding: 1rem 1.2rem; overflow-x: auto; }
pre code { background: none; border: 0; padding: 0; color: var(--text); }

.note {
  border-left: 3px solid var(--link); background: var(--bg-raised);
  padding: 1rem 1.2rem; border-radius: 0 10px 10px 0; margin: 1.2rem 0; color: var(--text);
}
.two-col { display: grid; gap: 2.4rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
ul.plain { padding-left: 1.2rem; margin: .6rem 0; }
ul.plain li { margin: .45rem 0; }

/* Prose (legal pages) */
.prose { max-width: 46rem; padding-block: 2rem 4rem; }
.prose h1 { margin-bottom: 1.4rem; }
.prose h2 { margin-top: 2.2rem; font-size: 1.35rem; }
.prose blockquote { border-left: 3px solid var(--border); margin: 1.2rem 0; padding: .2rem 1.2rem; color: var(--muted); }
.updated { color: var(--muted); font-size: .92rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--border-soft); margin-top: 3rem; padding-block: 2rem; color: var(--muted); font-size: .92rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; }
.site-footer ul { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin: 0; padding: 0; }
.site-footer a { color: var(--silver); }

@media (max-width: 640px) {
  .site-header .wrap { flex-direction: column; align-items: flex-start; }
  nav ul { gap: 1rem; flex-wrap: wrap; }
  .hero { padding-top: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, a.card { transition: none; }
  .btn:hover { transform: none; }
}

/* Slim banner on inner pages */
.page-banner { padding-top: 1.5rem; }
.page-banner .hero-art { box-shadow: 0 0 40px -22px var(--accent-glow); }
.page-head { padding-top: 2rem; }

/* Home page: matches the design mock-up */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ico { width: 1.6rem; height: 1.6rem; color: var(--link); flex: none; }
.ico-lg { width: 2.6rem; height: 2.6rem; }
.btn-sm { padding: .5rem 1rem; font-size: .92rem; border-radius: 9px; }
.nav-cta { box-shadow: 0 0 18px -6px var(--accent-glow); background: transparent; border-color: var(--link); color: var(--text-strong); }
.nav-cta:hover { background: rgba(30,111,224,.25); }
.site-header .wrap { flex-wrap: wrap; }
.btn-row-left { justify-content: flex-start; }

.hero-full {
  padding-block: 2.2rem 2.6rem; border-bottom: 1px solid var(--border-soft);
  background:
    radial-gradient(ellipse 60% 90% at 18% 45%, rgba(30,111,224,.32), transparent 70%),
    radial-gradient(ellipse 40% 70% at 92% 40%, rgba(47,140,255,.22), transparent 70%);
}
.hero-full + section { border-top: 0; }
.hero-grid { display: grid; gap: 1.5rem 2rem; align-items: center; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr) minmax(0, .45fr); }
.hero-mark img { width: 100%; height: auto; filter: drop-shadow(0 0 40px rgba(47,140,255,.35)); }
.hero-kicker { text-transform: uppercase; letter-spacing: .28em; font-size: .68rem; color: var(--muted); margin: 0 0 1.2rem; }
.hero-text h1 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 1rem; }
.hero-text .lead { font-size: 1.05rem; max-width: 30rem; }
.hero-face { position: relative; align-self: stretch; min-height: 15rem; }
.face-glow {
  position: absolute; inset: 0; border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 40%, rgba(47,140,255,.35), transparent 55%),
    repeating-linear-gradient(90deg, rgba(109,179,255,.10) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(109,179,255,.08) 0 1px, transparent 1px 22px);
  -webkit-mask-image: radial-gradient(ellipse at 60% 45%, #000 20%, transparent 72%);
  mask-image: radial-gradient(ellipse at 60% 45%, #000 20%, transparent 72%);
}
.hero-tags { position: absolute; right: 0; bottom: .5rem; list-style: none; margin: 0; padding: 0; text-align: right; }
.hero-tags li { text-transform: uppercase; letter-spacing: .28em; font-size: .62rem; color: var(--silver); line-height: 2; }

.band-tight { padding-block: 1.6rem; }
.pillars { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); text-align: center; }
.pillars li { padding: .4rem 1rem; border-left: 1px solid var(--border-soft); display: grid; justify-items: center; gap: .15rem; }
.pillars li:first-child { border-left: 0; }
.pillars strong { color: var(--text-strong); letter-spacing: .16em; text-transform: uppercase; font-size: .74rem; margin-top: .3rem; }
.pillars span { color: var(--muted); font-size: .8rem; }

.split { display: grid; gap: 2rem; align-items: center; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr) minmax(0, .9fr); }
.split .section-intro { margin-bottom: 1.2rem; }
.split h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }

.rooms { display: grid; gap: 0; }
.rooms-row { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.rooms-row li { text-align: center; padding: .9rem .4rem; border: 1px solid var(--border); border-radius: 10px; background: var(--bg-raised); display: grid; gap: .1rem; }
.rooms-row strong { color: var(--text-strong); font-size: .95rem; }
.rooms-row span { color: var(--muted); font-size: .78rem; }
.rooms-lines { width: 100%; height: 3rem; }
.rooms-lines path { fill: none; stroke: var(--link); stroke-width: 1.5; opacity: .7; vector-effect: non-scaling-stroke; }
.rooms-core { display: flex; align-items: center; justify-content: center; gap: .9rem; padding: 1rem; border: 1px solid var(--link); border-radius: var(--radius); background: linear-gradient(180deg, var(--bg-raised), var(--surface)); box-shadow: 0 0 40px -14px var(--accent-glow); }
.rooms-core strong { display: block; color: var(--text-strong); font-size: 1.1rem; }
.rooms-core small { color: var(--muted); }

.benefits, .checks { list-style: none; margin: 0; padding: 1.1rem 1.2rem; border: 1px solid var(--border-soft); border-radius: var(--radius); background: linear-gradient(180deg, var(--bg-raised), var(--surface)); display: grid; gap: .8rem; }
.benefits li, .checks li { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--text); }
.benefits .ico { width: 1.2rem; height: 1.2rem; margin-top: .2rem; }
.checks .ico { width: 1.05rem; height: 1.05rem; margin-top: .3rem; color: var(--ok); }
.checks { gap: .55rem; }

.graph { width: 100%; height: auto; max-height: 20rem; }
.graph-lines path { stroke: var(--link); stroke-width: 1; opacity: .55; fill: none; }
.graph-core { fill: rgba(30,111,224,.22); stroke: var(--link); stroke-width: 1.5; }
.graph-core-t { fill: var(--text-strong); font-size: 14px; font-weight: 600; }
.graph-nodes circle { fill: var(--link); }
.graph-labels text { fill: var(--silver); font-size: 12px; }

.pipeline { list-style: none; margin: 0; padding: 0; grid-column: span 2; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .8rem; }
.pipeline li { position: relative; text-align: center; background: linear-gradient(180deg, var(--bg-raised), var(--surface)); border: 1px solid var(--border-soft); border-radius: 12px; padding: 1rem .8rem 1.1rem; display: grid; justify-items: center; gap: .3rem; }
.pipeline li + li::before { content: "\2192"; position: absolute; left: -.85rem; top: 50%; transform: translateY(-50%); color: var(--link); font-size: .9rem; }
.pipeline h3 { font-size: .95rem; margin: .2rem 0 0; }
.pipeline p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.split-pipe { grid-template-columns: minmax(0, .8fr) minmax(0, 2.1fr); }
.split-pipe .pipeline { grid-column: auto; }
.pipe-note { text-align: center; color: var(--silver); margin: 1.4rem 0 0; }

.product-row { display: flex; align-items: center; gap: 1.4rem; padding: 1.4rem 1.6rem; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(90deg, var(--surface), var(--bg-raised)); text-decoration: none; color: inherit; transition: border-color .2s, box-shadow .2s; }
.product-row:hover { border-color: var(--link); box-shadow: 0 0 40px -18px var(--accent-glow); }
.product-row h3 { margin: 0; font-size: 1.3rem; }
.product-tag { margin: 0 0 .3rem; text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; color: var(--link); }
.product-row p { margin: 0; }
.product-row-text { flex: 1; }
.product-row-price { text-align: right; display: grid; gap: .5rem; }
.learn { color: var(--link); font-size: .95rem; }
.more-soon { color: var(--muted); text-align: center; font-size: .92rem; margin: 1rem 0 0; }

.closing-band { border-top: 1px solid var(--border-soft); background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(30,111,224,.22), transparent 70%); padding-block: 2.5rem; }
.closing-grid { display: grid; gap: 1.5rem 2rem; align-items: center; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr) minmax(0, .8fr); }
.skyline { width: 100%; height: auto; border-radius: 10px; opacity: .9; -webkit-mask-image: linear-gradient(90deg, #000 60%, transparent); mask-image: linear-gradient(90deg, #000 60%, transparent); }
.closing-text { text-align: center; }
.closing-line { font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.3; color: var(--text-strong); font-weight: 600; margin: 0 0 .6rem; }
.closing-sub { color: var(--muted); margin: 0; }
.closing-quote { border-left: 1px solid var(--border); padding-left: 1.2rem; color: var(--silver); font-style: italic; margin: 0; }
.foot-tag { text-transform: uppercase; letter-spacing: .2em; font-size: .68rem; color: var(--muted); }

@media (max-width: 900px) {
  .hero-grid, .split, .split-pipe, .closing-grid { grid-template-columns: 1fr; }
  .hero-face { min-height: 8rem; }
  .pipeline { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .pipeline li + li::before { display: none; }
  .product-row { flex-wrap: wrap; }
  .product-row-price { text-align: left; }
  .closing-quote { border-left: 0; padding-left: 0; text-align: center; }
  .skyline { max-width: 20rem; margin-inline: auto; }
}

.hero-text .btn-row .btn { padding: .7rem 1.1rem; font-size: .95rem; }
.hero-text .btn-row { flex-wrap: nowrap; }
@media (max-width: 900px) { .hero-text .btn-row { flex-wrap: wrap; } }

/* Face in the hero */
.hero-grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.2fr) minmax(0, .95fr); }
.hero-face { min-height: 0; align-self: stretch; overflow: visible; }
.hero-face img {
  position: absolute; inset: -2.2rem -1rem -2.6rem 0; width: calc(100% + 1rem); height: calc(100% + 4.8rem); object-fit: cover; object-position: 30% 22%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 30%), linear-gradient(180deg, transparent 0, #000 12%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in; mask-image: linear-gradient(90deg, transparent 0, #000 30%), linear-gradient(180deg, transparent 0, #000 12%, #000 78%, transparent 100%);
  mask-composite: intersect; pointer-events: none;
}
.hero-tags { z-index: 1; text-shadow: 0 0 8px #000c1d, 0 0 14px #000c1d; }
@media (max-width: 900px) {
  .hero-face { height: 22rem; }
  .hero-face img { inset: 0; width: 100%; height: 100%; object-position: 30% 20%; }
}
.hero-grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.35fr) minmax(0, .85fr); }
.hero-text .btn-row .btn { white-space: nowrap; padding: .7rem 1rem; font-size: .92rem; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mark { max-width: 26rem; margin-inline: auto; }
  .hero-face { order: 3; }
}

/* Polish taken from the GPT section mock-ups (done in live HTML/CSS so the text stays real text) */
.accent { color: #2f9bff; text-shadow: 0 0 22px rgba(47,155,255,.35); }
.rooms-row li { border-color: rgba(47,155,255,.45); box-shadow: inset 0 0 14px rgba(47,155,255,.08), 0 0 16px -8px var(--accent-glow); }
.rooms-core { border-color: #2f9bff; box-shadow: inset 0 0 22px rgba(47,155,255,.12), 0 0 34px -8px rgba(47,155,255,.55); }
.rooms-lines path { stroke: #2f9bff; opacity: .9; filter: drop-shadow(0 0 4px rgba(47,155,255,.8)); }
.benefits, .checks, .pipeline li { border-color: rgba(47,155,255,.28); box-shadow: inset 0 0 18px rgba(47,155,255,.05); }
section[aria-labelledby="rooms-h"], section[aria-labelledby="graph-h"] {
  background-image:
    radial-gradient(ellipse 45% 60% at 0% 100%, rgba(47,140,255,.10), transparent 70%),
    radial-gradient(ellipse 45% 60% at 100% 0%, rgba(47,140,255,.10), transparent 70%);
}

/* Hero: big logo across the top, headline block and face below it (desktop only) */
@media (min-width: 901px) {
  .hero-grid { grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); align-items: center; }
  .hero-full { overflow-x: clip; }
  /* full-bleed: the banner runs edge to edge of the window; on screens wider than the image it is centred and its sides fade out */
  .hero-mark { grid-column: 1 / -1; width: 100vw; margin-left: calc(50% - 50vw); margin-top: -2.2rem; }
  .hero-mark img {
    display: block; width: 100%; max-width: 1920px; margin-inline: auto; height: auto; filter: none;
    /* trim the empty strip under the icon row so the headline and buttons sit higher up the first screen */
    aspect-ratio: 2048 / 700; object-fit: cover; object-position: 50% 6%;
    -webkit-mask-image: linear-gradient(180deg, #000 90%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 90%, transparent 100%);
  }
  .hero-text { grid-column: 1; }
  .hero-text h1 { font-size: clamp(1.9rem, 2.9vw, 2.5rem); margin-bottom: .8rem; }
  .hero-kicker { margin-bottom: .8rem; }
  .hero-face { grid-column: 2; grid-row: 2; }
}
@media (min-width: 1921px) {
  .hero-mark img {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%), linear-gradient(180deg, #000 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%), linear-gradient(180deg, #000 90%, transparent 100%);
    mask-composite: intersect;
  }
}

/* Site-wide network backdrop: fixed behind everything so it never tiles or seams; bright at the sides, dark in the middle where the text sits */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: url(/assets/bg-network.webp) center / cover no-repeat; opacity: .6;
}

/* Support page: face looking at the visitor, beside the heading */
.support-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 30rem); gap: 2rem; align-items: center; }
.support-face {
  display: block; width: 100%; height: auto; justify-self: end;
  aspect-ratio: 10 / 11; object-fit: cover; object-position: 50% 0; pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 64% 54% at 50% 44%, #000 52%, transparent 100%);
  mask-image: radial-gradient(ellipse 64% 54% at 50% 44%, #000 52%, transparent 100%);
}
@media (max-width: 700px) {
  .support-head { grid-template-columns: 1fr; }
  .support-face { max-width: 22rem; justify-self: center; }
}
/* pull the first section up under the faded lower edge of the face so the gap under the heading is not huge */
@media (min-width: 701px) {
  .support-head { margin-bottom: -8rem; }
  .support-head + section { position: relative; }
}

/* About page illustration */
.about-figure { margin-block: 0 1.5rem; }
.about-figure img { display: block; width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--border-soft); box-shadow: 0 0 60px -24px var(--accent-glow); }
.about-figure figcaption { margin-top: .6rem; font-size: .85rem; color: var(--muted); text-align: center; }

/* Key promise callout (About page) */
.promise {
  display: flex; align-items: center; gap: 1.2rem; margin-top: 1.4rem; padding: 1.3rem 1.6rem;
  border: 1px solid #2f9bff; border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(47,155,255,.16), rgba(47,155,255,.04));
  box-shadow: inset 0 0 26px rgba(47,155,255,.10), 0 0 40px -12px rgba(47,155,255,.55);
}
.promise svg { flex: none; width: 3rem; height: 3rem; color: #2f9bff; filter: drop-shadow(0 0 8px rgba(47,155,255,.6)); }
.promise p { margin: 0; font-size: clamp(1.15rem, 2.2vw, 1.55rem); line-height: 1.35; color: var(--text-strong); }
.promise strong { color: #6db3ff; text-shadow: 0 0 18px rgba(47,155,255,.45); }
@media (max-width: 700px) { .promise { flex-direction: column; text-align: center; } }

/* Home page: tool count beside the data promise */
.glance { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1.2rem; align-items: stretch; }
.glance .promise { margin-top: 0; }
.glance-stat {
  display: grid; place-content: center; text-align: center; padding: 1rem 2rem; min-width: 9rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-raised), var(--surface));
  box-shadow: 0 0 34px -14px var(--accent-glow);
}
.glance-stat strong { font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: #6db3ff; text-shadow: 0 0 22px rgba(47,155,255,.5); }
.glance-stat span { margin-top: .35rem; text-transform: uppercase; letter-spacing: .2em; font-size: .7rem; color: var(--silver); }
@media (max-width: 700px) { .glance { grid-template-columns: 1fr; } }

/* Home page: a few named tools */
.tools-h { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .2em; color: var(--silver); margin: 0 0 1rem; }
.tool-cards { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tool-cards li {
  display: grid; align-content: start; gap: .45rem; padding: 1rem 1.1rem;
  border: 1px solid var(--border-soft); border-radius: 12px;
  background: linear-gradient(180deg, var(--bg-raised), var(--surface));
  box-shadow: inset 0 0 18px rgba(47,155,255,.05);
}
.tool-cards code { font-family: var(--mono); font-size: .86rem; color: #6db3ff; background: none; padding: 0; overflow-wrap: anywhere; }
.tool-cards span { font-size: .9rem; color: var(--muted); line-height: 1.45; }
.tools-more { margin: 1rem 0 0; color: var(--muted); font-size: .95rem; }
@media (max-width: 1000px) { .tool-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .tool-cards { grid-template-columns: 1fr; } }

