:root{
  --deep-blue:#0A1F44;
  --deep-blue-2:#0d2a5c;
  --gold:#FFD700;
  --gold-soft:#ffe766;
  --warm-paper:#F5F5F7;
  --paper:#FFFFFF;
  --ink-700:#1F2937;
  --ink-500:#4B5563;
  --line-200:#D1D5DB;
  --teal:#14B8A6;
  --red-accent:#EF4444;
  --blue-100:#DBEAFE;
  --shadow-soft:0 6px 24px rgba(10,31,68,.08);
  --shadow-card:0 4px 18px rgba(10,31,68,.06);
  --container:1200px;
  --radius:0px;
  --font-heading:"Montserrat","Source Han Sans SC","PingFang SC","Microsoft YaHei",sans-serif;
  --font-body:"Source Han Sans SC","PingFang SC","Microsoft YaHei","Segoe UI",sans-serif;
  --header-h:72px;
  --speed-fast:.18s;
  --speed-base:.28s;
  --ease:cubic-bezier(.25,.1,.25,1);
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 16px);}
body{
  font-family:var(--font-body);
  background:var(--warm-paper);
  color:var(--ink-700);
  line-height:1.5;
  font-size:1rem;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body.nav-locked{overflow:hidden;}
img{display:block;max-width:100%;}
a{color:var(--deep-blue);text-decoration-thickness:1px;text-underline-offset:3px;}
a:hover{color:var(--deep-blue-2);}
ul,ol{list-style:none;}
button{font-family:inherit;border:none;background:none;cursor:pointer;color:inherit;}
:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
  border-radius:2px;
}
::selection{background:var(--gold);color:var(--deep-blue);}
.visually-hidden{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0 0 0 0);white-space:nowrap;border:0;
}
.site-shell{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}
.skip-link{
  position:fixed;
  top:-100px;
  left:16px;
  z-index:2000;
  background:var(--deep-blue);
  color:#fff;
  padding:12px 20px;
  font-weight:600;
  font-size:.9375rem;
  border-radius:4px;
  transition:top .25s var(--ease);
}
.skip-link:focus{top:16px;color:var(--gold);}

