/* File: styles.css */
/* -----------------------------------------------------
   RESET & BASE
----------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font professionale */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff !important;
  overflow-x: hidden;
  margin: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;          /* sopra all’hero che ha z-index: 0 */
  padding: 12px 0;
  background: transparent;
}

/* -----------------------------------------------------
   HERO SECTION
----------------------------------------------------- */
.hero {
  position: fixed;      /* <- fisso */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;        /* a tutta viewport */
  display: flex;
  align-items: center;
  padding-left: 120px;
  overflow: hidden;
  z-index: 0;           /* sotto a header e contenuto */
  background: #0C1B38;
}

header.scrolled {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
}

/* Contenitore nav */
.nav-container {
  width: 100%;
  max-width: 1700px;
  margin: 0;
  padding: 0 40px;     
  display: grid;
  grid-template-columns: 260px 1fr 200px;
  align-items: center;
  position: relative;
  z-index: 9999;
}

/* Logo */
.logo img {
  height: 95px;
  display: block;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.4));
}

/* MENU CENTRALE */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 45px;
  text-align: center;
}

.main-nav {
  justify-self: center;
  width: fit-content;
  margin: 0 auto;  
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: 0.25s;
  padding-bottom: 4px;
}

.main-nav a:hover {
  color: #00A9FF;
  border-bottom: 2px solid #00A9FF;
}

/* stato "attivo" nel menu, gestito via JS */
.main-nav a.active {
  color: #00A9FF;
  border-bottom: 2px solid #00A9FF;
}

/* stato "attivo" nel menu, gestito via JS */
.main-nav a.active {
  color: #00A9FF;
  border-bottom: 2px solid #00A9FF;
}

/* NAVBAR RIGHT (se servirà) */
.nav-right .nav-btn {
  padding: 10px 22px;
  background: #00A9FF;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  color: white;
  transition: 0.25s;
}

.nav-right .nav-btn:hover {
  background: #0088CC;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
}
/* ============================
   LANGUAGE SWITCHER 
============================ */
.lang-switch {
  position: relative;
  justify-self: end;
  user-select: none;
  cursor: pointer;  
}

.lang-btn {
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  color: #0C1B38;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.lang-btn:hover {
  background: #00A9FF;
  color: white;
}

/* Dropdown nascosta */
.lang-dropdown {
  position: absolute;
  right: 0;
  top: 45px;
  background: white;
  border-radius: 12px;
  list-style: none;
  padding: 8px 0;
  width: 150px;
  display: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.lang-dropdown li {
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.25s;
  font-weight: 500;
  user-select: none;
}

.lang-dropdown li:hover {
  background: #00A9FF;
  color: white;
}

/* Classe per mostrare menu */
.lang-switch.active .lang-dropdown {
  display: block;
}

/* -----------------------------------------------------
   HERO SECTION
----------------------------------------------------- */

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(to bottom, rgba(12,27,56,0), #ffffff);
  pointer-events: none;
  z-index: 5;
}

/* Immagine AI stile template */
.hero-image {
  pointer-events: none;	
  position: absolute;
  left: 8%;
  top: 110px;
  width: 520px;
  z-index: -1 !important;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

/* Particelle */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Contenuto Hero */
.hero-content {
  color: white;
  position: relative;
  left: 35%;
  max-width: 600px;
  z-index: 5;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.2;
  color: #ffffff;        /* colore base: bianco */
  white-space: nowrap; /* non andare a capo da solo, solo sul <br> */
}

/* prima riga: tutta su una linea */
.hero-line-1 {
  white-space: nowrap;
}

.hero-content h1 .hero-heading-accent {
  color: #00A9FF;       /* solo "for Human Signals." è blu */
  white-space: nowrap;  /* << blocca l’andata a capo */
}

.hero-content p {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.85;
}

.hero-subtext {
  font-size: 18px;
  line-height: 1.55;
  opacity: 0.92;
  font-weight: 300;
  letter-spacing: 0.15px;
}

.accent-blue {
  color: #00A9FF;
  font-weight: 600;
}

.closing-line {
  color: #ffffff;
  font-weight: 600;
  font-size: 22px;
  margin-top: 18px;
  display: block;
  letter-spacing: 0.3px;
  opacity: 0.95;
}

.hero-tagline {
  margin-top: 25px;
  font-size: 22px;
  font-weight: 600;
  color: #00A9FF;
}

/* Bottoni Hero */
.buttons {
  margin-top: 35px;
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

/* Pulsante blu */
.btn.primary {
  background: #0F3FAF;
  color: white;
}

/* Pulsante bianco */
.btn.secondary {
  background: white;
  color: #0A0F1F;
}

/* CONTENT SECTION */
.content-section {
  margin-top: 10vh;
  padding: 100px 80px;
  min-height: 0;              /* niente 120vh forzati */
  z-index: 1;
  position: relative;
  background: transparent;    /* lascia colore / gradient alla singola sezione */
}

.page-content {
  position: relative;
  z-index: 1;
  margin-top: 100vh;   /* fa partire il resto della pagina sotto l’hero fisso */
  background: #ffffff;
}

.hero-curve {
  width: 100%;
  height: 160px;
  background: transparent !important;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
}

.hero-curve svg {
  display: block;
  width: 100%;
  height: 160px;
}

.hero-curve svg path {
  fill: #ffffff;
}

/* ============================
   WHY NEURONET SECTION
============================= */
#why-neuronet {
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 20px;   /* PRIMO TAGLIO: meno spazio sotto */
  position: relative;
  z-index: 8;
  background: #F7F9FD;
}

.section-title {
  font-size: 54px;
  color: #0C1B38;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 24px;
  color: #005DFF;
  font-weight: 650;
  opacity: 0.9;
  margin-bottom: 60px;
  max-width: 800px;
}

.section-kicker {
  margin-top: 8px;
  margin-bottom: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #B46900;
}

.section-kicker-tech {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 171, 0, 0.08);
  border: 1px solid rgba(255, 171, 0, 0.4);
}

.nn-definition {
  position: relative;
  margin: 32px auto 64px;
  max-width: 960px;
  padding: 18px 28px 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #122038;

  /* box centrale “da prodotto” */
  background:
    linear-gradient(135deg, rgba(0, 93, 255, 0.08), rgba(0, 93, 255, 0)) padding-box,
    linear-gradient(90deg, rgba(0, 93, 255, 0.55), rgba(0, 215, 255, 0.55)) border-box;
  border-radius: 18px;
  border: 1px solid transparent;
  box-shadow: 0 18px 40px rgba(12, 27, 56, 0.14);
}

/* etichetta sopra il box */
.nn-definition::before {
  content: "In one sentence";
  position: absolute;
  top: -14px;
  left: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: #0C1B38;
  color: #F7FAFF;
}

.nn-definition strong {
  font-weight: 500;
}


/* Ajust sottotitolo e intro nella sezione SERVIZI */
#services .section-subtitle {
  max-width: 900px;              /* un po' più larga */
  margin: 15px auto 24px;        /* centrata, meno spazio sotto */
}

