:root{
  --bg:#ffffff;
  --ink:#0f172a;
  --muted:#64748b;
  --nav1:#071a28;
  --nav2:#071520;
  --card:#ffffff;
  --line:rgba(15,23,42,.10);
  --shadow:0 14px 34px rgba(2,6,23,.12);
  --accent1:#17a2ff;
  --accent2:#22c55e;
  --accent:#22c55e;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Noto Sans KR","Apple SD Gothic Neo","Malgun Gothic",sans-serif;
  color:var(--ink);
  background:var(--bg);
}

/* Layout */
.nb-layout{min-height:100vh; display:flex;}
.nb-sidebar{
  width:260px;
  background:linear-gradient(180deg,var(--nav1),var(--nav2));
  color:#e5e7eb;
  position:fixed; inset:0 auto 0 0;
  padding:18px 14px;
  overflow:auto;
}
.nb-main{
  margin-left:260px;
  width:calc(100% - 260px);
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.nb-content{flex:1; padding:46px 28px 28px;}

/* Brand */
.nb-brand{padding:6px 6px 14px;}
.nb-brand-link{display:flex; gap:10px; align-items:center; text-decoration:none; color:#e5e7eb;}
.nb-brand-logo{width:44px; height:44px; border-radius:10px; object-fit:cover; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10);}
.nb-brand-en{font-weight:950; letter-spacing:.3px}
.nb-brand-kr{font-weight:800; color:#cbd5e1; font-size:12px; margin-top:2px}

/* Nav */
.nb-nav{display:flex; flex-direction:column; gap:10px; margin-top:10px;}
.nb-nav-item{
  color:#e5e7eb; text-decoration:none;
  padding:10px 10px; border-radius:12px;
  font-weight:900; font-size:14px;
}
.nb-nav-item:hover{background:rgba(255,255,255,.06)}
.nb-nav-item.is-active{color:var(--accent2); background:rgba(34,197,94,.12)}

.nb-nav-group{border-radius:12px; overflow:hidden;}
.nb-nav-toggle{
  width:100%;
  border:0; background:transparent; color:#e5e7eb;
  text-align:left;
  padding:10px 10px;
  border-radius:12px;
  font-weight:950; font-size:14px;
  cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
}
.nb-nav-toggle:hover{background:rgba(255,255,255,.06)}
.nb-caret{opacity:.85; transition:transform .15s ease}
.nb-nav-group.is-open .nb-caret{transform:rotate(180deg)}
.nb-nav-sub{display:none; flex-direction:column; gap:6px; padding:0 10px 10px}
.nb-nav-group.is-open .nb-nav-sub{display:flex}
.nb-nav-sub a{
  color:#cbd5e1; text-decoration:none;
  padding:8px 10px; border-radius:12px;
  font-weight:800; font-size:13px;
}
.nb-nav-sub a:hover{background:rgba(255,255,255,.06)}
.nb-nav-sub a.is-active{color:var(--accent2); background:rgba(34,197,94,.12)}

/* Auth box */
.nb-authbox{
  margin-top:10px;
  padding:12px 10px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  background:rgba(255,255,255,.03);
  display:flex; flex-direction:column; gap:8px;
}
.nb-auth-meta{display:flex; flex-direction:column; gap:2px}
.nb-auth-name{font-weight:950; font-size:13px}
.nb-auth-sub{font-weight:800; color:#cbd5e1; font-size:12px}
.nb-auth-link{
  text-decoration:none;
  color:#e5e7eb;
  font-weight:900;
  padding:9px 10px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
}
.nb-auth-link:hover{background:rgba(255,255,255,.07)}
.nb-auth-link.is-active{color:var(--accent2); background:rgba(34,197,94,.12)}

/* Typography */
.nb-page-title{
  margin:0 0 18px;
  font-size:34px;
  font-weight:1000;
  letter-spacing:-.6px;
  text-align:center;
}
.nb-subtitle{
  margin:0 auto 26px;
  max-width:980px;
  text-align:center;
  color:var(--muted);
  font-weight:850;
  line-height:1.6;
}

/* Hero with animation */
.nb-hero{
  position:relative;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:0 16px 40px rgba(2,6,23,.10);
  overflow:hidden;
  max-width:1200px;
  margin:0 auto 26px;
  min-height:420px;
  background:radial-gradient(1200px 600px at 20% 30%, rgba(23,162,255,.20), transparent 60%),
             radial-gradient(900px 500px at 80% 30%, rgba(34,197,94,.20), transparent 60%),
             linear-gradient(180deg, #0b2030, #0a1622);
}
.nb-hero canvas{position:absolute; inset:0; width:100%; height:100%;}
.nb-hero-overlay{
  position:relative;
  padding:52px 46px;
  color:#e5e7eb;
}
.nb-hero-h1{
  margin:0;
  font-size:44px;
  font-weight:1000;
  letter-spacing:-.8px;
}
.nb-hero-h1 .grad{
  background:linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.nb-hero-p{
  margin:14px 0 22px;
  max-width:760px;
  color:rgba(226,232,240,.88);
  font-weight:850;
  line-height:1.65;
}
.nb-hero-cta{display:flex; gap:10px; flex-wrap:wrap;}
.nb-btn{
  border:0;
  padding:12px 14px;
  border-radius:14px;
  font-weight:950;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.nb-btn.primary{background:linear-gradient(90deg, var(--accent1), var(--accent2)); color:#03111a;}
.nb-btn.secondary{background:rgba(255,255,255,.08); color:#e5e7eb; border:1px solid rgba(255,255,255,.12);}
.nb-btn:hover{filter:brightness(1.05)}

/* Cards grid */
.nb-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
}
.nb-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow:0 10px 22px rgba(2,6,23,.06);
  min-height:180px;
  display:flex; flex-direction:column; gap:10px;
}
.nb-card h3{margin:0; font-size:18px; font-weight:1000}
.nb-tag{font-weight:1000; font-size:12.5px; color:var(--accent2)}
.nb-desc{margin:0; color:var(--muted); font-weight:800; line-height:1.55; font-size:13.5px}
.nb-link{
  margin-top:auto;
  color:var(--accent);
  font-weight:1000;
  text-decoration:none;
}
.nb-link:hover{text-decoration:underline}

/* Modal */
.nb-modal-backdrop{
  position:fixed; inset:0;
  background:rgba(15,23,42,.55);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:2000;
}
.nb-modal-backdrop.is-open{display:flex}
.nb-modal{
  width:min(780px, 100%);
  background:linear-gradient(180deg,#0f172a,#0b1220);
  color:#e5e7eb;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:20px 22px;
  position:relative;
}
.nb-x{
  position:absolute; right:14px; top:10px;
  border:0; background:transparent;
  color:#cbd5e1; font-size:18px;
  cursor:pointer;
}
.nb-modal h2{margin:2px 0 10px; font-size:22px; font-weight:1000}
.nb-modal p{margin:0 0 12px; color:#cbd5e1; line-height:1.6; font-weight:800}
.nb-modal ul{margin:10px 0 0 16px; color:#e2e8f0; line-height:1.7; font-weight:800}
.nb-modal .cta{display:flex; justify-content:flex-end; margin-top:16px}

/* Forms */
.nb-form{
  max-width:900px;
  margin:0 auto;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:0 14px 30px rgba(2,6,23,.08);
  padding:22px;
}
.nb-form-row{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px;}
.nb-field{display:flex; flex-direction:column; gap:6px;}
.nb-label{font-weight:950; color:var(--ink); font-size:13px;}
.nb-input, .nb-select, .nb-textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 12px;
  outline:none;
  font-weight:850;
}
.nb-textarea{min-height:110px; resize:vertical}
.nb-actions{display:flex; gap:10px; justify-content:flex-end; margin-top:12px; flex-wrap:wrap;}
.nb-note{color:var(--muted); font-weight:850; line-height:1.6; font-size:13px; margin-top:10px}

/* Keyword chips */
.nb-kw-group{margin:12px 0 0}
.nb-kw-title{font-weight:1000; margin:10px 0 8px}
.nb-kw-wrap{display:flex; gap:8px; flex-wrap:wrap}
.nb-kw-pill{
  display:inline-flex; align-items:center; gap:6px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(226,232,240,.22);
  cursor:pointer;
  font-weight:900;
  color:#e5e7eb;
}

/* Resources toolbar */
.nb-toolbar{
  max-width:1200px; margin:0 auto 14px;
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  padding:14px;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 10px 22px rgba(2,6,23,.06);
  background:#fff;
}
.nb-search{flex:1; min-width:240px}
.nb-switchwrap{display:flex; align-items:center; gap:8px; font-weight:1000}
.nb-switch{
  width:46px; height:26px; border-radius:999px;
  background:rgba(15,23,42,.12);
  position:relative; cursor:pointer; border:1px solid var(--line);
}
.nb-switch::after{
  content:"";
  position:absolute; top:3px; left:3px;
  width:20px; height:20px; border-radius:50%;
  background:#fff;
  box-shadow:0 6px 12px rgba(2,6,23,.15);
  transition:transform .15s ease;
}
.nb-switch.is-on{background:rgba(34,197,94,.22); border-color:rgba(34,197,94,.35)}
.nb-switch.is-on::after{transform:translateX(20px)}
.nb-mini{
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:10px 12px;
  font-weight:1000;
  cursor:pointer;
}
.nb-mini:hover{background:rgba(2,6,23,.03)}

.nb-chiprow{display:flex; gap:8px; flex-wrap:wrap; justify-content:center; max-width:1200px; margin:0 auto 18px;}
.nb-chip{
  border:1px solid var(--line);
  background:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-weight:1000;
  cursor:pointer;
}
.nb-chip.is-active{background:rgba(23,162,255,.10); border-color:rgba(23,162,255,.22); color:#0b2030}

/* Notice list */
.nb-notice-list{max-width:1200px; margin:0 auto; display:flex; flex-direction:column; gap:12px;}
.nb-notice{
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 16px;
  box-shadow:0 10px 22px rgba(2,6,23,.06);
  background:#fff;
  display:flex;
  justify-content:space-between;
  gap:16px;
}
.nb-notice h4{margin:0; font-size:16px; font-weight:1000}
.nb-meta{color:var(--muted); font-size:12.8px; margin-top:6px; line-height:1.5; font-weight:850}
.nb-right{min-width:180px; display:flex; flex-direction:column; align-items:flex-end; justify-content:center; gap:8px}
.nb-badge{
  font-weight:1000; font-size:12px;
  padding:6px 10px; border-radius:999px;
  background:rgba(2,6,23,.04);
  border:1px solid var(--line);
}
.nb-badge.deadline{background:rgba(239,68,68,.10); border-color:rgba(239,68,68,.22)}
.nb-badge.today{background:rgba(34,197,94,.12); border-color:rgba(34,197,94,.25)}
.nb-a{color:var(--accent); font-weight:1000; text-decoration:none}
.nb-a:hover{text-decoration:underline}

/* Pager */
.nb-pager{max-width:1200px; margin:18px auto 0; display:flex; gap:8px; flex-wrap:wrap; justify-content:center;}
.nb-pagebtn{
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:8px 12px;
  font-weight:1000;
  cursor:pointer;
}
.nb-pagebtn.is-active{background:rgba(34,197,94,.12); border-color:rgba(34,197,94,.35); color:var(--accent)}
.nb-loading{max-width:1200px; margin:18px auto; color:var(--muted); text-align:center; font-weight:950}

/* Footer */
.nb-footer{
  margin-top:30px;
  background:linear-gradient(180deg,var(--nav1),var(--nav2));
  color:#e5e7eb;
  padding:26px 22px 18px;
  position:relative;
}
.nb-footer-inner{
  max-width:1200px; margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:18px;
}
.nb-foot-title{font-weight:1000; margin-bottom:10px}
.nb-foot-text{color:#cbd5e1; font-size:12.8px; line-height:1.6; font-weight:850}
.nb-foot-list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px}
.nb-foot-list a{color:#cbd5e1; text-decoration:none; font-weight:900; font-size:13px}
.nb-foot-list a:hover{text-decoration:underline}
.nb-foot-bottom{
  max-width:1200px; margin:18px auto 0;
  color:rgba(226,232,240,.72);
  font-size:12px;
  border-top:1px solid rgba(226,232,240,.10);
  padding-top:12px;
  text-align:center;
  font-weight:850;
}

/* Floating buttons */
.nb-float{
  position:fixed;
  right:18px; bottom:18px;
  display:flex; flex-direction:column; gap:10px;
  z-index:2100;
}
.nb-float-btn{
  background:#fff;
  color:#0b2030;
  border:1px solid rgba(23,162,255,.25);
  padding:10px 14px;
  border-radius:999px;
  font-weight:1000;
  text-decoration:none;
  box-shadow:0 12px 24px rgba(2,6,23,.12);
}
.nb-float-btn:hover{filter:brightness(1.02)}

/* Flash */
.nb-flash{
  max-width:900px; margin:0 auto 14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:950;
}
.nb-flash.ok{background:rgba(34,197,94,.10); border-color:rgba(34,197,94,.22)}
.nb-flash.err{background:rgba(239,68,68,.08); border-color:rgba(239,68,68,.18)}

/* Responsive */
@media (max-width: 1100px){
  .nb-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .nb-footer-inner{grid-template-columns:1fr 1fr}
}
@media (max-width: 900px){
  .nb-sidebar{position:static; width:100%; height:auto;}
  .nb-main{margin-left:0; width:100%}
  .nb-layout{flex-direction:column}
  .nb-content{padding:22px 14px}
  .nb-grid{grid-template-columns:1fr}
  .nb-notice{flex-direction:column}
  .nb-right{align-items:flex-start; min-width:auto}
  .nb-form-row{grid-template-columns:1fr}
  .nb-hero-overlay{padding:28px 18px}
  .nb-hero-h1{font-size:34px}
}

/* ==============================
   v2 (Top navigation + full hero)
   ============================== */

/* Layout overrides (remove left sidebar) */
.nb-layout{display:block;}
.nb-sidebar{display:none;}
.nb-main{
  margin-left:0;
  width:100%;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  padding-top:72px; /* fixed header height */
}
.nb-content{flex:1; padding:34px 22px 32px; max-width:1200px; margin:0 auto; width:100%;}

/* Top header */
.nb-header{
  position:fixed;
  top:0; left:0; right:0;
  height:72px;
  z-index:50;
  background:rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  border-bottom:1px solid rgba(15,23,42,.10);
}
.nb-header-inner{
  height:72px;
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.nb-topbrand{display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--ink); min-width:220px;}
.nb-toplogo{width:40px; height:40px; border-radius:12px; border:1px solid rgba(15,23,42,.10); background:rgba(255,255,255,.65); object-fit:cover;}
.nb-topbrand-en{font-weight:1000; letter-spacing:.2px; line-height:1.1}
.nb-topbrand-kr{font-weight:900; color:var(--muted); font-size:12px; margin-top:2px}

.nb-topnav{display:flex; align-items:center; gap:14px;}
.nb-toplink{
  text-decoration:none;
  color:rgba(15,23,42,.86);
  font-weight:950;
  font-size:14px;
  padding:10px 10px;
  border-radius:14px;
  transition:background .15s ease, transform .15s ease;
}
.nb-toplink:hover{background:rgba(2,6,23,.06); transform:translateY(-1px);}
.nb-toplink.is-active{color:var(--accent2); background:rgba(34,197,94,.12)}

.nb-topright{display:flex; align-items:center; gap:10px;}
.nb-topbtn{
  text-decoration:none;
  font-weight:1000;
  font-size:13.5px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  transition:transform .15s ease, filter .15s ease;
}
.nb-topbtn.ghost{background:rgba(255,255,255,.55); color:rgba(15,23,42,.86)}
.nb-topbtn.primary{background:linear-gradient(90deg, var(--accent1), var(--accent2)); color:#03111a; border:0}
.nb-topbtn:hover{transform:translateY(-1px); filter:brightness(1.02)}

/* Dropdown */
.nb-dd{position:relative;}
.nb-dd-btn{
  border:0;
  background:transparent;
  color:rgba(15,23,42,.86);
  font-weight:950;
  font-size:14px;
  padding:10px 10px;
  border-radius:14px;
  cursor:pointer;
  transition:background .15s ease, transform .15s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.nb-dd-btn:hover{background:rgba(2,6,23,.06); transform:translateY(-1px);}
.nb-dd-caret{opacity:.75;}
.nb-dd-menu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:220px;
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  box-shadow:0 18px 38px rgba(2,6,23,.14);
  padding:10px;
  display:none;
}
.nb-dd.is-open .nb-dd-menu{display:block;}
.nb-dd-menu a{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  color:rgba(15,23,42,.86);
  font-weight:950;
  font-size:13.5px;
}
.nb-dd-menu a:hover{background:rgba(2,6,23,.06)}
.nb-dd-menu-right{right:0; left:auto;}

.nb-user-btn{background:rgba(2,6,23,.03); border:1px solid rgba(15,23,42,.10)}
.nb-user-dot{width:8px; height:8px; border-radius:50%; background:var(--accent2); display:inline-block}

/* Mobile burger */
.nb-burger{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.55);
  cursor:pointer;
  display:none;
  position:relative;
}
.nb-burger span{
  position:absolute;
  left:12px; right:12px;
  height:2px;
  background:rgba(15,23,42,.82);
  border-radius:999px;
}
.nb-burger span:nth-child(1){top:14px}
.nb-burger span:nth-child(2){top:21px}
.nb-burger span:nth-child(3){top:28px}

/* Mobile drawer */
.nb-mobile{display:none;}
.nb-mobile.is-open{display:block;}
.nb-mobile{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.55);
  z-index:60;
}
.nb-mobile-panel{
  position:absolute;
  top:0; right:0;
  width:min(360px, 92vw);
  height:100%;
  background:rgba(255,255,255,.90);
  backdrop-filter: blur(18px);
  border-left:1px solid rgba(15,23,42,.10);
  padding:16px;
  animation:nbSlideIn .18s ease;
}
@keyframes nbSlideIn{from{transform:translateX(14px); opacity:0}to{transform:translateX(0); opacity:1}}
.nb-mobile-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:10px}
.nb-mobile-title{font-weight:1000; font-size:16px}
.nb-mobile-close{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(2,6,23,.03);
  cursor:pointer;
  font-size:22px;
}
.nb-mobile-links{display:flex; flex-direction:column; gap:8px}
.nb-m-link{padding:12px 12px; border-radius:16px; text-decoration:none; font-weight:950; color:rgba(15,23,42,.86); background:rgba(2,6,23,.03)}
.nb-m-link:hover{background:rgba(2,6,23,.06)}
.nb-m-details{background:rgba(2,6,23,.03); border-radius:16px; padding:10px 12px}
.nb-m-details summary{cursor:pointer; font-weight:1000; list-style:none}
.nb-m-sub{display:flex; flex-direction:column; gap:6px; margin-top:10px}
.nb-m-sub a{padding:10px 10px; border-radius:14px; text-decoration:none; font-weight:950; color:rgba(15,23,42,.86); background:rgba(255,255,255,.70); border:1px solid rgba(15,23,42,.08)}

/* Fullscreen hero */
.nb-hero-full{
  position:relative;
  height:calc(100vh - 72px);
  min-height:560px;
  width:100%;
  margin:0;
  overflow:hidden;
  background:radial-gradient(1200px 700px at 18% 30%, rgba(23,162,255,.28), transparent 62%),
             radial-gradient(1000px 650px at 82% 30%, rgba(34,197,94,.22), transparent 62%),
             linear-gradient(180deg, #061826, #070f18);
}
.nb-hero-full canvas{position:absolute; inset:0; width:100%; height:100%;}
.nb-hero-full-overlay{
  position:relative;
  height:100%;
  max-width:1200px;
  margin:0 auto;
  padding:62px 22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:16px;
  color:#e5e7eb;
}
.nb-hero-glass{
  width:min(900px, 100%);
  padding:26px 22px;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  box-shadow:0 18px 54px rgba(0,0,0,.20);
}
.nb-scrollhint{
  position:absolute;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  color:rgba(226,232,240,.86);
  text-decoration:none;
  font-weight:950;
  font-size:13px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
}
.nb-scrollhint:hover{filter:brightness(1.08)}

/* Glass cards + hover animation */
.nb-card{
  background:rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border:1px solid rgba(15,23,42,.12);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.nb-card:hover{transform:translateY(-4px); box-shadow:0 18px 44px rgba(2,6,23,.14); border-color:rgba(34,197,94,.28)}

.nb-btn{transition:transform .15s ease, filter .15s ease, box-shadow .15s ease;}
.nb-btn:hover{transform:translateY(-1px); box-shadow:0 12px 26px rgba(2,6,23,.18)}

/* Reveal animation on scroll */
[data-reveal]{opacity:0; transform:translateY(18px); transition:opacity .68s ease, transform .68s ease;}
[data-reveal].is-visible{opacity:1; transform:translateY(0)}

/* Responsive */
@media (max-width: 980px){
  .nb-topnav{display:none;}
  .nb-burger{display:inline-block;}
  .nb-topbrand{min-width:auto;}
  .nb-main{padding-top:72px}
}
@media (max-width: 720px){
  .nb-hero-full{min-height:520px}
  .nb-hero-full-overlay{padding:42px 16px}
  .nb-hero-h1{font-size:34px}
}
