/* ============================================================
   GEMINI 24 — Design System (shared across all pages)
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  --bg:        #0a0c10;
  --bg-2:      #12151c;
  --surface:   rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.14);

  --ink:       #f4f4f7;
  --ink-2:     #cccdd6;
  --ink-dim:   #8a8b97;
  --ink-mute:  #5a5b66;

  --gold:      #c89e5a;
  --gold-2:    #e6c182;
  --indigo:    #6a7cff;
  --teal:      #4fd1c5;
  --grad:      linear-gradient(135deg, #c89e5a 0%, #e6c182 50%, #c89e5a 100%);

  --f-sans:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    "JetBrains Mono", "SF Mono", Consolas, monospace;

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);

  --max:       1280px;
  --gut:       clamp(20px, 4vw, 56px);
  --radius:    16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 12px rgba(0,0,0,0.2);
  --shadow:    0 16px 40px rgba(0,0,0,0.35);
  --shadow-lg: 0 40px 80px -20px rgba(0,0,0,0.5);
  --glow:      0 0 0 1px rgba(200, 158, 90, 0.4), 0 0 28px -4px rgba(200, 158, 90, 0.3);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold); color: var(--bg); }

/* atmosphere — slow gradient behind everything */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  background:
    radial-gradient(800px 600px at 20% 20%, rgba(200, 158, 90, 0.10), transparent 60%),
    radial-gradient(700px 500px at 85% 70%, rgba(106, 124, 255, 0.08), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(79, 209, 197, 0.05), transparent 60%);
  animation: drift 22s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-3%, 3%) scale(1.08); }
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }

/* ---------- 3. LOADER ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.loader__mark { width: 56px; height: 56px; position: relative; }
.loader__mark::before, .loader__mark::after {
  content: ""; position: absolute;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  top: 10px;
}
.loader__mark::before { left: 4px;  animation: pulseL 1.8s ease-in-out infinite; }
.loader__mark::after  { right: 4px; animation: pulseR 1.8s ease-in-out infinite; }
@keyframes pulseL { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-4px); } }
@keyframes pulseR { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
.loader__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.loader__bar {
  width: 120px; height: 1px;
  background: var(--line);
  overflow: hidden;
  position: relative;
}
.loader__bar::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: barFill 1.4s var(--ease) infinite;
}
@keyframes barFill { to { transform: translateX(100%); } }

/* ---------- 4. HEADER (sticky glass) ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  padding: 12px 0;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: opacity 0.2s ease;
}
.brand:hover { opacity: 0.85; }
.brand__mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad);
  color: var(--bg);
  box-shadow: 0 4px 14px -2px rgba(200, 158, 90, 0.4);
}
.brand__num {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--gold);
  margin-left: 2px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}
.nav a:hover {
  background: var(--surface-2);
  color: var(--ink);
  transform: translateY(-1px);
}
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* language selector (4 langs) */
.lang {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  margin-left: 8px;
}
.lang__btn {
  padding: 5px 9px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  font-weight: 500;
}
.lang__btn:hover { color: var(--ink); }
.lang__btn.is-active {
  background: var(--ink);
  color: var(--bg);
}

/* legal content — show only the active language block */
.legal-content { display: none; }
html[lang="it"] .legal-content[data-lang="it"],
html[lang="en"] .legal-content[data-lang="en"],
html[lang="fr"] .legal-content[data-lang="fr"],
html[lang="de"] .legal-content[data-lang="de"] { display: block; }
/* fallback when no lang attribute is set */
html:not([lang]) .legal-content[data-lang="it"],
html[lang=""] .legal-content[data-lang="it"] { display: block; }

.legal {
  max-width: 800px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-2);
}
.legal h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 56px 0 18px;
  color: var(--ink);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--ink);
}
.legal p { margin: 14px 0; }
.legal ul { margin: 14px 0 14px 24px; padding-left: 0; list-style: disc; }
.legal ul li { margin: 8px 0; padding-left: 6px; }
.legal a {
  color: var(--gold);
  border-bottom: 1px solid var(--line-2);
  transition: border-color 0.2s ease;
}
.legal a:hover { border-color: var(--gold); }
.legal__meta {
  display: inline-block;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 32px;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--grad);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
  box-shadow: 0 4px 14px -2px rgba(200, 158, 90, 0.4);
  margin-left: 8px;
}
.header__cta:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 10px 24px -4px rgba(200, 158, 90, 0.55);
}