#services .building-intro {
  max-width: 900px;
  margin: 0 auto 32px;           /* centrata e leggermente staccata dalle card */
}

.nn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.nn-block h3 {
  font-size: 28px;
  color: #0C1B38;
  margin-bottom: 15px;
  font-weight: 600;
}

.nn-block p {
  font-size: 18px;
  color: #23385A;
  line-height: 1.6;
}

/* BLOCCO MANIFESTO FINALE – VERSIONE COLORATA */
.nn-closer-block {
  margin: 40px auto 0px;
  max-width: 980px;
  padding: 26px 28px 28px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;

  /* sfondo dark + gradiente colore */
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 93, 255, 0.22), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0, 220, 255, 0.20), transparent 55%),
    linear-gradient(135deg, #050c22, #081437, #050c22);
  border: 1px solid rgba(140, 188, 255, 0.85);
  box-shadow: 0 26px 60px rgba(3, 7, 26, 0.85);
}

/* glow morbido interno */
.nn-closer-block::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 220deg,
    #4fd1ff,
    #7cf7ff,
    #c4ffda,
    #4fd1ff
  );
  opacity: 0.22;
  filter: blur(28px);
  mix-blend-mode: screen;
}

/* micro griglia molto soft */
.nn-closer-block::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(90deg, rgba(148, 163, 255, 0.25) 1px, transparent 1px),
    linear-gradient(0deg, rgba(148, 163, 255, 0.18) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

/* label sopra la frase */
.nn-closer-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  background: rgba(5, 12, 34, 0.85);
  border: 1px solid rgba(170, 195, 255, 0.9);
  backdrop-filter: blur(8px);
}

.nn-closer-label span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: conic-gradient(from 180deg, #0044ff, #00e0ff, #00ffd1, #0044ff);
  box-shadow: 0 0 14px rgba(91, 213, 255, 0.9);
}

.nn-closer-label p {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e3ebff;
}

/* frase principale */
.nn-closer {
  position: relative;
  z-index: 1;
  text-align: left;
  font-size: 30px;
  line-height: 1.55;
  font-weight: 600;
  color: #f4f7ff;
  max-width: 880px;
}

.nn-closer strong {
  font-weight: 700;
  color: #ffffff;
}

/* highlight finale super visibile */
.nn-closer-highlight {
  background: linear-gradient(90deg, #4fd1ff, #9dffea, #e0ffe0);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* SECTION SEPARATORS ===================================================== */
.section-divider {
  animation: fadeIn 1.2s ease-out forwards;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,168,255,0), #00A9FF, rgba(0,168,255,0));
  margin: 40px 0 24px;   /* meno spazio sotto */
  opacity: .35;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: .35; transform: translateY(0); }
}

/* ARCHITECTURE SECTION ===================================================== */
/* Avvicina "How NeuroNet Works" all'onda sopra */
#architecture {
  margin-top: -80px;   /* copre tutta l’onda (160px di altezza) */
  padding-top: 10px;    /* quasi niente spazio sopra al titolo */
}

.content-section::before {
  margin-bottom: 40px;
}

.content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ARCHITECTURE SECTION  */
.architecture-section {
  background: linear-gradient(#ECF2FF, #E0E8FF); /* un filo più satura */
  color: #0C1B38;
  position: relative;
  z-index: 1;
  padding-top: 30px;   /* scende un po' sotto l’onda */
}

.architecture-ai-note {
  max-width: 860px;
  margin: 32px auto 0;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.architecture-ai-callout {
  max-width: 960px;
  margin: 40px auto 4px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(140, 175, 255, 0.55);
  background:
    /* bagliore soft in alto a sinistra, ma non fino al centro */
    radial-gradient(circle at 0% 0%,
      rgba(110, 160, 255, 0.25),
      transparent 55%),
    /* accento leggero in alto a destra */
    radial-gradient(circle at 100% 10%,
      rgba(80, 210, 255, 0.20),
      transparent 60%),
    /* base uniforme scura per il testo */
    #050b20;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(10, 25, 60, 0.8);
  backdrop-filter: blur(10px);
}

/* pilletta "AI in NeuroNet" */
.architecture-ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 11px;
  margin-bottom: 10px;
  border-radius: 999px;
  border: 1px solid rgba(170, 205, 255, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  color: #E4ECFF;
  background: rgba(5, 16, 46, 0.92);
}

.architecture-ai-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.architecture-ai-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(170, 205, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle,
              rgba(150, 195, 255, 0.35),
              rgba(5, 14, 40, 0.95));
}

.architecture-ai-icon svg {
  width: 17px;
  height: 17px;
  stroke: #F3F5FF;
  stroke-width: 1.5;
  fill: none;
}

.architecture-ai-text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #F5F7FF;
  opacity: 0.98;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
}

.architecture-ai-text strong {
  font-weight: 600;
  color: #FFFFFF;
}

/* ===========================================================
   ARCHITECTURE — OBSERVATION PLANE (added under "How NeuroNet Works")
   =========================================================== */
.nnx-observation {
  max-width: 1120px;
  margin: 36px auto 0;
  padding: 22px 22px 20px;
  border-radius: 26px;
  border: 1px solid rgba(140, 175, 255, 0.45);
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 93, 255, 0.18), transparent 52%),
    radial-gradient(circle at 92% 0%, rgba(0, 220, 255, 0.14), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.52));
  box-shadow:
    0 22px 60px rgba(12, 27, 56, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  backdrop-filter: blur(10px);
}

.nnx-observation-head {
  display: grid;
  gap: 8px;
  max-width: 980px;
}

.nnx-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 27, 56, 0.10);
  background: rgba(247, 250, 255, 0.9);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #4B5569;
}