/* masthead */
.masthead{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--deep-blue);
  color:#fff;
  border-bottom:2px solid var(--gold);
  box-shadow:0 4px 20px rgba(10,31,68,.35);
}
.masthead-progress{
  position:absolute;
  left:0;
  bottom:-2px;
  height:2px;
  width:100%;
  background:rgba(255,255,255,.08);
  pointer-events:none;
}
.scroll-progress{
  display:block;
  width:0%;
  height:100%;
  background:linear-gradient(90deg,var(--gold),var(--gold-soft));
  box-shadow:0 0 12px rgba(255,215,0,.65);
  transition:width .12s linear;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  min-height:var(--header-h);
  position:relative;
}
.brand-lockup{
  flex-shrink:0;
  display:flex;
}
.brand-link{
  display:inline-flex;
  align-items:center;
  gap:14px;
  color:#fff;
  text-decoration:none;
}
.brand-link:hover{color:#fff;}
.brand-mark{
  display:inline-block;
  width:40px;
  height:40px;
  background:
    linear-gradient(135deg,var(--gold) 0 45%,transparent 45%),
    linear-gradient(45deg,var(--gold) 0 55%,var(--deep-blue-2) 55%);
  border:2px solid var(--gold);
  position:relative;
  box-shadow:0 0 18px rgba(255,215,0,.5);
  flex-shrink:0;
}
.brand-mark::after{
  content:"";
  position:absolute;
  top:50%;
  right:-8px;
  width:16px;
  height:2px;
  background:var(--gold);
  transform:translateY(-50%);
  box-shadow:0 0 8px rgba(255,215,0,.8);
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-name{
  font-family:var(--font-heading);
  font-weight:800;
  font-size:1.4rem;
  letter-spacing:.01em;
  color:#fff;
  text-transform:uppercase;
}
.brand-tagline{
  font-size:.72rem;
  letter-spacing:.08em;
  color:rgba(255,255,255,.75);
  margin-top:4px;
  text-transform:uppercase;
}
.brand-badge{
  background:linear-gradient(135deg,var(--gold),#ffb700);
  color:var(--deep-blue);
  font-weight:800;
  font-size:.62rem;
  padding:1px 6px;
  border-radius:2px;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  background:transparent;
  border:1px solid rgba(255,255,255,.24);
  border-radius:4px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  transition:border-color var(--speed-fast) var(--ease),background var(--speed-fast) var(--ease);
}
.nav-toggle:hover{
  border-color:var(--gold);
  background:rgba(255,255,255,.06);
}
.nav-toggle-line{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  transition:transform .25s var(--ease),opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2){
  opacity:0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}
.header-nav{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}
.nav-link{
  display:inline-block;
  padding:10px 15px;
  color:rgba(255,255,255,.85);
  text-decoration:none;
  font-size:.95rem;
  font-weight:500;
  letter-spacing:.02em;
  border:1px solid transparent;
  border-radius:3px;
  transition:color var(--speed-fast) var(--ease),background var(--speed-fast) var(--ease),border-color var(--speed-fast) var(--ease);
  position:relative;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:15px;
  right:15px;
  bottom:4px;
  height:2px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform var(--speed-base) var(--ease);
}
.nav-link:hover,.nav-link[aria-current="page"]{
  color:#fff;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18);
}
.nav-link[aria-current="page"]::after{
  transform:scaleX(1);
}
.nav-link[aria-current="page"]{
  font-weight:700;
  color:var(--gold);
}
.header-cta{
  flex-shrink:0;
}

/* buttons and shared UI */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 20px;
  min-height:42px;
  font-family:var(--font-heading);
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.05em;
  text-decoration:none;
  border:2px solid transparent;
  border-radius:4px;
  transition:transform var(--speed-fast) var(--ease),box-shadow var(--speed-fast) var(--ease),background var(--speed-fast) var(--ease),color var(--speed-fast) var(--ease);
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px);}
.btn-gold{
  background:linear-gradient(135deg,var(--gold),#f0b800);
  color:var(--deep-blue);
  border-color:var(--gold);
  box-shadow:0 6px 16px rgba(255,215,0,.3);
}
.btn-gold:hover{
  background:linear-gradient(135deg,#ffdf33,#ffc800);
  box-shadow:0 10px 22px rgba(255,215,0,.42);
  color:var(--deep-blue);
}
.btn-outline{
  background:transparent;
  color:var(--deep-blue);
  border-color:var(--deep-blue);
}
.btn-outline:hover{
  background:var(--deep-blue);
  color:#fff;
  box-shadow:0 6px 14px rgba(10,31,68,.2);
}

/* breadcrumb */
.breadcrumb{
  margin-bottom:20px;
  font-size:.85rem;
  color:var(--ink-500);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}
.breadcrumb a{
  color:var(--deep-blue);
  text-decoration:none;
  font-weight:500;
}
.breadcrumb a:hover{text-decoration:underline;}
.breadcrumb-current{
  color:var(--ink-500);
  font-weight:600;
}

/* typography through components */
.page-title{
  font-family:var(--font-heading);
  font-size:clamp(2rem,4vw,3.75rem);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-.01em;
  color:var(--deep-blue);
  text-transform:uppercase;
  background:linear-gradient(120deg,var(--deep-blue) 0%,#153b7a 55%,var(--deep-blue) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:16px;
}
.page-title-subtitle{
  font-size:1.15rem;
  color:var(--ink-500);
  max-width:680px;
  margin-bottom:28px;
}
.section-label{
  font-family:var(--font-heading);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  background:var(--deep-blue);
  padding:4px 10px;
  display:inline-block;
  border-radius:2px;
  margin-bottom:14px;
}
.section-headline{
  font-family:var(--font-heading);
  font-size:clamp(1.25rem,2vw,2rem);
  font-weight:800;
  line-height:1.2;
  color:var(--deep-blue);
  margin-bottom:16px;
  letter-spacing:-.01em;
}
.section-copy{
  color:var(--ink-500);
  max-width:720px;
  margin-bottom:24px;
}
.content-container{
  max-width:860px;
}
.text-container{
  max-width:760px;
  color:var(--ink-700);
  font-size:1.05rem;
}
.text-container h2{
  font-family:var(--font-heading);
  font-size:1.6rem;
  color:var(--deep-blue);
  margin-top:36px;
  margin-bottom:14px;
}
.text-container p{margin-bottom:16px;color:var(--ink-500);}
.text-container ul{
  list-style:square;
  margin:0 0 16px 24px;
  color:var(--ink-500);
}

/* bento composition */
.bento-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:minmax(160px,auto);
  gap:18px;
}
.bento-card{
  background:var(--paper);
  border:1px solid var(--line-200);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow-card);
  position:relative;
  overflow:hidden;
  transition:transform var(--speed-base) var(--ease),box-shadow var(--speed-base) var(--ease);
  min-height:120px;
}
.bento-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-soft);
}
.bento-card-dark{
  background:var(--deep-blue);
  color:#fff;
  border-color:var(--deep-blue);
}
.bento-card-dark .bento-title,
.bento-card-dark .section-headline{
  color:#fff;
}
.bento-card-dark .bento-desc{
  color:rgba(255,255,255,.74);
}
.bento-card-gold{
  background:linear-gradient(135deg,var(--gold),#ffcc00);
  border-color:var(--gold);
}
.bento-card-gold .bento-title,
.bento-card-gold .section-headline{
  color:var(--deep-blue);
}
.bento-title{
  font-family:var(--font-heading);
  font-size:1.3rem;
  font-weight:800;
  color:var(--deep-blue);
  margin-bottom:6px;
  letter-spacing:-.01em;
}
.bento-desc{
  font-size:.92rem;
  color:var(--ink-500);
  line-height:1.6;
}
.bento-metric{
  font-family:var(--font-heading);
  font-size:2.6rem;
  font-weight:900;
  line-height:1;
  color:var(--deep-blue);
  display:block;
}
.bento-card-dark .bento-metric{color:var(--gold);}
.bento-footer{
  margin-top:18px;
  font-size:.82rem;
  color:var(--ink-500);
  letter-spacing:.03em;
}
.bento-card-dark .bento-footer{color:rgba(255,255,255,.65);}
.bento-card::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:0;
  height:0;
  border-style:solid;
  border-width:0 0 34px 34px;
  border-color:transparent transparent var(--line-200) transparent;
  opacity:.42;
  pointer-events:none;
}

