/* ══════════════════════════════════════════════════════════════════════════════
   VerbaSave — Homepage  (home.css)
   Font: Inter  |  Palette: white/panna + blu-viola gradient
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────────────────────────────── */
:root {
  --bg:        #ffffff;
  --bg-2:      #F8F7F2;      /* panna — sezioni alternate */
  --bg-3:      #F0EEE7;      /* panna scura — card bordi */
  --text:      #1A1A1A;
  --text-2:    #4A4A5A;
  --text-3:    #8A8A9A;
  --accent-1:  #2563EB;
  --accent-2:  #0D9488;
  --grad:      linear-gradient(135deg, #2563EB 0%, #0D9488 100%);
  --grad-h:    linear-gradient(135deg, #1d55d4 0%, #0a7a70 100%);
  --border:    rgba(0,0,0,0.09);
  --border-2:  rgba(0,0,0,0.14);
  --r-sm:      8px;
  --r-md:      14px;
  --r-lg:      20px;
  --r-xl:      28px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

/* ── Reset ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── Utilities ───────────────────────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
}


.features { position: relative; overflow: visible; }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  background: var(--grad);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 4px 18px rgba(79,142,247,.28);
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: .88;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(79,142,247,.36);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--border-2);
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.btn-outline:hover { border-color: var(--accent-1); background: rgba(79,142,247,.05); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { opacity: .92; transform: translateY(-1px); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.45);
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════════════════════ */
.home-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color .2s, box-shadow .2s;
}
.home-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.home-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.home-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}
.home-logo img { height: 26px; }
.home-logo span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Center nav */
.home-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.home-nav a {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: background .15s, color .15s;
}
.home-nav a:hover { background: var(--bg-2); color: var(--text); }

/* Right CTA */
.home-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.home-header-right .btn-outline { padding: 8px 18px; font-size: 14px; }
.home-header-right .btn-primary { padding: 9px 20px; font-size: 14px; box-shadow: none; }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 2px;
  margin-right: 2px;
}
.lang-btn {
  border: none;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  padding: 4px 9px;
  border-radius: 5px;
  cursor: pointer;
  transition: all .15s;
  font-family: 'Inter', -apple-system, sans-serif;
  letter-spacing: .03em;
}
.lang-btn.active {
  background: #fff;
  color: var(--text-1);
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

/* Mobile hamburger */
.home-menu-toggle {
  display: none;
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.home-menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ══════════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════════ */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
/* Subtle radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(79,142,247,.09) 0%, rgba(13,148,136,.06) 50%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left col — copy */
.hero-copy { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(79,142,247,.09);
  border: 1px solid rgba(79,142,247,.22);
  border-radius: 999px;
  padding: 5px 14px 5px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-1);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .15s;
}
.hero-link:hover { color: var(--accent-1); }

/* Social proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-left: -8px;
  flex-shrink: 0;
}
.hero-avatars .hero-avatar:first-child { margin-left: 0; }
.hero-proof-text { font-size: 13px; color: var(--text-2); }
.hero-proof-text strong { color: var(--text); font-weight: 700; }
.hero-stars { color: #F5A623; font-size: 12px; }

/* Right col — mockup */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px;
}