.nnx-title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #0C1B38;
}

.nnx-lead {
  font-size: 14px;
  line-height: 1.75;
  color: #22324F;
  opacity: 0.98;
  max-width: 980px;
}

.nnx-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.nnx-card {
  position: relative;
  border-radius: 18px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(12, 27, 56, 0.08);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 93, 255, 0.10), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(0, 220, 255, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(12, 27, 56, 0.10);
  transition:
    transform 0.35s cubic-bezier(.16,.84,.39,1),
    box-shadow 0.35s ease-out,
    border-color 0.35s ease-out;
}

.nnx-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.nnx-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: conic-gradient(from 180deg, #005DFF, #00D7FF, #00FFD1, #005DFF);
  box-shadow: 0 0 0 3px rgba(0, 93, 255, 0.10);
  flex-shrink: 0;
}

.nnx-card-title {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 650;
  color: #0C1B38;
}

.nnx-card-text {
  font-size: 13px;
  line-height: 1.65;
  color: #22324F;
}

.nnx-chips {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nnx-chip {
  font-size: 11px;
  line-height: 1;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(12, 27, 56, 0.10);
  background: rgba(247, 250, 255, 0.95);
  color: #1E2942;
  white-space: nowrap;
}

.nnx-chip-strong {
  border-color: rgba(0, 93, 255, 0.35);
  background: rgba(0, 93, 255, 0.07);
  color: #0F3FAF;
  font-weight: 600;
}

.nnx-card-emphasis {
  border-color: rgba(0, 93, 255, 0.22);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 93, 255, 0.14), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(0, 220, 255, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.94));
}

.nnx-card-foot {
  margin-top: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #0F3FAF;
}

@media (hover: hover) {
  .nnx-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 93, 255, 0.22);
    box-shadow: 0 18px 44px rgba(12, 27, 56, 0.16);
  }
}

@media (max-width: 980px) {
  .nnx-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nnx-observation {
    padding: 18px 16px 16px;
    border-radius: 22px;
  }
  .nnx-title {
    font-size: 20px;
  }
  .nnx-grid {
    grid-template-columns: 1fr;
  }
}

/* Hover leggerissimo sul desktop */
@media (hover: hover) {
  .architecture-ai-callout:hover {
    transform: translateY(-1px);
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(140, 180, 255, 0.9);
    transition: all 0.18s ease-out;
  }
}

/* opzionale: un bordino super soft in cima, da product enterprise */
.architecture-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 168, 255, 0),
    rgba(0, 168, 255, 0.35),
    rgba(0, 168, 255, 0)
  );
  opacity: 0.6;
}

.architecture-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
    linear-gradient(90deg, rgba(12, 27, 56, 0.035) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(12, 27, 56, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;   /* quadretti un po' più larghi, più “aria” */
  opacity: 0.75;                /* morbido, non grid aggressiva */
}

.architecture-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* GRID ARCHITECTURE: 2 colonne, più compatto e centrato */
.architecture-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 32px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

/* CARD: meno “mappone”, ma sempre elegante */
.arch-card {
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 26px 24px 24px;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(12, 27, 56, 0.08);
  transition: transform .35s cubic-bezier(.15,.85,.35,1),
              box-shadow .35s cubic-bezier(.15,.85,.35,1);
  opacity: 0;
  transform: translateY(25px);
}

.arch-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.arch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(12, 27, 56, 0.12);
}

/* Icons */
.arch-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  opacity: 0.9;
}

/* titoli e testo dentro la card un filo più compatti */
.arch-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.arch-card p {
  font-size: 16px;
  line-height: 1.5;
}

/* Closer line */
.architecture-closer {
  margin-top: 100px;          /* torniamo allo spazio originale della sezione */
  font-size: 28px;
  font-weight: 600;
  color: #0C1B38;
  max-width: 900px;

  /* sposta SOLO il testo visivamente verso l’alto */
  transform: translateY(-50px);   
}

/* Section titles */
.section-title {
  position: relative;	
  font-size: 54px;
  color: #0C1B38;
  font-weight: 700;
  text-align: left;
}

.section-title::before {
  content: "";
  position: absolute;
  left: -25px;
  top: -25px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
      circle at center,
      rgba(0, 115, 255, 0.08),
      transparent 70%
  );
  filter: blur(35px);
  z-index: -1;
}

.section-subtitle {
  font-size: 22px;
  margin-top: 15px;
  max-width: 700px;
  color: #005DFF;
  opacity: 0.9;
}

/* Variante del sottotitolo per la sezione servizi */
.building-section .section-subtitle {
  max-width: 880px;
  margin: 0 auto 14px;
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
  color: #0C1B38;      /* testo principale scuro, non più tutto blu */
  opacity: 0.96;
}

/* Highlight solo sulle keyword */
.building-section .section-subtitle strong {
  color: #005DFF;
  font-weight: 600;
}

/* Fade-in observer */
.arch-hero-svg {
  width: 160px;
  opacity: 0.50;
  margin-top: 25px;
  margin-bottom: 50px;
}

/* ============================
   SECTION KICKERS (piccole label di avviso)
============================= */
.section-kicker {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #7A869F;
}

.section-kicker-tech {
  color: #C73636; /* richiamo visivo: attenzione / disclaimer tecnico */
}

/* ============================
   TECHNICAL OUTPUTS STRIP
============================= */
.outputs-strip {
  margin-top: 40px;
  padding: 18px 22px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #F7F9FD, #EEF3FF);
  border: 1px solid rgba(12, 27, 56, 0.06);
}

.outputs-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #0C1B38;
  margin-bottom: 4px;
}

.outputs-heading {
  font-size: 14px;
  line-height: 1.6;
  color: #22324F;
  max-width: 820px;
  margin-bottom: 18px;
}

.outputs-heading strong {
  font-weight: 600;
}

.outputs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 14px;
}

.output-card {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(12, 27, 56, 0.06);
  box-shadow: 0 8px 22px rgba(12, 27, 56, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.output-thumb {
  background: #0C1B38;
  padding: 10px;
  overflow: hidden;
}

.output-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain; /* mostra tutto il plot, senza tagliare assi e legenda */
}

.output-card figcaption {
  padding: 10px 12px 12px;
}

.output-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: #0C1B38;
  margin-bottom: 4px;
}

.output-card p {
  font-size: 12px;
  color: #4A5670;
  line-height: 1.5;
}