/* filter tabs */
.filter-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:28px;
}
.filter-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  background:var(--paper);
  border:1px solid var(--line-200);
  border-radius:30px;
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.02em;
  color:var(--ink-700);
  cursor:pointer;
  transition:all var(--speed-fast) var(--ease);
}
.filter-chip:hover{
  border-color:var(--deep-blue);
  color:var(--deep-blue);
  transform:translateY(-1px);
}
.filter-chip[aria-pressed="true"]{
  background:var(--deep-blue);
  color:#fff;
  border-color:var(--deep-blue);
  box-shadow:0 4px 12px rgba(10,31,68,.22);
}

/* grid cards */
.grid-card{
  background:var(--paper);
  border:1px solid var(--line-200);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow-card);
  transition:transform var(--speed-base) var(--ease),box-shadow var(--speed-base) var(--ease);
  position:relative;
}
.grid-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-soft);
}
.grid-card-title{
  font-family:var(--font-heading);
  font-size:1.15rem;
  font-weight:800;
  color:var(--deep-blue);
  margin-bottom:6px;
}
.grid-card-meta{
  font-size:.82rem;
  color:var(--ink-500);
  margin-bottom:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.grid-card-copy{
  font-size:.95rem;
  color:var(--ink-500);
  line-height:1.55;
}
.grid-card-link{
  display:inline-block;
  margin-top:14px;
  font-weight:700;
  color:var(--deep-blue);
  text-decoration:none;
  border-bottom:2px solid var(--gold);
  padding-bottom:2px;
}
.grid-card-link:hover{color:var(--deep-blue-2);}

/* accordion */
.accordion{
  border:1px solid var(--line-200);
  background:var(--paper);
  border-radius:4px;
}
.accordion-item{
  border-bottom:1px solid var(--line-200);
}
.accordion-item:last-child{border-bottom:none;}
.accordion-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 22px;
  background:transparent;
  font-size:1rem;
  font-weight:700;
  color:var(--deep-blue);
  text-align:left;
  transition:background var(--speed-fast) var(--ease);
}
.accordion-trigger:hover{background:#f2f4f8;}
.accordion-icon{
  display:block;
  width:16px;
  height:16px;
  position:relative;
  flex-shrink:0;
}
.accordion-icon::before,
.accordion-icon::after{
  content:"";
  position:absolute;
  background:var(--deep-blue);
  transition:transform var(--speed-base) var(--ease),opacity var(--speed-base) var(--ease);
}
.accordion-icon::before{
  width:100%;
  height:2px;
  top:50%;
  left:0;
  transform:translateY(-50%);
}
.accordion-icon::after{
  width:2px;
  height:100%;
  top:0;
  left:50%;
  transform:translateX(-50%);
}
.accordion-trigger[aria-expanded="true"] .accordion-icon::after{
  opacity:0;
  transform:translateX(-50%) scaleY(0);
}
.accordion-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s var(--ease),padding .3s var(--ease);
}
.accordion-panel[data-open]{
  max-height:640px;
}
.accordion-panel-inner{
  padding:0 22px 18px;
  color:var(--ink-500);
  line-height:1.65;
}
.accordion-panel-inner p{
  margin-bottom:12px;
}

