/* ================================
   main.css — CLEAN FULL VERSION
   ================================ */

/* ---------- Variables ---------- */
:root{
  --brand:#7a2cff;
  --brand-2:#a06bff;
  --ink:#eae7ff;
  --ink-dim:#cfc7ff;
  --bg-900:#0b0b12;
  --bg-800:#111120;
  --glass:rgba(17,17,32,.75);
  --radius:14px;

  /* header sizing */
  --header-pad-y: 5px;
  --logo-size: 100px;
  --header-height: calc((var(--header-pad-y) * 2) + var(--logo-size));
}

/* ---------- Base ---------- */
html, body {
  background: var(--bg-900);
  margin: 0;
  color: var(--ink);
}

/* always offset content below fixed header */
body {
  padding-top: var(--header-height);
}

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  backdrop-filter: saturate(120%) blur(8px);
  background: linear-gradient(to right, var(--bg-800), var(--glass));
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav{
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--header-pad-y) 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}

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

.brand-logo{
  width: var(--logo-size);
  height: var(--logo-size);
  object-fit:contain;
  filter: drop-shadow(0 2px 6px rgba(122,44,255,.35));
}

.brand-text{
  line-height:1;
  color:var(--ink);
  display:flex; flex-direction:column;
}
.brand-text strong{ font-size:20px; letter-spacing:.6px; }
.brand-text span{ font-size:12px; color:var(--ink-dim); }

/* Nav links */
.nav-links{
  justify-self:end;
  display:flex; align-items:center; gap:18px;
}
.nav-links a{
  color:var(--ink);
  text-decoration:none;
  font-size:14px;
  letter-spacing:.2px;
  padding:8px 6px;
  position:relative;
  opacity:.95;
  transition:opacity .2s ease;
}
.nav-links a::after{
  content:"";
  position:absolute; left:8px; right:8px; bottom:4px; height:2px;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  transform:scaleX(0); transform-origin:left;
  transition:transform .22s ease;
  border-radius:2px;
}
.nav-links a:hover{ opacity:1; }
.nav-links a:hover::after{ transform:scaleX(1); }

/* CTA */
.nav-cta{
  margin-left:6px;
  padding:10px 14px !important;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  border-radius:999px;
  box-shadow:0 6px 24px rgba(122,44,255,.35);
}
.nav-cta::after{ display:none; }