.outputs-note {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.6;
  max-width: 820px;
}

/* -----------------------------------------------------
   BLUEPRINT LOOK (Architecture)
----------------------------------------------------- */
.blueprint-bg {
  background: linear-gradient(
      to bottom,
      #F8FAFF 0%,
      #F9FBFF 60%,
      #F9FBFF 100%
  );
  position: relative;
}

/* -----------------------------------------------------
   PREMIUM CURVES (Hero → Why, Why → Architecture)
----------------------------------------------------- */
/* SEPARATORE WHY → ARCH: ONDA */
.section-curve-top {
  width: 100%;
  position: relative;
  z-index: 3;
  line-height: 0;
  overflow: hidden;
  margin-top: 0;
}

/* l’onda diventa del colore della sezione WHY */
.section-curve-top path {
  fill: #E0E8FF !important;  /* un azzurrino più visibile */
}

/* aggiungiamo profondità: ombra verso il basso */
.section-curve-top svg {
  width: 100%;
  height: 160px;
  display: block;
  /* leggera ombra per dare profondità */
  filter: drop-shadow(0 -10px 24px rgba(12, 27, 56, 0.16));
}

/* -----------------------------------------------------
   SECTION SOFT BACKGROUND (Why NeuroNet)
----------------------------------------------------- */
.section-soft {
  background: #F7F9FD !important;  /* evita bleed del background del body */
  position: relative;
}

.section-soft::after {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 320px;
  background: radial-gradient(
      600px 280px at 50% 0%,
      rgba(0, 140, 255, 0.08),
      rgba(0,0,0,0)
  );
  z-index: 0;
  pointer-events: none;
}

.section-curve-bottom {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 9;
  background: transparent !important;
  margin-top: -120px;  /* elimina il gap blu */
}

.section-curve-bottom svg {
  display: block;
  width: 100%;
  height: 160px;
  display: block;
  pointer-events: none;
}

.section-curve-bottom path {
  fill: #0C1B38 !important;  /* stesso blu dell’hero */
}

/* ============================
   BUILDING / SERVICES SECTION
============================= */
.section-divider {
  position: relative;
  z-index: 2;
}

.building-section {
  background: #ffffff;
  position: relative;
}

#services {
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 20px;   /* un po' di respiro sotto */
  min-height: auto;       /* niente 120vh: segue il contenuto */
}

#services .section-title {
  margin-top: 0;
}

.building-intro {
  margin: 10px auto 40px;
  max-width: 880px;
  font-size: 16px;
  color: #22324F;
  line-height: 1.6;

  padding: 14px 20px 16px;
  border-radius: 14px;
  background: #F7F9FF;
  border: 1px solid rgba(12, 27, 56, 0.06);
}

.building-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.build-card {
  background: rgba(248, 250, 255, 0.98);
  border-radius: 22px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(12, 27, 56, 0.08);
  box-shadow: 0 12px 32px rgba(12, 27, 56, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.build-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.build-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0C1B38;
}

.build-card-subtitle {
  font-size: 14px;
  color: #22324F;
  opacity: 0.9;
}

.build-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.build-badge-advanced {
  background: rgba(0, 180, 120, 0.08);
  color: #018a5b;
  border-color: rgba(0, 180, 120, 0.4);
}

.build-badge-soon {
  background: rgba(255, 171, 0, 0.08);
  color: #B46900;
  border-color: rgba(255, 171, 0, 0.45);
}

.build-block h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0C1B38;
  margin-bottom: 4px;
}

.build-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.build-block li {
  font-size: 14px;
  line-height: 1.6;
  color: #23385A;
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
}

.build-block li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #00A9FF;
}

.build-status {
  margin-top: 4px;
  font-size: 13px;
  color: #22324F;
  line-height: 1.5;
}

.build-status p {
  margin-bottom: 4px;
}

.build-cta-line {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #0F3FAF;
}

/* Nota & roadmap */
.building-roadmap {
  margin-top: 40px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #F7F9FD, #EEF3FF);
  border: 1px solid rgba(12, 27, 56, 0.06);
  max-width: 900px;
}

.building-roadmap h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0C1B38;
  margin-bottom: 6px;
}

.building-roadmap p {
  font-size: 14px;
  color: #22324F;
  line-height: 1.6;
}

/* ============================
   EXAMPLE TECHNICAL OUTPUTS
============================= */

.outputs-strip {
  margin-top: 40px;
}

.outputs-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #5A6A8A;
  margin-bottom: 6px;
}

.outputs-heading {
  font-size: 16px;
  line-height: 1.7;
  color: #0C1B38;
  max-width: 780px;
  margin-bottom: 18px;
}

.outputs-heading strong {
  color: #005DFF;
  font-weight: 600;
}

.outputs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.output-card {
  background: #F8FAFF;
  border-radius: 18px;
  border: 1px solid rgba(12, 27, 56, 0.06);
  box-shadow: 0 10px 26px rgba(12, 27, 56, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s cubic-bezier(.16,.84,.39,1),
    box-shadow 0.35s ease-out;
}

.output-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(12, 27, 56, 0.16);
}

.output-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #0C1B38;
  padding: 6px;
  overflow: hidden;
}

.output-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;    /* mostra tutto il report, niente crop di assi/legend */
  display: block;
  cursor: zoom-in;        /* feedback chiaro che si può cliccare */
}

.outputs-provenance {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.5;
  color: #4B5569;
  max-width: 880px;
}

.outputs-provenance strong {
  font-weight: 600;
}

.output-card:hover .output-thumb img {
  transform: scale(1.06);
}

.output-card figcaption {
  padding: 12px 14px 14px;
}

.output-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0C1B38;
}

.output-card p {
  font-size: 13px;
  line-height: 1.5;
  color: #22324F;
  margin-top: 4px;
}

.outputs-note {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.5;
  color: #6A7795;
  max-width: 880px;
}

/* ============================
   IMAGE LIGHTBOX FOR OUTPUTS
============================= */
.image-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.image-lightbox.active {
  display: flex;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 30, 0.78);
  backdrop-filter: blur(6px);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 1100px;
  max-height: 80vh;
  padding: 18px 22px 20px;
  border-radius: 22px;
  background: radial-gradient(circle at top left, #121737, #050816);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-lightbox-dialog img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 16px;
  background: #000000;
}

