@charset "utf-8";
/* =====================================================================
   EMPOWERELY — design system
   Tipografia: --font-body (DM Sans) / --font-headings (Urbanist) da custom-fonts.php
   Palette wireframe + ritmo SaaS (riferimento WETA)
   ===================================================================== */

:root {
  /* Brand */
  --em-cyan: #15A9E2;
  --em-cyan-deep: #0f7fb0;
  --em-cyan-soft: #e7f6fc;
  --em-cyan-glow: rgba(21, 169, 226, .22);
  --em-lime: #A6C742;
  --em-ink: #12151a;
  --em-ink-2: #2a3038;
  --em-muted: #6b7280;
  --em-muted-2: #9aa1ab;
  --em-line: #e6e8ec;
  --em-line-strong: #d5d9e0;
  --em-cream: #f7f8fa;
  --em-cream-2: #eef1f5;
  --em-paper: #ffffff;
  --em-dark: #0B1728;
  --em-dark-2: #12253a;

  /* Alias legacy AICON (componenti condivisi) */
  --black: var(--em-dark);
  --cream: var(--em-ink);
  --gold: var(--em-cyan);
  --gold-soft: var(--em-cyan-soft);
  --rule: var(--em-line);

  /* Tipografia — risolte da Customizer / default WOFF2 */
  --display: var(--font-headings);
  --sans: var(--font-body);

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1.0625rem;
  --fs-md: 1.125rem;
  --fs-lg: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-xl: clamp(1.65rem, 1.3rem + 1.4vw, 2.35rem);
  --fs-2xl: clamp(2.15rem, 1.5rem + 2.6vw, 3.5rem);
  --fs-3xl: clamp(2.5rem, 1.7rem + 3.4vw, 4.25rem);

  --lh-tight: 1.08;
  --lh-snug: 1.2;
  --lh-body: 1.65;

  --shell: 1200px;
  --gutter: clamp(20px, 4.2vw, 56px);
  --section-y: clamp(4rem, 7.5vw, 6.5rem);
  --head-h: 78px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --t: 260ms;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --shadow: 0 20px 50px rgba(11, 23, 40, .08);
  --shadow-sm: 0 8px 24px rgba(11, 23, 40, .06);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--em-cream);
}
body, h1, h2, h3, p, figure, dl, dd, ol, ul { margin: 0; }
ul, ol { list-style: none; padding: 0; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

body {
  background: var(--em-cream);
  color: var(--em-ink);
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--em-cyan); color: #fff; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: .65rem 1rem;
  z-index: 10000;
  border-radius: 8px;
}
.skip:focus { left: 1rem; top: 1rem; }

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

/* --- Tipografia sezioni --------------------------------------------- */
.em-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .85rem;
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--em-cyan-deep);
}
.em-kicker--on-dark { color: #8fd4f0; }

.em-sec-head {
  max-width: 38rem;
  margin-bottom: clamp(1.85rem, 4vw, 2.85rem);
}
.em-sec-head--center {
  margin-inline: auto;
  text-align: center;
}
.em-sec-head--center .em-lead { margin-inline: auto; }
.em-sec-head--light h2 { color: #fff; }

.em-sec-head h2 {
  font-family: var(--display);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  letter-spacing: -.03em;
  color: var(--em-ink);
  font-weight: 700;
}

.em-lead {
  margin-top: .9rem;
  color: var(--em-muted);
  font-size: var(--fs-md);
  line-height: 1.55;
  max-width: 36rem;
}

/* --- Bottoni -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 50px;
  padding: .75rem 1.45rem;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 700;
  font-size: .94rem;
  letter-spacing: .01em;
  line-height: 1;
  border: 1.5px solid transparent;
  transition:
    transform var(--t) var(--ease),
    background var(--t) var(--ease),
    color var(--t) var(--ease),
    border-color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--em-cyan);
  color: #fff;
  box-shadow: 0 12px 30px var(--em-cyan-glow);
}
.btn--primary:hover {
  background: var(--em-cyan-deep);
  box-shadow: 0 14px 34px rgba(15, 127, 176, .32);
}

.btn--ghost {
  background: rgba(255,255,255,.72);
  color: var(--em-ink);
  border-color: var(--em-line-strong);
}
.btn--ghost:hover {
  border-color: var(--em-cyan);
  color: var(--em-cyan-deep);
  background: #fff;
}

.btn--on-dark {
  background: #fff;
  color: var(--em-ink);
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
}
.btn--on-dark:hover { background: var(--em-cyan-soft); color: var(--em-cyan-deep); }

/* --- Header (stile WETA header-1) ----------------------------------- */
.site-head {
  --nav-muted: #888899;
  --nav-ink: #010915;
  --nav-blue: #3C66FA;

  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 4px rgba(29, 29, 29, .14);
  border-bottom: 0;
  transition: box-shadow .25s ease;
}
.site-head.is-solid,
.site-head.is-scrolled {
  box-shadow: 0 4px 16px rgba(29, 29, 29, .12);
}

.site-head__bar {
  width: 100%;
  min-height: 78px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  max-width: 188px;
}
.brand__logo { height: 34px; width: auto; }
.brand__word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .06em;
  color: var(--nav-ink);
  text-transform: uppercase;
}
.site-head .brand__logo[src*="white"],
.site-head .brand__logo[src*="aicon"] {
  filter: brightness(0);
  opacity: .9;
}

.nav__list {
  gap: 0;
  list-style: none;
  padding: 0;
}
.nav__list > li {
  list-style: none;
  margin: 0;
  margin-inline-end: 36px;
}
.nav__list > li:last-child {
  margin-inline-end: 0;
}
.nav__list a {
  display: inline-block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--nav-muted);
  padding: 18px 0;
  transition: color .25s ease;
}
.nav__list a:hover,
.nav__list a[aria-current="page"],
.nav__list .current-menu-item > a {
  color: var(--nav-blue);
}