/* Hamburger (mobile) */
.hamburger{
  justify-self:end;
  width:42px; height:42px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
  display:none; align-items:center; justify-content:center;
  gap:5px; cursor:pointer;
}
.hamburger span{
  width:18px; height:2px; background:var(--ink);
  display:block;
  transition:transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero-wrap{
  max-width:1200px; margin:0 auto;
  padding: clamp(32px, 5vw, 64px) 20px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:40px; align-items:center;
}

/* heading glow-up */
.walsh-heading-xlarge-white{
  font-size: clamp(38px, 5vw, 64px);
  line-height:1.08;
  letter-spacing:.2px;
  color:var(--ink);
}
.walsh-text-burst{
  background: linear-gradient(90deg,var(--brand),var(--brand-2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* subtle card frame */
.walsh-hero-sub-bg{
  border-radius: var(--radius);
  background: radial-gradient(120% 120% at 100% 0%, rgba(122,44,255,.12) 0%, rgba(255,255,255,0) 55%),
              linear-gradient(to bottom, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 20px 60px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
  padding: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero-wrap{ grid-template-columns:1fr; gap:26px; }
}

@media (max-width: 900px){
  :root{
    --header-pad-y: 16px;
    --logo-size: 50px;
    --header-height: calc((var(--header-pad-y) * 2) + var(--logo-size));
  }
  body{ padding-top: var(--header-height); }

  .hamburger{ display:flex; }
  .nav{ grid-template-columns:auto auto; }
  .nav-links{
    position: fixed;
    inset: calc(var(--header-height) + 10px) 12px auto 12px;
    display:flex; flex-direction:column; align-items:stretch;
    padding:14px; gap:6px;
    background:rgba(10,10,18,.95);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    transform:translateY(-16px);
    opacity:0; pointer-events:none;
    transition:transform .18s ease, opacity .18s ease;
  }
  .nav-links a{ padding:12px 10px; border-radius:10px; }
  .nav.open .nav-links{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .nav.open .hamburger span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
  .nav.open .hamburger span:nth-child(2){ opacity:0; }
  .nav.open .hamburger span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }
}

@media (max-width: 767px){
  body{ overflow-x:hidden; }

  .walsh-container-hero{
    display:flex; flex-direction:column;
    align-items:center; justify-content:center;
    text-align:center; padding:20px;
    background-color:black;
  }
  .walsh-left-hero-content{
    width:100%; max-width:600px; margin:0 auto;
  }
}

@media (min-width: 768px){
  .walsh-container-hero{
    background-color:black;
    display:flex; flex-direction:row;
    align-items:center; justify-content:space-between;
    text-align:left; padding:20px;
  }
  .walsh-left-hero-content{ width:50%; max-width:600px; margin:0; }
  .walsh-hero-sub-bg{ width:50%; }

  
}

/* About split */
.about-split{
  max-width:1200px;
  margin:0 auto;
  padding: clamp(32px, 5vw, 72px) 20px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:36px;
  align-items:center;
}
.about-heading{
  font-size: clamp(28px, 3.8vw, 40px);
  margin: 0 0 12px 0;
  color: var(--ink);
}
.about-text{
  color: var(--ink-dim);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
}
.video-card{
  border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(122,44,255,.12) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(to bottom, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 20px 60px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.reel{
  width:100%;
  aspect-ratio:16/9;       /* keeps a nice rectangle regardless of video meta */
  display:block;
  object-fit:cover;
  background:#000;
}
.video-note{
  font-size:12px; color:var(--ink-dim);
  padding:8px 12px; border-top:1px solid rgba(255,255,255,.06);
  background: rgba(10,10,18,.5);
  backdrop-filter: blur(6px);
}

/* Stack on mobile */
@media (max-width: 980px){
  .about-split{ grid-template-columns: 1fr; gap:22px; }
}

/* make the HTML hidden attribute always win */
[hidden] { display: none !important; }

/* ===== Show chooser modal ===== */
.show-overlay{
  position: fixed; inset: 0; z-index: 1100;
  display: grid; place-items: center;
  /* more opaque backdrop */
  background: rgba(5, 5, 12, 0.88);
  backdrop-filter: blur(10px) saturate(120%);
}

.show-modal{
  width: min(980px, 92vw);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(122,44,255,.14) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(to bottom, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  padding: 18px;
  color: var(--ink);
  position: relative;
}

.show-close{
  position:absolute; right:10px; top:10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 10px; color: var(--ink);
  width: 36px; height: 36px; cursor: pointer;
}

.show-modal-title{ margin: 0 0 12px 0; font-size: clamp(22px, 3vw, 28px); }

.show-grid{
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}

.show-card{
  border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(122,44,255,.12) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(to bottom, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
  padding: 16px; display:flex; flex-direction:column; gap:10px;
}

.show-card-head{ display:flex; align-items:center; gap:10px; justify-content:space-between; flex-wrap:wrap; }
.show-card h4{ margin:0; font-size: clamp(18px, 2.4vw, 24px); color: var(--ink); }

.chip{ font-size: 12px; color: var(--ink); background: rgba(122,44,255,.22); border: 1px solid rgba(122,44,255,.45); padding: 6px 10px; border-radius: 999px; }
.chip.alt{ background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }

.show-copy{ color: var(--ink-dim); margin: 0; }
.show-list{ margin: 2px 0 0 0; padding-left: 18px; color: var(--ink-dim); }
.show-list li{ margin: 6px 0; }
.show-cta-row{ margin-top: 6px; display:flex; gap:10px; flex-wrap:wrap; }

@media (max-width: 800px){ .show-grid{ grid-template-columns: 1fr; } }

/* High-contrast buttons inside modal */
.show-modal .vbtn{ 
  font-weight: 600;
  color: #000000;
  border-radius: 999px;
  padding: 10px 14px;
  border: 0;
}

.show-modal .vbtn-primary{
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 6px 24px rgba(122,44,255,.35);
}

.show-modal .vbtn-outline{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
}

.show-modal .vbtn-primary:hover{ filter: brightness(1.05); }
.show-modal .vbtn-outline:hover{ background: rgba(255,255,255,.18); }

/* High-contrast Instagram button in header */
.nav-social{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:10px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2)); /* solid brand pill */
  border: none;
  color: #fff;  /* used if your SVG uses currentColor */
  box-shadow: 0 6px 20px rgba(122,44,255,.35);
  margin-right: 8px;
  transition: transform .15s ease, filter .15s ease;
}
.nav-social:hover{ transform: translateY(-1px); filter: brightness(1.06); }
.nav-social:focus-visible{ outline: 2px solid rgba(255,255,255,.6); outline-offset: 2px; }

.nav-social-icon{
  width:18px; height:18px; display:block;
  /* If your instagram-icon.svg is black, force it to white: */
  filter: brightness(0) invert(1);
}

/* Slightly smaller on mobile */
@media (max-width: 900px){
  .nav-social{ width:38px; height:38px; margin-right:6px; }
}
/* Hero typography glow-up */
.walsh-heading-xlarge-white{
  font-family: "Fraunces", serif;     /* classier display face */
  font-weight: 900;
  font-size: clamp(44px, 7.2vw, 84px);
  line-height: 1.02;
  letter-spacing: .2px;
  color: var(--ink);
  margin: 0 0 8px 0;
}

/* Your existing gradient word, now with gentle shimmer */
.walsh-text-burst{
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: relative;
}
.walsh-text-burst::after{
  /* moving highlight */
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.55) 15%, transparent 30%);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0);
  animation: shimmer 4.6s linear infinite;
  pointer-events:none;
  mix-blend-mode: screen;
}
@keyframes shimmer{
  0%{ background-position: -120% 0; }
  100%{ background-position: 220% 0; }
}

/* Optional underline accent under the whole heading block */
.walsh-left-hero-content{
  position: relative;
}
.walsh-left-hero-content::after{
  content:"";
  display:block;
  width: clamp(120px, 30%, 260px);
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  opacity:.9;
}
/* Footer */
.site-footer{ margin-top: clamp(40px, 6vw, 80px); color: var(--ink); }

/* CTA band */
.footer-cta{
  background: radial-gradient(120% 160% at 100% 0%, rgba(122,44,255,.20) 0%, rgba(255,255,255,0) 60%),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  border-left: 0; border-right: 0;
}
.footer-cta-wrap{
  max-width: 1200px; margin: 0 auto; padding: clamp(22px,5vw,36px) 20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.footer-cta h3{ margin:0; font-size: clamp(20px, 3vw, 28px); }
.cta-row{ display:flex; gap:10px; flex-wrap:wrap; }
.vbtn{ padding:10px 14px; border-radius:999px; background: linear-gradient(90deg,var(--brand),var(--brand-2)); color:#fff; text-decoration:none; }
.vbtn-light{ background: rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.28); }

/* Main footer grid */
.footer-main{
  max-width: 1200px; margin: 0 auto; padding: clamp(26px,5vw,40px) 20px;
  display:grid; gap:20px; grid-template-columns: 1.2fr 1fr 1fr;
}
.footer-col h4{ margin:0 0 10px 0; font-size:16px; color:#fff; }
.footer-col ul{ list-style:none; margin:0; padding:0; }
.footer-col a{ color: var(--ink-dim); text-decoration:none; }
.footer-col a:hover{ color:#fff; }

/* Brand block */
.footer-brand{ display:flex; flex-direction:column; gap:10px; }
.footer-logo{ width: 160px; height:auto; }
.footer-tag{ color: var(--ink-dim); margin:0; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  display:inline-flex; width:36px; height:36px; align-items:center; justify-content:center;
  border-radius:10px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
}
.footer-social img{ width:18px; height:18px; filter: brightness(0) invert(1); }

/* Bottom line */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  text-align:center; padding:14px 10px; color: var(--ink-dim);
}

/* Mobile stack */
@media (max-width: 900px){
  .footer-main{ grid-template-columns: 1fr; }
  .footer-logo{ width: 140px; }
}
.divider{ max-width:1200px; height:1px; margin:32px auto; background:
  linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent); }
  
.walsh-hero-sub-bg{ box-shadow: 0 30px 90px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06); }
/* --- Silly Mode UI --- */
.silly-toggle{
  position: fixed; right: 14px; bottom: 14px; z-index: 1200;
  padding: 10px 14px; border-radius: 999px; border: 0;
  background: linear-gradient(90deg,var(--brand),var(--brand-2)); color:#fff;
  box-shadow: 0 8px 24px rgba(122,44,255,.35);
  cursor: pointer; font-weight: 700; letter-spacing:.2px;
}
.silly-toggle[aria-pressed="true"]{ filter: brightness(1.05); }

#bunnyField{
  position: fixed; inset: 0; z-index: 1100; pointer-events: none; /* let clicks pass through */
}

/* one bunny */
.bun{ position:absolute; width:64px; height:64px; will-change: transform; }
.bun .svg{ filter: drop-shadow(0 6px 14px rgba(122,44,255,.35)) drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
.bun .shadow{
  position:absolute; left:8px; right:8px; bottom:-4px; height:10px;
  background: radial-gradient(closest-side, rgba(0,0,0,.5), rgba(0,0,0,0));
  filter: blur(2px); border-radius:50%; opacity:.55; transform-origin:center;
}
.bun.flip .svg{ transform: scaleX(-1); }

/* simple hop scale on the shadow */
.bun.hop .shadow{ transform: scale(.75); opacity:.7; }

/* hide for users who prefer less motion */
@media (prefers-reduced-motion: reduce){
  .silly-toggle{ display:none; }
  #bunnyField{ display:none; }
}

/* ===== Bunny Minigame ===== */
#bunnyField{
  position: fixed; inset: 0; z-index: 1100;
  /* Let page be clickable except on the bunnies themselves */
  pointer-events: none;
}
.bun{
  position: absolute; width: 64px; height: 64px; will-change: transform;
  pointer-events: auto; /* clickable */
}
.bun .svg{
  filter: drop-shadow(0 6px 14px rgba(122,44,255,.35)) drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
.bun .shadow{
  position:absolute; left:8px; right:8px; bottom:-4px; height:10px;
  background: radial-gradient(closest-side, rgba(0,0,0,.52), rgba(0,0,0,0));
  filter: blur(2px); border-radius:50%; opacity:.55; transform-origin:center;
}
.bun.hop .shadow{ transform: scale(.75); opacity:.7; }
.bun.flip .svg{ transform: scaleX(-1); }

/* Idle “breathing” wiggle so they feel alive */
@keyframes breathe{ 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-2px) } }
.bun.idle .svg{ animation: breathe 2.6s ease-in-out infinite; }

/* sparkles on hop */
.sparkle{
  position:absolute; width:6px; height:6px; border-radius:50%;
  background: radial-gradient(circle, #fff, rgba(255,255,255,.1) 70%);
  mix-blend-mode: screen; pointer-events:none;
  animation: sparkleUp .6s ease-out forwards;
}
@keyframes sparkleUp{
  0%{ transform: translate(0,0) scale(.6); opacity:.9;}
  100%{ transform: translate(-6px,-24px) scale(1.1); opacity:0;}
}

/* The hat that appears during vanish */
/* ===== Vanish Hat (back + front, bunny goes between) ===== */
.hat-back, .hat-front{
  position:absolute; width:72px; height:54px; pointer-events:none;
  transform-origin:center bottom; opacity:0;
}
.hat-back.show, .hat-front.show{
  opacity:1; transition: opacity .12s ease, transform .12s ease;
}

/* BACK: brim + body behind the bunny */
.hat-back .brim{
  width:100%; height:16px; border-radius:999px;
  background:#222;
  box-shadow: 0 2px 6px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
}
.hat-back .body{
  width:70%; height:32px; margin:0 auto; border-radius:8px 8px 2px 2px;
  background: linear-gradient(to bottom, #444 0%, #111 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 8px 18px rgba(0,0,0,.4), 0 2px 4px rgba(0,0,0,.5);
}
.hat-back .band{
  width:70%; height:8px; margin:-14px auto 0; border-radius:6px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 6px rgba(122,44,255,.6);
}

/* FRONT: lip only, above the bunny for occlusion */
.hat-front .lip{
  position:absolute; left:0; right:0; top:6px; height:14px; border-radius:999px;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.25), rgba(255,255,255,0) 70%) /* highlight */,
    #191919; /* lip color */
  box-shadow:
    0 1px 0 rgba(255,255,255,.15) inset,
    0 4px 10px rgba(0,0,0,.55);
  opacity:.98;
}

/* Smoke puffs */
.smoke{
  position:absolute; width:40px; height:20px; border-radius:70%;
  background: radial-gradient(circle, rgba(210,210,210,.85), rgba(210,210,210,0) 60%);
  filter: blur(1px);
  opacity:.9;
  animation: puff 700ms ease-out forwards;
}
@keyframes puff{
  0%   { transform: translate(0,0) scale(.6); opacity:.85; }
  100% { transform: translate(var(--dx, 0px), -36px) scale(1.9); opacity:0; }
}

/* Spark shower */
.spark{
  position:absolute; width:4px; height:4px; border-radius:50%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 8px rgba(122,44,255,.7);
  opacity:.95;
  animation: sparkUp 560ms ease-out forwards;
}
@keyframes sparkUp{
  to { transform: translate(var(--sx, 0px), var(--sy, -80px)) scale(.6); opacity:0; }
}



/* Vanish keyframes (bunny dives into hat) */
@keyframes intoHat{
  0%{ transform: translate3d(var(--x0), var(--y0), 0) scale(1) rotate(0deg); opacity:1; }
  60%{ transform: translate3d(var(--xh), var(--yh), 0) scale(.9) rotate(-10deg); }
  100%{ transform: translate3d(var(--xh), var(--yh), 0) scale(.18) rotate(-25deg); opacity:0; }
}
.bun.vanishing .svg{ animation: intoHat .55s cubic-bezier(.2,.85,.25,1) forwards; }
.bun.vanishing .shadow{ opacity:0; }

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  #bunnyField{ display:none; }
}
/* --- Navbar Bunny Trophy: overlay, bigger, tap-through --- */
:root{
  --trophy-size: 28px;   /* desktop size */
  --trophy-gap: 8px;
}

/* ensure nav can anchor absolute children */
.nav{ position: relative; }

/* overlayed so it doesn't push layout; taps pass through */
.nav-trophy{
  position: absolute;
  right: max(12px, env(safe-area-inset-right));
  top: 50%;
  transform: translateY(-50%);
  display: flex; align-items: center; gap: var(--trophy-gap);
  z-index: 9;
  pointer-events: none;          /* <-- translucent to clicks */
  opacity: .9;
  mix-blend-mode: screen;        /* subtle glow on dark bg */
}

/* bigger, crisp icons */
.nav-trophy .mini{
  width: var(--trophy-size);
  height: var(--trophy-size);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 6px rgb(174, 35, 160));
}
.nav-trophy .mini svg{
  width: 100%; height: 100%;
}
.nav-trophy .mini.added{ animation: trophyPop .35s ease both; }
@keyframes trophyPop{
  0%{ transform: scale(.6); opacity:0; }
  60%{ transform: scale(1.15); opacity:1; }
  100%{ transform: scale(1); }
}

