:root{
      --bg0:#fbf4f5;
      --bg1:#fffdfc;
      --card:#ffffff;
      --text:#1f2328;
      --muted:#5b6068;
      --muted2:#7a808a;
      --line:rgba(31,35,40,.10);
      --rose:#c77b7a;
      --rose2:#f0b6b2;
      --rose3:#f7d6d2;
      --ink:#2a2f35;
      --brand:#8b3f47;
      --accent:#b05a63;
      --accent2:#d9a0a7;
      --shadow: 0 18px 46px rgba(33, 16, 22, .10);
      --shadow2: 0 10px 30px rgba(33, 16, 22, .08);
      --radius:18px;
      --radius2:24px;
      --focus: 0 0 0 3px rgba(176,90,99,.20);
      --container: 1120px;
      --pad: 20px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 420px at 10% -10%, rgba(199,123,122,.22), transparent 62%),
        radial-gradient(900px 420px at 90% 0%, rgba(240,182,178,.30), transparent 55%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 40%, #ffffff 100%);
      overflow-x:hidden;
    }

    a{color:inherit}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--pad);
    }

    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(160%) blur(10px);
      background: rgba(255,253,252,.74);
      border-bottom:1px solid rgba(31,35,40,.08);
    }

    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:140px;
      text-decoration:none;
    }
    .logo{
      width:38px;height:38px;border-radius:14px;
      background:
        radial-gradient(14px 14px at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,0) 60%),
        linear-gradient(145deg, #f7d6d2 0%, #d79aa3 55%, #b05a63 100%);
      box-shadow: 0 14px 30px rgba(176,90,99,.24);
      display:grid;place-items:center;
      border:1px solid rgba(139,63,71,.18);
      flex:0 0 auto;
    }
    .logo span{
      font-weight:900;
      color:#3a1f24;
      letter-spacing:.5px;
      font-size:18px;
      line-height:1;
      transform: translateY(-.5px);
    }
    .brand-name{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-name strong{
      font-size:14px;
      letter-spacing:.2px;
      color:#2a1f23;
    }
    .brand-name em{
      font-style:normal;
      font-size:12px;
      color:var(--muted2);
      margin-top:4px;
    }

    nav{
      display:flex;align-items:center;gap:10px;
    }
    .menu{
      display:flex;align-items:center;gap:14px;
      padding:0;
      margin:0;
      list-style:none;
    }
    .menu a{
      text-decoration:none;
      font-size:13px;
      color:#2a2f35;
      padding:10px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .menu a:hover{
      background: rgba(199,123,122,.10);
      border-color: rgba(199,123,122,.16);
      transform: translateY(-1px);
    }

    .nav-actions{
      display:flex;align-items:center;gap:10px;
    }

    .btn{
      appearance:none;
      border:1px solid rgba(176,90,99,.25);
      background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
      color:#3b1f25;
      padding:10px 14px;
      border-radius:14px;
      font-weight:700;
      font-size:13px;
      text-decoration:none;
      box-shadow: 0 10px 22px rgba(176,90,99,.10);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(176,90,99,.14);
      border-color: rgba(176,90,99,.38);
      background: linear-gradient(180deg, #fff 0%, #fff2f2 100%);
    }
    .btn:focus{outline:none; box-shadow: var(--focus), 0 16px 30px rgba(176,90,99,.14);}

    .btn-primary{
      border-color: rgba(176,90,99,.35);
      background: linear-gradient(135deg, #b05a63 0%, #c77b7a 55%, #d9a0a7 100%);
      color:#fff;
      box-shadow: 0 18px 40px rgba(176,90,99,.25);
    }
    .btn-primary:hover{
      background: linear-gradient(135deg, #a7515a 0%, #c26f78 55%, #d6949f 100%);
      box-shadow: 0 24px 60px rgba(176,90,99,.28);
    }

    .burger{
      width:42px;height:42px;
      border-radius:14px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.65);
      display:none;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, background .2s ease, border-color .2s ease;
    }
    .burger:hover{transform: translateY(-1px); background: rgba(255,255,255,.85); border-color: rgba(176,90,99,.22);}
    .burger:focus{outline:none; box-shadow: var(--focus);}
    .burger svg{width:18px;height:18px; color:#3a1f24}

    .mobile-panel{
      display:none;
      padding:0 0 14px 0;
    }
    .mobile-panel .panel-inner{
      border:1px solid rgba(31,35,40,.10);
      border-radius:18px;
      background: rgba(255,255,255,.70);
      box-shadow: 0 16px 40px rgba(33,16,22,.08);
      padding:10px;
    }
    .mobile-panel .panel-links{
      list-style:none; margin:0; padding:0;
      display:flex;flex-direction:column;gap:6px;
    }
    .mobile-panel .panel-links a{
      display:flex;align-items:center;justify-content:space-between;
      text-decoration:none;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid transparent;
      background: rgba(255,255,255,.55);
      transition: background .2s ease, border-color .2s ease, transform .18s ease;
      font-size:14px;
      color:#2a2f35;
    }
    .mobile-panel .panel-links a:hover{
      background: rgba(199,123,122,.10);
      border-color: rgba(199,123,122,.18);
      transform: translateY(-1px);
    }
    .mobile-panel .panel-links a span{
      color:var(--muted2);
      font-size:12px;
      font-weight:600;
    }

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

    .hero-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:18px;
      align-items:stretch;
      margin: 10px 0 18px;
    }

    .hero-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(176,90,99,.14);
      background:
        radial-gradient(900px 260px at 5% 0%, rgba(215,154,163,.24), transparent 55%),
        radial-gradient(720px 260px at 96% 22%, rgba(240,182,178,.24), transparent 52%),
        linear-gradient(180deg, rgba(255,255,255,.80) 0%, rgba(255,255,255,.62) 100%);
      box-shadow: var(--shadow2);
      padding:22px 22px;
      position:relative;
      overflow:hidden;
      min-height: 320px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:18px;
    }

    .hero-badge-row{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .badge{
      display:inline-flex;align-items:center;gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(176,90,99,.20);
      background: rgba(255,255,255,.70);
      font-size:12px;
      color:#3b1f25;
      font-weight:800;
      letter-spacing:.2px;
      user-select:none;
    }
    .badge i{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(180deg, #b05a63, #d9a0a7);
      box-shadow: 0 10px 16px rgba(176,90,99,.24);
      display:inline-block;
    }

    .hero-title{
      margin:6px 0 10px;
      font-size:34px;
      line-height:1.15;
      letter-spacing:-.6px;
      color:#221b1d;
    }

    .hero-lead{
      margin:0;
      color: var(--muted);
      font-size:15px;
      line-height:1.7;
      max-width: 62ch;
    }

    .hero-cta-row{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-start;
      margin-top:6px;
    }

    .meta-strip{
      margin-top:6px;
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      color:var(--muted2);
      font-size:12px;
      font-weight:650;
    }
    .meta-chip{
      padding:7px 10px;
      border:1px solid rgba(31,35,40,.10);
      border-radius:999px;
      background: rgba(255,255,255,.55);
    }

    .hero-side{
      border-radius: var(--radius2);
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 16px 40px rgba(33,16,22,.06);
      padding:16px;
      display:flex;flex-direction:column;gap:12px;
    }
    .side-top{
      display:flex; gap:12px; align-items:flex-start;
    }
    .side-icon{
      width:44px;height:44px;border-radius:16px;
      background: linear-gradient(135deg, rgba(176,90,99,.22), rgba(217,160,167,.16));
      border:1px solid rgba(176,90,99,.18);
      display:grid;place-items:center;
      flex:0 0 auto;
    }
    .side-icon svg{width:20px;height:20px; color:#8b3f47}
    .side-title{
      margin:0;
      font-size:14px;
      letter-spacing:.2px;
      color:#2a1f23;
      font-weight:900;
    }
    .side-text{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }

    .side-steps{
      display:grid;
      grid-template-columns:1fr;
      gap:10px;
      margin-top:2px;
    }
    .step-pill{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      transition: transform .18s ease, border-color .2s ease, background .2s ease;
    }
    .step-pill:hover{
      transform: translateY(-2px);
      border-color: rgba(176,90,99,.22);
      background: rgba(255,255,255,.82);
    }
    .num{
      width:28px;height:28px;border-radius:12px;
      background: linear-gradient(180deg, rgba(176,90,99,.20), rgba(217,160,167,.16));
      border:1px solid rgba(176,90,99,.18);
      display:grid;place-items:center;
      color:#8b3f47;
      font-weight:950;
      flex:0 0 auto;
      font-size:13px;
    }
    .step-pill strong{
      display:block;
      font-size:13px;
      color:#2a1f23;
      margin-top:1px;
    }
    .step-pill span{
      display:block;
      font-size:12px;
      color:var(--muted2);
      line-height:1.6;
      margin-top:4px;
    }

    main{padding: 10px 0 30px;}

    .toc{
      margin-top:14px;
      border-radius: var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 16px 40px rgba(33,16,22,.06);
      padding:14px 16px;
    }
    .toc-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:12px;
      flex-wrap:wrap;
      margin-bottom:10px;
    }
    .toc-head h2{
      margin:0;
      font-size:16px;
      color:#2a1f23;
      letter-spacing:-.2px;
    }
    .toc-head p{
      margin:0;
      font-size:12px;
      color:var(--muted2);
      line-height:1.5;
    }
    .toc-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:10px;
    }
    .toc a{
      text-decoration:none;
      display:flex;
      flex-direction:column;
      gap:6px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      transition: transform .18s ease, border-color .2s ease, background .2s ease;
      min-height: 86px;
    }
    .toc a:hover{
      transform: translateY(-2px);
      border-color: rgba(176,90,99,.22);
      background: rgba(255,255,255,.84);
    }
    .toc a b{
      font-size:13px;
      color:#2a1f23;
      letter-spacing:.1px;
    }
    .toc a em{
      font-style:normal;
      font-size:12px;
      color:var(--muted2);
      line-height:1.55;
    }

    section.block{
      margin-top:14px;
      border-radius: var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 16px 40px rgba(33,16,22,.06);
      overflow:hidden;
    }

    .block-inner{
      padding:18px 18px;
    }

    .section-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .section-title h2{
      margin:0;
      font-size:18px;
      color:#2a1f23;
      letter-spacing:-.3px;
    }
    .section-title .tag{
      font-size:12px;
      font-weight:850;
      color:#3b1f25;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(176,90,99,.20);
      background: rgba(255,255,255,.62);
      user-select:none;
      white-space:nowrap;
    }

    .prose{
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      margin:0;
    }

    .core-essentials{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      margin-top:12px;
      align-items:stretch;
    }

    .card{
      border-radius:18px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      padding:14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease, background .2s ease;
      min-height: 130px;
      display:flex; flex-direction:column; gap:10px;
    }
    .card:hover{
      transform: translateY(-3px);
      border-color: rgba(176,90,99,.22);
      background: rgba(255,255,255,.86);
      box-shadow: 0 20px 50px rgba(33,16,22,.08);
    }
    .card h3{
      margin:0;
      font-size:14px;
      color:#2a1f23;
      letter-spacing:-.2px;
      display:flex; align-items:center; gap:10px;
    }
    .card h3 svg{width:18px;height:18px; color:#8b3f47}
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .mini-list{
      margin:0;
      padding-left:18px;
      color:var(--muted);
      font-size:13px;
      line-height:1.85;
    }
    .mini-list li{margin:6px 0}

    .steps-wrap{
      margin-top:10px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }

    .flow{
      border-radius:18px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      padding:14px;
    }
    .flow ol{
      margin:10px 0 0;
      padding-left:18px;
      color:var(--muted);
      font-size:13px;
      line-height:1.85;
    }
    .flow li{margin:10px 0}
    .flow strong{color:#2a1f23}

    .quote{
      border-radius:18px;
      border:1px solid rgba(176,90,99,.18);
      background:
        radial-gradient(520px 220px at 10% 0%, rgba(217,160,167,.22), transparent 60%),
        rgba(255,255,255,.62);
      padding:14px;
    }
    .quote .qhead{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom:8px;
    }
    .quote .qhead b{
      font-size:14px; color:#2a1f23; letter-spacing:-.2px;
    }
    .quote .qmeta{
      font-size:12px; color:var(--muted2); font-weight:750;
      padding:7px 10px; border:1px solid rgba(31,35,40,.10); border-radius:999px; background: rgba(255,255,255,.62);
    }
    .quote p{margin:0; color:var(--muted); font-size:13px; line-height:1.8}

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top:10px;
    }
    details.faq{
      border-radius:18px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      padding:12px 12px;
      transition: border-color .2s ease, background .2s ease, transform .18s ease;
    }
    details.faq[open]{
      border-color: rgba(176,90,99,.22);
      background: rgba(255,255,255,.88);
    }
    details.faq summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      user-select:none;
      font-weight:900;
      color:#2a1f23;
      font-size:14px;
      padding:4px 2px;
    }
    details.faq summary::-webkit-details-marker{display:none}
    .chev{
      width:26px;height:26px;border-radius:12px;
      display:grid;place-items:center;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      flex:0 0 auto;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    details.faq[open] .chev{
      transform: rotate(180deg);
      border-color: rgba(176,90,99,.22);
      background: rgba(255,255,255,.85);
    }
    .faq-body{
      margin-top:10px;
      color:var(--muted);
      font-size:13px;
      line-height:1.9;
    }
    .faq-body a{color:#8b3f47; text-decoration:underline; text-decoration-color: rgba(139,63,71,.35);}

    .inline-links{
      display:flex;gap:10px;flex-wrap:wrap;margin-top:10px;
    }
    .inline-links a{
      text-decoration:none;
      font-weight:850;
      color:#8b3f47;
      padding:9px 11px;
      border-radius:14px;
      border:1px solid rgba(176,90,99,.18);
      background: rgba(255,255,255,.62);
      transition: transform .18s ease, background .2s ease, border-color .2s ease;
      font-size:13px;
    }
    .inline-links a:hover{
      transform: translateY(-2px);
      background: rgba(255,255,255,.88);
      border-color: rgba(176,90,99,.28);
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:10px;
      align-items:stretch;
    }
    .service-tile{
      border-radius:18px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:10px;
      transition: transform .18s ease, background .2s ease, border-color .2s ease;
      min-height: 132px;
    }
    .service-tile:hover{
      transform: translateY(-3px);
      border-color: rgba(176,90,99,.22);
      background: rgba(255,255,255,.88);
    }
    .service-tile b{
      font-size:14px; color:#2a1f23; letter-spacing:-.2px; display:flex; align-items:center; gap:10px;
    }
    .service-tile b svg{width:18px;height:18px;color:#8b3f47}
    .service-tile span{
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
    }
    .service-tile .pill-row{
      display:flex;gap:8px;flex-wrap:wrap;margin-top:auto;
    }
    .pill{
      font-size:12px;
      font-weight:800;
      color:#3b1f25;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      user-select:none;
      white-space:nowrap;
    }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      margin-top:10px;
      align-items:start;
    }
    .contact-card{
      border-radius:18px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      padding:14px;
    }
    .contact-card h3{
      margin:0 0 8px;
      font-size:14px;
      color:#2a1f23;
      letter-spacing:-.2px;
      display:flex;align-items:center;gap:10px;
    }
    .contact-card h3 svg{width:18px;height:18px;color:#8b3f47}
    .kv{
      display:grid;gap:10px;
      margin-top:10px;
    }
    .kv .row{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(31,35,40,.08);
      background: rgba(255,255,255,.55);
    }
    .kv .key{
      font-size:12px;
      font-weight:950;
      color:#3b1f25;
      width:82px;
      flex:0 0 auto;
      padding-top:2px;
    }
    .kv .val{
      font-size:13px;
      color:var(--muted);
      line-height:1.7;
    }
    .qr-row{
      display:flex; gap:12px; align-items:flex-start; flex-wrap:wrap;
      margin-top:12px;
    }
    .qr{
      width:120px; max-width:100%;
      border-radius:18px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.65);
      padding:10px;
    }
    .qr img{
      width:100%;
      height:auto;
      display:block;
      border-radius:12px;
    }
    .qr-caption{
      margin-top:8px;
      color:var(--muted2);
      font-size:12px;
      line-height:1.5;
      text-align:center;
      font-weight:750;
    }

    footer{
      padding:18px 0 26px;
      background: linear-gradient(180deg, rgba(255,255,255,.0) 0%, rgba(255,253,252,.72) 25%, rgba(255,255,255,.86) 100%);
      border-top:1px solid rgba(31,35,40,.08);
    }
    .footer-wrap{
      display:flex; flex-wrap:wrap; gap:12px;
      align-items:flex-start; justify-content:space-between;
    }
    .footer-left{
      color:#2a2f35;
      font-weight:850;
      font-size:13px;
      display:flex; align-items:center; gap:10px;
    }
    .footer-left .mini-logo{
      width:30px;height:30px;border-radius:12px;
      background: linear-gradient(135deg, #f7d6d2 0%, #d79aa3 55%, #b05a63 100%);
      border:1px solid rgba(139,63,71,.18);
      display:grid;place-items:center;
      color:#3a1f24;
      font-weight:950;
      font-size:14px;
      box-shadow: 0 16px 30px rgba(176,90,99,.18);
      flex:0 0 auto;
    }
    .footer-right{
      display:flex;flex-direction:column;gap:10px;align-items:flex-end;
      min-width:220px;
    }
    .footer-links{
      display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
    }
    .footer-links a{
      font-size:12px;
      color:#8b3f47;
      text-decoration:none;
      border:1px solid rgba(176,90,99,.18);
      background: rgba(255,255,255,.62);
      padding:9px 10px;
      border-radius:14px;
      font-weight:850;
      transition: transform .18s ease, background .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .footer-links a:hover{
      transform: translateY(-2px);
      background: rgba(255,255,255,.88);
      border-color: rgba(176,90,99,.28);
    }
    .copyright{
      font-size:12px;
      color:var(--muted2);
      font-weight:750;
      text-align:right;
      line-height:1.5;
    }

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.in{
      opacity:1;
      transform: translateY(0);
    }

    .skip-link{
      position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
    }
    .skip-link:focus{
      left:18px;top:18px;width:auto;height:auto;z-index:9999;
      padding:10px 12px;border-radius:14px;
      background:#fff;border:1px solid rgba(176,90,99,.35);
      box-shadow: var(--focus);
      outline:none;
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-card{min-height:unset}
      .toc-grid{grid-template-columns: repeat(2, minmax(0,1fr));}
      .core-essentials{grid-template-columns:1fr;}
      .steps-wrap{grid-template-columns:1fr;}
      .grid-3{grid-template-columns:1fr;}
      .contact-grid{grid-template-columns:1fr;}
      .footer-right{align-items:flex-start}
      .footer-links{justify-content:flex-start}
      .copyright{text-align:left}
      nav{display:none}
      .burger{display:flex}
      .mobile-panel{display:block}
    }

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