:root {
  --ink: #050507;
  --ink-2: #09090e;
  --graphite: #101018;
  --anthracite: #16161f;
  --elev: #1c1c28;
  --line: rgba(243, 240, 234, 0.08);
  --line-strong: rgba(243, 240, 234, 0.16);
  --ivory: #f3f0ea;
  --ivory-soft: #d8d4cb;
  --muted: #9b978e;
  --silver: #c8c4ba;
  --indigo: #8b7cff;
  --indigo-deep: #5b4de6;
  --violet: #c4b5fd;
  --cyan: #7dd3e8;
  --glow: rgba(139, 124, 255, 0.28);
  --glow-cyan: rgba(125, 211, 232, 0.16);
  --danger: #f0a8a8;
  --ok: #9ad8b8;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --container: 1180px;
  --gutter: 1.25rem;
  --radius: 22px;
  --radius-sm: 14px;
  --header: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

html:focus-within { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ivory-soft);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(91, 77, 230, 0.22), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(125, 211, 232, 0.08), transparent 50%),
    var(--ink);
  min-height: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='.55'/></svg>");
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
}

.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ivory);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  padding: 4.5rem 0;
}
@media (min-width: 900px) {
  .section { padding: 7rem 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--indigo));
}

h1, h2, h3, h4, .h1, .h2 {
  font-family: var(--font-display);
  color: var(--ivory);
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-weight: 700;
  margin: 0 0 1rem;
}
h1, .h1 { font-size: clamp(2.15rem, 6vw, 4.35rem); font-weight: 800; }
h2, .h2 { font-size: clamp(1.7rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -0.02em; }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--silver);
  max-width: 42rem;
  margin: 0 0 1.75rem;
}
.muted { color: var(--muted); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* Buttons */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  --btn-bg: var(--ivory);
  --btn-fg: #121018;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 10px 30px rgba(139, 124, 255, 0.18);
}
.btn--primary:hover { box-shadow: 0 12px 36px rgba(139, 124, 255, 0.32); }
.btn--ghost {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
}
.btn--ghost:hover { border-color: var(--violet); }
.btn--whatsapp {
  --btn-bg: #10351f;
  --btn-fg: #d8ffe8;
  border-color: rgba(154, 216, 184, 0.25);
}
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1280px, calc(100% - 1.5rem * 2));
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}
.brand img, .brand svg { width: 34px; height: 34px; }
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav a {
  padding: 0.45rem 0.7rem;
  color: var(--silver);
  font-size: 0.92rem;
  border-radius: 999px;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ivory); background: rgba(255,255,255,0.04); }
.header-actions { display: flex; align-items: center; gap: 0.65rem; }
.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}
.lang a {
  padding: 0.38rem 0.62rem;
  color: var(--muted);
}
.lang a.is-active {
  background: var(--ivory);
  color: var(--ink);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ivory);
  position: relative;
  transition: transform 0.25s var(--ease);
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }
.nav-open .menu-toggle span { background: transparent; }
.nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (min-width: 1100px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
  .header-actions .btn--primary { display: inline-flex; }
}
@media (max-width: 1099px) {
  .header-actions .btn--primary { display: none; }
  .mobile-nav {
    display: none;
    position: fixed;
    inset: var(--header) 0 0;
    background: rgba(5,5,7,0.94);
    backdrop-filter: blur(22px);
    padding: 1.5rem;
    z-index: 40;
    overflow: auto;
  }
  .nav-open .mobile-nav { display: block; }
  .mobile-nav a {
    display: block;
    padding: 0.85rem 0.2rem;
    font-size: 1.2rem;
    font-family: var(--font-display);
    color: var(--ivory);
    border-bottom: 1px solid var(--line);
  }
}

/* Hero */
.hero {
  padding: 2.2rem 0 3.5rem;
  overflow: hidden;
}
@media (min-width: 980px) {
  .hero { padding: 3.5rem 0 5.5rem; }
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.08fr 0.92fr; gap: 3.5rem; }
}
.hero h1 span {
  display: block;
  background: linear-gradient(120deg, #fff 20%, #c4b5fd 52%, #7dd3e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.6rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.trust-row b {
  display: block;
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.trust-row span { color: var(--muted); font-size: 0.85rem; }

.hero-visual { position: relative; isolation: isolate; }
.hero-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow), 0 0 0 1px rgba(139,124,255,0.08);
  background: var(--graphite);
  aspect-ratio: 4/5;
}
@media (min-width: 700px) {
  .hero-frame { aspect-ratio: 5/5.1; }
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(5,5,7,0.78), transparent);
}
.float-card {
  position: absolute;
  z-index: 2;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(12, 12, 18, 0.62);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  min-width: 148px;
  animation: floaty 7s var(--ease) infinite;
}
.float-card strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 1.05rem;
}
.float-card span { color: var(--muted); font-size: 0.75rem; }
.float-card--tl { top: 8%; left: -6%; }
.float-card--br { right: -4%; bottom: 14%; animation-delay: -2.4s; }
.orbit {
  position: absolute;
  inset: -8%;
  border: 1px solid rgba(139,124,255,0.12);
  border-radius: 36px;
  z-index: -1;
}
.glow-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -40px;
  top: -50px;
  background: radial-gradient(circle, var(--glow), transparent 68%);
  z-index: -1;
  filter: blur(6px);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Cards / grids */
