/* MetaCore Delta — shared stylesheet (delta.metacore.lt) */
    :root{
      --bg:#070914;
      --bg2:#0b1024;
      --card:rgba(255,255,255,.07);
      --card2:rgba(255,255,255,.105);
      --line:rgba(255,255,255,.14);
      --line2:rgba(255,255,255,.22);
      --text:#f7f3ff;
      --muted:#b9b4cc;
      --soft:#d9d2ff;
      --a:#8c6dff;
      --b:#35d7c5;
      --c:#ffcf70;
      --ok:#7dffcb;
      --warn:#ffcf70;
      --bad:#ff7d9d;
      --shadow:0 22px 80px rgba(0,0,0,.35);
      --radius:24px;
      --max:1180px;
    }

    *{box-sizing:border-box}

    html{scroll-behavior:smooth}

    body{
      margin:0;
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      background:
        radial-gradient(circle at 20% -10%,rgba(140,109,255,.34),transparent 36%),
        radial-gradient(circle at 84% 0%,rgba(53,215,197,.22),transparent 34%),
        radial-gradient(circle at 50% 110%,rgba(140,109,255,.12),transparent 42%),
        linear-gradient(180deg,var(--bg),var(--bg2) 46%,#060711);
      color:var(--text);
      line-height:1.55;
      overflow-x:hidden;
    }

    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
      background-size:54px 54px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 76%);
    }

    a{color:inherit;text-decoration:none}
    .wrap{width:min(var(--max),calc(100% - 38px));margin:0 auto}

    .top{
      position:sticky;
      top:0;
      z-index:20;
      backdrop-filter:blur(18px);
      background:rgba(7,9,20,.72);
      border-bottom:1px solid var(--line);
    }

    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      min-height:76px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:850;
      letter-spacing:.02em;
      min-width:max-content;
    }

    .mark{
      width:38px;
      height:38px;
      border-radius:14px;
      background:linear-gradient(135deg,var(--a),var(--b));
      box-shadow:0 0 34px rgba(140,109,255,.35);
      position:relative;
    }

    .mark:after{
      content:"";
      position:absolute;
      inset:9px;
      border-radius:9px;
      border:1px solid rgba(255,255,255,.45);
    }

    .brand small{
      display:block;
      color:var(--muted);
      font-weight:650;
      font-size:12px;
      margin-top:1px;
    }

    .links{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .links a,
    .lang a,
    .lang button{
      border:1px solid transparent;
      color:var(--muted);
      padding:10px 12px;
      border-radius:999px;
      font-weight:750;
      font-size:14px;
    }

    .links a:hover,
    .lang a:hover,
    .lang button:hover{
      border-color:var(--line);
      background:rgba(255,255,255,.06);
      color:var(--text);
    }

    .lang{
      display:flex;
      gap:5px;
      border:1px solid var(--line);
      border-radius:999px;
      padding:3px;
      background:rgba(255,255,255,.05);
      min-width:max-content;
    }

    .lang a,
    .lang button{
      cursor:pointer;
      background:transparent;
    }

    .lang a.active,
    .lang button.active{
      background:linear-gradient(135deg,rgba(140,109,255,.55),rgba(53,215,197,.35));
      color:white;
      border-color:rgba(255,255,255,.18);
    }

    .menuBtn{
      display:none;
      border:1px solid var(--line);
      background:rgba(255,255,255,.06);
      color:white;
      border-radius:14px;
      padding:10px 12px;
      font-weight:800;
    }

    .hero{padding:94px 0 58px}

    .gridHero{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:28px;
      align-items:center;
    }

    .eyebrow{
      display:inline-flex;
      gap:8px;
      align-items:center;
      border:1px solid rgba(140,109,255,.34);
      background:rgba(140,109,255,.12);
      padding:9px 13px;
      border-radius:999px;
      color:#ddd6ff;
      font-weight:850;
      font-size:13px;
      letter-spacing:.06em;
      text-transform:uppercase;
    }

    .h1{
      font-size:clamp(42px,7.2vw,84px);
      line-height:.98;
      letter-spacing:-.06em;
      margin:22px 0 20px;
    }

    .grad{
      background:linear-gradient(105deg,#fff,#d7ccff 35%,#65ffe8 74%,#ffe0a3);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    .lead{
      font-size:clamp(18px,2.2vw,23px);
      color:var(--soft);
      max-width:780px;
    }

    .note{
      margin-top:18px;
      color:var(--muted);
      font-size:14px;
      max-width:760px;
    }

    .heroActions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:28px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:999px;
      padding:14px 20px;
      font-weight:850;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }

    .primary{
      background:linear-gradient(135deg,var(--a),var(--b));
      color:white;
    }

    .secondary{
      background:rgba(255,255,255,.06);
      color:var(--text);
    }

    .heroCard{
      border:1px solid var(--line);
      background:linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.045));
      border-radius:var(--radius);
      padding:24px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }

    .heroCard:before{
      content:"";
      position:absolute;
      inset:-1px;
      background:radial-gradient(circle at top right,rgba(53,215,197,.25),transparent 35%);
      pointer-events:none;
    }

    .scoreBig{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      position:relative;
    }

    .scoreBox{
      border:1px solid var(--line);
      border-radius:20px;
      padding:18px;
      background:rgba(0,0,0,.16);
    }

    .scoreBox b{
      display:block;
      font-size:38px;
      line-height:1;
      color:white;
      letter-spacing:-.04em;
    }

    .scoreBox span{
      display:block;
      color:var(--muted);
      font-weight:700;
      margin-top:8px;
    }

    .delta{
      grid-column:1/-1;
      background:linear-gradient(135deg,rgba(140,109,255,.34),rgba(53,215,197,.22));
      border-color:rgba(255,255,255,.22);
    }

    .pillRow{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:18px;
      position:relative;
    }

    .pill{
      border:1px solid var(--line);
      background:rgba(255,255,255,.06);
      border-radius:999px;
      padding:8px 10px;
      color:var(--soft);
      font-size:13px;
      font-weight:800;
    }

    section{padding:54px 0}

    .sectionHead{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:24px;
      margin-bottom:24px;
    }

    .kicker{
      color:var(--b);
      font-weight:900;
      text-transform:uppercase;
      letter-spacing:.08em;
      font-size:12px;
    }

    .h2{
      font-size:clamp(30px,4vw,52px);
      line-height:1.03;
      letter-spacing:-.04em;
      margin:8px 0 0;
    }

    .desc{
      color:var(--muted);
      max-width:720px;
      font-size:17px;
    }

    .cards{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
    }

    .card{
      border:1px solid var(--line);
      background:var(--card);
      border-radius:var(--radius);
      padding:22px;
      box-shadow:0 12px 44px rgba(0,0,0,.18);
    }

    .card h3{
      margin:0 0 10px;
      font-size:20px;
    }

    .card p{
      margin:0;
      color:var(--muted);
    }

    .wide{grid-column:span 2}

    .tableWrap{
      border:1px solid var(--line);
      border-radius:var(--radius);
      overflow:hidden;
      background:rgba(255,255,255,.055);
      box-shadow:var(--shadow);
    }

    table{
      border-collapse:collapse;
      width:100%;
      min-width:760px;
    }

    th,td{
      padding:17px 18px;
      text-align:left;
      border-bottom:1px solid var(--line);
      vertical-align:top;
    }

    th{
      color:#e8e2ff;
      font-size:13px;
      text-transform:uppercase;
      letter-spacing:.08em;
      background:rgba(255,255,255,.06);
    }

    td{
      color:var(--soft);
      font-weight:700;
    }

    .right{text-align:right}
    .muted{color:var(--muted)}
    .pending{color:var(--c)}

    .deltaBadge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:54px;
      border-radius:999px;
      padding:6px 10px;
      background:rgba(125,255,203,.12);
      border:1px solid rgba(125,255,203,.28);
      color:var(--ok);
      font-weight:900;
    }

    .pendingBadge{
      display:inline-flex;
      border-radius:999px;
      padding:6px 10px;
      background:rgba(255,207,112,.12);
      border:1px solid rgba(255,207,112,.28);
      color:var(--c);
      font-weight:900;
    }

    .quote{
      border:1px solid rgba(140,109,255,.28);
      background:linear-gradient(135deg,rgba(140,109,255,.18),rgba(53,215,197,.08));
      border-radius:var(--radius);
      padding:30px;
      box-shadow:var(--shadow);
    }

    .quote p{
      font-size:clamp(22px,3vw,36px);
      line-height:1.15;
      letter-spacing:-.035em;
      margin:0;
    }

    .quote small{
      display:block;
      color:var(--muted);
      margin-top:14px;
    }

    .compare{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }

    .answer{
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:rgba(255,255,255,.055);
      padding:22px;
    }

    .answer h3{margin-top:0}
    .answer ul{margin:0;padding-left:20px;color:var(--muted)}
    .answer li{margin:8px 0}

    .tag{
      display:inline-flex;
      border:1px solid var(--line);
      border-radius:999px;
      padding:7px 10px;
      color:var(--muted);
      font-size:12px;
      font-weight:900;
      text-transform:uppercase;
      letter-spacing:.06em;
      margin-bottom:12px;
    }

    .why-matters,
    .deltaExplain{
      margin-top:16px;
      border:1px solid rgba(53,215,197,.22);
      background:rgba(53,215,197,.07);
      border-radius:var(--radius);
      padding:20px;
      color:var(--soft);
    }

    .scoreGrid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
      margin-top:16px;
    }

    .miniMetric{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      border:1px solid var(--line);
      border-radius:18px;
      padding:14px 16px;
      background:rgba(255,255,255,.045);
    }

    .miniMetric span{
      color:var(--muted);
      font-weight:750;
    }

    .miniMetric b{
      color:var(--text);
      font-size:18px;
    }

    .cta{padding:70px 0 88px}

    .ctaBox{
      border:1px solid var(--line);
      border-radius:32px;
      padding:34px;
      background:radial-gradient(circle at top left,rgba(140,109,255,.27),transparent 32%),rgba(255,255,255,.07);
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }

    .eco-footer{
      border-top:1px solid var(--line);
      padding:42px 0 52px;
      color:var(--muted);
      background:linear-gradient(180deg,rgba(0,0,0,.22),rgba(7,9,20,.5));
    }

    .eco-shell{
      border:1px solid var(--line);
      border-radius:30px;
      background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
      box-shadow:var(--shadow);
      overflow:hidden;
    }

    .eco-inner{padding:28px 30px 32px}

    .eco-kicker{
      display:inline-flex;
      align-items:center;
      margin-bottom:12px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(140,109,255,.3);
      background:rgba(140,109,255,.12);
      color:#ddd6ff;
      font-size:11px;
      font-weight:900;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    .eco-title{
      margin:0 0 14px;
      font-size:clamp(22px,3vw,30px);
      line-height:1.15;
      letter-spacing:-.03em;
      color:var(--text);
      font-weight:850;
    }

    .eco-text{
      margin:0 0 10px;
      max-width:980px;
      line-height:1.7;
      font-size:15px;
    }

    .eco-text--dim{
      margin-top:14px;
      font-size:14px;
      opacity:.92;
    }

    .eco-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
      gap:14px;
      margin:22px 0 14px;
    }

    .eco-card{
      display:block;
      min-height:118px;
      padding:16px 17px;
      border-radius:22px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.045);
      text-decoration:none;
      color:inherit;
      transition:transform .18s ease,border-color .18s ease,background .18s ease,box-shadow .18s ease;
    }

    .eco-card:hover{
      transform:translateY(-3px);
      border-color:rgba(140,109,255,.35);
      background:rgba(255,255,255,.07);
      box-shadow:0 18px 50px rgba(0,0,0,.25);
    }

    .eco-card.is-here{
      border-color:rgba(53,215,197,.4);
      background:linear-gradient(135deg,rgba(140,109,255,.14),rgba(53,215,197,.1));
    }

    .eco-card--core{
      border-color:rgba(140,109,255,.28);
      background:linear-gradient(180deg,rgba(140,109,255,.1),rgba(255,255,255,.03));
    }

    .eco-card--activate{
      border-color:rgba(53,215,197,.25);
      background:linear-gradient(180deg,rgba(53,215,197,.08),rgba(255,255,255,.03));
    }

    .eco-card-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      margin-bottom:8px;
    }

    .eco-card-title{
      font-weight:900;
      font-size:15px;
      color:var(--text);
      line-height:1.25;
    }

    .eco-badge{
      flex-shrink:0;
      font-size:10px;
      font-weight:900;
      letter-spacing:.08em;
      text-transform:uppercase;
      padding:5px 9px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:var(--b);
    }

    .eco-note{
      font-size:13px;
      line-height:1.55;
      color:var(--muted);
    }

    .eco-mid{
      display:flex;
      flex-wrap:wrap;
      gap:10px 12px;
      align-items:center;
      padding:14px 0 8px;
      border-top:1px solid rgba(255,255,255,.08);
    }

    .eco-mid a{
      font-size:13px;
      font-weight:800;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.05);
      color:var(--text);
    }

    .eco-mid a:hover{
      border-color:rgba(140,109,255,.4);
      background:rgba(140,109,255,.1);
    }

    .eco-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px 12px;
      padding:12px 0 0;
      border-top:1px solid rgba(255,255,255,.06);
    }

    .eco-tags span{
      font-size:11px;
      color:var(--muted);
      padding:5px 9px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(0,0,0,.15);
    }

    .eco-legal{
      margin:12px 0 0;
      font-size:10px;
      line-height:1.55;
      color:rgba(185,180,204,.55);
    }

    .eco-bottom{
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:16px;
      align-items:center;
      padding-top:18px;
      margin-top:10px;
      border-top:1px solid rgba(255,255,255,.08);
    }

    .eco-copy{font-size:13px;line-height:1.6;color:var(--muted);max-width:520px}

    .eco-links{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }

    .eco-links a{
      font-size:13px;
      font-weight:800;
      color:var(--soft);
    }

    .eco-links a:hover{color:var(--b)}

    @media(max-width:880px){
      .eco-inner{padding:22px 18px}
      .eco-bottom{flex-direction:column;align-items:flex-start}
      .eco-links{justify-content:flex-start}
      .eco-card-head{flex-direction:column;align-items:flex-start}
    }


    @media(max-width:980px){
      .scoreGrid{grid-template-columns:1fr}
    }

    
    .promptFull{margin:18px 0 24px;border:1px solid rgba(255,255,255,.12);border-radius:24px;background:linear-gradient(180deg,rgba(140,109,255,.14),rgba(255,255,255,.045));box-shadow:0 14px 44px rgba(0,0,0,.22);overflow:hidden}
    .promptFull summary{cursor:pointer;padding:18px 20px;color:#fff;font-weight:900;letter-spacing:.01em;list-style:none;background:rgba(255,255,255,.035)}
    .promptFull summary::-webkit-details-marker{display:none}
    .promptFull summary::after{content:"+";float:right;color:rgba(125,249,255,.9);font-weight:900}
    .promptFull[open] summary::after{content:"–"}
    .promptText{padding:20px;color:var(--soft);white-space:pre-wrap;font-size:15.5px;border-top:1px solid rgba(255,255,255,.10)}
    .promptText strong{color:white}
    .skeletonGrid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:16px}
    .skeletonItem{border:1px solid rgba(255,255,255,.11);border-radius:18px;background:rgba(255,255,255,.045);padding:16px;color:var(--muted)}
    .skeletonItem strong{display:block;color:var(--text);margin-bottom:6px}
@media(max-width:880px){
      .menuBtn{display:inline-flex}

      .links{
        display:none;
        position:absolute;
        left:19px;
        right:19px;
        top:78px;
        flex-direction:column;
        align-items:stretch;
        background:rgba(7,9,20,.96);
        border:1px solid var(--line);
        border-radius:22px;
        padding:12px;
        box-shadow:var(--shadow);
      }

      .links.open{display:flex}
      .links a{width:100%;padding:13px 14px}

      .gridHero,
      .compare,
      .ctaBox{
        grid-template-columns:1fr;
      }

      .cards{grid-template-columns:1fr}
      .wide{grid-column:auto}
      .sectionHead{display:block}
      .hero{padding-top:56px}
      .brand small{display:none}
      .scoreBig{grid-template-columns:1fr}
      table{font-size:14px}
      .wrap{width:min(var(--max),calc(100% - 28px))}
    }