/* +N bubble, also non-interactive */
.nav-trophy .more{
  pointer-events: none;
  font-size: 12px; line-height: 1;
  color: #fff;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  padding: 3px 6px; border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* mobile: keep away from hamburger, scale down just a touch */
@media (max-width: 900px){
  :root{ --trophy-size: 24px; }
  .nav-trophy{
    right: 75px;               /* leave space for the hamburger */
    top: 50%;
    transform: translateY(-50%);
    gap: 6px;
    opacity: .85;
  }
  /* if your mobile menu overlays, fade trophies while open */
  .nav.open .nav-trophy{ opacity: .3; }
}

/* very small screens: pin to top-right */
@media (max-width: 420px){
  :root{ --trophy-size: 22px; }
  .nav-trophy{
    top: 12px; transform: none;
  }
}
/* --- Reviews "under construction" modal --- */
.review-overlay{
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  background: rgba(11,11,18,.74); /* more opaque */
  backdrop-filter: blur(6px);
}
.review-overlay[hidden]{ display:none; }

.review-modal{
  width: min(680px, calc(100vw - 28px));
  max-height: min(88vh, 560px);
  overflow: auto;
  position: relative;
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
}
.review-modal::before{
  content:""; position:absolute; inset:-1px; border-radius:16px; padding:1px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}

.review-close{
  position:absolute; top:10px; right:10px;
  width:36px; height:36px; border-radius:12px;
  border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.06);
  color:#fff; cursor:pointer;
}

