@font-face {
  font-family: 'Nunito';
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
  src: url('../assets/fonts/nunito-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'JB Mono';
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  src: url('../assets/fonts/jetbrains-mono-variable.woff2') format('woff2');
}

:root {
  --bg: #FBF8F5;
  --bg-alt: #FFF1E8;
  --surface: #FFFFFF;
  --ink: #2A2018;
  --ink-soft: #6B5D4F;
  --ink-faint: #9C8C7A;
  --accent: #B34A0A;
  --accent-strong: #8F3908;
  --accent-tint: #FFE1CC;
  --accent-tint-2: #FFC79E;
  --sage: #1F7A50;
  --sage-strong: #145C3B;
  --sage-tint: #D3F5E3;
  --coral: #B23850;
  --coral-strong: #85273A;
  --coral-tint: #FFDDE0;
  --border: #E8DDD0;
  --border-soft: #F0E6D8;
  --shadow: 0 24px 48px -24px rgba(42, 32, 24, 0.28);
  --shadow-soft: 0 12px 24px -16px rgba(42, 32, 24, 0.18);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1C140D;
    --bg-alt: #241A11;
    --surface: #2A1F16;
    --ink: #F5EDE3;
    --ink-soft: #C7B8A6;
    --ink-faint: #8C7A67;
    --accent: #FF8A4C;
    --accent-strong: #FFA46E;
    --accent-tint: #3A2416;
    --accent-tint-2: #4A2F1C;
    --sage: #4FD08A;
    --sage-strong: #7BE0A8;
    --sage-tint: #143324;
    --coral: #FF8FA3;
    --coral-strong: #FFB0BE;
    --coral-tint: #3A1420;
    --border: #3D2E20;
    --border-soft: #33261A;
    --shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.55);
    --shadow-soft: 0 12px 24px -16px rgba(0, 0, 0, 0.45);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #1C140D; --bg-alt: #241A11; --surface: #2A1F16;
  --ink: #F5EDE3; --ink-soft: #C7B8A6; --ink-faint: #8C7A67;
  --accent: #FF8A4C; --accent-strong: #FFA46E;
  --accent-tint: #3A2416; --accent-tint-2: #4A2F1C;
  --sage: #4FD08A; --sage-strong: #7BE0A8; --sage-tint: #143324;
  --coral: #FF8FA3; --coral-strong: #FFB0BE; --coral-tint: #3A1420;
  --border: #3D2E20; --border-soft: #33261A;
  --shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 12px 24px -16px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}
:root[data-theme="light"] {
  --bg: #FBF8F5; --bg-alt: #FFF1E8; --surface: #FFFFFF;
  --ink: #2A2018; --ink-soft: #6B5D4F; --ink-faint: #9C8C7A;
  --accent: #B34A0A; --accent-strong: #8F3908;
  --accent-tint: #FFE1CC; --accent-tint-2: #FFC79E;
  --sage: #1F7A50; --sage-strong: #145C3B; --sage-tint: #D3F5E3;
  --coral: #B23850; --coral-strong: #85273A; --coral-tint: #FFDDE0;
  --border: #E8DDD0; --border-soft: #F0E6D8;
  --shadow: 0 24px 48px -24px rgba(42, 32, 24, 0.28);
  --shadow-soft: 0 12px 24px -16px rgba(42, 32, 24, 0.18);
  color-scheme: light;
}

* { box-sizing: border-box; }
/* Impedisce l'effetto "elastico" di rimbalzo scrollando oltre l'inizio/fine
   pagina (trackpad, mouse a rotella, mobile) — niente spazio vuoto visibile
   oltre a quanto già previsto dal contenuto stesso al caricamento. */