.menu-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  position: relative;
  transition: background 0.2s ease;
}
.menu-btn:hover { background: var(--surface-2); }
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), top 0.25s ease, opacity 0.2s ease;
}
.menu-btn span { top: 50%; }
.menu-btn span::before { top: -5px; left: 0; transform: none; }
.menu-btn span::after  { top: 5px; left: 0; transform: none; }
body.is-menu-open .menu-btn span { background: transparent; }
body.is-menu-open .menu-btn span::before { top: 0; transform: rotate(45deg); }
body.is-menu-open .menu-btn span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav, .lang, .header__cta { display: none; }
  .menu-btn { display: inline-grid; place-items: center; }
}

/* off-canvas menu */
.offcanvas {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(10, 12, 16, 0.96);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
body.is-menu-open .offcanvas { transform: translateX(0); }
.offcanvas a {
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.2s ease;
}
.offcanvas a:hover { color: var(--gold); }
.offcanvas .lang { margin-top: 18px; opacity: 0; transform: translateY(20px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
body.is-menu-open .offcanvas a,
body.is-menu-open .offcanvas .lang { opacity: 1; transform: translateY(0); }
body.is-menu-open .offcanvas a:nth-child(1) { transition-delay: 0.15s; }
body.is-menu-open .offcanvas a:nth-child(2) { transition-delay: 0.22s; }
body.is-menu-open .offcanvas a:nth-child(3) { transition-delay: 0.29s; }
body.is-menu-open .offcanvas a:nth-child(4) { transition-delay: 0.36s; }
body.is-menu-open .offcanvas a:nth-child(5) { transition-delay: 0.43s; }
body.is-menu-open .offcanvas .lang { transition-delay: 0.50s; }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { padding: 17px 32px; font-size: 15px; }
.btn--gold {
  background: var(--grad);
  color: var(--bg);
  box-shadow: 0 8px 20px -6px rgba(200, 158, 90, 0.4);
}
.btn--gold:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 32px -6px rgba(200, 158, 90, 0.55);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  background: var(--surface-2);
  border-color: var(--ink-dim);
  transform: translateY(-1px);
}
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- 6. REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
.reveal--d4 { transition-delay: 0.32s; }
.reveal--d5 { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold); }

/* ---------- 7. HERO (home) ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__grad {
  position: absolute;
  inset: -10%;
  z-index: -1;
  background:
    radial-gradient(50% 50% at 50% 40%, rgba(200, 158, 90, 0.20), transparent 70%),
    conic-gradient(from 200deg at 70% 30%, rgba(106, 124, 255, 0.18), rgba(200, 158, 90, 0.10), rgba(79, 209, 197, 0.10), rgba(106, 124, 255, 0.18));
  filter: blur(70px) saturate(140%);
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroDrift {
  0%   { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(-4%, 2%) rotate(8deg); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) { .hero__inner { grid-template-columns: 1fr; gap: 56px; } }

.hero__copy { max-width: 640px; }
.hero__title {
  font-size: clamp(48px, 7.4vw, 96px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 28px 0;
}
.hero__title .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-dim);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__chips {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__chips > div { display: flex; flex-direction: column; gap: 4px; }
.hero__chips strong {
  font-family: var(--f-mono);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
}
.hero__chips span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero__visual { position: relative; height: 520px; perspective: 1200px; }
@media (max-width: 960px) { .hero__visual { height: 380px; } }
.hero-card {
  position: absolute;
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  will-change: transform;
  transition: transform 0.6s var(--ease);
}
.hero-card--big {
  top: 0; right: 0;
  width: 78%;
  aspect-ratio: 4/3;
  overflow: hidden;
  padding: 0;
}
.hero-card--big img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.95);
}
.hero-card--big::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,12,16,0.55) 100%);
}
.hero-card--meta { bottom: 8%; left: 0; width: 52%; padding: 22px; }
.hero-card--meta h4 { font-size: 13px; font-weight: 500; color: var(--ink-2); margin-bottom: 16px; }
.hero-card--meta .kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-card--meta .kpi { display: flex; flex-direction: column; gap: 2px; }
.hero-card--meta .kpi strong {
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
}
.hero-card--meta .kpi span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-card--badge {
  top: 12%; left: 4%; width: auto;
  padding: 10px 18px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-card--badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- 8. PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
}
.page-hero__grad {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 20% 20%, rgba(200, 158, 90, 0.18), transparent 60%),
    radial-gradient(50% 40% at 80% 80%, rgba(106, 124, 255, 0.12), transparent 60%);
  filter: blur(60px);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.page-hero__inner { max-width: 920px; }
.page-hero__title {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 22px 0 24px;
}
.page-hero__title .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero__sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-dim);
  max-width: 60ch;
  line-height: 1.6;
}

/* ---------- 9. TRUST MARQUEE ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.015);
}
.trust__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  animation: marquee 30s linear infinite;
}
.trust__track span { display: inline-flex; align-items: center; gap: 60px; }
.trust__track span::after { content: "◆"; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 10. SECTIONS ---------- */
.section { padding: clamp(80px, 12vw, 140px) 0; position: relative; }
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }
.section__head { max-width: 720px; margin-bottom: 64px; }
.section__title {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 18px;
}
.section__title .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section__sub {
  margin-top: 22px;
  font-size: 17px;
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 60ch;
}

