/* =========================================================
   Vitulano 2026 · v2 · Brutalist / Tech
   ========================================================= */

:root {
  --dark: #0E1220;
  --dark-2: #161B2E;
  --light: #F5F5F2;
  --light-2: #EDEDE8;
  --accent: #E63946;      /* rosso civico */
  --accent-2: #F4A261;    /* warm orange secondary */
  --ink: #0E0E14;
  --muted: #9A9A9A;
  --muted-dark: #5A5A64;
  --line-light: rgba(14,14,20,.12);
  --line-dark: rgba(255,255,255,.12);

  --f-display: "Archivo Black", "Inter", sans-serif;
  --f-sans: "Space Grotesk", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

  --pad: clamp(20px, 4vw, 80px);
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--f-sans);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.accent { color: var(--accent); }

/* ==================== WA STICKY ==================== */
.wa-sticky {
  position: fixed; right: 18px; bottom: 96px; z-index: 200;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 100px;
  background: #25D366; color: #fff;
  font-family: var(--f-sans); font-weight: 600; font-size: 14px;
  box-shadow: 0 12px 32px rgba(37,211,102,.4), 0 4px 10px rgba(0,0,0,.2);
  transition: transform .3s var(--ease);
}
.wa-sticky:hover { transform: translateY(-3px); }
@media (max-width: 600px) { .wa-sticky span { display: none; } .wa-sticky { padding: 14px; } }

/* ==================== NAV ==================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  background: rgba(14,18,32,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__mark {
  font-family: var(--f-display);
  border: 1.5px solid var(--light);
  padding: 4px 10px;
  font-size: 14px; letter-spacing: .08em;
}
.nav__sub { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.nav__sub-2 { color: var(--muted); font-size: 10px; }
.nav__links { display: flex; gap: 22px; align-items: center; }
.nav__links a { color: var(--muted); transition: color .3s; }
.nav__links a:hover { color: var(--light); }
.nav__links .nav__cta { color: var(--accent); }
.nav__links .nav__cta:hover { color: var(--light); }
.nav__burger { display: none; width: 34px; height: 34px; flex-direction: column; gap: 5px; justify-content: center; align-items: center; }
.nav__burger span { width: 22px; height: 1.5px; background: var(--light); display: block; }

@media (max-width: 920px) {
  .nav__sub { display: none; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    padding: 24px var(--pad);
    background: var(--dark);
    border-top: 1px solid var(--line-dark);
    gap: 16px;
  }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--pad) 60px;
  background:
    radial-gradient(1000px 600px at 85% 30%, rgba(244,162,97,0.08), transparent 60%),
    radial-gradient(800px 500px at 15% 80%, rgba(230,57,70,0.06), transparent 60%),
    var(--dark);
  overflow: hidden;
}
.hero__grid {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: calc(100vh - 180px);
}
.hero__meta {
  display: flex; gap: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}
.hero__meta .mono:nth-child(2) { color: var(--accent-2); }

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(64px, 16vw, 260px);
  line-height: .85;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: auto 0;
}
.hero__first { display: block; color: var(--light); }
.hero__last { display: block; color: var(--light); }
.hero__o { color: var(--accent); }

.hero__foot {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  border-top: 1px solid var(--line-dark); padding-top: 26px;
  flex-wrap: wrap;
}
.hero__vote {
  display: flex; flex-direction: column; gap: 4px;
  text-align: right;
}
.hero__vote strong {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: .04em; color: var(--light);
}
.hero__vote .mono { color: var(--muted); }
.hero__vote .mono:first-child { color: var(--accent-2); }

.hero__doodle {
  position: absolute; right: -80px; bottom: 40px;
  width: min(520px, 50vw); height: auto;
  color: var(--accent);
  opacity: .25;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 700px) {
  .hero__vote { text-align: left; }
  .hero__doodle { right: -120px; bottom: 140px; opacity: .2; }
}

/* ==================== CTA ==================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  background: var(--accent); color: #fff;
  font-family: var(--f-display); font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 0;
  box-shadow: 0 14px 30px rgba(230,57,70,.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(230,57,70,.5); background: #c42a37; }
.btn-primary svg { transition: transform .3s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

/* ==================== MARQUEE ==================== */
.marquee {
  background: var(--accent); color: #fff;
  overflow: hidden; padding: 16px 0;
  border-top: 1px solid var(--dark); border-bottom: 1px solid var(--dark);
}
.marquee__track {
  display: inline-flex; gap: 44px; align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.8vw, 38px);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.marquee__track em { font-style: normal; font-size: 18px; color: #fff; opacity: .6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==================== SECTIONS ==================== */
.section { padding: clamp(80px, 12vw, 160px) var(--pad); }
.section--light { background: var(--light); color: var(--ink); }
.section--dark { background: var(--dark); color: var(--light); }

.section__head { margin-bottom: clamp(50px, 7vw, 90px); }
.section__head--split {
  display: grid; grid-template-columns: 200px 1fr;
  gap: clamp(20px, 4vw, 60px); align-items: start;
}
.label { color: var(--accent); display: block; }
.section--light .label { color: var(--accent); }
.section--dark .label { color: var(--accent-2); }

.section__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 7vw, 110px);
  line-height: .9; letter-spacing: -.03em;
  text-transform: uppercase;
}
.section__intro p { max-width: 680px; margin-top: 24px; font-size: clamp(16px, 1.3vw, 20px); color: var(--muted-dark); }
.section--dark .section__intro p { color: var(--muted); }