html { -webkit-text-size-adjust: 100%; overscroll-behavior-y: none; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.55;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  transition: background .3s ease, color .3s ease;
}
::selection { background: var(--accent); color: #fff; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

h1, h2, h3 {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}

.eyebrow {
  font-family: 'JB Mono', ui-monospace, monospace;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 15.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn-primary {
  background: var(--accent);
  color: #FFF8F2;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- NAV ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 48px);
  max-width: 1180px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.brand-logo { height: 36px; width: auto; }
.brand-name { font-weight: 900; font-size: 19px; letter-spacing: -0.01em; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 700; font-size: 14.5px; text-decoration: none; color: var(--ink-soft); transition: color .15s ease; }
.nav-links a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  padding: 10px clamp(20px, 5vw, 48px) 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  padding: 13px 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border-soft);
}
.nav-mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 108px) 0 clamp(16px, 2.5vw, 28px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* Spostato verso l'interno (non più a filo col resto del testo) per
   cadere all'incirca sopra la parola "STORE" nella riga sotto — valore
   approssimativo, aggiustabile. */
.hero-logo { height: clamp(96px, 12vw, 140px); width: auto; margin: 0 0 20px clamp(45px, 16vw, 145px); display: block; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 {
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 1.04;
  color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(16.5px, 1.9vw, 19px);
  color: var(--ink-soft);
  max-width: 46ch;
  font-weight: 600;
}

.store-badges { display: flex; gap: 10px; margin-top: 32px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  opacity: .62;
}
.store-badge .sb-text { line-height: 1.15; }
.store-badge .sb-small { font-size: 9.5px; letter-spacing: .04em; color: var(--ink-faint); text-transform: uppercase; font-weight: 700; }
.store-badge .sb-big { font-size: 13.5px; font-weight: 800; color: var(--ink-soft); }

/* ---------- RADAR VISUAL ---------- */
.radar-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin: 0 auto;
}
.radar-svg { width: 100%; height: 100%; overflow: visible; }
.ring {
  fill: none;
  stroke: var(--accent);
  stroke-opacity: .16;
}
.ring-pulse {
  fill: none;
  stroke: var(--accent);
  stroke-opacity: .5;
  transform-origin: center;
  animation: ringPulse 3.6s ease-out infinite;
}
.ring-pulse.d2 { animation-delay: 1.2s; }
.ring-pulse.d3 { animation-delay: 2.4s; }
@keyframes ringPulse {
  0% { transform: scale(0.28); stroke-opacity: .55; stroke-width: 2.2; }
  100% { transform: scale(1); stroke-opacity: 0; stroke-width: .4; }
}
.node {
  opacity: 0;
  animation: nodeIn .6s cubic-bezier(.2,.9,.25,1.2) forwards;
}
.node-badge {
  fill: var(--surface);
  stroke: var(--border);
  stroke-width: 1.5;
}
.node-icon { stroke: var(--ink); }
.node-label {
  font-family: 'JB Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 700;
  fill: var(--ink-soft);
  letter-spacing: .02em;
}
@keyframes nodeIn {
  from { opacity: 0; transform: scale(.4); }
  to { opacity: 1; transform: scale(1); }
}
.center-pin {
  animation: pinDrop .8s cubic-bezier(.34,1.56,.64,1) both;
  transform-origin: 130px 260px;
}
@keyframes pinDrop {
  0% { transform: translateY(-40px) scale(.6); opacity: 0; }
  60% { transform: translateY(4px) scale(1.06); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ring-pulse, .node, .center-pin, .hero-eyebrow .dot { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- STEPS ---------- */
.steps-section { padding: clamp(24px, 4vw, 44px) 0 clamp(48px, 7vw, 88px); }
.steps-head { max-width: 56ch; margin-bottom: clamp(32px, 5vw, 52px); }
.steps-head .eyebrow { color: var(--accent); }
.steps-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin-top: 14px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
}
.step-num {
  font-family: 'JB Mono', ui-monospace, monospace;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-tint);
  display: inline-flex;
  width: 30px; height: 30px;
  align-items: center; justify-content: center;
  border-radius: 9px;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; font-weight: 600; }

/* ---------- FEATURES ---------- */
.feature {
  padding: clamp(56px, 8vw, 104px) 0;
  border-top: 1px solid var(--border-soft);
}
.feature.alt { background: var(--bg-alt); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature.reverse .feature-grid { direction: rtl; }
.feature.reverse .feature-grid > * { direction: ltr; }

.feature-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.feature-eyebrow .chip {
  width: 7px; height: 7px; border-radius: 50%;
}
.feature h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 16px; }
.feature-body { color: var(--ink-soft); font-size: 16.5px; font-weight: 600; max-width: 46ch; }
.feature-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 700; font-size: 15px; color: var(--ink); }
.feature-list svg { flex-shrink: 0; margin-top: 3px; }

.mock {
  background: var(--surface);
  border-radius: 26px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  padding: 22px;
  max-width: 380px;
  margin: 0 auto;
}
.mock-place {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.mock-photo {
  height: 128px;
  background: linear-gradient(135deg, var(--accent-tint), var(--accent-tint-2));
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.verified-badge {
  position: absolute; bottom: 8px; right: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); border: 2.5px solid var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.mock-body { padding: 14px 16px 16px; }
.mock-title { font-weight: 900; font-size: 15px; }
.mock-meta { display: flex; align-items: center; gap: 10px; margin-top: 5px; font-size: 12.5px; color: var(--ink-soft); font-weight: 700; }
.mock-meta .star { color: #E4A11B; }
.mock-actions { display: flex; gap: 8px; margin-top: 13px; }
.mock-actions span {
  flex: 1; text-align: center; padding: 9px 0;
  border-radius: 10px; background: var(--bg-alt);
  font-size: 11.5px; font-weight: 800; color: var(--ink-soft);
  border: 1px solid var(--border-soft);
}
.mock-actions span.primary { background: var(--sage-tint); color: var(--sage-strong); border-color: transparent; }

.mock-row {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px; border-radius: 14px;
  background: var(--bg-alt); border: 1px solid var(--border-soft);
}
.mock-row + .mock-row { margin-top: 10px; }
.mock-icon-badge {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mock-row-title { font-weight: 800; font-size: 13.5px; }
.mock-row-sub { font-size: 11.5px; color: var(--ink-soft); font-weight: 700; margin-top: 2px; }
.mock-pill {
  margin-left: auto; font-family: 'JB Mono', monospace;
  font-size: 10.5px; font-weight: 700; padding: 4px 9px;
  border-radius: 100px; white-space: nowrap;
}

.mock-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-cal-head .m { font-weight: 900; font-size: 14px; }
.mock-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 14px; }
.mock-days span { text-align: center; font-size: 10.5px; font-weight: 800; color: var(--ink-faint); padding: 5px 0; }
.mock-days span.active { background: var(--accent); color: #fff; border-radius: 8px; }

.mock-sum {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 15px 16px; border-radius: 14px;
  background: var(--coral-tint);
  margin-top: 12px;
}
.mock-sum .label { font-size: 12px; font-weight: 800; color: var(--coral-strong); }
.mock-sum .amt { font-family: 'JB Mono', monospace; font-size: 20px; font-weight: 800; color: var(--coral-strong); }

/* ---------- PHONE SHOT (screenshot reale, sfondo rimosso — il mockup
   iPhone con la sua ombra è l'unico contenuto dell'immagine) ---------- */
.phone-shot {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  isolation: isolate;
}
/* Macchia di colore sfocata dietro al telefono, per dare profondità e
   legare il visual alla palette calda della sezione — con lo sfondo dello
   screenshot rimosso non serve più a "coprire" un rettangolo grigio, è
   puro decoro. */
.phone-shot::before {
  content: "";
  position: absolute;
  inset: 6% -30%;
  background: radial-gradient(closest-side, var(--shot-glow, var(--accent-tint)), transparent 72%);
  filter: blur(10px);
  opacity: .7;
  z-index: -1;
}
.phone-shot img {
  width: 100%;
  height: auto;
  animation: floatShot 5.5s ease-in-out infinite;
}
@keyframes floatShot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .phone-shot img { animation: none; }
}

/* Due screenshot sovrapposti (sezione Esplora): mostra insieme la mappa
   e l'elenco delle strutture, come una vera doppia funzionalità invece
   di due schermate separate. */
.phone-shot-dual {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  padding-bottom: 15%;
}
.phone-shot-dual .phone-shot {
  max-width: 235px;
  margin: 0;
}
.phone-shot-dual .phone-shot-back {
  margin-left: 0;
  position: relative;
  z-index: 1;
}
.phone-shot-dual .phone-shot-front {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  max-width: 210px;
}
@media (max-width: 900px) {
  .phone-shot-dual { max-width: 300px; }
}

/* ---------- PRO CALLOUT ---------- */
.pro-callout {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 22px;
  background: var(--surface);
  border: 1px dashed var(--border);
  margin-top: clamp(28px, 4vw, 44px);
}
.pro-callout-text { max-width: 62ch; }
.pro-callout-text .eyebrow { color: var(--accent); }
.pro-callout-text h3 { font-size: clamp(19px, 2.2vw, 23px); margin-top: 10px; }
.pro-callout-text p { margin-top: 10px; max-width: 54ch; }
.pro-callout-list { margin-top: 18px; }
.pro-callout .pro-callout-cta { flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq-section { padding: clamp(56px, 8vw, 96px) 0; border-top: 1px solid var(--border-soft); }
.faq-head { max-width: 60ch; margin: 0 auto clamp(32px, 5vw, 48px); text-align: center; }
.faq-head .eyebrow { color: var(--accent); }
.faq-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 14px; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: var(--surface);
  padding: 4px 22px;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--accent-tint-2); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-weight: 800;
  font-size: 15.5px;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .25s ease, background .25s ease;
}
.faq-item summary .faq-plus::before,
.faq-item summary .faq-plus::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
}
.faq-item summary .faq-plus::before { width: 11px; height: 1.6px; }
.faq-item summary .faq-plus::after { width: 1.6px; height: 11px; }
.faq-item[open] summary .faq-plus { transform: rotate(45deg); background: var(--accent-tint); }
.faq-answer { padding: 0 0 20px; color: var(--ink-soft); font-size: 15px; font-weight: 600; max-width: 68ch; }

/* ---------- TRUST ---------- */
.trust-section { padding: clamp(56px, 8vw, 96px) 0; }
.trust-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(36px, 5vw, 56px); }
.trust-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 14px; }
.trust-head .eyebrow { color: var(--accent); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  text-align: center;
}
.trust-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--sage-tint);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.trust-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.trust-card p { font-size: 14px; color: var(--ink-soft); font-weight: 600; }

