/* =========================================================================
   www.feniska.com — dark neon theme
   Layout signature: bento grid blocks and a horizontal round timeline.
   ========================================================================= */

/* ---------- Design tokens ------------------------------------------------ */
:root {
  --void: #06050f;
  --void-2: #0c0a1c;
  --panel: #12102a;
  --panel-2: #1a1740;
  --edge: rgba(140, 150, 220, .18);
  --edge-strong: rgba(140, 150, 220, .34);

  --cyan: #42e8ff;
  --cyan-dim: #1ea7c4;
  --violet: #9a6bff;
  --magenta: #ff5ec7;
  --lime: #6ef2a5;
  --danger: #ff6b6b;

  --text: #f2f3ff;
  --text-soft: #b6bce0;
  --text-dim: #8189b5;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;

  --fs-h1: clamp(2rem, 1.25rem + 3.1vw, 3.5rem);
  --fs-h2: clamp(1.5rem, 1.15rem + 1.6vw, 2.3rem);
  --fs-h3: clamp(1.1rem, 1.02rem + .45vw, 1.35rem);
  --fs-body: clamp(.97rem, .94rem + .2vw, 1.06rem);
  --fs-small: .86rem;

  --container: 1240px;
  --gutter: clamp(1rem, .5rem + 2vw, 2.5rem);
  --section-y: clamp(2.75rem, 2rem + 3.5vw, 5rem);
  --gap: clamp(.85rem, .6rem + 1vw, 1.4rem);
  --radius: 18px;
  --radius-sm: 12px;

  --grad-neon: linear-gradient(120deg, var(--cyan) 0%, var(--violet) 55%, var(--magenta) 100%);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 72px;
}

/* ---------- Reset and base ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--void);
  background-image:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(154, 107, 255, .22), transparent 60%),
    radial-gradient(ellipse 50% 45% at 90% 12%, rgba(66, 232, 255, .16), transparent 62%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { line-height: 1.16; font-weight: 800; letter-spacing: -.025em; text-wrap: balance; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { text-wrap: pretty; color: var(--text-soft); }
ul, ol { padding-left: 1.3em; }
li { color: var(--text-soft); }
li + li { margin-top: .5em; }
strong { font-weight: 700; color: var(--text); }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 8px; }
::selection { background: var(--violet); color: #fff; }

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

/* ---------- Utilities ---------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.mt-gap { margin-top: var(--gap); }
.mt-lg { margin-top: clamp(1.5rem, 1.1rem + 1.8vw, 2.5rem); }
.eyeless { color: var(--text); }

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%); z-index: 1000;
  background: var(--cyan); color: var(--void); font-weight: 800; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 48px; padding: .8rem 1.9rem; border: 0; border-radius: 12px;
  font: inherit; font-weight: 800; font-size: .98rem; letter-spacing: .02em;
  text-align: center; cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), filter .22s var(--ease);
}
.btn--neon { background: var(--grad-neon); color: #0a0620; box-shadow: 0 8px 26px rgba(66, 232, 255, .3); }
.btn--neon:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 12px 34px rgba(154, 107, 255, .4); }
.btn--neon:active { transform: translateY(0) scale(.985); }
.btn--wire { background: rgba(255, 255, 255, .04); color: var(--text); border: 1px solid var(--edge-strong); }
.btn--wire:hover { background: rgba(255, 255, 255, .1); transform: translateY(-2px); }
.btn--lg { min-height: 56px; padding: 1rem 2.4rem; font-size: 1.04rem; }
.btn--sm { min-height: 42px; padding: .55rem 1.25rem; font-size: .84rem; }
.btn__dot { width: 8px; height: 8px; border-radius: 50%; background: #0a0620; animation: blip 1.8s var(--ease) infinite; }
@keyframes blip { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(.6); } }

/* ---------- Header ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 5, 15, .82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--edge);
}
.site-header__inner { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); padding-block: .5rem; }
.brand img { height: 46px; width: auto; }
@media (max-width: 480px) { .brand img { height: 38px; } }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(.5rem, .1rem + 1vw, 1.4rem); list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__link { display: block; padding: .5rem .15rem; font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-soft); transition: color .2s var(--ease); }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--cyan); }
.nav__cta { display: none; }

.nav-toggle { display: none; width: 46px; height: 46px; margin-left: auto; padding: 0; background: rgba(255, 255, 255, .06); border: 1px solid var(--edge-strong); border-radius: 12px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--text); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; margin: 0; max-height: 0; overflow: hidden; background: var(--void-2); border-bottom: 1px solid var(--edge); transition: max-height .3s var(--ease); }
  .nav.is-open { max-height: min(78vh, 560px); overflow-y: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem var(--gutter) 1.25rem; }
  .nav__link { padding: .95rem .25rem; font-size: .95rem; border-bottom: 1px solid var(--edge); }
  .nav__cta { display: block; margin-top: 1rem; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero as a bento grid ----------------------------------------- */