@media (max-width: 820px) {
  .section__head--split { grid-template-columns: 1fr; }
}

/* ==================== MANIFEST ==================== */
.manifest {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.manifest__title {
  font-family: var(--f-display);
  font-size: clamp(44px, 7.5vw, 130px);
  line-height: .9; letter-spacing: -.03em;
  text-transform: uppercase;
}
.manifest__body p {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65; margin-bottom: 24px;
  color: var(--ink);
}
.manifest__body strong { color: var(--ink); font-weight: 700; }
.manifest__body em { color: var(--accent); font-style: normal; font-weight: 600; }
@media (max-width: 900px) { .manifest { grid-template-columns: 1fr; } }

/* ==================== STATS STRIP ==================== */
.stats {
  background: var(--dark-2);
  color: var(--light);
  padding: 50px var(--pad);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stats ul {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.stats li { display: flex; flex-direction: column; gap: 8px; }
.stats__num {
  font-family: var(--f-display);
  font-size: clamp(48px, 5.5vw, 88px);
  line-height: 1; letter-spacing: -.03em;
  color: var(--accent-2);
}
.stats__lbl { color: var(--muted); font-size: 11px; }
@media (max-width: 720px) { .stats ul { grid-template-columns: repeat(2, 1fr); } }

/* ==================== AXES (SPEAKER-STYLE ACCORDION) ==================== */
.axes { list-style: none; border-top: 2px solid var(--line-dark); }
.axis { border-bottom: 2px solid var(--line-dark); }
.axis__trigger {
  display: grid; grid-template-columns: 60px 1fr auto 40px;
  gap: clamp(14px, 3vw, 40px);
  align-items: center;
  width: 100%;
  padding: 28px 0 22px;
  text-align: left;
  transition: color .3s var(--ease), background .3s var(--ease);
  border-radius: 2px;
}
.axis__trigger:hover { background: rgba(255,255,255,.04); }
.axis__n { color: var(--muted); transition: color .3s; }
.axis__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 5.5vw, 78px);
  line-height: 1; letter-spacing: -.025em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color .3s var(--ease);
}
.axis__tag {
  color: var(--muted);
  justify-self: end;
  text-align: right;
}
.axis__plus {
  color: var(--muted);
  transition: transform .4s var(--ease), color .3s;
  justify-self: end;
}
.axis__trigger:hover .axis__title,
.axis__trigger[aria-expanded="true"] .axis__title { color: var(--light); }
.axis__trigger:hover .axis__n,
.axis__trigger[aria-expanded="true"] .axis__n { color: var(--accent); }
.axis__trigger[aria-expanded="true"] .axis__plus { transform: rotate(45deg); color: var(--accent); }
.axis__trigger:hover .axis__plus { color: var(--light); }

/* Quote — always visible below the trigger */
.axis__quote {
  font-family: var(--f-sans);
  font-size: clamp(18px, 1.8vw, 26px);
  font-style: italic;
  line-height: 1.4; letter-spacing: -.01em;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding: 12px 0 12px 20px;
  margin: 0 0 24px clamp(0px, 4vw, 60px);
  max-width: 820px;
}

/* Accordion — only wraps the actions list */
.axis__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .6s var(--ease);
}
.axis__body > div { overflow: hidden; min-height: 0; }
.axis.is-open .axis__body { grid-template-rows: 1fr; }