.review-title{ margin: 0 0 8px; color: var(--ink); font-size: clamp(20px, 3.4vw, 28px); }
.review-sub{ margin: 0 0 14px; color: var(--ink-dim); }

.review-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* buttons match your CTA vibe */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; border-radius:999px; cursor:pointer;
  color:#fff; text-decoration:none;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 6px 24px rgba(122,44,255,.35);
}
.btn-ghost{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--ink);
}

@media (max-width: 480px){
  .review-modal{ max-height: 90vh; padding: 18px; }
}
/* --- Show modal: phone-safe & scrollable --- */
.show-overlay{
  position: fixed;
  inset: 0;
  height: 100dvh;                /* handles mobile browser chrome */
  z-index: 2200;
  display: grid;
  place-items: center;
  background: rgba(11,11,18,.78); /* more opaque */
  backdrop-filter: blur(6px);
}
.show-overlay[hidden]{ display:none; }

.show-modal{
  /* size: wide on desktop, scrollable on phone */
  width: min(860px, calc(100vw - 24px));
  max-height: min(92vh, 720px);
  overflow: auto;                         /* <-- the key! */
  overscroll-behavior: contain;           /* stop scroll chaining on iOS */
  -webkit-overflow-scrolling: touch;

  padding: clamp(16px, 2.4vw, 24px);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
}