.image-lightbox-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(15, 63, 175, 0.95);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox-caption {
  margin-top: 8px;
}

.image-lightbox-caption h4 {
  font-size: 14px;
  color: #E5EBFF;
  margin-bottom: 3px;
}

.image-lightbox-caption p {
  font-size: 13px;
  color: #AAB5E5;
  line-height: 1.5;
}

/* ============================
   ROADMAP – DESKTOP
============================= */

.roadmap-section {
  background: #020516;
  color: #f5f7ff;
  padding-top: 80px;
  padding-bottom: 90px;
}

.roadmap-section .section-title {
  text-align: left;
  margin-bottom: 8px;
}

.roadmap-section .section-subtitle {
  max-width: 780px;
  margin-left: 0;
  margin-right: 0;
}

/* Barra principale */
.roadmap-bar {
  position: relative;
  margin-top: 48px;
  padding-top: 40px;
}

.roadmap-bar-line {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(80, 120, 255, 0.1),
    rgba(80, 120, 255, 0.8),
    rgba(80, 120, 255, 0.1)
  );
  box-shadow:
    0 0 18px rgba(20, 80, 220, 0.5),
    0 0 1px rgba(180, 210, 255, 0.7);
}

/* Contenitore dei milestone sulla barra */
.roadmap-milestones {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

/* Singola tappa */
.roadmap-milestone {
  position: relative;
  flex: 1 1 0;
  max-width: 190px;
  text-align: left;
}

/* Punto sulla barra – stato base (fallback neutro) */
.roadmap-dot {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #4ea8ff;
  background: #020516;
  margin: 0 auto 18px auto;
  box-shadow: 0 0 0 2px rgba(78, 168, 255, 0.24);
}

/* COMPLETATO → pieno */
.roadmap-milestone.is-past .roadmap-dot {
  background: #4ea8ff;
  border-color: #4ea8ff;
  box-shadow:
    0 0 0 4px rgba(78, 168, 255, 0.35),
    0 10px 22px rgba(0, 0, 0, 0.7);
}

/* IN CORSO → cerchio luminoso vuoto */
.roadmap-milestone.is-current .roadmap-dot {
  background: #020516;
  border-color: #4ea8ff;
  box-shadow:
    0 0 0 4px rgba(78, 168, 255, 0.5),
    0 0 18px rgba(78, 168, 255, 0.9);
}

/* DA FARE → cerchio tratteggiato, più leggero */
.roadmap-milestone.is-future .roadmap-dot {
  background: #020516;
  border-style: dashed;
  border-color: #a0b5ff;
  box-shadow: 0 0 0 3px rgba(160, 181, 255, 0.25);
}

/* Card sopra la barra */
.roadmap-card {
  background: radial-gradient(circle at top left, #111a3b 0, #050918 52%, #020516 100%);
  border-radius: 18px;
  border: 1px solid rgba(135, 167, 255, 0.25);
  padding: 10px 12px 12px;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(4, 10, 40, 0.9);
}

/* Riga superiore card: data + pillola stato */
.roadmap-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
}

.roadmap-time {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.85;
}

/* Pillole di stato */
.roadmap-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
  border: 1px solid transparent;
}

.roadmap-status-past {
  border-color: rgba(126, 139, 184, 0.7);
  color: #c3c9e6;
  background: rgba(26, 32, 72, 0.9);
}

.roadmap-status-now {
  border-color: rgba(78, 168, 255, 0.95);
  color: #e6f2ff;
  background: linear-gradient(135deg, #005dff, #4ea8ff);
}

.roadmap-status-next {
  border-color: rgba(66, 226, 184, 0.8);
  color: #dbfff5;
  background: rgba(12, 48, 40, 0.9);
}

.roadmap-status-future {
  border-color: rgba(180, 190, 245, 0.85);
  color: #dde2ff;
  background: rgba(10, 18, 54, 0.9);
}

/* Titolo e nota */
.roadmap-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 4px;
}

.roadmap-note {
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.92;
}

/* Nota finale */
.roadmap-footnote {
  margin-top: 34px;
  font-size: 11.5px;
  max-width: 720px;
  opacity: 0.82;
}

/* ============================
   ROADMAP – CONTRASTO + LEGGIBILITÀ
============================= */

.roadmap-section {
  background: radial-gradient(circle at top, #071232 0, #05091d 55%, #02030d 100%);
  color: #f7f8ff;
}

/* Titolo e sottotitolo più chiari */
.roadmap-section .section-title {
  color: #fdfdff;
}

.roadmap-section .section-subtitle {
  color: #e1e7ff;
  opacity: 1;
}

/* Barra un filo più luminosa */
.roadmap-bar-line {
  background: linear-gradient(
    90deg,
    rgba(120, 160, 255, 0.35),
    rgba(120, 185, 255, 0.95),
    rgba(120, 160, 255, 0.35)
  );
  box-shadow:
    0 0 24px rgba(40, 110, 255, 0.7),
    0 0 1px rgba(190, 215, 255, 0.9);
}

/* Card più chiare e con bordo più visibile */
.roadmap-card {
  background: radial-gradient(circle at top left, #192654 0, #060b22 55%, #030515 100%);
  border-color: rgba(173, 198, 255, 0.65);
}

/* Testi dentro le card più leggibili */
.roadmap-title {
  color: #f9fbff;
}

.roadmap-note {
  color: #dfe4ff;
  opacity: 0.98;
}

/* Dot “passati” un po' più visibili */
.roadmap-milestone.is-past .roadmap-dot {
  border-color: #a7b3e8;
  box-shadow: 0 0 0 3px rgba(167, 179, 232, 0.32);
}

/* ============================
   SECTION BRIDGE (Applications → Team)
============================= */
.section-bridge {
  margin-top: 40px;
  padding: 16px 18px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 0% 0%, rgba(0, 93, 255, 0.12), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0, 193, 255, 0.10), transparent 60%),
    #ffffff;
  border: 1px solid rgba(12, 27, 56, 0.08);
  box-shadow: 0 14px 34px rgba(12, 27, 56, 0.16);
}

.section-bridge::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 168, 255, 0),
    rgba(0, 168, 255, 0.6),
    rgba(0, 168, 255, 0)
  );
  opacity: 0.5;
}