.head__cta {
  flex-shrink: 0;
}

.head__login {
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: var(--nav-ink);
  transition: color .25s ease;
}
.head__login:hover { color: var(--nav-blue); }
.head__login svg { flex-shrink: 0; }
.head__login:hover svg path[stroke] { stroke: var(--nav-blue); }

.head__cta .btn--primary,
.head__cta .btn--nav {
  min-height: 0;
  padding: 9px 23px;
  border-radius: 100px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
  background: var(--nav-blue);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: none;
}
.head__cta .btn--primary:hover,
.head__cta .btn--nav:hover {
  background: #2954e6;
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .nav__list > li { margin-inline-end: 22px; }
  .nav__list a { font-size: 14px; }
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(1, 9, 21, .12);
  background: #fff;
}
.burger__lines {
  display: grid;
  gap: 5px;
  width: 18px;
}
.burger__lines i {
  display: block;
  height: 2px;
  background: var(--nav-ink);
  border-radius: 2px;
}
.burger__text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Mobile panel */
.menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(1, 9, 21, .45);
}
.menu[hidden] { display: none !important; }
.menu__inner {
  position: absolute;
  inset: 0 0 auto 0;
  background: #fff;
  padding: 1.35rem var(--gutter) 1.85rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 16px 40px rgba(29, 29, 29, .16);
}
.menu__kicker {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nav-muted);
  margin-bottom: .85rem;
  font-weight: 600;
}
.menu__list {
  margin: 0;
  padding: 0;
}
.menu__list li {
  list-style: none;
  border-bottom: 1px solid rgba(1, 9, 21, .08);
}
.menu__list a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--nav-ink);
}
.menu__list a:hover,
.menu__list a[aria-current="page"] {
  color: var(--nav-blue);
}
.menu__num {
  font-family: var(--sans);
  font-size: .75rem;
  color: var(--nav-blue);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

/* --- Footer --------------------------------------------------------- */
.site-foot {
  position: relative;
  background: linear-gradient(180deg, var(--em-dark) 0%, #08111c 100%);
  color: #d7e4ef;
  padding: clamp(3.25rem, 6vw, 4.75rem) 0 2rem;
  overflow: hidden;
}
.site-foot__ghost {
  position: absolute;
  right: -4%;
  bottom: -18%;
  width: min(42vw, 420px);
  opacity: .05;
  pointer-events: none;
}
.foot__grid {
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 860px) {
  .foot__grid {
    grid-template-columns: 1.15fr 1.85fr;
    gap: 3.25rem;
  }
}
.foot__tag {
  margin-top: .85rem;
  color: rgba(215, 228, 239, .68);
  max-width: 28rem;
  font-size: .98rem;
  line-height: 1.55;
}
.foot__cols {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 700px) {
  .foot__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.foot__h {
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8fd4f0;
  margin-bottom: .85rem;
  font-weight: 700;
}
.foot__col a,
.foot__col p { color: rgba(215, 228, 239, .78); font-size: .95rem; }
.foot__col a:hover { color: #fff; }
.foot__col ul { display: grid; gap: .5rem; }
.foot__fine {
  margin-top: 2.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(215, 228, 239, .5);
}
.brand--foot .brand__word { color: #fff; }
.brand--foot .brand__logo { height: 28px; filter: brightness(0) invert(1); }

/* --- Reveal --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}
