@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;0,600;0,700;0,800;1,700;1,800&family=Inter:wght@400;500;600&display=swap");

.hs-site{
  --hs-font-display:"Montserrat",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  --hs-font-body:"Inter",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;

  --hs-topbar-h:66px;
  --hs-max-w:1120px;

  --hs-white:#ffffff;
  --hs-page-bg:#eef0f4;
  --hs-card-bg:#ffffff;
  --hs-card-border:#e2e6ee;
  --hs-card-shadow:0 10px 20px rgba(15,20,30,0.10);

  --hs-text:#1b2430;
  --hs-muted:#556273;
  --hs-muted-2:#6b7787;

  --hs-hero-text:rgba(255,255,255,0.96);
  --hs-hero-muted:rgba(255,255,255,0.78);

  --hs-navy:#0a0f1e;
  --hs-blue-title:#1e3f7a;

  --hs-red:#d33136;
  --hs-red-dark:#b92024;

  --hs-radius:8px;
  --hs-radius-lg:10px;

  --hs-container-pad:22px;
  --hs-gap:18px;

  margin:0;
  min-height:100vh;
  font-family:var(--hs-font-body);
  background:var(--hs-page-bg);
}

.hs-site *{
  box-sizing:border-box;
}

.hs-page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.hs-main{
  flex:1;
  display:block;
}

.hs-container{
  width:100%;
  max-width:var(--hs-max-w);
  margin:0 auto;
  padding:0 var(--hs-container-pad);
}

.hs-focus:focus-visible{
  outline:3px solid rgba(122,197,255,0.85);
  outline-offset:3px;
  border-radius:10px;
}

.hs-hero{
  position:relative;
  width:100%;
  background-image:url("hockeysphere-v3-background-3.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  overflow:hidden;
}

.hs-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(880px 460px at 72% 42%, rgba(211,49,54,0.55), transparent 64%),
    radial-gradient(920px 520px at 28% 44%, rgba(48,132,255,0.42), transparent 66%),
    linear-gradient(180deg, rgba(6,10,20,0.70), rgba(6,10,20,0.45));
}

.hs-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle at 1px 1px, rgba(255,255,255,0.14) 1px, transparent 1.9px);
  background-size:10px 10px;
  opacity:0.28;
  pointer-events:none;
}

.hs-topbar{
  position:relative;
  z-index:5;
  /* height:var(--hs-topbar-h); */
  height: 54px;
  display:flex;
  align-items:center;
}

.hs-topbar-inner{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.hs-nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.hs-nav-link{
  font-family:var(--hs-font-display);
  font-weight:700;
  letter-spacing:0.2px;
  font-size:15px;
  color:rgba(255,255,255,0.92);
  text-decoration:none;
  transition:opacity 160ms ease, transform 160ms ease;
}

.hs-nav-link:hover{
  opacity:0.92;
  transform:translateY(-1px);
}

.hs-nav-link-active{
  opacity:1;
  text-decoration:none;
}

.hs-menu-btn{
  /* width:42px;
  height:42px; */
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.20);
  background:rgba(0,0,0,0.20);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  transition:background 160ms ease, border-color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.hs-menu-btn:hover{
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.28);
}

.hs-menu-btn:active{
  transform:scale(0.98);
}

.hs-icon-hamburger{
  /* width:22px; */
  width:18px;
  height:2px;
  border-radius:999px;
  background:rgba(255,255,255,0.95);
  box-shadow:0 -7px 0 rgba(255,255,255,0.95), 0 7px 0 rgba(255,255,255,0.95);
}

.hs-icon-x{
  /* width:22px; */
  width:18px;
  /* height:22px; */
  height:18px;
  position:relative;
}

.hs-icon-x::before,
.hs-icon-x::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:22px;
  height:2px;
  border-radius:999px;
  background:rgba(255,255,255,0.95);
  transform-origin:center;
}

.hs-icon-x::before{
  transform:translate(-50%,-50%) rotate(45deg);
}

.hs-icon-x::after{
  transform:translate(-50%,-50%) rotate(-45deg);
}

.hs-hero-center{
  position:relative;
  z-index:5;
  /* padding:30px 0 34px 0; */
  padding-bottom: 30px;
}

.hs-hero-stack{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  /* gap:14px; */
      gap: 10px;
  /* padding:14px 0 0 0; */
}

.hs-hero-logo-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
}

.hs-hero-mark{
  width:auto;
  height:70px;
  object-fit:contain;
  filter:drop-shadow(0 16px 28px rgba(0,0,0,0.55));
}

.hs-hero-wordmark{
  font-family:var(--hs-font-display);
  font-style:italic;
  font-weight:800;
  letter-spacing:0.3px;
  font-size:64px;
  line-height:1;
  color:var(--hs-hero-text);
  text-shadow:0 14px 26px rgba(0,0,0,0.55);
}