/* intro */
.intro { display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 80px; align-items: start; }
@media (max-width: 880px) { .intro { grid-template-columns: 1fr; gap: 32px; } }
.intro__copy { font-size: 19px; color: var(--ink-2); line-height: 1.7; }
.intro__copy p + p { margin-top: 22px; }
.intro__copy strong { color: var(--ink); font-weight: 600; }

/* ---------- 11. STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 32px;
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s ease, background 0.4s ease;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  background: var(--surface-2);
}
.stat__num {
  font-family: var(--f-mono);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat__num small {
  font-size: 0.55em;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}
.stat__label {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ---------- 12. PROPERTY CARDS ---------- */
.portfolio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .portfolio { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .portfolio { grid-template-columns: 1fr; } }
.prop {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}
.prop:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 158, 90, 0.4);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(200, 158, 90, 0.1);
}
.prop__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-2); }
.prop__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.95);
  transition: transform 0.8s var(--ease), filter 0.4s ease;
}
.prop:hover .prop__media img { transform: scale(1.06); filter: brightness(0.95); }
.prop__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  background: rgba(10, 12, 16, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.prop__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.prop__loc {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.prop__title { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.prop__desc { font-size: 14px; color: var(--ink-dim); margin-bottom: 22px; flex: 1; }
.prop__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.prop__kpi { display: flex; flex-direction: column; gap: 3px; }
.prop__kpi span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.prop__kpi strong {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

/* filter bar */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.filter {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--ink-2);
  transition: all 0.25s ease;
}
.filter:hover { color: var(--ink); border-color: var(--ink-dim); }
.filter.is-active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  font-weight: 500;
}
.filter__count {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  opacity: 0.7;
}

/* ---------- 13. ROI CALCULATOR ---------- */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 960px) { .calc-wrap { grid-template-columns: 1fr; gap: 32px; } }

.calc {
  padding: 40px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.calc::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200, 158, 90, 0.18), transparent 70%);
  pointer-events: none;
}
.calc__field { margin-bottom: 28px; position: relative; z-index: 1; }
.calc__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.calc__label { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.calc__value { font-family: var(--f-mono); font-size: 15px; color: var(--gold); font-weight: 500; }
.calc input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line-2);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  background-image: var(--grad);
  background-repeat: no-repeat;
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold), 0 4px 14px -2px rgba(200, 158, 90, 0.6);
  transition: transform 0.2s var(--ease);
}
.calc input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold);
}
.calc__strategy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  position: relative;
  z-index: 1;
}
.calc__chip {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
  background: transparent;
  font-size: 12px;
  color: var(--ink-dim);
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.4;
}
.calc__chip:hover { color: var(--ink); border-color: var(--gold); }
.calc__chip.is-active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  font-weight: 500;
}
.calc__chip small { font-family: var(--f-mono); opacity: 0.8; display: block; }

.calc__output { display: flex; flex-direction: column; gap: 24px; }
.calc__big {
  padding: 36px;
  background: rgba(10, 12, 16, 0.4);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  text-align: center;
}
.calc__big small {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
.calc__big .out {
  font-family: var(--f-mono);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.3s ease;
}
.calc__big p { margin-top: 12px; color: var(--ink-dim); font-size: 14px; }
.calc__breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.calc__breakdown > div { padding: 20px; border-right: 1px solid var(--line); }
.calc__breakdown > div:last-child { border-right: 0; }
.calc__breakdown small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 8px;
}
.calc__breakdown .v { font-family: var(--f-mono); font-size: 18px; color: var(--ink); font-weight: 500; }
.calc__note { font-size: 12px; color: var(--ink-mute); line-height: 1.5; }

