:root{
      --bg0:#fff;
      --bg1:#fbf8ff;
      --ink:#16181d;
      --muted:#5b616d;
      --card:#ffffff;
      --line:rgba(22,24,29,.10);
      --shadow:0 18px 50px rgba(17,20,28,.08);
      --shadow2:0 10px 24px rgba(17,20,28,.10);
      --brandA:#7c3aed;
      --brandB:#06b6d4;
      --brandC:#f97316;
      --chipBg:rgba(124,58,237,.08);
      --good:#0ea5e9;
      --warn:#f59e0b;
      --danger:#ef4444;
      --radius:18px;
      --radius2:14px;
      --container:1120px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB",
                   "Microsoft YaHei", "Noto Sans SC", "Noto Sans", Arial, sans-serif;
      color:var(--ink);
      background:
        radial-gradient(1200px 600px at 20% -10%, rgba(124,58,237,.14), transparent 55%),
        radial-gradient(900px 520px at 90% 0%, rgba(6,182,212,.14), transparent 52%),
        radial-gradient(980px 620px at 40% 110%, rgba(249,115,22,.10), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #fbf7ff 40%, #ffffff 100%);
      overflow-x:hidden;
    }

    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    .skip{
      position:absolute; left:-999px; top:8px;
      padding:10px 12px; background:#111827; color:#fff; border-radius:10px;
      z-index:9999;
    }
    .skip:focus{left:12px}

    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background: rgba(255,255,255,.72);
      border-bottom:1px solid var(--line);
    }
    .topbar-inner{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }

    .brand{
      display:flex; align-items:center; gap:10px; min-width:128px;
      text-decoration:none; color:var(--ink);
    }
    .logo{
      width:36px; height:36px; border-radius:12px;
      background:
        radial-gradient(16px 16px at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
        conic-gradient(from 210deg, var(--brandA), var(--brandB), var(--brandC), var(--brandA));
      box-shadow:0 10px 26px rgba(124,58,237,.22);
      position:relative;
      overflow:hidden;
    }
    .logo:before{
      content:"";
      position:absolute; inset:-40%;
      background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 45%, rgba(255,255,255,0) 70%);
      transform: rotate(20deg) translateX(-30%);
      animation: shimmer 3.2s ease-in-out infinite;
      opacity:.85;
    }
    @keyframes shimmer{
      0%{transform: rotate(20deg) translateX(-60%); opacity:.15}
      35%{opacity:.85}
      65%{opacity:.65}
      100%{transform: rotate(20deg) translateX(60%); opacity:.12}
    }
    .brand span{
      font-weight:800; letter-spacing:.2px;
      font-size:16px; line-height:1.1;
      display:flex; flex-direction:column;
    }
    .brand small{
      font-weight:600; font-size:12px; color:var(--muted);
      letter-spacing:.2px;
    }

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

    .nav a{
      text-decoration:none; color:rgba(22,24,29,.86);
      padding:9px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
      font-size:13px;
      white-space:nowrap;
    }
    .nav a:hover{
      background:rgba(124,58,237,.07);
      border-color:rgba(124,58,237,.18);
      transform: translateY(-1px);
    }

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

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.7);
      color:rgba(22,24,29,.92);
      text-decoration:none;
      font-weight:750;
      font-size:13px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
      min-height:40px;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 34px rgba(17,20,28,.12);
      border-color: rgba(124,58,237,.25);
      background: rgba(255,255,255,.95);
    }

    .btn-primary{
      border:1px solid rgba(124,58,237,.25);
      background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(6,182,212,.10));
      box-shadow: 0 14px 30px rgba(124,58,237,.10);
    }
    .btn-primary .dot{
      width:10px; height:10px; border-radius:50%;
      background: conic-gradient(from 180deg, var(--brandA), var(--brandB), var(--brandC), var(--brandA));
      box-shadow:0 8px 20px rgba(124,58,237,.22);
    }

    .hero{
      padding:26px 0 16px;
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:16px;
      align-items:stretch;
    }

    .hero-card{
      background: rgba(255,255,255,.68);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-card:after{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(450px 200px at 12% 10%, rgba(124,58,237,.25), transparent 60%),
        radial-gradient(420px 220px at 90% 0%, rgba(6,182,212,.22), transparent 58%),
        radial-gradient(450px 240px at 70% 110%, rgba(249,115,22,.16), transparent 60%);
      opacity:.95;
      pointer-events:none;
      mix-blend-mode: normal;
    }

    .hero-inner{
      position:relative;
      padding:22px 18px 16px;
      display:flex; flex-direction:column; gap:12px;
      min-height:260px;
    }

    .badge-row{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.20);
      background: rgba(124,58,237,.07);
      color:rgba(60,25,130,.95);
      font-weight:760;
      font-size:12px;
    }
    .badge i{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(180deg, var(--brandA), var(--brandB));
      box-shadow: 0 10px 18px rgba(124,58,237,.22);
      display:inline-block;
    }

    h1{
      margin:0;
      font-size:28px;
      line-height:1.15;
      letter-spacing:-.3px;
    }
    .lede{
      margin:0;
      color:var(--muted);
      font-size:14.5px;
      line-height:1.7;
      max-width:62ch;
    }

    .hero-actions{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:4px;
      align-items:center;
    }

    .anchor-row{
      display:flex; gap:12px; flex-wrap:wrap;
      align-items:center;
      margin-top:6px;
      color:rgba(22,24,29,.86);
      font-size:13px;
    }
    .anchor-row .sep{
      width:1px; height:18px; background:rgba(22,24,29,.12);
    }
    .quick-a{
      display:inline-flex; align-items:center; gap:8px;
      padding:9px 10px; border-radius:12px;
      border:1px solid rgba(22,24,29,.10);
      background: rgba(255,255,255,.65);
      text-decoration:none; color:rgba(22,24,29,.90);
      transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
    }
    .quick-a:hover{
      transform: translateY(-1px);
      border-color: rgba(124,58,237,.20);
      background: rgba(255,255,255,.95);
    }
    .arrow{
      width:18px; height:18px; border-radius:9px;
      display:inline-flex; align-items:center; justify-content:center;
      background: rgba(124,58,237,.10);
      color:rgba(60,25,130,.95);
      font-weight:900;
      font-size:12px;
    }

    .side-card{
      background: rgba(255,255,255,.78);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow: 0 10px 30px rgba(17,20,28,.06);
      padding:14px;
      display:flex; flex-direction:column; gap:12px;
      position:relative;
      overflow:hidden;
    }
    .side-card:before{
      content:"";
      position:absolute; inset:-1px;
      background:
        linear-gradient(135deg, rgba(124,58,237,.18), transparent 40%),
        linear-gradient(315deg, rgba(6,182,212,.16), transparent 45%);
      opacity:.7;
      pointer-events:none;
    }
    .side-card > *{position:relative}

    .side-title{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-top:2px;
    }
    .side-title h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .pulse{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(180deg, var(--brandB), var(--brandA));
      box-shadow:0 0 0 0 rgba(6,182,212,.45);
      animation: pulse 2s ease-in-out infinite;
      margin-top:3px;
      flex:0 0 auto;
    }
    @keyframes pulse{
      0%{box-shadow:0 0 0 0 rgba(6,182,212,.35)}
      55%{box-shadow:0 0 0 12px rgba(6,182,212,0)}
      100%{box-shadow:0 0 0 0 rgba(6,182,212,0)}
    }

    .list{
      margin:0; padding:0;
      list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(22,24,29,.10);
      background: rgba(255,255,255,.65);
      transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
    }
    .li:hover{
      transform: translateY(-1px);
      border-color: rgba(124,58,237,.22);
      background: rgba(255,255,255,.95);
    }
    .icon{
      width:34px; height:34px; border-radius:12px;
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(6,182,212,.10));
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      color:rgba(60,25,130,.95);
      font-weight:900;
      flex:0 0 auto;
      margin-top:1px;
    }
    .li strong{
      display:block;
      font-size:13.5px;
      margin-bottom:3px;
    }
    .li span{
      color:var(--muted);
      font-size:12.8px;
      line-height:1.6;
    }

    main{padding:10px 0 28px}

    .toc{
      margin-top:12px;
      background: rgba(255,255,255,.72);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow: 0 8px 26px rgba(17,20,28,.06);
      overflow:hidden;
    }
    .toc-header{
      padding:14px 16px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-bottom:1px solid rgba(22,24,29,.08);
      background:
        radial-gradient(420px 120px at 0% 0%, rgba(124,58,237,.14), transparent 60%),
        radial-gradient(420px 120px at 100% 0%, rgba(6,182,212,.12), transparent 60%),
        rgba(255,255,255,.70);
    }
    .toc-header h2{
      margin:0; font-size:15px; letter-spacing:-.2px;
    }
    .toc-header .hint{
      font-size:12.5px; color:var(--muted);
      white-space:nowrap;
    }

    .toc-body{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      padding:12px 12px 14px;
    }
    .toc-item{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(22,24,29,.10);
      background: rgba(255,255,255,.60);
      text-decoration:none;
      color:rgba(22,24,29,.92);
      transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
      min-height:56px;
    }
    .toc-item:hover{
      transform: translateY(-1px);
      border-color: rgba(6,182,212,.22);
      background: rgba(255,255,255,.95);
    }
    .toc-num{
      width:26px; height:26px; border-radius:11px;
      background: linear-gradient(135deg, rgba(6,182,212,.12), rgba(124,58,237,.10));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:900; font-size:12px;
      color:rgba(10,96,134,.95);
      flex:0 0 auto;
      margin-top:2px;
    }
    .toc-item strong{
      display:block;
      font-size:13px;
      margin-bottom:2px;
      letter-spacing:-.1px;
    }
    .toc-item span{
      display:block;
      font-size:12.5px;
      color:var(--muted);
      line-height:1.55;
    }

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

    .section{
      background: rgba(255,255,255,.78);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow: 0 10px 28px rgba(17,20,28,.05);
      overflow:hidden;
    }
    .section-inner{
      padding:16px 16px 14px;
    }

    .section-title{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .section-title h2{
      margin:0;
      font-size:18px;
      letter-spacing:-.2px;
    }
    .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(22,24,29,.10);
      background: rgba(255,255,255,.65);
      color:rgba(22,24,29,.88);
      font-size:12.5px;
      white-space:nowrap;
    }
    .tag b{
      font-size:12.5px;
      color:rgba(60,25,130,.98);
      letter-spacing:.2px;
    }

    .prose{
      color:rgba(22,24,29,.92);
      line-height:1.85;
      font-size:14.3px;
      margin:0;
    }
    .prose strong{font-weight:850}

    .grid-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .box{
      border:1px solid rgba(22,24,29,.10);
      border-radius:16px;
      padding:12px 12px;
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
    }
    .box:hover{
      transform: translateY(-1px);
      border-color: rgba(124,58,237,.20);
      background: rgba(255,255,255,.95);
    }
    .box h3{
      margin:0 0 6px;
      font-size:14.5px;
      letter-spacing:-.15px;
    }
    .box ul{
      margin:0; padding-left:18px;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.75;
    }

    .steps{
      margin-top:10px;
      display:flex; flex-direction:column; gap:10px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(22,24,29,.10);
      background: rgba(255,255,255,.62);
    }
    .step .n{
      width:34px; height:34px; border-radius:14px;
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(6,182,212,.10));
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:950; color:rgba(60,25,130,.98);
      flex:0 0 auto;
      margin-top:1px;
    }
    .step strong{
      display:block; margin-bottom:4px;
      font-size:14.5px;
      letter-spacing:-.15px;
    }
    .step span{
      display:block;
      color:var(--muted);
      font-size:13.3px;
      line-height:1.7;
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top:8px;
    }
    details{
      border:1px solid rgba(22,24,29,.10);
      border-radius:16px;
      background: rgba(255,255,255,.62);
      overflow:hidden;
      transition: border-color .15s ease, background-color .15s ease, transform .15s ease;
    }
    details[open]{
      border-color: rgba(6,182,212,.26);
      background: rgba(255,255,255,.95);
    }
    details summary{
      cursor:pointer;
      list-style:none;
      padding:12px 12px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    details summary::-webkit-details-marker{display:none}
    .q{
      font-weight:850; letter-spacing:-.1px; font-size:14px;
      line-height:1.4;
    }
    .chev{
      width:28px; height:28px; border-radius:12px;
      border:1px solid rgba(22,24,29,.10);
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.65);
      color:rgba(22,24,29,.78);
      flex:0 0 auto;
      transition: transform .18s ease;
      margin-top:-2px;
    }
    details[open] .chev{transform: rotate(180deg)}
    .a{
      padding:0 12px 12px 12px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

    .summary{
      display:flex; gap:14px; align-items:flex-start; flex-wrap:wrap;
    }
    .summary .callout{
      flex:1 1 420px;
      padding:14px 14px;
      border-radius:16px;
      border:1px solid rgba(22,24,29,.10);
      background:
        radial-gradient(360px 120px at 0% 0%, rgba(124,58,237,.14), transparent 60%),
        radial-gradient(360px 140px at 100% 0%, rgba(6,182,212,.12), transparent 60%),
        rgba(255,255,255,.62);
    }
    .summary h3{margin:0 0 6px; font-size:15px; letter-spacing:-.2px}
    .summary p{margin:0; color:var(--muted); line-height:1.8; font-size:13.8px}

    .inline-links{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap;
      align-items:center;
    }
    .inline-links a{
      text-decoration:none;
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(22,24,29,.10);
      background: rgba(255,255,255,.60);
      color:rgba(22,24,29,.92);
      font-size:13px;
      font-weight:760;
      transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
    }
    .inline-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(124,58,237,.22);
      background: rgba(255,255,255,.95);
    }

    .gallery{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:12px;
      align-items:stretch;
      margin-top:12px;
    }
    .img-card{
      border:1px solid rgba(22,24,29,.10);
      border-radius:16px;
      background: rgba(255,255,255,.62);
      overflow:hidden;
    }
    .img-wrap{
      padding:10px;
    }
    .img-wrap img{
      width:100%;
      max-width:100%;
      height:auto;
      display:block;
      border-radius:12px;
      border:1px solid rgba(22,24,29,.08);
      background: #fff;
    }
    .img-caption{
      padding:0 12px 12px;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.6;
    }

    .links-card{
      border:1px solid rgba(22,24,29,.10);
      border-radius:16px;
      background: rgba(255,255,255,.62);
      padding:12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .links-card h3{
      margin:0;
      font-size:14.8px;
      letter-spacing:-.2px;
    }
    .links-card ul{
      margin:0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:9px;
    }
    .links-card li a{
      text-decoration:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(22,24,29,.10);
      background: rgba(255,255,255,.60);
      transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
      color:rgba(22,24,29,.92);
      font-size:13.2px;
      font-weight:740;
    }
    .links-card li a:hover{
      transform: translateY(-1px);
      border-color: rgba(6,182,212,.22);
      background: rgba(255,255,255,.95);
    }
    .links-card li a span{
      color:var(--muted);
      font-weight:650;
      font-size:12.5px;
      line-height:1.5;
      margin-top:3px;
      flex:1 1 auto;
    }
    .pill{
      flex:0 0 auto;
      align-self:flex-start;
      padding:7px 9px;
      border-radius:999px;
      border:1px solid rgba(22,24,29,.10);
      background: rgba(124,58,237,.07);
      color:rgba(60,25,130,.98);
      font-size:12px;
      font-weight:900;
      margin-top:2px;
    }

    .footer{
      background: rgba(12,14,20,.96);
      color: rgba(255,255,255,.92);
      margin-top:14px;
      border-top: 1px solid rgba(255,255,255,.10);
    }
    .footer-inner{
      padding:20px 0 18px;
    }
    .foot-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .foot-brand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .foot-brand .mark{
      width:44px; height:44px; border-radius:16px;
      background:
        radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,0) 60%),
        conic-gradient(from 210deg, #7c3aed, #06b6d4, #f97316, #7c3aed);
      box-shadow:0 16px 40px rgba(124,58,237,.28);
      border:1px solid rgba(255,255,255,.14);
      flex:0 0 auto;
      position:relative;
      overflow:hidden;
    }
    .foot-brand .mark:after{
      content:"";
      position:absolute; inset:-60%;
      background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 50%, rgba(255,255,255,0) 78%);
      transform: rotate(25deg) translateX(-40%);
      animation: shimmer 3.4s ease-in-out infinite;
      opacity:.55;
    }
    .foot-brand h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .foot-brand p{
      margin:6px 0 0;
      color: rgba(255,255,255,.76);
      line-height:1.7;
      font-size:13.2px;
    }

    .contact-box{
      border:1px solid rgba(255,255,255,.16);
      border-radius:16px;
      padding:12px 12px;
      background: rgba(255,255,255,.06);
    }
    .contact-box h4{
      margin:0 0 8px;
      font-size:14px;
      letter-spacing:-.1px;
    }
    .contact-list{
      margin:0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .contact-list li{
      color: rgba(255,255,255,.80);
      font-size:13px;
      line-height:1.6;
      display:flex; gap:10px; align-items:flex-start;
    }
    .k{
      width:18px; height:18px; border-radius:8px;
      background: rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(255,255,255,.92);
      font-weight:900;
      flex:0 0 auto;
      margin-top:1px;
      font-size:12px;
    }
    .contact-list a{
      color: rgba(255,255,255,.92);
      text-decoration: none;
      border-bottom: 1px dashed rgba(255,255,255,.26);
    }
    .contact-list a:hover{border-bottom-color: rgba(255,255,255,.55)}

    .foot-bottom{
      margin-top:16px;
      padding-top:14px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex; align-items:center; justify-content:space-between;
      gap:12px; flex-wrap:wrap;
      color: rgba(255,255,255,.74);
      font-size:12.8px;
    }
    .qr-wrap{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .qr{
      width:48px; height:48px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.14);
      background:#fff;
      padding:4px;
      display:flex; align-items:center; justify-content:center;
    }
    .qr img{
      width:100%; height:auto; display:block;
      border-radius:11px;
    }

    @media (max-width: 920px){
      .hero-grid{grid-template-columns: 1fr}
      h1{font-size:24px}
      .toc-body{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .gallery{grid-template-columns: 1fr}
      .foot-grid{grid-template-columns: 1fr}
      .nav{display:none}
    }

    @media (prefers-reduced-motion: reduce){
      *{animation:none !important; transition:none !important; scroll-behavior:auto !important}
    }