.axis__body ol {
  list-style: none; padding: 0;
  margin: 0 0 36px clamp(0px, 4vw, 60px);
  counter-reset: action;
  max-width: 880px;
}
.axis__body li {
  counter-increment: action;
  display: flex; gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  font-size: clamp(15px, 1.15vw, 17px); line-height: 1.6;
  color: var(--muted);
}
.axis__body li:last-child { border-bottom: 1px solid var(--line-dark); margin-bottom: 8px; }
.axis__body li::before {
  content: counter(action, decimal-leading-zero);
  font-family: var(--f-mono);
  font-size: 12px; color: var(--accent);
  letter-spacing: .05em; padding-top: 3px;
  flex-shrink: 0; min-width: 50px;
}
.axis__body strong { color: var(--light); font-weight: 700; }

@media (max-width: 820px) {
  .axis__trigger { grid-template-columns: 40px 1fr 30px; }
  .axis__tag { display: none; }
}

/* ==================== FACTS ==================== */
.facts {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.facts li {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  transition: background .3s;
  font-size: 16px; line-height: 1.5;
}
.facts li:nth-child(2n) { border-right: 0; }
.facts li:hover { background: var(--dark-2); }
.facts .mono { color: var(--accent-2); align-self: flex-start; }
.facts strong { color: var(--light); font-weight: 600; }

@media (max-width: 720px) {
  .facts { grid-template-columns: 1fr; }
  .facts li { border-right: 0; }
}

/* ==================== BET ==================== */
.bet {
  background: var(--accent); color: #fff;
  padding: clamp(100px, 14vw, 180px) var(--pad);
}
.bet .label { color: #fff; display: block; margin-bottom: 20px; }
.bet__title {
  font-family: var(--f-display);
  font-size: clamp(42px, 8vw, 140px);
  line-height: .9; letter-spacing: -.03em;
  text-transform: uppercase; margin-bottom: 50px;
}
.bet__title .accent { color: var(--dark); }
.bet__body {
  max-width: 720px;
  font-size: clamp(17px, 1.4vw, 21px); line-height: 1.6;
  color: rgba(255,255,255,.92);
}
.bet__body p { margin-bottom: 22px; }
.bet__body strong { color: #fff; }
.bet__cta {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 36px) !important;
  text-transform: uppercase;
  letter-spacing: -.02em; line-height: 1.2;
  margin-top: 30px !important;
  color: var(--dark) !important;
}
.bet__cta .accent { color: #fff; }

/* ==================== CONTACT ==================== */
.contact {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  grid-template-areas:
    "wa email"
    "share share";
}
.contact__card {
  grid-area: wa;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  transition: border-color .3s, background .3s, color .3s, transform .3s var(--ease);
}
.contact__card:nth-of-type(2) { grid-area: email; }
.contact__card .mono { grid-column: 1; color: var(--muted); }
.contact__card strong {
  grid-column: 1; grid-row: 2;
  font-family: var(--f-display); font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -.01em; color: var(--light);
  font-weight: 400;
}
.contact__arrow {
  grid-column: 2; grid-row: 1 / span 2; align-self: center;
  font-family: var(--f-display); font-size: 28px;
  transition: transform .3s var(--ease);
}
.contact__card:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
  transform: translateY(-3px);
}
.contact__card:hover .mono { color: rgba(255,255,255,.85); }
.contact__card:hover strong { color: #fff; }
.contact__card:hover .contact__arrow { transform: translateX(6px); }

.contact__card--wa {
  background: #25D366; border-color: #25D366; color: #fff;
}
.contact__card--wa .mono { color: rgba(255,255,255,.85); }
.contact__card--wa strong { color: #fff; }
.contact__card--wa:hover { background: #1EBE5B; border-color: #1EBE5B; }
.contact__card--wa:hover .mono { color: rgba(255,255,255,.85); }

.contact__share {
  grid-area: share;
  padding: 30px; border: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 20px;
}
.contact__share > .mono { color: var(--muted); }
.contact__share-list { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.contact__share-list a {
  font-family: var(--f-mono); font-size: 13px; letter-spacing: .04em;
  color: var(--light);
  transition: color .3s;
}
.contact__share-list a:hover { color: var(--accent); }

@media (max-width: 720px) {
  .contact { grid-template-columns: 1fr; grid-template-areas: "wa" "email" "share"; }
}

/* ==================== FOOTER ==================== */
.footer { padding: 40px var(--pad); border-top: 1px solid var(--line-dark); }
.footer__top {
  display: flex; justify-content: space-between; gap: 40px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.footer__brand { display: flex; gap: 16px; align-items: flex-start; }
.footer__mark {
  font-family: var(--f-display);
  border: 1.5px solid var(--light); padding: 4px 10px;
  font-size: 14px; letter-spacing: .08em;
}
.footer__brand strong { display: block; font-family: var(--f-display); letter-spacing: .04em; margin-bottom: 6px; }
.footer__brand .mono { color: var(--muted); display: block; font-size: 11px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: var(--muted); }
.footer__links a:hover { color: var(--accent); }
.footer__bot {
  display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid var(--line-dark);
  color: var(--muted); font-size: 11px;
}
.footer__bot a:hover { color: var(--accent); }

/* ==================== CHATBOT WIDGET ==================== */
/* Launcher bubble */
#tn-agent-bubble {
  background: var(--accent) !important;
  border-radius: 100px !important;
  box-shadow: 0 8px 28px rgba(230,57,70,.45) !important;
  border: none !important;
  padding: 14px 22px !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease) !important;
}
#tn-agent-bubble:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 36px rgba(230,57,70,.6) !important;
}
#tn-agent-bubble svg { flex-shrink: 0 !important; }
#tn-agent-bubble .vivi-label {
  font-family: var(--f-sans) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #fff !important;
  white-space: nowrap !important;
  letter-spacing: .01em !important;
}

/* Panel */
#tn-agent-panel {
  background: var(--dark) !important;
  border: 1px solid var(--line-dark) !important;
  border-radius: 0 !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.6) !important;
  font-family: var(--f-sans) !important;
}

/* Header */
#tn-agent-header {
  background: var(--dark) !important;
  border-bottom: 1px solid var(--accent) !important;
  font-family: var(--f-display) !important;
  letter-spacing: .04em !important;
}
#tn-agent-header .title {
  color: var(--light) !important;
  font-family: var(--f-display) !important;
  letter-spacing: .04em !important;
}
#tn-agent-header .subtitle {
  color: var(--muted) !important;
  font-family: var(--f-mono) !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
}