.hero { padding-block: clamp(2rem, 1.5rem + 3vw, 3.75rem); }
.bento { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 900px) { .bento { grid-template-columns: repeat(4, 1fr); } }

.tile {
  position: relative; padding: clamp(1.2rem, 1rem + 1vw, 1.9rem);
  background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  border: 1px solid var(--edge); border-radius: var(--radius);
  overflow: hidden;
}
.tile--head { grid-column: span 1; }
@media (min-width: 900px) { .tile--head { grid-column: span 3; } }
.tile--art { display: grid; place-items: center; }
@media (min-width: 900px) { .tile--art { grid-column: span 1; } }
.tile--stat { text-align: left; }
@media (min-width: 900px) { .tile--stat { grid-column: span 1; } }
.tile--wide { grid-column: 1 / -1; }

.tile--glow::after {
  content: ""; position: absolute; inset: auto -30% -60% -30%; height: 140%;
  background: radial-gradient(ellipse at 50% 100%, rgba(66, 232, 255, .18), transparent 60%);
  pointer-events: none;
}
.tile > * { position: relative; z-index: 1; }

.tile__kick { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); }
.tile h1 { margin-top: .9rem; }
.tile__lead { margin-top: 1.1rem; font-size: clamp(1rem, .95rem + .4vw, 1.12rem); }
.tile__lead + .tile__lead { margin-top: .85rem; }
.tile__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.7rem; }
.tile__note { margin-top: .95rem; font-size: var(--fs-small); color: var(--text-dim); }

.stat__value { display: block; font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem); font-weight: 800; background: var(--grad-neon); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { display: block; margin-top: .3rem; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-dim); }

/* ---------- Breadcrumbs -------------------------------------------------- */
.breadcrumbs { padding-block: .8rem; font-size: var(--fs-small); color: var(--text-dim); border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li { margin: 0; display: flex; gap: .5rem; align-items: center; color: var(--text-dim); }
.breadcrumbs li + li::before { content: "//"; color: var(--edge-strong); }
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs [aria-current] { color: var(--text); font-weight: 600; }

/* ---------- Sections ----------------------------------------------------- */
.section { padding-block: var(--section-y); scroll-margin-top: calc(var(--header-h) + 18px); }
.section > .container > * + * { margin-top: 1.15rem; }
.section h2 { display: flex; align-items: baseline; gap: .8rem; }
.section h2::before { content: ""; flex: 0 0 auto; width: 10px; height: 10px; border-radius: 3px; background: var(--grad-neon); transform: translateY(-.15em); }
.section--edge { border-top: 1px solid var(--edge); }

/* ---------- Table of contents -------------------------------------------- */
.toc { padding: 1.15rem 1.3rem; background: rgba(255, 255, 255, .04); border: 1px solid var(--edge); border-radius: var(--radius); }
.toc h2 { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); }
.toc h2::before { display: none; }
.toc ul { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: .9rem 0 0; padding: 0; }
.toc li { margin: 0; }
.toc a { display: block; padding: .34rem .85rem; font-size: .84rem; color: var(--text-soft); border: 1px solid var(--edge); border-radius: 999px; transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease); }
.toc a:hover { color: var(--cyan); border-color: var(--cyan-dim); }
.toc a[aria-current] { color: var(--void); background: var(--cyan); border-color: var(--cyan); font-weight: 700; }