/* layout interno: icona + testo */
.section-bridge-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.section-bridge-visual {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #DBE6FF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-bridge-visual svg {
  width: 32px;
  height: 32px;
  stroke: #0C1B38;
  stroke-width: 1.4;
  fill: rgba(12, 27, 56, 0.06);
}

/* testo */
.section-bridge-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #7A869F;
  margin-bottom: 4px;
}

.section-bridge-text {
  font-size: 13px;
  line-height: 1.7;
  color: #111827;
  max-width: 900px;
}

.section-bridge-text strong {
  font-weight: 600;
}

/* rende più armonico l’aggancio col TEAM sotto */
.section-bridge-team {
  margin-bottom: 30px;
}

/* ============================
   STACCO VERSO TEAM
============================= */
.section-curve-team {
  margin-top: -0px;   /* l’onda sale di 40px */
  position: relative;
  z-index: 1;
  line-height: 0;
}

.section-curve-team svg {
  width: 100%;
  height: 120px;
  display: block;
  filter: drop-shadow(0 -10px 24px rgba(12, 27, 56, 0.14));
}

.section-curve-team path {
  fill: #F7FAFF;
}

/* ============================
   TEAM SECTION – GRID PARITARIA
============================= */
.team-section {
  margin-top: -40px;
  padding-top: 80px;
  padding-bottom: 8px;
  background: linear-gradient(
      180deg,
      #F7FAFF 0%,
      #FFFFFF 55%,
      #FFFFFF 100%
  );
  position: relative;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
      90deg,
      rgba(0, 93, 255, 0),
      rgba(0, 93, 255, 0.35),
      rgba(0, 93, 255, 0)
  );
  opacity: 0.6;
  pointer-events: none;
}

.team-header {
  max-width: 980px;
  margin: 0 auto 40px;
}

.team-subtitle {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  color: #1E2942;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* CARD BASE – UGUALE PER TUTTI */
.team-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  border: 1px solid rgba(12, 27, 56, 0.06);
  box-shadow: 0 10px 28px rgba(12, 27, 56, 0.10);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out,
    box-shadow 0.35s ease-out,
    transform 0.35s cubic-bezier(.16,.84,.39,1);
}

.team-card.team-visible {
  opacity: 1;
  transform: translateY(0);
}

.team-card:hover {
  box-shadow: 0 16px 36px rgba(12, 27, 56, 0.18);
  transform: translateY(-4px);
}

.team-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.team-photo {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(0, 93, 255, 0.4);
  background: #0C1B38;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0C1B38;
}

.team-card .role {
  font-size: 13px;
  font-weight: 500;
  color: #005DFF;
}

.team-lead {
  font-size: 13px;
  line-height: 1.6;
  color: #22324F;
}

.team-points {
  list-style: none;
  padding: 0;
  margin: 4px 0 8px;
}

.team-points li {
  font-size: 12.5px;
  line-height: 1.6;
  color: #24334E;
  margin-bottom: 3px;
  padding-left: 14px;
  position: relative;
}

.team-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #00A9FF;
}

.team-links {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.team-links a {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(12, 27, 56, 0.12);
  text-decoration: none;
  color: #0C1B38;
  background: #F7FAFF;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.team-links a:hover {
  background: #005DFF;
  color: #FFFFFF;
  border-color: rgba(0, 93, 255, 0.8);
}

.team-footnote {
  margin-top: 28px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #6B738F;
  max-width: 780px;
}

#team + .section-divider {
  margin-top: 14px;   /* override locale */
}

/* meno spazio sotto l’ultima frase del team – versione premium */
.team-advisory-line {
  max-width: 900px;
  margin: 14px auto 6px;      /* centrato, pochissimo spazio sotto */
  padding: 8px 18px;          /* leggero, non crea “buco” verticale */
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  color: #4B5569;

  background:
    radial-gradient(circle at 0% 0%, rgba(0, 93, 255, 0.08), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(0, 193, 255, 0.06), transparent 60%),
    #F7FAFF;
  border: 1px solid rgba(12, 27, 56, 0.08);
}
/* versione "tight" del divider, solo dopo il team */
.section-divider.section-divider-tight {
  margin-top: 10px;    /* invece dei 40px globali */
}

/* ============================
   SEPARATORE → CTA FINALE
==============================*/
.cta-separator {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #ffffff;
  z-index: 1;
}

/* sottile linea centrale con gradiente “enterprise” */
.cta-separator::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(0, 168, 255, 0),
    rgba(0, 168, 255, 0.7),
    rgba(0, 168, 255, 0)
  );
  opacity: 0.7;
}

/* alone morbido che anticipa la sezione CTA sotto */
.cta-separator::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 160px;
  background:
    radial-gradient(
      120% 200% at 50% 0%,
      rgba(0, 112, 255, 0.10),
      rgba(0, 112, 255, 0.0) 70%
    );
  opacity: 0.9;
  pointer-events: none;
}

/* stringe lo spazio sotto l’ultima frase del team */
#team p:last-of-type {
  margin-bottom: 8px;  /* invece dei 20–24px tipici */
}
/* ============================
   CTA SECTION – "What you can do now"
   ============================ */

.cta-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 90px;
  margin-top: 0;
  background: radial-gradient(
      120% 220% at 50% 0%,
      #182447 0%,
      #050814 60%,
      #050814 100%
  );
  overflow: hidden;
}

/* pattern leggerissimo sullo sfondo, tipo blueprint ma scuro */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(90deg, rgba(121, 134, 203, 0.15) 1px, transparent 1px),
    linear-gradient(0deg, rgba(121, 134, 203, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* alone-style glow dietro al titolo */
.cta-section::after {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(79, 209, 255, 0.25), transparent 65%);
  filter: blur(12px);
  opacity: 0.8;
  pointer-events: none;
}

.cta-wrapper {
  position: relative;
  z-index: 2;
}

/* titolo riusa section-title ma con override per il dark */
.cta-title {
  color: #F9FBFF;
  margin-bottom: 8px;
}

.cta-title::before {
  background: radial-gradient(
      circle at center,
      rgba(78, 168, 255, 0.45),
      transparent 70%
  );
}

.cta-subtitle {
  max-width: 980px;
  font-size: 17px;
  line-height: 1.7;
  color: #C5D3FF;
  margin-top: 14px;
  margin-bottom: 34px;
}

/* GRID CTA */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 10px;
}

