:root{
  /* From your logo / flyer palette */
  --navy: #142854;
  --navy-deep: #071B48;
  --gold: #F8B959;
  --offwhite: #F1F1F1;
  --white: #ffffff;
  --ink: #0b1220;
  --muted: rgba(11, 18, 32, 0.72);

  --radius: 16px;
  --shadow: 0 12px 30px rgba(7, 27, 72, 0.14);
  --shadow-soft: 0 10px 24px rgba(7, 27, 72, 0.10);

  --wrap: 1120px;
  --display: "League Spartan", "Poppins", "Montserrat", "Segoe UI", sans-serif;
  --sans: "Work Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* Base */
*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }

body{
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(248,185,89,0.16), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(20,40,84,0.10), transparent 60%),
    var(--white);
  line-height: 1.55;
}

img{ max-width: 100%; display:block; }

.wrap{
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: relative;
  z-index: 40;
  pointer-events: none;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: inherit;
}

.brand-logo{
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-name{
  letter-spacing: 0.06em;
  font-weight: 800;
  color: var(--navy-deep);
}

.bubble-menu{
  position: fixed;
  left: 0;
  right: 0;
  top: calc(18px + env(safe-area-inset-top, 0px));
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 32px;
  pointer-events: none;
  z-index: 45;
}

.bubble-menu.absolute{ position: absolute; }
.bubble-menu.fixed{ position: fixed; }

.bubble-menu .bubble{
  --bubble-size: 56px;
  width: var(--bubble-size);
  height: var(--bubble-size);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 15px 32px rgba(7,27,72,0.18);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  pointer-events: auto;
  border: 1px solid rgba(20,40,84,0.08);
  backdrop-filter: blur(4px);
}

.bubble-menu .logo-bubble{
  width: auto;
  min-width: 240px;
  padding: 0 24px;
  gap: 12px;
}

.bubble-menu .toggle-bubble{
  width: var(--bubble-size);
  height: var(--bubble-size);
}

.menu-btn{
  border: none;
  background: transparent;
  padding: 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.menu-line{
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  align-self:center;
}

.menu-line + .menu-line{
  margin-top: 6px;
}

.menu-btn.open .menu-line:first-child{
  transform: translateY(4px) rotate(45deg);
}

.menu-btn.open .menu-line:last-child{
  transform: translateY(-4px) rotate(-45deg);
}

.bubble-menu-items{
  position: fixed;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 120px 40px 80px;
  background: radial-gradient(circle at top, rgba(20,40,84,0.85), rgba(7,27,72,0.9));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 40;
}

.bubble-menu-items.is-visible{
  opacity: 1;
  pointer-events: auto;
}

.bubble-menu-list{
  list-style:none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  row-gap: 18px;
  max-width: 1200px;
  width: min(100%, 1200px);
  justify-content:center;
}

.pill-col{
  flex: 1 1 calc(33.333% - 12px);
  display:flex;
  justify-content:center;
}

.pill-link{
  --pill-bg: rgba(255,255,255,0.95);
  --pill-color: var(--ink);
  --hover-bg: var(--navy);
  --hover-color: var(--white);
  --item-rot: 0deg;
  --delay: 0s;
  width: 100%;
  max-width: 320px;
  text-decoration:none;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--pill-color);
  background: var(--pill-bg);
  border-radius: 999px;
  min-height: clamp(120px, 14vw, 180px);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 12px 34px rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.6);
  transform: rotate(var(--item-rot)) scale(0.85);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
  transition-delay: var(--delay);
}

.bubble-menu-items.is-visible .pill-link{
  opacity: 1;
  transform: rotate(var(--item-rot)) scale(1);
}

.bubble-menu-items .pill-link:hover{
  background: var(--hover-bg);
  color: var(--hover-color);
  transform: rotate(var(--item-rot)) scale(1.05);
}

.bubble-menu-items .pill-link:active{
  transform: rotate(var(--item-rot)) scale(0.96);
}

.pill-label{
  display:inline-block;
  letter-spacing: 0.1em;
}

body.bubble-menu-open{
  overflow:hidden;
}