/* Browser chrome mockup */
.mockup-browser {
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mockup-browser-bar {
  height: 40px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot-r { background: #FF5F57; }
.mockup-dot-y { background: #FFBD2E; }
.mockup-dot-g { background: #28CA41; }
.mockup-url-bar {
  flex: 1;
  height: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  color: var(--text-3);
  margin: 0 8px;
}

/* Extension popup inside browser */
.mockup-ext {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mockup-ext-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup-ext-logo {
  font-size: 13px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mockup-ext-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 4px;
}
.mockup-ext-domain {
  font-size: 11px;
  color: var(--text-3);
}
.mockup-ext-summary {
  background: var(--bg-2);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.55;
  border-left: 3px solid var(--accent-1);
}
.mockup-ext-actions {
  display: flex;
  gap: 8px;
}
.mockup-ext-btn {
  flex: 1;
  padding: 8px;
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  border: none;
}
.mockup-ext-btn-primary {
  background: var(--grad);
  color: #fff;
}
.mockup-ext-btn-ghost {
  background: var(--bg-2);
  color: var(--text-2);
}

/* Library mini-card */
.mockup-library {
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup-library-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
}
.mockup-lib-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  background: var(--bg-2);
}
.mockup-lib-cover {
  width: 32px; height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.mockup-lib-text { flex: 1; min-width: 0; }
.mockup-lib-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-lib-meta { font-size: 10px; color: var(--text-3); margin-top: 2px; }
.mockup-lib-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(79,142,247,.12);
  color: var(--accent-1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════════
   SUMMARIES
   ══════════════════════════════════════════════════════════════════════════════ */
.summaries {
  padding: 88px 0;
  background: var(--bg-2);
}
.sum-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Copy */
.sum-copy .section-title { font-size: 2.6rem; line-height: 1.15; margin: 8px 0 16px; }
.sum-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}
.sum-points li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.5;
}
.sum-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.sum-points strong { color: var(--text-1); display: block; margin-bottom: 2px; }

/* Summary card mockup */
.sum-visual { display: flex; align-items: center; justify-content: flex-end; }
.sum-card {
  background: #111118;
  border-radius: 20px;
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    0 40px 100px rgba(0,0,0,.28),
    0 12px 36px rgba(0,0,0,.16),
    0 0 0 1px rgba(255,255,255,.04);
  color: rgba(255,255,255,.65);
  font-family: 'Inter', -apple-system, sans-serif;
  width: 100%;
  max-width: 480px;
}
.sum-card-source {
  font-size: 11px;
  color: rgba(255,255,255,.32);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}
.sum-card-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4F8EF7;
  flex-shrink: 0;
}
.sum-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 14px;
}
.sum-card-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: #4F8EF7;
  background: rgba(79,142,247,.1);
  border: 1px solid rgba(79,142,247,.2);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.sum-card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
}
.sum-card-bullets li {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.sum-card-bullets li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: #4F8EF7;
  font-weight: 900;
}
.sum-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}
.sum-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 3px 9px;
  border-radius: 6px;
}
.sum-card-footer {
  display: flex;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.sum-card-stat { font-size: 11px; color: rgba(255,255,255,.32); }

/* ══════════════════════════════════════════════════════════════════════════════
   READER SHOWCASE
   ══════════════════════════════════════════════════════════════════════════════ */
.reader-showcase {
  padding: 72px 0;
  background: #F7F5F0;
}
.reader-showcase .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header centrato */
.rs-header {
  text-align: center;
  margin-bottom: 32px;
  max-width: 600px;
}
.rs-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--text);
  margin: 10px 0 16px;
}
.rs-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
}

/* Tablet wrapper */
.rs-tablet-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ── iPad Pro 13" landscape frame ────────────────────────────────────────── */
.ipad-frame {
  position: relative;
  width: 100%;
  max-width: 920px;
  background: #1D1D1F;
  border-radius: 24px;
  /* left padding larger: camera bezel */
  padding: 14px 14px 14px 22px;
  box-shadow:
    0 64px 128px rgba(0,0,0,.36),
    0 24px 48px rgba(0,0,0,.18),
    0 0 0 1px rgba(255,255,255,.09),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* Apple Pencil Pro — sits on top edge */
.ipad-pencil {
  position: absolute;
  top: -11px;
  left: 14%;
  width: 54%;
  height: 11px;
  background: linear-gradient(180deg, #f0f0f0 0%, #d8d8d8 45%, #c4c4c4 100%);
  border-radius: 6px 6px 0 0;
  box-shadow:
    0 -3px 8px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.7);
  z-index: 10;
}
/* Double-click area indent */
.ipad-pencil::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 12%;
  width: 44px;
  height: 5px;
  background: rgba(0,0,0,.09);
  border-radius: 3px;
}
/* Metal tip cap */
.ipad-pencil::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 18px;
  background: linear-gradient(180deg, #d4d4d4 0%, #aaaaaa 100%);
  border-radius: 0 6px 6px 0;
}