/* CARD CTA */
.cta-card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(78, 168, 255, 0.16), transparent 55%)
              ,rgba(7, 13, 32, 0.94);
  border-radius: 22px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(151, 178, 255, 0.32);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s cubic-bezier(.18,.89,.32,1.1),
    transform 0.5s cubic-bezier(.18,.89,.32,1.1),
    box-shadow 0.35s ease-out,
    border-color 0.35s ease-out,
    background 0.35s ease-out;
}

.cta-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  border-color: rgba(129, 199, 255, 0.9);
  background: radial-gradient(circle at top left, rgba(82, 196, 255, 0.22), transparent 60%)
              ,rgba(6, 11, 30, 0.98);
}

.cta-card-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, #233765, #050814);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon svg {
  width: 24px;
  height: 24px;
}

.cta-headings {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C5D3FF;
  border: 1px solid rgba(151, 178, 255, 0.5);
  background: rgba(8, 20, 59, 0.75);
}

.cta-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #F5F7FF;
}

.cta-lead {
  font-size: 14px;
  line-height: 1.6;
  color: #D3DDFF;
  margin-top: 4px;
}

.cta-list {
  list-style: none;
  margin: 4px 0 6px;
  padding: 0;
}

.cta-list li {
  font-size: 13px;
  line-height: 1.55;
  color: #BAC7F7;
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
}

.cta-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #5BD5FF;
}

/* BOTTONI CTA */
.cta-btn {
  margin-top: 6px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(188, 210, 255, 0.85);
  background: linear-gradient(135deg, #E5F0FF, #C3DAFF);
  color: #051024;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s ease-out,
    color 0.25s ease-out,
    box-shadow 0.25s ease-out,
    transform 0.18s ease-out;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #FFFFFF, #D8E6FF);
  color: #001233;
  box-shadow: 0 8px 24px rgba(0,0,0,0.55);
  transform: translateY(-1px);
}

/* variante outline (investor) */
/* per ora outline/ghost usano lo stesso stile pieno */
.cta-btn-outline,
.cta-btn-ghost {
  background: linear-gradient(135deg, #E5F0FF, #C3DAFF);
  color: #051024;
  border-color: rgba(188, 210, 255, 0.85);
}

.cta-btn-outline:hover,
.cta-btn-ghost:hover {
  background: linear-gradient(135deg, #FFFFFF, #D8E6FF);
  color: #001233;
}

/* footnote finale */
.cta-footnote {
  margin-top: 26px;
  font-size: 12px;
  color: #8E9DD1;
  max-width: 450px;
}

/* ===========================================================
   RECOGNITION — Anthropic Minimal Style (Top 0.01%)
   =========================================================== */

.recognition-strip {
    padding: 20px 0 18px;
    text-align: center;
    background: transparent;
}

/* LABEL — micro, uppercase, discrete */
.recognition-title {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #a7b2c7;
    opacity: 0.85;
    margin-bottom: 10px;
}

/* GRID */
.recognition-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

/* CHIP base */
.recognition-item {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 3px 10px 3px 9px;

    border-radius: 6px;
    border: 1px solid #2c3547;
    background: #0f1624;

    color: #ffffff;              /* 👈 testo ben visibile (bianco) */
    font-size: 12px;
    font-weight: 400;
    line-height: 1;

    transition:
        background 0.16s ease,
        border-color 0.16s ease,
        color 0.16s ease;
}

/* Icons */
.recognition-item img {
    width: 13px;
    height: 13px;
    opacity: 0.85;
    transition: opacity 0.16s ease;
}

/* LINK stile: identico al div, nessuna underline */
.recognition-badges a.recognition-item,
.recognition-badges a.recognition-item:visited,
.recognition-badges a.recognition-item:active {
    text-decoration: none;
    color: #ffffff;
}

/* Hover Anthropic */
.recognition-item:hover {
    background: #161f31;
    border-color: #3f4d64;
    color: #ffffff;
}

.recognition-item:hover img {
    opacity: 1;
}

/* Mobile */
@media (max-width: 600px) {
    .recognition-item {
        padding: 3px 8px;
        font-size: 11.5px;
    }

    .recognition-title {
        font-size: 9.5px;
        letter-spacing: 0.15em;
    }
}



/* ============================
   FOOTER – ENTERPRISE LAYER
============================= */

.site-footer {
  position: relative;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 26px;
  background: radial-gradient(
      120% 220% at 50% 0%,
      #050818 0%,
      #02030A 55%,
      #010208 100%
  );
  color: #E5ECFF;
  border-top: 1px solid rgba(129, 145, 210, 0.45);
  overflow: hidden;
}

/* pattern leggerissimo di sfondo, in continuità con la CTA ma più sobrio */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(112, 137, 225, 0.16) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(112, 137, 225, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* leggero glow dietro al logo / testo principale */
.site-footer::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 12%;
  width: 320px;
  height: 260px;
  background: radial-gradient(
      circle at 30% 0%,
      rgba(81, 195, 255, 0.35),
      transparent 70%
  );
  filter: blur(14px);
  opacity: 0.85;
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 3fr);
  gap: 40px;
  align-items: flex-start;
}

/* BRAND COLUMN */
.footer-brand {
  max-width: 520px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.7));
}

.footer-tagline {
  font-size: 13px;
  font-weight: 500;
  color: #C7D6FF;
}

.footer-text {
  font-size: 13px;
  line-height: 1.7;
  color: #AEBBEA;
  margin-bottom: 10px;
}

.footer-text strong {
  color: #E6EEFF;
  font-weight: 600;
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.footer-chip {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(165, 191, 255, 0.7);
  background: rgba(12, 27, 56, 0.8);
  color: #E4ECFF;
}

/* NAV COLUMNS */
.footer-columns {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #C5D3FF;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  text-decoration: none;
  color: #AEBBEA;
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

.footer-col a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(92, 196, 255, 0.6);
}

/* CONTACT COLUMN */
.footer-col-contact {
  max-width: 260px;
}

.footer-contact-lead {
  font-size: 12.5px;
  color: #BAC7F7;
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F2F6FF, #C6DAFF);
  color: #031022;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.7);
  margin-bottom: 4px;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.22s ease-out,
    background 0.22s ease-out;
}

.footer-email:hover {
  background: linear-gradient(135deg, #FFFFFF, #D6E4FF);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9);
}

.footer-contact-note {
  font-size: 11.5px;
  color: #8E9CD8;
  line-height: 1.5;
}

/* BOTTOM BAR */
.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding-top: 12px;
  border-top: 1px solid rgba(84, 105, 196, 0.5);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: #93A0D6;
  max-width: 880px;
}

.footer-disclaimer strong {
  color: #E3EAFF;
  font-weight: 600;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 11.5px;
  color: #7F8CCD;
}

.footer-meta-item {
  opacity: 0.9;
}

.footer-meta a {
  text-decoration: none;
  color: #AEBBEA;
  border-bottom: 1px dotted rgba(174, 187, 234, 0.4);
  padding-bottom: 1px;
  transition: color 0.22s ease, border-color 0.22s ease;
}

.footer-meta a:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.75);
}