.hs-hero-tagline{
  font-family:var(--hs-font-display);
  font-weight:600;
  font-size:20px;
  color:var(--hs-hero-muted);
  margin:0;
  max-width:860px;
}

.hs-cta-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  padding-top:4px;
}

.hs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 18px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.18);
  font-family:var(--hs-font-display);
  font-weight:700;
  font-size:14px;
  letter-spacing:0.2px;
  text-decoration:none;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  transition:transform 160ms ease, filter 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.hs-btn:active{
  transform:translateY(1px);
}

.hs-btn-primary{
  color:#fff;
  background:linear-gradient(180deg, var(--hs-red) 0%, var(--hs-red-dark) 100%);
  border-color:rgba(0,0,0,0.28);
  box-shadow:0 10px 18px rgba(0,0,0,0.35);
}

.hs-btn-primary:hover{
  filter:brightness(1.04);
}

.hs-btn-secondary{
  color:var(--hs-text);
  background:#f4f6fa;
  border-color:#d9dee8;
  box-shadow:0 10px 18px rgba(15,20,30,0.12);
}

.hs-btn-secondary:hover{
  filter:brightness(1.02);
}

.hs-hero .hs-btn-secondary{
  color:#fff;
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.22);
  box-shadow:0 10px 18px rgba(0,0,0,0.30);
}

.hs-hero .hs-btn-secondary:hover{
  filter:brightness(1.05);
}

.hs-btn-caret{
  width:0;
  height:0;
  border-left:5px solid transparent;
  border-right:5px solid transparent;
  border-top:6px solid rgba(255,255,255,0.92);
  margin-top:2px;
}

.hs-content{
  background:var(--hs-page-bg);
  padding:26px 0 52px 0;
}

.hs-section-title-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.hs-section-title{
  margin:0;
  font-family:var(--hs-font-display);
  font-weight:800;
  font-size:22px;
  color:var(--hs-text);
}

.hs-section-subtitle{
  margin:0;
  font-family:var(--hs-font-body);
  font-weight:500;
  font-size:14px;
  color:var(--hs-muted);
}

.hs-grid{
  display:grid;
  gap:var(--hs-gap);
}

.hs-grid-2{
  grid-template-columns:repeat(2, minmax(0,1fr));
}

.hs-card{
  background:var(--hs-card-bg);
  border:1px solid var(--hs-card-border);
  border-radius:var(--hs-radius-lg);
  box-shadow:var(--hs-card-shadow);
  padding:18px 18px 14px 18px;
}

.hs-card-title{
  margin:0 0 10px 0;
  font-family:var(--hs-font-display);
  font-weight:800;
  font-size:20px;
  color:var(--hs-blue-title);
}

.hs-card-text{
  margin:0;
  font-size:13px;
  line-height:1.6;
  color:var(--hs-muted-2);
}

.hs-card-footer{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.hs-readmore{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-family:var(--hs-font-display);
  font-weight:700;
  font-size:13px;
  color:var(--hs-red);
  transition:transform 160ms ease, opacity 160ms ease;
}

.hs-readmore:hover{
  opacity:0.92;
  transform:translateX(1px);
}

.hs-readmore-bar{
  width:2px;
  height:14px;
  background:var(--hs-red);
  border-radius:999px;
}

.hs-layout{
  display:grid;
  gap:var(--hs-gap);
}

.hs-layout-columns{
  grid-template-columns:1.3fr 0.7fr;
  align-items:start;
}

.hs-panel{
  background:var(--hs-card-bg);
  border:1px solid var(--hs-card-border);
  border-radius:var(--hs-radius-lg);
  box-shadow:var(--hs-card-shadow);
  padding:18px;
}

.hs-panel-title{
  margin:0 0 10px 0;
  font-family:var(--hs-font-display);
  font-weight:800;
  font-size:18px;
  color:var(--hs-text);
}

.hs-panel-text{
  margin:0;
  font-size:13px;
  line-height:1.65;
  color:var(--hs-muted);
}

.hs-pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.hs-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background:#f3f5f8;
  border:1px solid #e3e7ee;
  font-family:var(--hs-font-display);
  font-weight:700;
  font-size:12px;
  color:#2c3a4a;
}

.hs-box-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:var(--hs-gap);
}