/* ---------- LEGAL DOCS (termini.html, privacy.html) ---------- */
.legal-doc { max-width: 720px; padding-top: clamp(40px, 6vw, 64px); padding-bottom: clamp(56px, 8vw, 88px); }
.legal-doc h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 10px; }
.legal-updated { font-size: 13px; color: var(--ink-faint); font-weight: 700; margin-bottom: 36px; }
.legal-doc section { margin-bottom: 26px; }
.legal-doc h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 8px; }
.legal-doc p { font-size: 15px; color: var(--ink-soft); font-weight: 600; line-height: 1.7; margin-bottom: 10px; }
.legal-doc ul { margin: 0 0 10px; padding-left: 20px; }
.legal-doc li { font-size: 15px; color: var(--ink-soft); font-weight: 600; line-height: 1.7; margin-bottom: 6px; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--accent); text-decoration: none; margin-bottom: 28px; }
.legal-back:hover { text-decoration: underline; }

/* ---------- CHI SIAMO ---------- */
.about-hero { padding: clamp(48px, 7vw, 80px) 0 clamp(32px, 5vw, 56px); text-align: center; }
.about-hero .eyebrow { color: var(--accent); }
.about-hero h1 { font-size: clamp(30px, 4.4vw, 46px); margin-top: 14px; }
.about-hero p { margin-top: 16px; color: var(--ink-soft); font-size: 16.5px; font-weight: 600; max-width: 56ch; margin-left: auto; margin-right: auto; }