/* Messages area */
#tn-agent-messages {
  background: var(--dark-2) !important;
}

/* Bubbles */
.tn-msg .bubble {
  border-radius: 0 !important;
  font-family: var(--f-sans) !important;
}
.tn-msg.user .bubble {
  background: var(--accent) !important;
  color: #fff !important;
}
.tn-msg.assistant .bubble {
  background: var(--dark) !important;
  color: var(--light) !important;
  border: 1px solid var(--line-dark) !important;
}

/* Input area */
#tn-agent-form {
  background: var(--dark) !important;
  border-top: 1px solid var(--line-dark) !important;
}
#tn-agent-input {
  background: var(--dark-2) !important;
  color: var(--light) !important;
  border: 1px solid var(--line-dark) !important;
  border-radius: 0 !important;
  font-family: var(--f-sans) !important;
}
#tn-agent-input::placeholder { color: var(--muted) !important; }
#tn-agent-input:focus { border-color: var(--accent) !important; outline: none !important; }

/* Send button */
#tn-agent-send {
  background: var(--accent) !important;
  border-radius: 0 !important;
  border: none !important;
  color: #fff !important;
}
#tn-agent-send:hover { background: #c42a37 !important; }

/* Typing indicator */
.tn-typing {
  background: transparent !important;
}
.tn-typing span,
.tn-msg .bubble .tn-typing span {
  background: #E63946 !important;
  background-color: #E63946 !important;
  animation: tn-dot-vivi 1.2s infinite !important;
}
.tn-typing span:nth-child(2) { animation-delay: .15s !important; }
.tn-typing span:nth-child(3) { animation-delay: .3s !important; }
@keyframes tn-dot-vivi {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; background-color: #E63946; }
  30% { transform: translateY(-4px); opacity: 1; background-color: #E63946; }
}

/* Footer / "Powered by Think Next" */
#tn-agent-footer,
#tn-agent-footer *,
.tn-powered,
.tn-footer,
.tn-branding,
.tn-branding * {
  color: #ffffff !important;
}
#tn-agent-footer {
  background: var(--dark) !important;
  border-top: 1px solid var(--line-dark) !important;
  font-family: var(--f-mono) !important;
  font-size: 10px !important;
}