/* section band */
.section-band{
  position:relative;
  padding:20px 0;
  overflow:hidden;
}
.section-band::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,var(--deep-blue) 0%,var(--gold) 60%,transparent);
}

/* progress and to-top */
.to-top{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:900;
  width:46px;
  height:46px;
  border-radius:4px;
  background:var(--deep-blue);
  color:var(--gold);
  border:2px solid var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
  line-height:1;
  box-shadow:0 8px 20px rgba(10,31,68,.3);
  transition:opacity var(--speed-fast) var(--ease),transform var(--speed-fast) var(--ease),visibility var(--speed-fast) var(--ease);
}
.to-top[hidden]{
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
}
.to-top:hover{
  background:var(--gold);
  color:var(--deep-blue);
}

/* footer */
.site-footer{
  margin-top:80px;
  background:var(--deep-blue);
  color:rgba(255,255,255,.8);
  border-top:4px solid var(--gold);
  position:relative;
}
.site-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
.footer-inner{
  padding-top:48px;
  padding-bottom:24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1.2fr;
  gap:44px;
  margin-bottom:40px;
}
.footer-brand{
  max-width:320px;
}
.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.footer-logo .brand-mark{
  width:38px;
  height:38px;
}
.footer-brand-name{
  font-family:var(--font-heading);
  font-weight:800;
  font-size:1.3rem;
  color:#fff;
  letter-spacing:.01em;
}
.footer-slogan{
  font-size:.9rem;
  color:var(--gold);
  margin-bottom:12px;
  letter-spacing:.06em;
}
.footer-trust{
  font-size:.85rem;
  line-height:1.6;
  color:rgba(255,255,255,.6);
  border-left:3px solid var(--gold);
  padding-left:12px;
}
.footer-title{
  font-family:var(--font-heading);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:16px;
}
.footer-link-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px 18px;
}
.footer-link-grid a{
  color:rgba(255,255,255,.7);
  text-decoration:none;
  font-size:.9rem;
  padding:3px 0;
  transition:color var(--speed-fast) var(--ease),transform var(--speed-fast) var(--ease);
  display:inline-block;
}
.footer-link-grid a:hover{
  color:var(--gold);
  transform:translateX(3px);
}
.footer-contact-list{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:14px;
}
.footer-contact-list li{
  font-size:.9rem;
  color:rgba(255,255,255,.68);
  line-height:1.5;
}
.footer-contact-list a{
  color:#fff;
  text-decoration:none;
}
.footer-contact-list a:hover{color:var(--gold);}
.footer-support{
  font-size:.82rem;
  color:rgba(255,255,255,.5);
  line-height:1.55;
  border-top:1px solid rgba(255,255,255,.14);
  padding-top:12px;
}
.footer-support a{
  color:var(--gold-soft);
  text-decoration:none;
}
.footer-support a:hover{text-decoration:underline;}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:.82rem;
  color:rgba(255,255,255,.5);
}
.footer-copyright{line-height:1.4;}
.footer-icp{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.55);
}
.footer-icp a{
  color:rgba(255,255,255,.7);
  text-decoration:none;
}
.footer-icp a:hover{color:var(--gold);}
.footer-sep{opacity:.4;}