.profile-card {
  max-width: 640px;
  margin: 0 auto clamp(56px, 8vw, 88px);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  padding: clamp(28px, 5vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.profile-photo {
  width: 128px; height: 128px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-tint), var(--accent-tint-2));
  display: flex; align-items: center; justify-content: center;
  font-family: 'JB Mono', monospace;
  font-weight: 800;
  font-size: 15px;
  color: var(--accent-strong);
  text-align: center;
  overflow: hidden;
  margin-bottom: 22px;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px var(--border-soft);
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-name { font-size: 22px; font-weight: 900; }
.profile-role { margin-top: 4px; color: var(--accent); font-weight: 700; font-size: 14.5px; }
.profile-bio { margin-top: 18px; color: var(--ink-soft); font-weight: 600; font-size: 15.5px; line-height: 1.7; }
.profile-linkedin {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px;
  border-radius: 100px;
  background: #0A66C2;
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.profile-linkedin:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; }
@media (max-width: 820px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { padding: 26px 22px; border-radius: 18px; background: var(--bg-alt); text-align: center; }
.value-card .eyebrow { color: var(--accent); font-size: 11px; }
.value-card h3 { font-size: 16px; margin: 10px 0 6px; }
.value-card p { font-size: 14px; color: var(--ink-soft); font-weight: 600; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: clamp(64px, 9vw, 116px) 0;
  background: var(--ink);
  color: var(--bg);
  border-radius: 32px;
  margin: 0 clamp(12px, 3vw, 32px) clamp(48px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(560px 320px at 50% -10%, color-mix(in srgb, var(--accent) 38%, transparent), transparent 70%);
  pointer-events: none;
}
.final-inner { position: relative; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.final-cta h2 { font-size: clamp(28px, 4vw, 44px); color: var(--bg); }
.final-cta .hero-sub { color: color-mix(in srgb, var(--bg) 72%, transparent); margin-left: auto; margin-right: auto; }
.final-cta .store-badges { justify-content: center; }
.final-cta .store-badge { background: color-mix(in srgb, var(--bg) 10%, transparent); border-color: color-mix(in srgb, var(--bg) 20%, transparent); }
.final-cta .store-badge .sb-big { color: var(--bg); }
.final-cta .store-badge .sb-small { color: color-mix(in srgb, var(--bg) 55%, transparent); }

/* ---------- FOOTER ---------- */
footer { padding: 40px 0 56px; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
  padding-top: 28px; border-top: 1px solid var(--border-soft);
}
.footer-brand { display: flex; align-items: center; gap: 9px; }
.footer-social { display: flex; align-items: center; gap: 12px; }
.footer-social-label { font-size: 12.5px; color: var(--ink-faint); font-weight: 600; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--accent-tint); color: var(--accent); transform: translateY(-2px); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 12.5px; color: var(--ink-faint); font-weight: 600; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