/* Hero */
.hero{
  padding: 64px 0 34px;
  scroll-margin-top: 96px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

h1{
  margin: 0 0 14px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

.hero-copy h1{
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 700;
}

.lede{
  margin: 0;
  font-size: clamp(16px, 2.0vw, 20px);
  color: var(--muted);
  max-width: 52ch;
}

.hero .lede{
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  font-family: var(--display);
}

.gradual-blur{
  filter: blur(18px);
  opacity: 0;
  transform: translateY(18px);
  transition: filter 0.8s ease, opacity 0.8s ease, transform 0.8s ease;
}

.gradual-blur-visible{
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.photo-frame{
  background: transparent;
  border: none;
  border-radius: var(--radius);
  box-shadow: none;
  padding: 0;
  position: relative;
}

.photo-frame img{
  border-radius: var(--radius);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Sections */
.section{
  padding: 54px 0;
  scroll-margin-top: 96px;
}

.section-tint{
  background: linear-gradient(180deg, rgba(241,241,241,0.72), rgba(241,241,241,0.28));
  border-top: 1px solid rgba(20,40,84,0.06);
  border-bottom: 1px solid rgba(20,40,84,0.06);
}

.section-impact{
  background: linear-gradient(135deg, rgba(20,40,84,0.06), rgba(248,185,89,0.08));
  border-top: 1px solid rgba(20,40,84,0.08);
  border-bottom: 1px solid rgba(20,40,84,0.08);
}

.impact-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items:center;
}

.impact-media{
  margin:0;
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(7,27,72,0.24);
  border: 1px solid rgba(20,40,84,0.14);
  background: rgba(255,255,255,0.9);
}

.impact-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.impact-copy{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.eyebrow{
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin:0;
}

.impact-text{
  margin:0;
  font-size: 18px;
  color: rgba(11, 18, 32, 0.86);
}

.scroll-reveal{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-visible{
  opacity: 1;
  transform: translateY(0);
}


.section-grid{
  display:grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 28px;
  align-items: start;
}

h2{
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: 900;
  color: var(--navy-deep);
}

.rule{
  margin-top: 14px;
  width: 74px;
  height: 4px;
  border-radius: 99px;
  background: var(--gold);
}

.panel{
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(20,40,84,0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.panel p{
  margin: 0;
  color: rgba(11, 18, 32, 0.82);
  font-size: 16px;
}

.section-reviews{
  position: relative;
}

.reviews-grid{
  align-items: center;
}

.reviews-stack{
  display:flex;
  flex-direction: column;
  align-items:flex-end;
  gap: 12px;
}

.reviews-intro{
  margin-top: 16px;
  color: rgba(11, 18, 32, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.reviews-hint{
  margin-top: 0;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.45);
  text-align: center;
  width: min(520px, 100%);
}

.card-swap{
  position: relative;
  min-height: 320px;
  perspective: 1400px;
  display: grid;
  justify-items: end;
  align-items: center;
}

.review-card{
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(140deg, #ffffff, #f7f7f7);
  border: 1px solid rgba(20,40,84,0.12);
  box-shadow: 0 18px 38px rgba(7,27,72,0.16);
  transform-style: preserve-3d;
  width: min(520px, 100%);
  transition: transform 0.6s ease, filter 0.5s ease, box-shadow 0.4s ease;
  pointer-events: none;
  visibility: hidden;
  transform: translate3d(0, 40px, -80px) scale(0.9) rotateX(12deg);
}

.review-card.is-active{
  transform: translate3d(0, 0, 0) scale(1) rotateX(0deg) rotate(-2deg);
  pointer-events: auto;
  visibility: visible;
  z-index: 3;
  filter: none;
  box-shadow: 0 25px 55px rgba(7,27,72,0.22);
}

.review-card.is-next{
  visibility: visible;
  transform: translate3d(-18px, -18px, -60px) scale(0.96) rotateX(6deg) rotate(-1deg);
  z-index: 2;
  filter: none;
  box-shadow: 0 20px 40px rgba(7,27,72,0.2), inset 0 0 0 1px rgba(255,255,255,0.5);
}

.review-card.is-queue{
  visibility: visible;
  transform: translate3d(-34px, -34px, -120px) scale(0.92) rotateX(12deg);
  z-index: 1;
  filter: none;
  box-shadow: 0 16px 32px rgba(7,27,72,0.18), inset 0 0 0 1px rgba(255,255,255,0.4);
}

.review-card p:not(.review-label){
  margin: 0;
  color: rgba(11, 18, 32, 0.82);
  font-size: 18px;
}

.review-label{
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--gold);
}

.review-card p.review-label{
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 14px;
}

.impact-copy h2{
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.01em;
  text-transform: none;
}

.section-partner{
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, rgba(248,185,89,0.12), rgba(20,40,84,0.05));
  border-top: 1px solid rgba(20,40,84,0.08);
  border-bottom: 1px solid rgba(20,40,84,0.08);
}

.partner-grid{
  display:block;
  position: relative;
  z-index: 1;
}

.partner-copy{
  display:flex;
  flex-direction:column;
  gap: 18px;
  align-items:flex-start;
}

.partner-copy h2{
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.01em;
  text-transform: none;
  margin: 0;
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
}

.partner-gallery{
  margin-top: 20px;
  padding-top: 16px;
  display:flex;
  width: 100%;
  justify-content:center;
}

.partner-description{
  margin: 0;
  font-size: 18px;
  color: rgba(11, 18, 32, 0.86);
  line-height: 1.6;
}

.partner-gallery .bounceCardsContainer{
  margin: 0 auto;
}

.bounceCardsContainer{
  position: relative;
  width: min(520px, 100%);
  height: 320px;
}

.partner-logo-bg{
  position: absolute;
  top: -6%;
  right: -10%;
  width: clamp(500px, 60vw, 940px);
  height: clamp(500px, 60vw, 940px);
  background-image: url("assets/felt.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.12;
  filter: blur(0.6px);
  transform: rotate(6deg);
  pointer-events: none;
}

.bounce-card{
  position:absolute;
  width: clamp(160px, 24vw, 200px);
  aspect-ratio: 1 / 1;
  border: 5px solid var(--white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(7,27,72,0.28);
  background: var(--offwhite);
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.2s ease;
}

.bounce-card .image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bounce-card:hover{
  box-shadow: 0 18px 40px rgba(7,27,72,0.32);
}

.bounce-card:focus-visible{
  box-shadow: 0 0 0 4px rgba(248,185,89,0.45), 0 20px 40px rgba(7,27,72,0.32);
}

/* Cards */
.card-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card{
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(20,40,84,0.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 18px rgba(7, 27, 72, 0.08);
  --mx: 0px;
  --my: 0px;
  transform: translate(var(--mx), var(--my));
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.card p{
  margin: 0;
  color: rgba(11, 18, 32, 0.82);
}

.card:hover{
  box-shadow: 0 16px 32px rgba(7,27,72,0.18);
}

/* Ticks list */
.ticks{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 12px;
}

.ticks li{
  position: relative;
  padding-left: 30px;
  color: rgba(11, 18, 32, 0.82);
}

.ticks li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--gold);
  box-shadow: 0 6px 14px rgba(248,185,89,0.26);
}

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 0;
}

.contact-action{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: calc(var(--radius) - 2px);
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(20,40,84,0.10);
  background: linear-gradient(160deg, rgba(241,241,241,0.9), rgba(255,255,255,0.8));
  box-shadow: 0 12px 28px rgba(7,27,72,0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.contact-action:hover{
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 32px rgba(7,27,72,0.18);
}

.contact-address{
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(20,40,84,0.10);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 12px 28px rgba(7,27,72,0.12);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(11, 18, 32, 0.82);
}

.contact-address address{
  margin: 0;
  font-style: normal;
  line-height: 1.5;
}

.contact-address__label{
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--gold);
}

.contact-address__company{
  margin: 0;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--navy-deep);
}

.contact-icon{
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(20,40,84,0.08);
  border: 1px solid rgba(20,40,84,0.16);
  backdrop-filter: blur(4px);
}

.contact-icon svg{
  width: 28px;
  height: 28px;
  fill: var(--navy-deep);
}

.contact-info{
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14px;
  color: rgba(11, 18, 32, 0.68);
}

.contact-info strong{
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-deep);
}

.contact-arrow svg{
  width: 26px;
  height: 26px;
  stroke: var(--navy-deep);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  opacity: 0.55;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-action:hover .contact-arrow svg{
  transform: translateX(4px);
  opacity: 1;
}

/* Tagline */
.tagline{
  padding: 40px 0 70px;
}

.tagline-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.tagline-text{
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--navy-deep);
}

.tagline-meta{
  text-align:right;
  color: rgba(11,18,32,0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tagline-meta p{
  margin: 0;
  letter-spacing: 0.03em;
}

.tagline-meta address{
  margin: 4px 0 0;
  letter-spacing: 0.03em;
  font-style: normal;
  line-height: 1.5;
}

.tagline-meta__title{
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--navy-deep);
}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{
    grid-template-columns: 1fr;
  }
  .hero{
    padding-top: 110px;
  }
  .photo-frame img{
    height: 320px;
  }
  .section-grid{
    grid-template-columns: 1fr;
  }
  .card-grid{
    grid-template-columns: 1fr;
  }
  .bubble-menu{
    padding: 0 18px;
  }
  .bubble-menu .bubble{
    --bubble-size: 48px;
  }
  .bubble-menu .logo-bubble{
    min-width: 180px;
    padding: 0 16px;
  }
  .impact-grid{
    grid-template-columns: 1fr;
  }
  .card-swap{
    min-height: auto;
  }
  .bubble-menu-items{
    align-items: flex-start;
    padding: 110px 20px 120px;
    overflow-y: visible;
  }
  .pill-col{
    flex: 1 1 100%;
  }
  .pill-link{
    max-width: 100%;
    min-height: 70px;
    font-size: clamp(0.95rem, 4vw, 1.4rem);
    letter-spacing: 0.18em;
    padding: 14px 0;
  }
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .contact-action{
    padding: 12px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }
  .contact-address{
    padding: 18px;
    text-align: center;
    align-items: center;
  }
  .contact-info{
    font-size: 11px;
  }
  .contact-info strong{
    font-size: 14px;
  }
  .contact-icon{
    width: 44px;
    height: 44px;
  }
  .reviews-stack{
    align-items:center;
  }
  .card-swap{
    width: 100%;
    justify-items:center;
    min-height: 0;
  }
  .review-card{
    width: min(180px, 100%);
    border-radius: 16px;
    min-height: 180px;
    padding: 14px;
  }
  .review-card p:not(.review-label){
    font-size: 12px;
    line-height: 1.4;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
  }
  .review-label{
    font-size: 11px;
  }
  .partner-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .partner-gallery{
    padding-top: 0;
  }
  .bounceCardsContainer{
    height: 280px;
  }
  .partner-logo-bg{
    width: clamp(280px, 70vw, 520px);
    height: clamp(280px, 70vw, 520px);
    right: -20%;
    top: 18%;
    transform: rotate(4deg);
  }
}

@media (max-width: 600px){
  .section-partner{
    padding-top: 72px;
  }
  .tagline{
    padding: 20px 0 32px;
  }
  .tagline-inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .tagline-text{
    font-size: clamp(0.85rem, 3.6vw, 1rem);
    letter-spacing: 0.12em;
  }
  .tagline-meta{
    text-align: center;
    font-size: 0.9rem;
  }
  .bubble-menu{
    padding: 0 14px;
    gap: 10px;
  }
  .brand-name{
    display: none;
  }
  .bubble-menu .logo-bubble{
    min-width: 96px;
    padding: 0;
    justify-content: center;
  }
  .brand-logo{
    width: 44px;
    height: 44px;
  }
  .pill-link{
    min-height: 60px;
    font-size: clamp(0.78rem, 3.4vw, 1rem);
    letter-spacing: 0.12em;
    padding: 10px 0;
  }
  .pill-label{
    font-size: 0.9em;
  }
  .partner-copy{
    text-align: center;
    align-items: center;
    gap: 16px;
  }
  .partner-gallery{
    width: 100%;
    justify-content:center;
  }
  .bounceCardsContainer{
    height: 240px;
  }
  .partner-logo-bg{
    width: clamp(260px, 72vw, 340px);
    height: clamp(260px, 72vw, 340px);
    left: 74%;
    right: auto;
    top: 124px;
    bottom: auto;
    opacity: 0.07;
    transform: translateX(-50%) rotate(8deg);
  }
  .bounce-card{
    cursor: default;
  }
  .bounce-card:hover{
    box-shadow: 0 12px 34px rgba(7,27,72,0.28);
  }
}
.glare-hover{
  --gh-angle: -30deg;
  --gh-duration: 800ms;
  --gh-size: 300%;
  --gh-rgba: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.glare-hover::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    var(--gh-angle),
    hsla(0, 0%, 0%, 0) 60%,
    var(--gh-rgba) 70%,
    hsla(0, 0%, 0%, 0),
    hsla(0, 0%, 0%, 0) 100%
  );
  background-size: var(--gh-size) var(--gh-size), 100% 100%;
  background-repeat: no-repeat;
  background-position: -100% -100%, 0 0;
  transition: background-position var(--gh-duration) ease;
  mix-blend-mode: screen;
  z-index: 1;
}

@media (min-width: 601px) and (hover: hover) and (pointer: fine){
  .glare-hover:focus-visible::before{
    background-position: 100% 100%, 0 0;
  }

  .glare-hover:hover::before{
    background-position: 100% 100%, 0 0;
  }
}