/* ---------- Cards -------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: var(--gap); }
.card { padding: 1.3rem 1.3rem; background: rgba(255, 255, 255, .04); border: 1px solid var(--edge); border-radius: var(--radius); transition: transform .28s var(--ease), border-color .28s var(--ease); }
.card:hover { transform: translateY(-3px); border-color: var(--cyan-dim); }
.card h3 { margin-bottom: .5rem; font-size: 1.04rem; }
.card__num { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; color: var(--cyan); }

/* ---------- Round timeline ----------------------------------------------- */
.timeline { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); list-style: none; margin: 0; padding: 0; counter-reset: tl; }
.timeline li { position: relative; margin: 0; padding: 1.15rem 1.15rem 1.2rem; background: linear-gradient(170deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02)); border: 1px solid var(--edge); border-radius: var(--radius-sm); }
.timeline li::before {
  counter-increment: tl; content: counter(tl);
  display: grid; place-items: center; width: 28px; height: 28px; margin-bottom: .7rem;
  border-radius: 8px; background: var(--grad-neon); color: #0a0620; font-weight: 800; font-size: .82rem;
}
.timeline b { display: block; color: var(--text); font-size: .98rem; }
.timeline span { display: block; margin-top: .35rem; font-size: .9rem; color: var(--text-soft); }
.timeline .tl-out { display: block; margin-top: .55rem; font-family: var(--font-mono); font-size: .78rem; color: var(--lime); }

/* ---------- Feature marks ------------------------------------------------ */
.marks { list-style: none; padding: 0; margin: 0; }
.marks li { position: relative; padding-left: 1.8rem; margin-top: .8rem; }
.marks li:first-child { margin-top: 0; }
.marks li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border-radius: 2px; background: var(--grad-neon); }

/* ---------- Highlight ---------------------------------------------------- */
.spot { padding: 1.25rem 1.4rem; background: rgba(66, 232, 255, .07); border: 1px solid rgba(66, 232, 255, .3); border-radius: var(--radius); }
.spot h3 { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); }
.spot p { margin-top: .6rem; color: var(--text); }

.warn { padding: 1.25rem 1.4rem; background: rgba(255, 107, 107, .08); border: 1px solid rgba(255, 107, 107, .34); border-radius: var(--radius); }
.warn h3 { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--danger); }
.warn p { margin-top: .55rem; color: var(--text-soft); }

/* ---------- Tables ------------------------------------------------------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; background: rgba(255, 255, 255, .04); border: 1px solid var(--edge); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: .95rem; }
caption { padding: 1rem 1.2rem 0; text-align: left; font-size: var(--fs-small); color: var(--text-dim); }
thead th { padding: .85rem 1.2rem; text-align: left; font-family: var(--font-mono); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); border-bottom: 1px solid var(--edge-strong); }
tbody th, tbody td { padding: .82rem 1.2rem; border-top: 1px solid var(--edge); vertical-align: top; color: var(--text-soft); }
tbody th { text-align: left; font-weight: 700; color: var(--text); }

@media (max-width: 620px) {
  .table--stack thead { display: none; }
  .table--stack tbody tr { display: block; padding: .4rem 0; border-top: 1px solid var(--edge-strong); }
  .table--stack tbody th, .table--stack tbody td { display: block; border: 0; padding: .28rem 1.1rem .6rem; }
  .table--stack tbody td::before { content: attr(data-label); display: block; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
  .table--stack tbody th { padding-top: .7rem; }
}

/* ---------- Score bars --------------------------------------------------- */
.scores { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.scores li { margin: 0; }
.scores__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.scores b { color: var(--text); }
.scores em { font-style: normal; font-family: var(--font-mono); font-size: .82rem; color: var(--cyan); }
.scores__bar { margin-top: .45rem; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.scores__bar span { display: block; height: 100%; border-radius: 4px; background: var(--grad-neon); }
.scores small { display: block; margin-top: .35rem; font-size: .84rem; color: var(--text-dim); }

/* ---------- Figures ------------------------------------------------------ */
.figure { margin: 0; }
.figure img { width: 100%; border-radius: var(--radius); border: 1px solid var(--edge); }
.figure figcaption { margin-top: .55rem; font-size: var(--fs-small); color: var(--text-dim); }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); gap: var(--gap); align-items: center; }

