      /* =========================================================
       BASE
    ========================================================= */
  
    :root{
      --bg:#ffffff;
      --text:#0b2330;
      --muted:#64748b;
      --dark:#0a1730;
      --dark2:#08122a;
      --primary:#0e7490;
      --border:#e5e7eb;
      --shadow:0 10px 26px rgba(2,8,23,.06);
      --shadow2:0 10px 22px rgba(0,0,0,.10);
      --radius:18px;
      --radius-md:16px;
      --radius-sm:14px;
      --radius-xs:10px;
      --container:1200px;
      --heroText:#F5F7FA;
      --heroMuted:#C7D2E0;
     }
     
    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    a { color: inherit; }
    img { max-width: 100%; display: block; }
    .container{ max-width:var(--container); margin:0 auto; padding:0 20px; }


    /* Header */
    .site-header{
      background: linear-gradient(180deg, rgba(7,16,33,0.94), rgba(7,16,33,0.70));
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(234,243,255,0.10);
      position:sticky; top:0; z-index:100;
    }
    .header-inner{
      display:flex;
      align-items:center;
      gap:16px;
      padding:12px 0;
    }
     .brand{
      display:flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      color:#eaf3ff;
      min-width:180px;
    }
     .brand-logo{
      width:44px;
      height:44px;
      display:block;
      filter:
        drop-shadow(0 2px 6px rgba(0,0,0,0.55))
        drop-shadow(0 0 8px rgba(14,116,144,0.35));
    }
    .brand-name{
      font-weight:800;
      font-size:18px;
      opacity:.95;
    }
     .header-right{
     	display:flex; 
     	align-items:center; 
     	gap:18px;
     	margin-left:auto;
     }
    .header-cta{
      text-decoration:none;
      background:var(--primary);
      color:#fff;
      padding:10px 18px;
      border-radius:999px;
      font-weight:900;
      font-size:14px;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:0 10px 26px rgba(0,0,0,.25);
      white-space:nowrap;
      transition: transform .18s ease, filter .18s ease;
    }
    .header-cta:hover{ transform: translateY(-1px); filter: brightness(1.05); }

    /* Layout */
    .wrap {
      max-width: var(--container);
      margin: 0 auto;
      padding: 22px 20px 70px;
    }

    /* HERO BOX  */
    .hero {
      border-radius: 22px;
      background:
        radial-gradient(900px 220px at 50% 0%, rgba(14, 116, 144, .22), rgba(0, 0, 0, 0)),
        linear-gradient(180deg, rgba(15, 23, 42, .06), rgba(255, 255, 255, .60));
      border: 1px solid rgba(148, 163, 184, .35);
      box-shadow: var(--shadow);
      padding: 22px 22px 18px;
      position: relative;
      overflow: hidden;
    }

    .hero-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero h1 {
      margin: 0;
      font-size: 34px;
      letter-spacing: -.02em;
      color: #0f172a;
      line-height: 1.15;
    }

    .hero-sub {
      margin-top: 6px;
      font-size: 13px;
      color: var(--muted);
    }

    .hero-sub b { color: #0f172a; }

    .hero-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
    }

    .navbtn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 184, .42);
      background: rgba(255, 255, 255, .70);
      box-shadow: 0 8px 20px rgba(2, 8, 23, .08);
      color: #0f172a;
      text-decoration: none;
      font-weight: 800;
      font-size: 13px;
      white-space: nowrap;
    }

    .navbtn:hover { border-color: rgba(14, 116, 144, .65); }

    .navbtn .arrow {
      font-weight: 900;
      color: var(--primary);
    }

    /* GRID */
    .grid {
      margin-top: 18px;
      display: grid;
      grid-template-columns: 1fr 1.25fr;
      gap: 18px;
      align-items: start;
    }

    /* Breadcrumb */
   .breadcrumb{
      font-size:13px;
      color:var(--muted);
      margin-bottom:14px;
      margin-top:14px;
    }
    .breadcrumb a{
      color:var(--muted);
      text-decoration:none;
    }
    .breadcrumb a:hover{ text-decoration:underline; }
    .breadcrumb-sep{ padding:0 8px; }
    .breadcrumb-current{
      color:var(--text);
      font-weight:800;
    }

    /* LEFT CARD */
    .card {
      background: var(--card);
      border: 1px solid rgba(226, 232, 240, .95);
      border-radius: var(--radius);
      box-shadow: var(--shadow2);
      overflow: hidden;
    }

    .media { aspect-ratio: 4 / 5; background: #e5e7eb; }
    .media img { width: 100%; object-fit: cover; }

    .card-body { padding: 16px; }

    .roleline {
      font-weight: 900;
      color: #0f172a;
      margin: 2px 0 10px;
      font-size: 14px;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 14px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(226, 232, 240, .95);
      background: #f8fafc;
      color: #0f172a;
      font-size: 12px;
      font-weight: 800;
    }

    .chip.primary {
      background: rgba(14, 116, 144, .10);
      border-color: rgba(14, 116, 144, .25);
      color: #0b3c4a;
    }

    .actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 12px;
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 184, .45);
      background: #fff;
      text-decoration: none;
      font-weight: 900;
      font-size: 13px;
      color: #0f172a;
      min-width: 140px;
    }

    .btn.primary {
      background: var(--primary);
      color: #fff;
      border-color: rgba(14, 116, 144, .75);
      box-shadow: 0 12px 26px rgba(14, 116, 144, .25);
    }

    .btn:hover { border-color: rgba(14, 116, 144, .55); }
    .btn.primary:hover { filter: brightness(.98); }

    /* RIGHT CARD */
    .panel {
      background: var(--card);
      border: 1px solid rgba(226, 232, 240, .95);
      border-radius: var(--radius);
      box-shadow: var(--shadow2);
      padding: 18px;
    }

    .panel h2,
    .panel h3 {
      margin: 0 0 10px;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #0f172a;
    }

    .panel p {
      margin: 0 0 14px;
      color: #334155;
      font-size: 14.5px;
      line-height: 1.8;
    }

    .divider {
      height: 1px;
      background: rgba(226, 232, 240, .95);
      margin: 14px 0;
    }

    .panel ul {
      margin: 0;
      padding-left: 18px;
      color: #334155;
      line-height: 1.9;
      font-size: 14.5px;
    }
    
     .menu-btn{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.06);
      color:#eaf3ff;
      cursor:pointer;
      align-items:center;
      justify-content:center;
      box-shadow:0 10px 26px rgba(0,0,0,.18);
    }
    .menu-btn:active{ transform:translateY(1px); }
    
    
      /* =========================================================
       MOBILE DRAWER
    ========================================================= */
    .drawer{ position:fixed; inset:0; display:none; z-index:9998; }
    .drawer.is-open{ display:block; }

    .drawer-backdrop{
      position:absolute; inset:0;
      background:rgba(2,8,23,.58);
      opacity:0;
      animation:fadeIn .18s ease-out forwards;
    }
    @keyframes fadeIn{ to{ opacity:1; } }

    .drawer-panel{
      position:absolute; top:0; right:0;
      width:min(360px, 92vw);
      height:100%;
      background:rgba(7,16,33,0.96);
      border-left:1px solid rgba(255,255,255,0.12);
      box-shadow:0 30px 120px rgba(0,0,0,.55);
      display:flex;
      flex-direction:column;
      transform:translateX(110%);
      animation:slideIn .22s ease-out forwards;
    }
    @keyframes slideIn{ to{ transform:translateX(0); } }

    .drawer-head{
      display:flex; align-items:center; justify-content:space-between;
      gap:12px; padding:16px;
      border-bottom:1px solid rgba(255,255,255,0.12);
    }
    .drawer-brand{
      display:flex; align-items:center; gap:10px;
      color:#eaf3ff; text-decoration:none;
    }
    .brand-badge{
      width:42px; 
      height:42px;
      border-radius:14px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(234,243,255,0.12);
      box-shadow: 0 10px 22px rgba(0,0,0,.18);
      display:flex; 
      align-items:center; 
      justify-content:center;
      font-weight:900; 
      color:#fff; 
      font-size:14px;
    }
    .drawer-close{
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.06);
      color:#eaf3ff;
      cursor:pointer;
      font-size:18px; font-weight:900;
      display:flex; align-items:center; justify-content:center;
    }
    .drawer-body{ padding:14px 16px 16px; overflow:auto; }

    .drawer-links{ display:flex; flex-direction:column; gap:10px; }
    .drawer-link{
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,0.12);
      background:rgba(255,255,255,0.06);
      color:#eaf3ff;
      text-decoration:none;
      font-weight:900;
      font-size:14px;
    }
    .drawer-link:hover{ background:rgba(255,255,255,0.09); }
    .drawer-link.is-active{
      border-color:rgba(14,116,144,.8);
      background:rgba(14,116,144,.15);
    }
    .drawer-link .chev{ opacity:.7; font-weight:900; }

    .drawer-cta{
      margin-top:14px;
      display:block;
      text-align:center;
      padding:14px 14px;
      border-radius:16px;
      background: var(--dark);
      color:#fff;
      text-decoration:none;
      font-weight:900;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:0 10px 26px rgba(0,0,0,.25);
    }
    .drawer-note{
      margin-top:14px;
      font-size:12px;
      color:rgba(234,243,255,.72);
      line-height:1.6;
    }
    
     /* ===== Footer ===== */
    .footer{
      border-top:1px solid #e5e7eb;
      background:#fff;
    }
    .footer-inner{
      max-width:var(--container);
      margin:0 auto;
      padding:16px 18px;
      color:var(--muted);
      font-size:13px;
      display:flex;
      justify-content:flex-end;
      flex-wrap:wrap;
      gap:10px;
    }
    .footer-links{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .footer a{
      color:var(--muted);
      text-decoration:none;
    }
    .footer a:hover{ text-decoration:underline; }

    

    /* =========================================================
       MEDIA QUERIES 
       - 1200px: 
       - 980px: 
       - 720px: 
       - 520px:
       - 360px: 
    ========================================================= */

    @media (max-width: 1200px){
      .wrap{
        padding-left: 16px;
        padding-right: 16px;
      }
    }

    @media (max-width: 980px) {
      .grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 30px; }
      .hero-nav { margin-left: 0; }
    }
    
     @media (max-width: 830px){
      .menu-btn{ display:inline-flex; }
      .header-cta{ display:none; }
      .header-right{  margin-left:auto; }
     }

    @media (max-width: 720px){
      .header-inner{ gap:12px; }
      .wrap{ padding: 18px 14px 60px; }

      .hero{ padding: 18px 16px 14px; border-radius: 20px; }
      .hero h1{ font-size: 26px; }
      .hero-sub{ font-size: 12.5px; }

      .navbtn{ padding: 9px 10px; border-radius: 12px; font-size: 12.5px; }

      .panel{ padding: 16px; }
      .panel p, .panel ul{ font-size: 14px; }

      .card-body{ padding: 14px; }
      .roleline{ font-size: 13.5px; }
      .chip{ font-size: 11.5px; padding: 6px 9px; }
    }

    @media (max-width: 520px){
    .menu-btn{ display:inline-flex; }
     .header-cta{ display:none; }
      .wrap{ padding: 16px 12px 54px; }

      .hero-row{ gap: 12px; }
      .hero h1{ font-size: 24px; }

      .hero-nav{
        width: 100%;
        justify-content: space-between;
      }
      .navbtn{
        flex: 1;
        justify-content: center;
        min-width: 0;
      }

      .breadcrumb{ font-size: 11.5px; }

      .actions{ gap: 8px; }
      .btn{
        width: 100%;
        min-width: 0;
      }

      .media{ aspect-ratio: 16 / 11; }
    }

    @media (max-width: 360px){
      .brand-name{ font-size:16px; }
      .brand-logo{ width:40px; height:40px; }
      .wrap{ padding: 14px 10px 48px; }

      .hero{ padding: 16px 14px 12px; }
      .hero h1{ font-size: 22px; }

      .panel{ padding: 14px; }
      .chip{ font-size: 11px; }
      .container{ padding:0 14px; }
    }

    @media (prefers-reduced-motion: reduce){
      *{ scroll-behavior:auto !important; }
    }
    
     /* 6) iPhone notch , padding extra in basso se supportato */
    @supports (padding: max(0px)){
      .drawer-panel{ padding-bottom: env(safe-area-inset-bottom); }
    }