/* keep a little breathing room at bottom (safe area on iOS) */
.show-modal::after{
  content: "";
  display: block;
  height: max(14px, env(safe-area-inset-bottom));
}

/* ensure the close button stays reachable while scrolling */
.show-close{
  position: sticky;   /* sticks to top inside the scroll container */
  top: 6px;
  right: 6px;
  margin-left: auto;
  z-index: 1;
  width: 36px; height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* cards/grid inside the modal */
.show-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.show-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 16px;
}

/* Mobile: stack cards, slightly tighter spacing */
@media (max-width: 640px){
  .show-grid{ grid-template-columns: 1fr; }
  .show-card{ padding: 14px; }
}
/* ===== Reviews (IG-style) ===== */
#reviews{ scroll-margin-top: 96px; } /* keeps anchor below fixed header */

.reviews-wrap{
  --ring: linear-gradient(90deg,var(--brand),var(--brand-2));
  position: relative;
  padding: clamp(48px, 7vw, 92px) 20px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(122,44,255,.14) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(120% 120% at 0% 100%, rgba(160,107,255,.10) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top: 1px solid rgba(255,255,255,.06);
}

.reviews-head{
  max-width: 1100px; margin: 0 auto 20px;
  display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: end;
}
@media (max-width: 860px){ .reviews-head{ grid-template-columns: 1fr; gap: 10px; } }

.reviews-title{
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  background: linear-gradient(90deg, var(--ink), var(--ink-dim));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.reviews-title::after{
  content:""; display:block; height:4px; width:180px; margin-top:10px;
  background: var(--ring); border-radius:999px; box-shadow:0 6px 24px rgba(122,44,255,.35);
}
.reviews-sub{ color:var(--ink-dim); font-size:14px; }
.reviews-sub a{ color:var(--ink); text-decoration: underline; text-underline-offset:3px; }

.reviews-cta{
  justify-self:end; display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; border-radius:999px; background:var(--ring);
  color:#0b0b12; font-weight:700; text-decoration:none;
  box-shadow:0 10px 30px rgba(122,44,255,.35);
}
.reviews-cta .cta-ico{ width:18px; height:18px; filter:drop-shadow(0 2px 6px rgba(0,0,0,.2)); }
@media (max-width: 860px){ .reviews-cta{ justify-self:start; } }

.ig-grid{
  max-width:1100px; margin:18px auto 0;
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px;
}
@media (max-width: 900px){ .ig-grid{ grid-template-columns:1fr; } }

.ig-review{
  position:relative; border-radius:14px; padding:14px 14px 16px;
  background:rgba(17,17,32,.72);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 14px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
  overflow:hidden;
}
.ig-review::before{
  /* faint glow edge */
  content:""; position:absolute; inset:-1px; border-radius:14px;
  padding:1px; background:linear-gradient(90deg,rgba(122,44,255,.25),rgba(160,107,255,.12));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events:none;
}
.ig-review:hover{ transform:translateY(-1px); transition:transform .15s ease; }

.ig-head{ display:flex; align-items:center; gap:10px; margin-bottom:8px; }

.ig-avatar{
  width:44px; height:44px; border-radius:999px; display:grid; place-items:center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.15), transparent 40%),
    conic-gradient(from 210deg,var(--brand),var(--brand-2),var(--brand));
  padding:2px;
}
.ig-avatar::after{
  content:attr(data-letter);
  width:100%; height:100%; border-radius:999px; display:grid; place-items:center;
  background:#0b0b12; color:var(--ink); font-weight:800; text-transform:uppercase;
  letter-spacing:.3px;
}
.ig-avatar img{
  width:100%; height:100%; object-fit:cover; border-radius:999px; display:block;
  background:#0b0b12;
}

.ig-user{ display:flex; flex-direction:column; line-height:1.1; }
.ig-username{ color:var(--ink); text-decoration:none; font-weight:800; }
.ig-username:hover{ text-decoration:underline; }
.ig-meta{ color:var(--ink-dim); font-size:12px; margin-top:2px; }

.ig-heart{ margin-left:auto; opacity:.85; }
.ig-text{
  color:var(--ink); font-size:15px; line-height:1.45; margin:4px 2px 0;
}

/* optional: reveal effect on scroll */
.ig-review{ opacity:0; transform:translateY(8px); }
.ig-review.reveal{ opacity:1; transform:none; transition:opacity .35s ease, transform .35s ease; }