/* ==================== REVEAL ==================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ==================== FOCUS ==================== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ==================== MOBILE ==================== */
@media (max-width: 600px) {

  /* Hero */
  .hero { padding: 100px 20px 40px; }
  .hero__title { font-size: clamp(48px, 13vw, 64px); }
  .hero__meta { flex-direction: column; gap: 4px; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero__vote { text-align: left; }
  .btn-primary { width: 100%; justify-content: center; }

  /* Manifest */
  .manifest__title { font-size: clamp(36px, 10vw, 52px); }
  .manifest__body p { font-size: 16px; }

  /* Stats */
  .stats { padding: 36px 20px; }
  .stats ul { gap: 24px; }
  .stats__num { font-size: clamp(40px, 10vw, 56px); }

  /* Sections */
  .section { padding: 60px 20px; }
  .section__title { font-size: clamp(32px, 9vw, 52px); }
  .section__head { margin-bottom: 36px; }

  /* Axes */
  .axis__trigger {
    grid-template-columns: 36px 1fr 28px;
    gap: 10px; padding: 20px 0 16px;
  }
  .axis__title { font-size: clamp(22px, 7vw, 32px); }
  .axis__quote { font-size: 15px; margin-left: 0; }
  .axis__body ol { margin-left: 0; }
  .axis__body li::before { min-width: 36px; }

  /* Bet */
  .bet { padding: 60px 20px; }
  .bet__title { font-size: clamp(34px, 10vw, 52px); margin-bottom: 30px; }
  .bet__cta { font-size: clamp(18px, 5vw, 24px) !important; }

  /* Contact */
  .contact__card strong { font-size: 16px; word-break: break-all; }
  .contact__card { padding: 20px; }

  /* Footer */
  .footer__top { flex-direction: column; gap: 24px; }
  .footer__links { display: none; }
  .footer__bot { flex-direction: column; gap: 6px; text-align: center; }

  /* Chatbot pill label — hide text on very small screens */
  #tn-agent-bubble .vivi-label { display: none !important; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 44px; }
  .axis__title { font-size: 20px; }
  .section__title { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