/* STILE MODALE POC */
/* Titoli delle modali (PoC + Investor) */
#poc-modal-title,
#investor-modal-title {
  color: #E5ECFF;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.cta-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.cta-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 30, 0.65);
}

.cta-modal-dialog {
  position: relative;
  max-width: 640px;
  width: 100%;
  background: #050b1e;
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(120, 160, 255, 0.35);
  z-index: 1;
}

.cta-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #cdd6ff;
}

.cta-modal-subtitle {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #a7b3e6;
}

.cta-modal-form .form-row {
  margin-bottom: 1rem;
}

.cta-modal-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: #cdd6ff;
}

.cta-modal-form input,
.cta-modal-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(130, 155, 255, 0.45);
  background: #050b1e;
  color: #e5ecff;
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
}

.cta-modal-form textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

.cta-btn-secondary {
  border-radius: 999px;
  border: 1px solid rgba(160, 177, 240, 0.7);
  background: transparent;
  color: #cdd6ff;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.cta-modal-footnote {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: #8f9ad1;
}

.cta-modal-footnote a {
  color: #E5ECFF;              /* quasi bianco, leggibile sullo sfondo scuro */
  text-decoration: underline;
}

.cta-modal-footnote a:hover {
  color: #FFFFFF;              /* bianco pieno su hover */
}

.cta-modal-success,
.cta-modal-error {
  margin-top: 0.75rem;
  font-size: 0.82rem;
}

.cta-modal-success {
  color: #4ade80;
}

.cta-modal-error {
  color: #fb7185;
}

body.no-scroll {
  overflow: hidden;
}

/* Override colori titoli dentro le modali (PoC + Investor) */
.cta-modal-dialog h1,
.cta-modal-dialog h2,
.cta-modal-dialog h3,
.cta-modal-dialog h4 {
  color: #E5ECFF !important;
}


/* ============================
   APPLICATIONS / FIELDS OF APPLICATION
============================= */
/* pattern leggero tipo blueprint anche qui, ma molto soft */
.applications-section {
  margin-top: -40px;        /* tira su tutta la sezione verso l’onda */
  padding-top: 60px;        /* un po’ di aria sopra il titolo */
  padding-bottom: 88px;
  position: relative;
  background: linear-gradient(
      90deg,
      #E0E8FF 0,
      #E0E8FF 80px,
      #F7FAFF 80px,
      #F7FAFF 100%
  );
  overflow: hidden;
}

.applications-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  /* 1) la “mezza onda” in alto
     2–3) il pattern a griglia che avevi già */
  background-image:
    radial-gradient(
      120% 200% at 50% -40%,   /* centro sopra il bordo → l’onda sale */
      #ffffff 0%,
      #ffffff 40%,
      #F7FAFF 80%,
      #F7FAFF 100%
    ),
    linear-gradient(90deg, rgba(12, 27, 56, 0.025) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(12, 27, 56, 0.025) 1px, transparent 1px);

  background-size:
    100% 160px,   /* onda */
    64px 64px,    /* griglia verticale */
    64px 64px;    /* griglia orizzontale */

  background-repeat:
    no-repeat,
    repeat,
    repeat;

  opacity: 0.9;
}

.applications-section .content-wrapper {
  position: relative;
  z-index: 1;
}

/* griglia delle card (desktop) */
.applications-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* card singola, stile prodotto */
.app-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(12, 27, 56, 0.06);
  box-shadow: 0 10px 26px rgba(12, 27, 56, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.35s cubic-bezier(.16,.84,.39,1),
    box-shadow 0.35s ease-out;
}

.app-card:hover {
  box-shadow: 0 16px 40px rgba(12, 27, 56, 0.16);
  transform: translateY(-4px);
}

.app-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}

.app-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #DBE6FF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-icon svg {
  width: 22px;
  height: 22px;
}

.app-card-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.app-card:hover {
  box-shadow: 0 14px 36px rgba(12, 27, 56, 0.16);
  transform: translateY(-3px);
}

/* strip finale: "Next markets" */
.applications-next {
  margin-top: 40px;
  padding: 16px 20px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F5F7FF, #E7EDFF);
  border: 1px solid rgba(12, 27, 56, 0.06);
  max-width: 1120px;
}

.applications-next h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  color: #0C1B38;
}

.applications-next p {
  font-size: 13px;
  color: #22324F;
  margin-bottom: 10px;
}

.applications-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.app-chip {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 93, 255, 0.06);
  color: #0C1B38;
  border: 1px solid rgba(0, 93, 255, 0.22);
}

.applications-section .section-subtitle {
  max-width: 900px;          /* molto più largo, arriva quasi sopra le card */
  font-size: 18px;
  line-height: 1.7;
  color: #16284A;
  opacity: 0.98;
  margin-top: 18px;
  margin-bottom: 40px;       /* un po’ meno “buco” rispetto a prima */
}

/* piccolo tocco “product” sulle parole chiave */
.applications-section .section-subtitle strong {
  font-weight: 600;
  color: #005DFF;
}

.app-lead {
  font-size: 14px;
  line-height: 1.6;
  color: #22324F;
}

.app-meta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.app-meta-col h4,
.app-highlight h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0C1B38;
  margin-bottom: 4px;
}

.app-meta-col ul,
.app-highlight ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.app-meta-col li,
.app-highlight li {
  font-size: 13px;
  line-height: 1.6;
  color: #23385A;
  margin-bottom: 3px;
  padding-left: 14px;
  position: relative;
}

.app-meta-col li::before,
.app-highlight li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #00A9FF;
}

.app-highlight {
  margin-top: 10px;
  padding: 10px 12px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F5F8FF, #ECF1FF);
  border: 1px solid rgba(12, 27, 56, 0.06);
}