/* ---------- Inline CTA --------------------------------------------------- */
.cta-inline {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem; border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(66, 232, 255, .12), rgba(154, 107, 255, .12));
  border: 1px solid var(--edge-strong);
}
.cta-inline p { margin: 0; font-weight: 700; color: var(--text); font-size: clamp(1rem, .95rem + .3vw, 1.1rem); }
.cta-inline small { display: block; font-weight: 400; font-size: .83rem; color: var(--text-dim); margin-top: .18rem; }

/* ---------- FAQ ---------------------------------------------------------- */
.faq { display: grid; gap: .65rem; }
.faq__item { background: rgba(255, 255, 255, .04); border: 1px solid var(--edge); border-radius: var(--radius-sm); overflow: hidden; }
.faq__item[open] { border-color: var(--cyan-dim); }
.faq__q { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; font-size: 1rem; font-weight: 700; cursor: pointer; list-style: none; color: var(--text); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; margin-left: auto; font-size: 1.3rem; color: var(--cyan); transition: transform .25s var(--ease); }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.25rem 1.2rem; }

/* ---------- Final CTA ---------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 2rem + 3vw, 4rem); text-align: center; border-top: 1px solid var(--edge); }
.cta-band::before { content: ""; position: absolute; inset: -50% -10% auto; height: 160%; background: radial-gradient(ellipse at 50% 30%, rgba(154, 107, 255, .26), transparent 62%); }
.cta-band > .container { position: relative; }
.cta-band h2 { justify-content: center; }
.cta-band h2::before { display: none; }
.cta-band p { max-width: 46rem; margin: .9rem auto 0; }
.cta-band .btn { margin-top: 1.6rem; }
.cta-band small { display: block; margin-top: 1rem; font-size: var(--fs-small); color: var(--text-dim); }

/* ---------- Legal / info pages ------------------------------------------- */
.hero--page { padding-block: clamp(2rem, 1.5rem + 2.5vw, 3.25rem); }
.hero--page .hero__inner { max-width: 60rem; }
.page-section { padding-block: var(--section-y); }
.panel { max-width: 900px; margin-inline: auto; padding: clamp(1.4rem, 1rem + 1.6vw, 2.6rem); background: rgba(255, 255, 255, .04); border: 1px solid var(--edge); border-radius: var(--radius); }
.prose { max-width: 66ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.5em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose a { color: var(--cyan); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--magenta); }
.back-home { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--edge); }
.back-home a { font-weight: 700; }
.related { margin-top: 1.8rem; padding: 1.15rem 1.3rem; background: rgba(255, 255, 255, .04); border: 1px solid var(--edge); border-radius: var(--radius); }
.related h2 { margin: 0 0 .7rem; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); }
.related h2::before { display: none; }
.related ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem .9rem; }
.related li { margin: 0; }

/* ---------- Forms -------------------------------------------------------- */
.form { display: grid; gap: 1.05rem; max-width: 33rem; }
.form label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: .35rem; color: var(--text); }
.form input, .form textarea {
  width: 100%; padding: .8rem 1rem; font: inherit; font-size: 1rem; color: var(--text);
  background: rgba(255, 255, 255, .05); border: 1px solid var(--edge-strong); border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form input:focus, .form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(66, 232, 255, .16); outline: none; }