/* assumptions list (calculator page) */
.assumptions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 880px) { .assumptions { grid-template-columns: 1fr; } }
.assumption {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.assumption h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.assumption h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.assumption p { font-size: 14px; color: var(--ink-dim); line-height: 1.6; }

/* ---------- 14. APPROACH STEPS ---------- */
.approach { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 880px) { .approach { grid-template-columns: 1fr; } }
.step {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), background 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.step:hover {
  transform: translateY(-6px);
  background: var(--surface-2);
  border-color: rgba(200, 158, 90, 0.3);
}
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.step:hover::before { transform: scaleX(1); }
.step__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 32px;
}
.step__title { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.step__desc { font-size: 14px; color: var(--ink-dim); line-height: 1.6; }

/* timeline (approccio page) */
.timeline { position: relative; padding-left: 32px; margin-top: 24px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line-2);
}
.timeline__item {
  position: relative;
  padding: 24px 0 40px;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -32px; top: 32px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bg), 0 0 16px rgba(200,158,90,0.4);
}
.timeline__year {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 10px;
}
.timeline__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.timeline__desc { color: var(--ink-dim); max-width: 60ch; }

/* ---------- 15. CONTACT FORM ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; gap: 48px; } }

.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 40px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
}
.field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.field input,
.field textarea,
.field select {
  font-family: var(--f-sans);
  font-size: 15px;
  padding: 14px 16px;
  background: rgba(10,12,16,0.5);
  border: 1px solid var(--line-2);
  color: var(--ink);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  background: rgba(10,12,16,0.7);
  box-shadow: 0 0 0 3px rgba(200, 158, 90, 0.18);
}
.field textarea { resize: vertical; min-height: 110px; }

.form__submit {
  position: relative;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  background: var(--grad);
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  box-shadow: 0 8px 20px -6px rgba(200, 158, 90, 0.5);
}
.form__submit:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -6px rgba(200, 158, 90, 0.6); }
.form__submit:disabled { cursor: not-allowed; opacity: 0.8; }
.form__submit .spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(10, 12, 16, 0.3);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}
.form.is-loading .form__submit .label,
.form.is-loading .form__submit .arrow { display: none; }
.form.is-loading .form__submit .spinner { display: inline-block; }
.form.is-done .form__submit { background: var(--teal); color: var(--bg); }
.form.is-done .form__submit .label,
.form.is-done .form__submit .arrow,
.form.is-done .form__submit .spinner { display: none; }
.form.is-done .form__submit .check { display: inline-flex; }
.form__submit .check { display: none; align-items: center; gap: 8px; font-weight: 600; }
.form__submit .check svg { animation: pop 0.5s var(--ease); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pop { 0% { transform: scale(0); } 60% { transform: scale(1.2); } 100% { transform: scale(1); } }

.form__note { font-size: 12px; color: var(--ink-mute); margin-top: 4px; }
.form__note a { color: var(--ink-dim); border-bottom: 1px solid var(--line-2); }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info h3 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 600; letter-spacing: -0.025em; margin-bottom: 12px; }
.contact-info p { color: var(--ink-dim); font-size: 16px; line-height: 1.6; }
.contact-info__cards { display: grid; gap: 12px; margin-top: 24px; }
.office {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease);
}
.office:hover { background: var(--surface-2); border-color: var(--line-2); transform: translateX(4px); }
.office__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(200, 158, 90, 0.12);
  color: var(--gold);
}
.office__name { font-weight: 600; font-size: 15px; color: var(--ink); }
.office__addr { font-size: 13px; color: var(--ink-dim); margin-top: 2px; }
.office__arrow { color: var(--ink-dim); transition: transform 0.3s var(--ease), color 0.2s ease; }
.office:hover .office__arrow { transform: translateX(4px); color: var(--gold); }

/* ---------- 15b. TEAM GRID (about page) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.member { display: flex; flex-direction: column; }
.member__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  margin-bottom: 18px;
  position: relative;
}
.member__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.85);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}
.member:hover .member__photo img { filter: grayscale(0) brightness(1); transform: scale(1.04); }
.member__name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.member__role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.member__bio {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.55;
}

/* ---------- 15c. PULL-QUOTE (home) ---------- */
.pullquote {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  overflow: hidden;
}
.pullquote::before {
  content: """;
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-sans);
  font-size: 320px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.pullquote__text {
  position: relative;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.025em;
  max-width: 920px;
  margin: 0 auto;
  font-style: italic;
  color: var(--ink);
}
.pullquote__text em {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.pullquote__author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  position: relative;
}
.pullquote__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  color: var(--bg);
  font-weight: 600;
  font-size: 17px;
}
.pullquote__who {
  text-align: left;
  font-size: 13px;
  line-height: 1.4;
}
.pullquote__who strong { display: block; color: var(--ink); font-weight: 600; }
.pullquote__who span { color: var(--ink-dim); }

/* ---------- 15d. CALCULATOR TEASER (home) ---------- */
.calc-teaser {
  position: relative;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(200,158,90,0.10), rgba(106,124,255,0.06)),
    var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.calc-teaser::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200,158,90,0.2), transparent 70%);
  pointer-events: none;
}
@media (max-width: 880px) {
  .calc-teaser { grid-template-columns: 1fr; gap: 28px; padding: 32px; text-align: left; }
  .calc-teaser__divider { display: none; }
}
.calc-teaser__copy h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.calc-teaser__copy p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.55; }
.calc-teaser__divider {
  width: 1px;
  height: 80px;
  background: var(--line-2);
}
.calc-teaser__result {
  position: relative;
  z-index: 1;
}
.calc-teaser__result small {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.calc-teaser__result .out {
  font-family: var(--f-mono);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  display: block;
}
.calc-teaser__result a {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease);
}
.calc-teaser__result a:hover { gap: 14px; }

/* ---------- 15e. INVESTMENT CRITERIA (approccio) ---------- */
.criteria {
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.criteria__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  padding: 24px 32px;
  border-top: 1px solid var(--line);
  align-items: center;
  transition: background 0.25s ease;
}
.criteria__row:hover { background: var(--surface-2); }
.criteria__row:first-child { border-top: 0; }
.criteria__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.criteria__value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.criteria__value strong { color: var(--ink); font-weight: 600; }
.criteria__chips {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.criteria__chip {
  padding: 5px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--ink-2);
}
@media (max-width: 720px) {
  .criteria__row { grid-template-columns: 1fr; gap: 8px; padding: 20px 22px; }
}

/* ---------- 15f. CUSTOM CURSOR ---------- */
@media (hover: hover) and (pointer: fine) {
  html, body { cursor: none; }
  a, button, label, input, select, textarea, [role="button"] { cursor: none; }

  .cursor {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), background-color 0.3s ease, opacity 0.25s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
    opacity: 0;
  }
  .cursor.is-ready { opacity: 1; }
  .cursor__dot {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.15s var(--ease);
  }
  .cursor__dot.is-ready { opacity: 1; }
  .cursor.is-hover {
    width: 70px; height: 70px;
    background: rgba(200, 158, 90, 0.12);
    border-color: var(--gold-2);
  }
  .cursor.is-text {
    width: 4px; height: 36px;
    border-radius: 2px;
    background: var(--gold);
    border-color: transparent;
  }
  .cursor.is-down {
    width: 28px; height: 28px;
    background: var(--gold);
  }
}

/* ---------- 16. CTA BAND ---------- */
.cta-band {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 50% 30%, rgba(200, 158, 90, 0.14), transparent 60%);
  pointer-events: none;
}
.cta-band__inner { position: relative; max-width: 800px; margin: 0 auto; padding: 0 var(--gut); }
.cta-band__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.cta-band__title .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-band__sub { font-size: 17px; color: var(--ink-dim); margin-bottom: 36px; }
.cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- 17. FOOTER ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 880px) {
  .foot__top { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}
.foot__brand p {
  margin-top: 22px;
  color: var(--ink-dim);
  font-size: 14px;
  max-width: 360px;
  line-height: 1.6;
}
.foot__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot__col a {
  display: block;
  color: var(--ink-dim);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s ease, padding 0.25s ease;
}
.foot__col a:hover { color: var(--ink); padding-left: 4px; }
.foot__bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