.grid-3, .grid-4, .grid-2 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,124,255,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,181,253,0.45), transparent);
  opacity: 0.7;
}
.card h3 { margin-bottom: 0.45rem; }
.card p { margin: 0; color: var(--muted); }
.card .num {
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}
.card-link { display: inline-flex; margin-top: 1rem; color: var(--violet); font-weight: 600; font-size: 0.92rem; }

.panel {
  background: rgba(16,16,24,0.7);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.5rem;
}
@media (min-width: 800px) {
  .panel { padding: 2.2rem; }
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}

.photo-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame--portrait { aspect-ratio: 4/5; }
.photo-frame--wide { aspect-ratio: 16/11; }

.list-check { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.list-check li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  color: var(--silver);
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  box-shadow: 0 0 12px var(--glow);
}

/* Process */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step-index {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  color: var(--violet);
  background: rgba(139,124,255,0.08);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 800px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: 1.3rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ivory);
  letter-spacing: -0.04em;
}
.stat span { color: var(--muted); font-size: 0.88rem; }

/* Testimonials */
.quote {
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
  border: 1px solid var(--line);
}
.quote p {
  font-size: 1.05rem;
  color: var(--ivory-soft);
  margin: 0 0 1.2rem;
}
.quote footer { color: var(--muted); font-size: 0.88rem; }

/* GBP */
.gbp {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 800px) {
  .gbp { grid-template-columns: 1.1fr 0.9fr; }
}
.stars { color: #f5d56e; letter-spacing: 0.12em; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.2rem 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 2rem 1.15rem 0;
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 1.05rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.1rem;
  color: var(--violet);
  font-weight: 500;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 1.15rem; color: var(--muted); max-width: 46rem; }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 2.4rem 1.5rem;
  border: 1px solid rgba(139,124,255,0.25);
  background:
    radial-gradient(600px 200px at 90% 0%, rgba(139,124,255,0.25), transparent 50%),
    linear-gradient(180deg, #141422, #0c0c14);
}
@media (min-width: 800px) {
  .cta-band { padding: 3.2rem 3rem; display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
}

/* Forms */
.form {
  display: grid;
  gap: 0.85rem;
}
.form-row {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  color: var(--silver);
}
input, select, textarea {
  width: 100%;
  background: rgba(5,5,7,0.45);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--indigo); }
textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-note { font-size: 0.82rem; color: var(--muted); }
.form-success, .form-error {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
}
.form-success { background: rgba(154,216,184,0.1); color: var(--ok); }
.form-error { background: rgba(240,168,168,0.1); color: var(--danger); }

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 1.2rem 0 0;
}
.breadcrumbs a:hover { color: var(--ivory); }
.breadcrumbs span[aria-current] { color: var(--silver); }

.page-hero { padding: 2rem 0 1rem; }
.page-hero h1 { max-width: 18ch; }

/* Blog */
.post-card h3 { font-size: 1.25rem; }
.post-meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.6rem; }
.article {
  max-width: 740px;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.article p, .article li { color: var(--ivory-soft); }
.article a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }
.wp-block-image, .article img { border-radius: 18px; }

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 1.5rem;
  background: #07070b;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
}
.site-footer h2, .site-footer h3 {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0.4rem 0; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--ivory); }
.footer-brand p { color: var(--muted); max-width: 28rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

/* WhatsApp + mobile bar */
.wa-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #06210f;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}
@media (min-width: 900px) {
  .wa-fab { right: 1.4rem; bottom: 1.4rem; }
}
.mobile-cta {
  display: none;
}
@media (max-width: 760px) {
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(5,5,7,0.9);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
  }
  .mobile-cta .btn { width: 100%; min-height: 46px; }
  body { padding-bottom: 76px; }
  .wa-fab { bottom: 84px; }
}

/* Search / 404 */
.search-box { max-width: 520px; display: flex; gap: 0.6rem; }
.search-box input { flex: 1; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s var(--ease) forwards;
}
.reveal-d1 { animation-delay: 0.08s; }
.reveal-d2 { animation-delay: 0.16s; }
.reveal-d3 { animation-delay: 0.24s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 0.85rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  color: var(--silver);
}

.tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

hr.line { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

.legal { max-width: 760px; }
.legal h2 { margin-top: 2rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 600px) {
  .float-card--tl { left: 4%; top: 4%; }
  .float-card--br { right: 4%; }
  .hero-frame { aspect-ratio: 4/5; }
}