.form textarea { min-height: 150px; resize: vertical; }
.form__hint { font-size: var(--fs-small); color: var(--text-dim); }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.contact-list li { margin: 0; }
.contact-list strong { display: block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }

/* ---------- Footer ------------------------------------------------------- */
.site-footer { padding-block: clamp(2.25rem, 1.8rem + 2vw, 3.5rem) 2rem; background: rgba(6, 5, 15, .7); border-top: 1px solid var(--edge); font-size: .93rem; }
.site-footer a { color: var(--text-soft); transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--cyan); }
.footer__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); gap: clamp(1.6rem, 1.2rem + 2vw, 3rem); padding-bottom: 2rem; border-bottom: 1px solid var(--edge); }
.footer__brand img { height: 56px; width: auto; }
.footer__brand p { margin-top: .9rem; color: var(--text-dim); font-size: .87rem; }
.footer__col h3 { margin-bottom: .9rem; font-family: var(--font-mono); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text); }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-top: .55rem; }
.footer__col li:first-child { margin-top: 0; }
.footer__badges { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; padding-block: 1.6rem; border-bottom: 1px solid var(--edge); }
.footer__badges img { height: auto; width: auto; max-height: 28px; max-width: 125px; opacity: .7; transition: opacity .2s var(--ease); }
.footer__badges a:hover img { opacity: 1; }
.footer__age { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--edge-strong); font-weight: 800; color: var(--text); font-size: .88rem; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: .83rem; color: var(--text-dim); }
.footer__disclaimer { margin-top: .9rem; max-width: 74ch; font-size: .79rem; line-height: 1.62; color: var(--text-dim); }

/* ---------- Back to top + catfish ---------------------------------------- */
.to-top {
  position: fixed; right: clamp(.85rem, .5rem + 1vw, 1.6rem); bottom: clamp(.85rem, .5rem + 1vw, 1.6rem);
  z-index: 90; display: grid; place-items: center; width: 46px; height: 46px; padding: 0; border: 0;
  border-radius: 12px; background: var(--grad-neon); color: #0a0620; box-shadow: 0 10px 26px rgba(0, 0, 0, .5);
  cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s, bottom .25s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 19px; height: 19px; }
body.has-catfish .to-top { bottom: calc(clamp(.85rem, .5rem + 1vw, 1.6rem) + 74px); }

.catfish {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: flex; align-items: center; gap: 1rem; padding: .7rem clamp(.8rem, .5rem + 1.5vw, 1.5rem);
  background: rgba(12, 10, 28, .96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--cyan-dim);
  transform: translateY(110%); transition: transform .3s var(--ease);
}
.catfish.is-visible { transform: translateY(0); }
.catfish__text { flex: 1 1 auto; min-width: 0; }
.catfish__text b { display: block; font-size: .95rem; color: var(--text); }
.catfish__text span { display: block; font-family: var(--font-mono); font-size: .76rem; color: var(--text-dim); }
.catfish .btn { flex: 0 0 auto; }
.catfish__close { flex: 0 0 auto; width: 32px; height: 32px; padding: 0; border: 1px solid var(--edge); border-radius: 10px; background: rgba(255, 255, 255, .06); color: var(--text); font-size: 1.05rem; line-height: 1; cursor: pointer; }
.catfish__close:hover { background: rgba(255, 255, 255, .14); }
@media (max-width: 560px) {
  .catfish { gap: .6rem; padding: .6rem .7rem; }
  .catfish__text span { display: none; }
  .catfish .btn { min-height: 42px; padding: .5rem 1rem; font-size: .82rem; }
}

/* score-bar widths and single-column card stack, kept out of the markup */
.cards--one { grid-template-columns: 1fr; }
.bar-85 { width: 85%; }
.bar-90 { width: 90%; }
.bar-100 { width: 100%; }