/* Volume buttons — left outer edge */
.ipad-vols {
  position: absolute;
  left: -3px;
  top: 22%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ipad-vols span {
  display: block;
  width: 3px;
  height: 22px;
  background: #3a3a3c;
  border-radius: 2px 0 0 2px;
}

/* Power button — right outer edge */
.ipad-power {
  position: absolute;
  right: -3px;
  top: 26%;
  width: 3px;
  height: 30px;
  background: #3a3a3c;
  border-radius: 0 2px 2px 0;
}

/* Camera dot — left bezel */
.ipad-cam {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #38383a;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,.06);
}

/* Screen */
.mtr-screen {
  background: #F2F0E3;
  border-radius: 12px;
  overflow: hidden;
}

/* Body: 2 colonne */
.mtr-body {
  display: grid;
  grid-template-columns: 65fr 35fr;
  min-height: 520px;
}

/* ── Colonna articolo ── */
.mtr-article {
  padding: 20px 52px 24px 32px;
  position: relative;
  border-right: 1px solid rgba(0,0,0,.08);
}

.mtr-breadcrumb {
  font-size: 9.5px;
  color: #aaa;
  font-family: -apple-system, sans-serif;
  margin-bottom: 8px;
}
.mtr-breadcrumb span { color: #666; }

.mtr-article-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.mtr-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #999;
  font-family: -apple-system, sans-serif;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.mtr-meta-sep { color: #ddd; }

.mtr-p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 12.5px;
  line-height: 1.78;
  color: #2a2a2a;
  margin-bottom: 14px;
}

/* Highlights */
.hl-y  { background: #FFE566; border-bottom: 2px solid #C8A800; border-radius: 3px; padding: 1px 4px; font-weight: 600; font-size: 1.04em; }
.hl-g  { background: #B8F0C8; border-radius: 3px; padding: 1px 4px; font-weight: 600; font-size: 1.04em; }
.hl-b  { background: #BDD9FF; border-radius: 3px; padding: 1px 4px; font-weight: 600; font-size: 1.04em; }
.hl-pk { background: #FFB8C8; border-radius: 3px; padding: 1px 4px; font-weight: 600; font-size: 1.04em; }

/* Toolbar annotazione */
.mtr-toolbar {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  background: #fff;
  border-radius: 22px;
  padding: 11px 7px;
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
}
.mtr-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mtr-tool-active {
  position: relative;
  display: flex;
  align-items: center;
}
.mtr-tool-label {
  position: absolute;
  right: calc(100% + 7px);
  white-space: nowrap;
  font-size: 8.5px;
  font-weight: 600;
  font-family: -apple-system, sans-serif;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 5px;
  padding: 2px 6px;
  box-shadow: 0 1px 5px rgba(0,0,0,.1);
  color: #444;
  pointer-events: none;
}
.mtr-toolbar-icon {
  font-size: 14px;
  line-height: 1;
  margin-top: 2px;
}

/* ── Figura anatomica SVG cuore ── */
.heart-fig {
  float: right;
  margin: 0 0 10px 14px;
  text-align: center;
  clear: right;
}
.heart-caption {
  font-size: 7.5px;
  color: #888;
  font-family: -apple-system, sans-serif;
  margin-top: 5px;
  line-height: 1.35;
  max-width: 130px;
  text-align: center;
  font-style: italic;
}

/* ── Colonna note ── */
.mtr-notes {
  background: #E8E4D4;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mtr-notes-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.mtr-notes-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #666;
  font-family: -apple-system, sans-serif;
}
.mtr-notes-count {
  font-size: 9px;
  color: #999;
  font-family: -apple-system, sans-serif;
}

/* Post-it */
.mtr-postit {
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 11.5px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  font-family: -apple-system, sans-serif;
}
.mtr-postit p { margin: 0; }
.mtr-postit p:first-child { margin-bottom: 3px; }
.mtr-postit--yellow { background: #FFF9C4; color: #2a2200; }
.mtr-postit--green  { background: #D4F5DC; color: #0a3a18; }
.mtr-postit--pink   { background: #FFE0EC; color: #3a0a1a; }

/* Highlights salvati */
.mtr-hl-section {
  border-top: 1px solid rgba(0,0,0,.1);
  padding-top: 10px;
}
.mtr-hl-label {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
  font-family: -apple-system, sans-serif;
  margin-bottom: 8px;
}
.mtr-hl-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}
.mtr-hl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mtr-hl-text {
  font-size: 10.5px;
  color: #444;
  font-family: -apple-system, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Add nota */
.mtr-add-note {
  margin-top: auto;
  width: 100%;
  padding: 8px;
  background: transparent;
  border: 1.5px dashed rgba(0,0,0,.18);
  border-radius: 8px;
  font-size: 11px;
  font-family: -apple-system, sans-serif;
  color: #777;
  cursor: pointer;
  text-align: center;
}

/* ── Footer ── */
.mtr-footer {
  padding: 10px 20px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mtr-footer-info {
  font-size: 11px;
  color: #666;
  font-family: -apple-system, sans-serif;
  white-space: nowrap;
}
.mtr-progress {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.mtr-progress-bar {
  width: 72px;
  height: 4px;
  background: rgba(0,0,0,.1);
  border-radius: 2px;
  overflow: hidden;
}
.mtr-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563EB, #0D9488);
  border-radius: 2px;
}
.mtr-progress-pct {
  font-size: 10px;
  color: #888;
  font-family: -apple-system, sans-serif;
}
.mtr-footer-cta {
  font-size: 11px;
  font-weight: 700;
  font-family: -apple-system, sans-serif;
  background: linear-gradient(135deg, #2563EB, #0D9488);
  color: #fff;
  border-radius: 10px;
  padding: 5px 14px;
  white-space: nowrap;
}

/* Pills */
.rs-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.rs-pill {
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}

/* ══════════════════════════════════════════════════════════════════════════════
   SOCIAL FEED
   ══════════════════════════════════════════════════════════════════════════════ */
.social-feed {
  padding: 100px 0;
  background: var(--bg);
  overflow: visible;
}
/* Text header — centrato sopra */
.social-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.social-header .section-sub { margin: 0 auto 20px; }

/* ── 3-column layout ── */
.social-feed .container { max-width: 1280px; }
.soc-three-col {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 28px;
  align-items: center;
}

/* Left: feature cards */
.soc-feat-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.soc-feat-card {
  background: #111118;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.soc-feat-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.soc-feat-icon.ic-blue  { background: rgba(79,142,247,.15); }
.soc-feat-icon.ic-gold  { background: rgba(255,193,7,.12); }
.soc-feat-icon.ic-green { background: rgba(0,200,120,.12); }
.soc-feat-icon.ic-pink  { background: rgba(255,100,150,.12); }
.soc-feat-title {
  font-size: 13px; font-weight: 700; color: #fff;
  margin-bottom: 3px;
  font-family: 'Inter', -apple-system, sans-serif;
}
.soc-feat-desc {
  font-size: 11.5px; color: rgba(255,255,255,.38);
  line-height: 1.45;
  font-family: 'Inter', -apple-system, sans-serif;
}

/* Center: feed panel (spills above + below via negative margin) */
.soc-feed-col {
  position: relative;
  z-index: 3;
}
.soc-feed-panel {
  background: #0A0A0F;
  border-radius: 20px;
  overflow: hidden;
  margin-top: -56px;
  margin-bottom: -56px;
  box-shadow:
    0 48px 120px rgba(0,0,0,.45),
    0 20px 48px rgba(0,0,0,.25),
    0 0 0 1px rgba(255,255,255,.07);
}
.soc-feed-panel .sam-app   { height: auto; min-height: 0; }
.soc-feed-panel .sam-feed  { overflow: visible; }

/* Right: profile panel */
.soc-profile-col { z-index: 1; }
.soc-profile-panel {
  background: #111118;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 24px 20px;
  font-family: 'Inter', -apple-system, sans-serif;
  color: rgba(255,255,255,.65);
  font-size: 12px;
}
.soc-prof-head {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  margin-bottom: 16px;
}
.soc-prof-name   { font-size: 15px; font-weight: 800; color: #fff; }
.soc-prof-handle { font-size: 12px; color: rgba(255,255,255,.28); }
.soc-prof-stats  { display: flex; gap: 8px; margin-bottom: 4px; }
.soc-prof-stats > div {
  flex: 1; background: rgba(255,255,255,.04);
  border-radius: 10px; padding: 8px 6px; text-align: center;
}
.soc-prof-stats strong { display: block; font-size: 15px; font-weight: 800; color: #fff; }
.soc-prof-stats span   { font-size: 10px; color: rgba(255,255,255,.28); }
.soc-prof-divider { height: 1px; background: rgba(255,255,255,.07); margin: 14px 0; }
.soc-prof-label  { font-size: 12px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.soc-top-row     { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.soc-rank        { font-size: 11px; font-weight: 800; color: rgba(255,255,255,.22); width: 14px; flex-shrink: 0; }
.soc-top-name    { flex: 1; font-size: 12px; color: rgba(255,255,255,.7); }
.soc-top-score   { font-size: 11px; font-weight: 700; color: #4F8EF7; }
.soc-prof-quiz {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(79,142,247,.08); border: 1px solid rgba(79,142,247,.18);
  border-radius: 10px; padding: 10px 12px;
  font-size: 12px; font-weight: 700; color: #4F8EF7;
}
.soc-quiz-badge {
  font-size: 11px; font-weight: 800;
  background: rgba(79,142,247,.15); padding: 3px 8px; border-radius: 999px;
}

/* CTA sotto i mockup */
.social-cta { text-align: center; margin-top: 80px; }

/* ── Social App Mockup ── */
.sam-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-2);
}
.sam-chrome {
  height: 36px;
  background: #EBEBEB;
  border-bottom: 1px solid rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  flex-shrink: 0;
}
.sam-chrome-dots { display: flex; gap: 5px; }
.sam-chrome-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.sam-url-bar {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #777;
  font-family: -apple-system, sans-serif;
}
.sam-app {
  display: flex;
  background: #0A0A0F;
  height: 340px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,.7);
}
/* Left sidebar */
.sam-sidebar {
  width: 46px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 4px;
}
.sam-sidebar-logo {
  font-size: 9px;
  font-weight: 900;
  background: linear-gradient(135deg, #4F8EF7, #0D9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.sam-nav-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.35);
  cursor: default;
}
.sam-nav-item.sam-nav-active {
  background: rgba(79,142,247,.15);
  color: #4F8EF7;
}
/* Feed col */
.sam-feed {
  flex: 1;
  min-width: 0;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sam-feed-hdr {
  padding: 10px 14px 8px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.sam-composer {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.sam-composer-input {
  font-size: 11px;
  color: rgba(255,255,255,.22);
  font-style: italic;
}
.sam-post {
  display: flex;
  gap: 8px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  flex-shrink: 0;
}
.sam-post-body { flex: 1; min-width: 0; }
.sam-post-top {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 3px;
}
.sam-post-name { font-size: 11px; font-weight: 700; color: #fff; }
.sam-post-time { font-size: 10px; color: rgba(255,255,255,.28); }
.sam-post-text {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,.72);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sam-post-actions {
  display: flex;
  gap: 12px;
  font-size: 10px;
  color: rgba(255,255,255,.28);
}
/* Avatar variants */
.sam-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.sam-av-sm { width: 22px; height: 22px; font-size: 7.5px; }
.sam-av-lg { width: 36px; height: 36px; font-size: 11px; }
/* Right panel */
.sam-right {
  width: 154px;
  flex-shrink: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.sam-widget {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 10px;
}
.sam-widget-title { font-size: 10.5px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.sam-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.sam-profile-name  { font-size: 11px; font-weight: 700; color: #fff; margin-top: 4px; }
.sam-profile-handle { font-size: 9.5px; color: rgba(255,255,255,.32); margin-bottom: 4px; }
.sam-profile-stats {
  display: flex;
  gap: 6px;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 7px;
  margin-top: 4px;
}
.sam-profile-stats > div { display: flex; flex-direction: column; align-items: center; flex: 1; }
.sam-profile-stats strong { font-size: 12px; font-weight: 800; color: #fff; }
.sam-profile-stats span   { font-size: 7.5px; color: rgba(255,255,255,.3); margin-top: 1px; }
.sam-top-row {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 0;
}
.sam-rank  { font-size: 9px; font-weight: 800; color: rgba(255,255,255,.28); width: 10px; flex-shrink: 0; }
.sam-top-name  { flex: 1; font-size: 10px; color: rgba(255,255,255,.65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sam-top-score { font-size: 9px; font-weight: 700; color: #4F8EF7; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════════════════════ */
.how {
  padding: 72px 0;
  background: var(--bg-2);
}
.how .container { text-align: center; }
.how .section-sub { margin: 0 auto 40px; }

.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Connecting line between steps */
.how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% / 3 + 40px);
  right: calc(50% / 3 + 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  opacity: .25;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  position: relative;
}
.how-step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s;
}
.how-step:hover .how-step-num {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 6px rgba(79,142,247,.08), var(--shadow-md);
}
.how-step-n {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.how-step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════════════════════════ */
.features {
  padding: 72px 0;
}
.features-header { text-align: center; margin-bottom: 32px; }
.features-header .section-sub { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .2s;
}
.feature-card:hover {
  border-color: rgba(79,142,247,.3);
  box-shadow: 0 8px 32px rgba(79,142,247,.1);
  transform: translateY(-3px);
}
.feature-card:hover::before { opacity: .025; }

/* Featured card — slightly larger, accent border */
.feature-card--featured {
  border-color: rgba(79,142,247,.25);
  background: linear-gradient(160deg, #fff 60%, rgba(79,142,247,.04) 100%);
  grid-row: span 1;
  padding: 36px 30px;
}
.feature-card--featured .feature-icon { font-size: 38px; }

/* Asymmetric stagger via CSS custom property */
.feature-card {
  animation-delay: var(--fc-delay, 0s);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 18px;
  line-height: 1;
  position: relative;
}
.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  position: relative;
}

/* ══════════════════════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════════════════════ */
.pricing {
  padding: 72px 0;
  background: var(--bg-2);
}
.pricing-header { text-align: center; margin-bottom: 32px; }
.pricing-header .section-sub { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  transition: box-shadow .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card-pro {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}
.pricing-card-pro:hover { box-shadow: 0 16px 48px rgba(79,142,247,.35); }

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  white-space: nowrap;
}

.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-3);
  margin-bottom: 12px;
}
.pricing-card-pro .pricing-plan { color: rgba(255,255,255,.7); }

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 4px;
}
.pricing-amount {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.pricing-card-pro .pricing-amount { color: #fff; }
.pricing-period {
  font-size: 14px;
  color: var(--text-3);
  padding-bottom: 4px;
}
.pricing-card-pro .pricing-period { color: rgba(255,255,255,.65); }
.pricing-annual {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 28px;
}
.pricing-card-pro .pricing-annual { color: rgba(255,255,255,.65); }

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.pricing-card-pro .pricing-divider { background: rgba(255,255,255,.2); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.pricing-card-pro .pricing-features li { color: rgba(255,255,255,.9); }
.pricing-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(79,142,247,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card-pro .pricing-check { background: rgba(255,255,255,.2); }
.pricing-check svg { width: 10px; height: 10px; color: var(--accent-1); }
.pricing-card-pro .pricing-check svg { color: #fff; }

/* ══════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS — marquee infinito
   ══════════════════════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 72px 0;
  background: var(--bg-2);
}
.testimonials-hdr {
  text-align: center;
  margin-bottom: 40px;
}

/* Wrapper: fade edges + overflow hidden */
.marquee-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

/* Keyframes */
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Rows */
.marquee-row {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-left 60s linear infinite;
}
.marquee-row:nth-child(2) {
  animation: marquee-right 70s linear infinite;
}
.marquee-row:hover {
  animation-play-state: paused;
}

/* Card */
.tweet-card {
  width: 300px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  cursor: default;
  transition: box-shadow .2s;
}
.tweet-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}

/* Header: avatar + user + X logo */
.tweet-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tweet-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.tweet-user {
  flex: 1;
  min-width: 0;
}
.tweet-name {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.tweet-handle {
  display: block;
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tweet-x {
  font-size: 14px;
  color: var(--text-3);
  flex-shrink: 0;
}

/* Tweet text */
.tweet-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
}

/* Footer: date + like */
.tweet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.tweet-date {
  font-size: 11.5px;
  color: var(--text-3);
}
.tweet-action {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-3);
}
.tweet-action svg { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════════
   CTA FINALE
   ══════════════════════════════════════════════════════════════════════════════ */
.cta-final {
  padding: 72px 0;
  background: var(--grad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}
.cta-final-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  position: relative;
}
.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}
.cta-final-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  position: relative;
}

/* ══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════════ */
.home-footer {
  padding: 64px 0 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.home-footer .container {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
}
.footer-logo img { height: 22px; }
.footer-logo span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-tagline { font-size: 13px; color: var(--text-3); line-height: 1.55; max-width: 220px; }

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-2); transition: color .15s; }
.footer-links a:hover { color: var(--accent-1); }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--text-3); }
.footer-heart { color: #e85555; font-style: normal; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-3); transition: color .15s; }
.footer-bottom-links a:hover { color: var(--accent-1); }

/* ══════════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up {
  opacity: 0;
  animation: fadeUp .6s ease forwards;
}
.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .3s; }
.anim-delay-4 { animation-delay: .4s; }

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .home-footer .container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 100%; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .how-steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .social-mockups-wrap { flex-direction: column; align-items: center; }
  .sam-feed-mock { width: 100%; max-width: 100%; }
  .sam-profile-mock { width: 100%; margin-top: 16px; margin-left: 0; }
  .mtr-body { grid-template-columns: 1fr; min-height: auto; }
  .mtr-notes { display: none; }
  .mtr-article { padding: 20px 52px 20px 20px; }
  .ipad-frame { border-radius: 18px; padding: 10px 10px 10px 16px; }
  .ipad-pencil { display: none; }
  .ipad-vols { display: none; }
  .ipad-power { display: none; }
  .mtr-footer-info { display: none; }
  .mtr-progress { display: none; }
  .home-nav { display: none; }
  .home-menu-toggle { display: flex; }

  /* ── Hide login/signup from header when hamburger is shown ── */
  #hdr-login, #hdr-signup, #hdr-biblioteca { display: none !important; }

  /* ── Social 3-col → 2-col: hide right profile panel ── */
  .soc-three-col {
    grid-template-columns: 220px 1fr;
  }
  .soc-profile-col { display: none; }
  /* Remove spill-out effect on smaller screens */
  .soc-feed-panel { margin-top: 0; margin-bottom: 0; }

  /* ── Summary layout → 1-col ── */
  .sum-layout { grid-template-columns: 1fr; gap: 40px; }
  .sum-visual { justify-content: center; }

  /* ── Reduce section vertical padding ── */
  .how, .features, .pricing, .testimonials, .reader-showcase { padding: 56px 0; }
  .social-feed { padding: 72px 0; }
  .summaries { padding: 64px 0; }
  .cta-final { padding: 56px 0; }
}

@media (max-width: 680px) {
  /* ── Social 3-col → full stack on mobile ── */
  .soc-three-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .soc-feat-col { order: 2; }
  .soc-feed-col { order: 1; }
  .social-feed .container { padding: 0 16px; }

  /* ── Summary section ── */
  .sum-copy .section-title { font-size: 2rem; }
  .sum-card { max-width: 100%; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 96px 0 56px; }
  .features-grid { grid-template-columns: 1fr; }
  .home-footer .container { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* ── Hero title ── */
  .hero-title { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }

  /* ── Section titles ── */
  .section-title { font-size: 1.75rem; }

  /* ── Pricing cards: full width, less padding ── */
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 32px 24px; }

  /* ── Social CTA margin ── */
  .social-cta { margin-top: 40px; }

  /* ── How section ── */
  .how-step-num { font-size: 2rem; }
  .how-step { padding: 0 8px; }

  /* ── Feature cards: less padding ── */
  .feature-card { padding: 24px 20px; }

  /* ── Footer ── */
  .home-footer { padding: 48px 0 32px; }
  .home-footer .container { gap: 32px; }
}

@media (max-width: 480px) {
  /* ── Compact hero ── */
  .hero { padding: 88px 0 48px; }
  .hero-title { font-size: 2rem; }
  .hero-badge { font-size: 11px; padding: 4px 12px 4px 7px; margin-bottom: 18px; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-cta .btn-primary { width: 100%; justify-content: center; }

  /* ── Reader ipad frame ── */
  .ipad-frame { border-radius: 12px; padding: 8px 8px 8px 12px; }
  .mtr-article { padding: 14px 44px 14px 14px; }
  .mtr-article-title { font-size: 15px; }
  .rs-pills { gap: 8px; }
  .rs-pill { font-size: 12px; padding: 6px 14px; }

  /* ── Testimonials ── */
  .testimonials { padding: 48px 0; }

  /* ── CTA ── */
  .cta-final { padding: 48px 0; }
  .cta-final-actions { flex-direction: column; align-items: stretch; }
  .cta-final-actions .btn-white,
  .cta-final-actions .btn-outline-white { justify-content: center; }

  /* ── Pricing ── */
  .pricing-card { padding: 28px 20px; }
  .pricing-amount { font-size: 2.2rem; }

  /* ── Sum card ── */
  .sum-card { padding: 20px 20px; }

  /* ── Sections padding ── */
  .how, .features, .pricing, .testimonials { padding: 48px 0; }
  .social-feed { padding: 56px 0; }
}

/* Mobile nav drawer */
.home-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.home-mobile-nav.open { display: flex; }
.home-mobile-nav a {
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  transition: background .15s, color .15s;
}
.home-mobile-nav a:hover { background: var(--bg-2); color: var(--text); }
.home-mobile-nav .btn-primary {
  margin-top: 8px;
  justify-content: center;
}