.hs-box{
  background:var(--hs-card-bg);
  border:1px solid var(--hs-card-border);
  border-radius:var(--hs-radius-lg);
  box-shadow:var(--hs-card-shadow);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.hs-box-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.hs-box-title{
  margin:0;
  font-family:var(--hs-font-display);
  font-weight:800;
  font-size:16px;
  color:var(--hs-text);
}

.hs-box-text{
  margin:0;
  font-size:13px;
  line-height:1.6;
  color:var(--hs-muted);
}

.hs-article-card{
  background:var(--hs-card-bg);
  border:1px solid var(--hs-card-border);
  border-radius:var(--hs-radius-lg);
  box-shadow:var(--hs-card-shadow);
  overflow:hidden;
}

.hs-article-head{
  padding:18px 18px 12px 18px;
  border-bottom:1px solid #e6eaf1;
}

.hs-article-title{
  margin:0;
  font-family:var(--hs-font-display);
  font-weight:800;
  font-size:26px;
  color:var(--hs-text);
}

.hs-article-meta{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.hs-article-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.hs-article-h{
  margin:10px 0 0 0;
  font-family:var(--hs-font-display);
  font-weight:800;
  font-size:16px;
  color:var(--hs-text);
}

.hs-article-p{
  margin:0;
  font-size:14px;
  line-height:1.78;
  color:var(--hs-muted);
}

.hs-footer{
  margin-top:auto;
  background:#0e1220;
  color:rgba(255,255,255,0.88);
}

.hs-footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  padding:18px 0;
}

.hs-footer-left{
  display:flex;
  align-items:center;
  gap:10px;
}

.hs-footer-mark{
  width:26px;
  height:26px;
  object-fit:contain;
  opacity:0.95;
}

.hs-footer-text{
  font-family:var(--hs-font-display);
  font-weight:700;
  font-size:13px;
  color:rgba(255,255,255,0.78);
}

.hs-footer-links{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.hs-footer-link{
  font-family:var(--hs-font-display);
  font-weight:700;
  font-size:13px;
  color:rgba(255,255,255,0.82);
  text-decoration:none;
  opacity:0.92;
  transition:opacity 160ms ease, transform 160ms ease;
}

.hs-footer-link:hover{
  opacity:1;
  transform:translateY(-1px);
}

.hs-mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  opacity:0;
  pointer-events:none;
  transition:opacity 220ms ease;
  z-index:50;
}

.hs-mobile-menu{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:80vw;
  max-width:440px;
  background:#0c1020;
  box-shadow:0 18px 40px rgba(0,0,0,0.55);
  transform:translateX(100%);
  transition:transform 260ms ease;
  z-index:60;
  display:flex;
  flex-direction:column;
}

.hs-mobile-menu-header{
  /* height:var(--hs-topbar-h); */
  height: 55px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 var(--hs-container-pad);
  border-bottom:1px solid rgba(255,255,255,0.10);
}

.hs-mobile-menu-title{
  font-family:var(--hs-font-display);
  font-weight:800;
  font-size:15px;
  letter-spacing:0.2px;
  color:rgba(255,255,255,0.92);
}

.hs-mobile-menu-body{
  padding:14px var(--hs-container-pad);
  display:flex;
  flex-direction:column;
  gap:10px;
}

.hs-mobile-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
  text-decoration:none;
  font-family:var(--hs-font-display);
  font-weight:800;
  font-size:14px;
  color:rgba(255,255,255,0.92);
  transition:background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.hs-mobile-link:hover{
  background:rgba(255,255,255,0.10);
  border-color:rgba(255,255,255,0.18);
}

.hs-mobile-link:active{
  transform:scale(0.99);
}

.hs-scroll-lock{
  overflow:hidden;
}

.hs-menu-open .hs-mobile-overlay{
  opacity:1;
  pointer-events:auto;
}

.hs-menu-open .hs-mobile-menu{
  transform:translateX(0);
}

.hs-menu-open [data-hs-open]{
  opacity:0;
  pointer-events:none;
  visibility:hidden;
}

@media (max-width: 980px){
  .hs-hero-wordmark{
    font-size:56px;
  }
  .hs-box-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 860px){
  .hs-nav{
    display:none;
  }
  .hs-menu-btn{
    display:flex;
  }
  .hs-layout-columns{
    grid-template-columns:1fr;
  }
  .hs-grid-2{
    grid-template-columns:1fr;
  }
}

@media (max-width: 560px){
  .hs-container {
    padding: 0 11px;
  }
  .hs-mobile-menu-header {
    padding: 0 11px; 
  }
  .hs-mobile-menu-body {
    padding: 14px 11px; 
  }
  .hs-hero-mark{
    width:auto;
    height:60px;
  }
  .hs-hero-wordmark{
    font-size:44px;
  }
  .hs-hero-tagline{
    font-size:18px;
  }
  .hs-box-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 460px){
  .hs-hero-mark{
    width:auto;
    height:54px;
  }
  .hs-hero-wordmark{
    font-size:34px;
  }
  .hs-hero-tagline{
    font-size:18px;
  }
  .hs-box-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 360px){
  
  .hs-hero-mark{
    width:auto;
    height:44px;
  }
  .hs-hero-wordmark{
    font-size:24px;
  }
  .hs-hero-tagline{
    font-size:18px;
  }
  .hs-box-grid{
    grid-template-columns:1fr;
  }
}