/* image frames, reusable */
.img-frame{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  aspect-ratio:16/10;
  background:
    linear-gradient(120deg,var(--blue-100) 0%,var(--warm-paper) 100%);
  border:1px solid var(--line-200);
  border-radius:4px;
  overflow:hidden;
  position:relative;
}
.img-frame::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,transparent 49%,rgba(255,255,255,.5) 50%,transparent 51%);
  background-size:8px 100%;
  opacity:.35;
}
.img-frame-tall{aspect-ratio:3/4;}
.img-frame-wide{aspect-ratio:21/9;}
.img-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* generic page layout */
.page-section{
  padding:40px 0;
}
.page-section + .page-section{
  border-top:1px solid var(--line-200);
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* reveal */
[data-reveal]{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s var(--ease),transform .6s var(--ease);
}
[data-reveal][data-visible]{
  opacity:1;
  transform:none;
}

/* responsive */
@media (max-width:980px){
  .masthead{
    position:sticky;
  }
  .header-inner{
    flex-wrap:wrap;
    padding-top:14px;
    padding-bottom:14px;
    min-height:auto;
  }
  .nav-toggle{
    display:inline-flex;
    order:3;
  }
  .header-cta{
    display:none;
  }
  .header-nav{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4px;
    width:100%;
    max-height:0;
    overflow:hidden;
    order:4;
    visibility:hidden;
    opacity:0;
    transform:translateY(-8px);
    transition:max-height .4s var(--ease),opacity .3s var(--ease),transform .3s var(--ease),visibility .3s var(--ease);
  }
  .header-nav[data-open]{
    max-height:700px;
    visibility:visible;
    opacity:1;
    transform:none;
    margin-top:12px;
  }
  .nav-link{
    justify-content:space-between;
    text-align:left;
    padding:14px 12px;
    border-bottom:1px solid rgba(255,255,255,.08);
    border-radius:0;
  }
  .nav-link::after{
    left:12px;
    bottom:2px;
    right:auto;
    width:24px;
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:32px;
  }
  .bento-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .grid-3{
    grid-template-columns:repeat(2,1fr);
  }
  .grid-2{
    grid-template-columns:1fr;
  }
}
@media (max-width:640px){
  .site-shell{
    padding-left:16px;
    padding-right:16px;
  }
  .brand-name{
    font-size:1.05rem;
  }
  .brand-mark{
    width:34px;
    height:34px;
  }
  .header-nav{
    grid-template-columns:1fr;
  }
  .footer-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .bento-grid{
    grid-template-columns:1fr;
  }
  .grid-3,
  .grid-2{
    grid-template-columns:1fr;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .to-top{
    right:14px;
    bottom:14px;
  }
}

@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
    scroll-behavior:auto!important;
  }
  [data-reveal]{
    opacity:1;
    transform:none;
  }
  .nav-link::after{
    transform:scaleX(1);
    transition:none;
  }
}
