:root{
  --bg:#07080c;
  --bg2:#05060a;
  --panel:#0b0d12;
  --text:#e9ecf5;
  --muted:rgba(233,236,245,.66);
  --muted2:rgba(233,236,245,.52);
  --gold:#d7c29a;
  --gold-soft:rgba(215,194,154,.18);
  --gold-line:rgba(215,194,154,.28);
  --edge:rgba(255,255,255,.08);
  --edge-soft:rgba(255,255,255,.05);
  --shadow2:0 12px 34px rgba(0,0,0,.40);
  --shadow3:0 30px 90px rgba(0,0,0,.60);
  --shadow-soft:0 18px 50px rgba(0,0,0,.35);
  --max:1120px;

  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(1000px 700px at 18% 0%, rgba(215,194,154,.06), transparent 60%),
    radial-gradient(900px 700px at 88% 14%, rgba(155,107,255,.045), transparent 62%),
    radial-gradient(1000px 800px at 70% 100%, rgba(255,77,109,.035), transparent 64%),
    linear-gradient(180deg, #05060a 0%, #06070b 42%, #07080c 100%);
  font-family:var(--sans);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
button,input,select,textarea{font:inherit}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px;
}

.dotSep{opacity:.5; margin:0 10px}

[data-reveal]{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .6s ease, transform .6s ease;
}

.isRevealed{
  opacity:1 !important;
  transform:none !important;
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  [data-reveal]{
    opacity:1;
    transform:none;
    transition:none;
  }
}

/* ===== Generic glass panel ===== */
.hw-panel{
  position:relative;
  border-radius:22px;
  border:1px solid var(--edge);
  background:linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.14));
  box-shadow:var(--shadow2);
  overflow:hidden;
}

.hw-panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:22px;
  background:
    radial-gradient(700px 260px at 30% 0%, rgba(215,194,154,.15), transparent 55%),
    radial-gradient(700px 260px at 70% 0%, rgba(155,107,255,.10), transparent 55%);
  pointer-events:none;
  opacity:.55;
}

.hw-panel > *{
  position:relative;
  z-index:2;
}

/* ===== Header ===== */
.hw-header{
  position:sticky;
  top:0;
  z-index:999;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  background:
    linear-gradient(180deg, rgba(7,8,12,.94), rgba(7,8,12,.80));
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow:
    0 10px 28px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.02);
}

.hw-header__inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:72px;
  padding:10px 0;
}

.hw-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  flex:0 0 auto;
}

.hw-brand__text{
  display:flex;
  flex-direction:column;
  gap:4px;
  line-height:1;
  min-width:0;
}

.hw-brand__logoImg{
  height:18px;
  width:auto;
  display:block;
  opacity:.96;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.45));
  flex:0 0 auto;
}

.hw-brand__name{
  font-family:var(--serif);
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
  font-size:14px;
  white-space:nowrap;
}

.hw-brand__sub{
  font-size:11px;
  color:rgba(233,236,245,.52);
  white-space:nowrap;
  letter-spacing:.04em;
}

.hw-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:clamp(18px, 1.9vw, 28px);
  flex-wrap:nowrap;
  min-width:0;
  margin-left:auto;
  font-family:var(--mono);
  font-size:13px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:rgba(233,236,245,.76);
}

.hw-nav__link{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:48px;
  padding:0 6px;
  white-space:nowrap;
  border-bottom:none;
  transition:color .18s ease, transform .18s ease, opacity .18s ease;
}

.hw-nav__link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:3px;
  height:1px;
  border-radius:999px;
  background:linear-gradient(90deg, transparent, rgba(215,194,154,.42), transparent);
  opacity:0;
  transform:scaleX(.7);
  transition:opacity .18s ease, transform .18s ease;
}

.hw-nav__link:hover{
  color:rgba(255,255,255,.94);
}

.hw-nav__link:hover::after{
  opacity:1;
  transform:scaleX(1);
}

.hw-nav__link[aria-current="page"]{
  color:#fff;
}

.hw-nav__link[aria-current="page"]::after{
  opacity:1;
  transform:scaleX(1);
}

.hw-nav__vault{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  border:1px solid rgba(215,194,154,.26);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.07), transparent 42%),
    linear-gradient(135deg, rgba(215,194,154,.14), rgba(255,77,109,.04));
  color:#fff;
  white-space:nowrap;
  box-shadow:
    0 10px 24px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.03);
  transition:
    transform .15s ease,
    border-color .15s ease,
    background .15s ease,
    box-shadow .15s ease;
}

.hw-nav__vault:hover{
  transform:translateY(-1px);
  border-color:rgba(215,194,154,.42);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), transparent 42%),
    linear-gradient(135deg, rgba(215,194,154,.18), rgba(255,77,109,.06));
  box-shadow:
    0 14px 30px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.hw-menuToggle{
  display:none;
  width:48px;
  height:48px;
  padding:0;
  border:none;
  border-radius:14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:
    0 10px 24px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.04);
  cursor:pointer;
  flex:0 0 auto;
  align-items:center;
  justify-content:center;
  gap:5px;
  flex-direction:column;
}

.hw-menuToggle span{
  display:block;
  width:20px;
  height:2px;
  border-radius:999px;
  background:rgba(233,236,245,.92);
  transition:transform .22s ease, opacity .22s ease;
}

.hw-header.is-open .hw-menuToggle span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.hw-header.is-open .hw-menuToggle span:nth-child(2){
  opacity:0;
}

.hw-header.is-open .hw-menuToggle span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* ===== Header rule ===== */
.hw-rule{
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}

.hw-rule__inner{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:40px;
  padding:0;
}

.hw-rule__dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:rgba(215,194,154,.88);
  box-shadow:0 0 18px rgba(215,194,154,.18);
  flex:0 0 auto;
}

.hw-rule__text{
  font-size:12px;
  color:rgba(233,236,245,.68);
  line-height:1.4;
}

.hw-rule__text b{
  color:rgba(233,236,245,.90);
}

.hw-home .hw-rule{
  display:none;
}

/* ===== Buttons / chips ===== */
.hw-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(215,194,154,.20);
  background:rgba(16,20,33,.35);
  color:rgba(233,236,245,.86);
  font-weight:800;
  font-size:13px;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
  transition:transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.hw-btn:hover{
  transform:translateY(-1px);
  background:rgba(16,20,33,.55);
  border-color:rgba(215,194,154,.34);
  box-shadow:0 16px 32px rgba(0,0,0,.24);
}

.hw-btnPrimary{
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), transparent 38%),
    linear-gradient(135deg, rgba(215,194,154,.22), rgba(255,77,109,.08));
  border-color:rgba(215,194,154,.34);
  color:#fff;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.hw-topDevCta{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:14px;
  margin-bottom:8px;
}

.hw-devBanner{
  width:min(100%, 520px);
  min-height:74px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  padding:14px 22px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.06), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow:
    0 16px 38px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.03);
  pointer-events:none;
  cursor:not-allowed;
  user-select:none;
  -webkit-user-select:none;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  filter:saturate(.24);
  opacity:.84;
  position:relative;
  overflow:hidden;
}

.hw-devBanner::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, transparent, rgba(215,194,154,.06), transparent);
  opacity:.5;
  pointer-events:none;
}

.hw-devBannerEyebrow{
  position:relative;
  z-index:1;
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(233,236,245,.28);
}

.hw-devBannerTitle{
  position:relative;
  z-index:1;
  font-family:var(--serif);
  font-size:clamp(22px, 2.6vw, 30px);
  line-height:1;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:rgba(233,236,245,.60);
  text-align:center;
}

.hw-devBanner small{
  position:relative;
  z-index:1;
  display:block;
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(233,236,245,.34);
}

.hw-arrow{
  font-family:var(--mono);
  margin-left:2px;
  opacity:.85;
}

.hw-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(215,194,154,.18);
  background:rgba(0,0,0,.18);
  font-family:var(--mono);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(233,236,245,.62);
}

.hw-chipLocked{
  opacity:.75;
  border-style:dashed;
}

/* ===== Layout ===== */
.hw-landing{
  padding-bottom:18px;
}

.hw-divider{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(215,194,154,.22), transparent);
  margin:18px 0 16px;
}

/* ===== Hero base ===== */
.hw-hero{
  position:relative;
  isolation:isolate;
}

.hw-heroMedia{
  position:absolute;
  inset:0;
  background:#0b0d12;
  overflow:hidden;
  will-change:transform;
  transform:translateY(var(--par, 0px));
}

.bg-hallowake{
  background-image:url("assets/hallowake_background1.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}

/* ===== Home hero ===== */
.hw-home{
  --bgY:14%;
  --bgScale:1.03;
}

.hw-home .bg-hallowake{
  background-position:center var(--bgY);
}

.hw-home .hw-hero{
  position:relative;
  overflow:hidden;
  min-height:100svh;
}

.hw-home .hw-heroMedia{
  filter:blur(.8px) saturate(.94) contrast(1) brightness(.80);
  transform:translateY(var(--par, 0px)) scale(var(--bgScale));
  animation:hwHeroDrift 26s ease-in-out infinite alternate;
}

@keyframes hwHeroDrift{
  from{
    transform:translateY(var(--par, 0px)) scale(var(--bgScale));
  }
  to{
    transform:translateY(calc(var(--par, 0px) - 10px)) scale(1.07);
  }
}

.hw-home .hw-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:4;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.095), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.03), rgba(0,0,0,.56) 100%),
    linear-gradient(180deg, rgba(7,8,12,.08) 0%, rgba(7,8,12,.30) 55%, rgba(7,8,12,.60) 100%);
}

.hw-home .hw-hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:340px;
  z-index:4;
  pointer-events:none;
  background:linear-gradient(
    180deg,
    rgba(7,8,12,0) 0%,
    rgba(7,8,12,.14) 18%,
    rgba(7,8,12,.34) 38%,
    rgba(7,8,12,.58) 58%,
    rgba(7,8,12,.82) 78%,
    rgba(7,8,12,1) 100%
  );
}

.hw-corePanel,
.hw-sketches,
.hw-collector{
  position:relative;
  z-index:6;
}

.hw-heroFog{
  position:absolute;
  inset:-14%;
  z-index:2;
  pointer-events:none;
  opacity:.78;
  mix-blend-mode:screen;
  filter:blur(34px);
  background:
    radial-gradient(700px 240px at 14% 32%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(880px 280px at 78% 40%, rgba(255,255,255,.08), transparent 58%),
    radial-gradient(980px 320px at 50% 76%, rgba(255,255,255,.06), transparent 62%);
  animation:fogDriftX 18s ease-in-out infinite alternate;
}

.hw-heroFog::before,
.hw-heroFog::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  filter:blur(30px);
}

.hw-heroFog::before{
  opacity:.75;
  background:
    radial-gradient(620px 190px at 28% 58%, rgba(255,255,255,.08), transparent 62%),
    radial-gradient(660px 210px at 64% 22%, rgba(255,255,255,.06), transparent 58%);
  animation:fogDriftY 14s ease-in-out infinite alternate;
}

.hw-heroFog::after{
  opacity:.55;
  background:
    radial-gradient(540px 170px at 40% 42%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(720px 220px at 74% 68%, rgba(255,255,255,.05), transparent 62%);
  animation:fogDriftSlow 24s ease-in-out infinite alternate;
}

@keyframes fogDriftX{
  from{ transform:translate3d(-3%, 0, 0) scale(1); }
  to{ transform:translate3d(3%, -1.5%, 0) scale(1.07); }
}

@keyframes fogDriftY{
  from{ transform:translate3d(0, 2%, 0) scale(1); }
  to{ transform:translate3d(0, -3%, 0) scale(1.05); }
}

@keyframes fogDriftSlow{
  from{ transform:translate3d(-1.5%, -1%, 0) scale(1); }
  to{ transform:translate3d(2%, 1.5%, 0) scale(1.04); }
}

.hw-home .hw-heroAuras{
  position:absolute;
  inset:0;
  z-index:3;
  background:
    radial-gradient(760px 420px at 50% 18%, rgba(215,194,154,.10), transparent 62%),
    radial-gradient(1100px 640px at 50% 48%, rgba(0,0,0,.16), rgba(0,0,0,.82));
  pointer-events:none;
}

.hw-grain{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.16;
  mix-blend-mode:overlay;
  z-index:3;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

.hw-heroInner{
  position:relative;
  z-index:6;
  padding:36px 0 22px;
}

.hw-heroGrid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:14px;
  align-items:stretch;
}

.hw-heroLeft{
  padding:18px;
  border-radius:22px;
}

.hw-heroRight{
  border-radius:22px;
  overflow:hidden;
}

/* ===== Typography ===== */
.hw-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border:1px solid rgba(215,194,154,.18);
  border-radius:999px;
  background:rgba(0,0,0,.18);
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(233,236,245,.70);
  width:fit-content;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.hw-dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:rgba(215,194,154,.88);
  box-shadow:0 0 18px rgba(215,194,154,.18);
}

.hw-heroH1{
  margin:14px 0 10px;
  font-family:var(--serif);
  letter-spacing:.02em;
  color:rgba(233,236,245,.98);
  font-size:34px;
  line-height:1.04;
  text-shadow:0 18px 55px rgba(0,0,0,.75);
}

.hw-heroLead{
  margin:0;
  color:rgba(233,236,245,.76);
  font-size:14px;
  line-height:1.85;
  max-width:70ch;
  text-shadow:0 14px 38px rgba(0,0,0,.65);
}

.hw-heroCtas{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.hw-homeHeroCenter{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:12px 0 6px;
  position:relative;
  z-index:7;
}

.hw-homeHeroCenter::before{
  content:"";
  position:absolute;
  left:50%;
  top:34%;
  width:min(760px, 80vw);
  height:420px;
  transform:translate(-50%, -50%);
  background:radial-gradient(circle, rgba(255,255,255,.05), transparent 65%);
  filter:blur(30px);
  pointer-events:none;
  z-index:-1;
}

.hw-logoMega{
  position:relative;
  z-index:7;
  max-width:min(560px, 64vw);
  margin-inline:auto;
  margin-bottom:18px;
}

.hw-logoMega img{
  width:100%;
  height:auto;
  opacity:.99;
  filter:
    drop-shadow(0 0 12px rgba(255,255,255,.10))
    drop-shadow(0 0 34px rgba(215,194,154,.14))
    drop-shadow(0 0 64px rgba(215,194,154,.08))
    drop-shadow(0 18px 50px rgba(0,0,0,.58));
}

.hw-kickerCenter{
  margin-top:6px;
}

.hw-heroH1Center{
  max-width:none;
  margin-left:auto;
  margin-right:auto;
  font-size:clamp(34px, 5.4vw, 60px);
  line-height:.98;
}

.hw-heroH1Center span{
  display:block;
}

.hw-heroLeadCenter{
  max-width:52ch;
  margin-left:auto;
  margin-right:auto;
  font-size:15px;
  line-height:1.9;
}

.hw-heroCtasCenter{
  justify-content:center;
}

.hw-homeRule{
  margin-top:10px;
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  box-shadow:0 10px 30px rgba(0,0,0,.24);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  color:rgba(233,236,245,.66);
  font-size:14px;
  line-height:1.6;
}

.hw-homeRuleCenter{
  justify-content:center;
  max-width:80ch;
}

.hw-homeRule .dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:rgba(215,194,154,.88);
  box-shadow:0 0 18px rgba(215,194,154,.22);
  flex:0 0 auto;
}

.hw-homeRule b{
  color:rgba(233,236,245,.88);
}

.hw-textLink{
  margin-top:14px;
  display:inline-block;
  font-family:var(--mono);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(215,194,154,.88);
  transition:color .18s ease, transform .18s ease;
}

.hw-textLink:hover{
  color:rgba(233,236,245,.92);
  transform:translateY(-1px);
}

/* ===== Whisper text ===== */
.hw-heroWhispers{
  position:absolute;
  inset:0;
  z-index:5;
  pointer-events:none;
}

.hw-heroWhispers span{
  position:absolute;
  white-space:nowrap;
  font-family:var(--serif);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:clamp(15px, 1.45vw, 22px);
  color:rgba(233,236,245,.22);
  opacity:0;
  filter:blur(30px);
  transform:translateY(16px) scale(1.05);
  text-shadow:
    0 0 20px rgba(255,255,255,.08),
    0 0 50px rgba(255,255,255,.05);
  animation:dreamWhisper 24s ease-in-out infinite;
}

.hw-heroWhispers .w1{
  top:22%;
  left:9%;
  animation-delay:0s;
}

.hw-heroWhispers .w2{
  top:34%;
  right:8%;
  animation-delay:8s;
}

.hw-heroWhispers .w3{
  bottom:18%;
  left:13%;
  animation-delay:16s;
}

@keyframes dreamWhisper{
  0%{
    opacity:0;
    filter:blur(30px);
    transform:translateY(16px) scale(1.05);
  }
  12%{
    opacity:.06;
    filter:blur(18px);
    transform:translateY(10px) scale(1.03);
  }
  24%{
    opacity:.24;
    filter:blur(6px);
    transform:translateY(0) scale(1);
  }
  34%{
    opacity:.26;
    filter:blur(1.5px);
    transform:translateY(0) scale(1);
  }
  48%{
    opacity:.24;
    filter:blur(0px);
    transform:translateY(0) scale(1);
  }
  60%{
    opacity:.16;
    filter:blur(6px);
    transform:translateY(-2px) scale(1.01);
  }
  74%{
    opacity:0;
    filter:blur(24px);
    transform:translateY(-14px) scale(1.05);
  }
  100%{
    opacity:0;
    filter:blur(24px);
    transform:translateY(-14px) scale(1.05);
  }
}

/* ===== Hero stagger reveal ===== */
.hero-step{
  opacity:0;
  transform:translateY(18px);
  animation:heroReveal .9s ease forwards;
  will-change:opacity, transform;
}

.hero-step-1{animation-delay:.15s;}
.hero-step-2{animation-delay:.35s;}
.hero-step-3{animation-delay:.55s;}
.hero-step-4{animation-delay:.80s;}
.hero-step-5{animation-delay:1.00s;}
.hero-step-6{animation-delay:1.15s;}
.hero-step-7{animation-delay:1.30s;}
.hero-step-8{animation-delay:1.50s;}
.hero-step-9{animation-delay:1.65s;}

@keyframes heroReveal{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== Trailer ===== */
.panel{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
  box-shadow:var(--shadow3);
  overflow:hidden;
}

.hw-trailerTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.12);
}

.hw-trailerBadge{
  display:inline-flex;
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(215,194,154,.18);
  background:rgba(0,0,0,.18);
  color:rgba(233,236,245,.72);
}

.hw-trailerMeta{
  font-family:var(--mono);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(233,236,245,.55);
}

.hw-trailerFrame{
  position:relative;
  aspect-ratio:16 / 9;
  background:rgba(0,0,0,.18);
  overflow:hidden;
}

.hw-trailerFrame::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--poster, none);
  background-size:cover;
  background-position:center;
  opacity:.76;
  filter:blur(1px) saturate(.92) contrast(1.04);
  transform:scale(1.04);
  z-index:0;
}

.hw-trailerFrame::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1100px 600px at 50% 35%, rgba(0,0,0,.04), rgba(0,0,0,.82)),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.62));
  pointer-events:none;
  z-index:0;
}

.hw-trailerPlayer{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .25s ease, visibility .25s ease;
  background:#000;
}

.hw-trailerPlayer iframe{
  width:100%;
  height:100%;
  display:block;
  border:0;
}

.hw-trailerPoster{
  position:absolute;
  inset:0;
  z-index:3;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:10px;
  cursor:pointer;
  transition:opacity .25s ease, visibility .25s ease;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.035), transparent 26%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.18));
}

.hw-trailerPoster:focus,
.hw-trailerPoster:focus-visible{
  outline:none;
  box-shadow:none;
}

.hw-trailerPlay{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-width:min(100%, 320px);
  min-height:74px;
  padding:14px 22px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.06), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow:
    0 16px 38px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  overflow:hidden;
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
  animation:playPulse 2.8s ease-in-out infinite;
}

.hw-trailerPlay::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, transparent, rgba(215,194,154,.08), transparent);
  opacity:.55;
  pointer-events:none;
}

.hw-trailerPlay:hover{
  transform:translateY(-2px);
  border-color:rgba(215,194,154,.28);
  box-shadow:
    0 20px 46px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.hw-trailerPlay .tri{
  position:relative;
  z-index:1;
  width:0;
  height:0;
  border-left:12px solid rgba(215,194,154,.92);
  border-top:8px solid transparent;
  border-bottom:8px solid transparent;
  filter:drop-shadow(0 0 10px rgba(215,194,154,.18));
}

.hw-trailerPlay span:last-child{
  position:relative;
  z-index:1;
  font-family:var(--serif);
  font-size:clamp(22px, 2.5vw, 30px);
  line-height:1;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:rgba(233,236,245,.94);
}

.hw-trailerHint{
  margin-top:4px;
  font-family:var(--mono);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(233,236,245,.52);
  text-align:center;
  max-width:46ch;
  padding:0 14px;
  text-shadow:0 10px 30px rgba(0,0,0,.55);
}

.hw-trailerBottom{
  display:flex;
  justify-content:center;
  padding:12px 16px;
  border-top:1px solid rgba(255,255,255,.06);
  color:rgba(233,236,245,.55);
  font-family:var(--mono);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
}

.hw-home .hw-homeStage{
  margin-top:clamp(42px, 7vh, 120px);
  margin-bottom:28px;
}

.hw-homeStageHero{
  width:min(1240px, calc(100vw - 32px));
  max-width:none;
  margin-top:28px;
  margin-bottom:12px;
  margin-left:0;
  transform:none;
}

.hw-homeStageHero .hw-homeTrailer{
  width:100%;
}

.hw-homeStageHero .hw-trailerFrameCinema{
  width:100%;
  min-height:clamp(320px, 46vw, 620px);
}

.hw-trailerFrameCinema{
  aspect-ratio:21 / 9;
  min-height:460px;
  transition:box-shadow .35s ease, transform .35s ease;
}

.hw-trailerFrameCinema:hover{
  transform:translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 18px 50px rgba(0,0,0,.45),
    0 0 30px rgba(215,194,154,.08);
}

.hw-homeTrailer{
  position:relative;
  overflow:hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 20px 60px rgba(0,0,0,.55),
    0 0 40px rgba(215,194,154,.06);
}

.hw-homeTrailerTag{
  position:absolute;
  left:14px;
  bottom:12px;
  font-family:var(--mono);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(233,236,245,.60);
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.08);
  padding:8px 10px;
  border-radius:999px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.hw-trailerFrame.is-playing .hw-trailerPlayer{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.hw-trailerFrame.is-playing .hw-trailerPoster{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.hw-trailerFrame.is-starting .hw-trailerPoster{
  opacity:1;
  visibility:visible;
  pointer-events:none;
}

.hw-trailerFrame:not(.is-playing) .hw-trailerPlayer{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.hw-trailerFrame:not(.is-playing) .hw-trailerPlayer iframe{
  pointer-events:none;
}

.hw-trailerFrame.is-playing::before,
.hw-trailerFrame.is-playing::after{
  opacity:0 !important;
  pointer-events:none !important;
}

@keyframes playPulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.04)}
}

.hw-shake{
  animation:hwShake .26s ease;
}

@keyframes hwShake{
  0%{transform:translateX(0)}
  25%{transform:translateX(-6px)}
  50%{transform:translateX(6px)}
  75%{transform:translateX(-4px)}
  100%{transform:translateX(0)}
}

/* ===== Cards ===== */
.hw-cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.hw-card{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
  box-shadow:var(--shadow2);
  padding:16px;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.hw-card:hover{
  transform:translateY(-3px);
  border-color:rgba(215,194,154,.22);
  background:rgba(0,0,0,.24);
}

.hw-cardBadge{
  display:inline-flex;
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(215,194,154,.18);
  background:rgba(0,0,0,.18);
  color:rgba(233,236,245,.72);
  margin-bottom:10px;
}

.hw-card h3{
  margin:0 0 8px;
  font-family:var(--serif);
  letter-spacing:.04em;
  color:rgba(233,236,245,.94);
  font-size:18px;
}

.hw-card p{
  margin:0;
  color:rgba(233,236,245,.68);
  line-height:1.7;
  font-size:14px;
}

.hw-cardLink{
  margin-top:12px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(215,194,154,.18);
  background:rgba(0,0,0,.18);
  font-family:var(--mono);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(215,194,154,.90);
}

.hw-cardsMedia .hw-cardMedia{
  position:relative;
  overflow:hidden;
}

.hw-cardsMedia .hw-cardMedia::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--bg);
  background-size:cover;
  background-position:center;
  opacity:.50;
  filter:blur(1px) saturate(.95) contrast(1.08);
  transform:scale(1.08);
  transition:transform .35s ease, opacity .35s ease;
}

.hw-cardsMedia .hw-cardMedia::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 320px at 40% 30%, rgba(215,194,154,.12), transparent 60%),
    radial-gradient(900px 520px at 50% 35%, rgba(0,0,0,.06), rgba(0,0,0,.78)),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.58));
}

.hw-cardsMedia .hw-cardMedia > *{
  position:relative;
  z-index:1;
}

.hw-cardsMedia .hw-cardMedia:hover::before{
  opacity:.58;
  transform:scale(1.10);
}

.hw-homeTiles .hw-card{
  opacity:0;
  transform:translateY(18px);
  animation:tileReveal .8s ease forwards;
}

.hw-homeTiles .hw-card:nth-child(1){animation-delay:.15s;}
.hw-homeTiles .hw-card:nth-child(2){animation-delay:.30s;}
.hw-homeTiles .hw-card:nth-child(3){animation-delay:.45s;}

@keyframes tileReveal{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== Section titles ===== */
.hw-sectionTitle{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin:18px 0 12px;
}

.hw-sectionTitle h2{
  margin:0;
  font-family:var(--serif);
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(233,236,245,.92);
  font-size:26px;
}

.hw-sectionTitle p{
  margin:0;
  color:rgba(233,236,245,.55);
  font-size:13px;
  line-height:1.6;
  max-width:80ch;
}

/* ===== Core ===== */
.badge{
  display:inline-flex;
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(215,194,154,.18);
  background:rgba(0,0,0,.18);
  color:rgba(233,236,245,.72);
}

.hw-corePanel{
  padding:18px;
  margin-top:22px;
  position:relative;
  z-index:6;
}

.hw-coreHead{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom:14px;
}

.hw-coreHead h2{
  margin:10px 0 0;
  font-family:var(--serif);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:22px;
}

.hw-coreHead p{
  margin:0;
  color:rgba(233,236,245,.55);
  font-size:13px;
}

.hw-coreGrid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:14px;
  align-items:start;
}

.hw-coreText p{
  margin:0;
  color:rgba(233,236,245,.70);
  line-height:1.75;
  font-size:14px;
}

.hw-coreBullets{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.06);
  display:grid;
  gap:10px;
}

.hw-coreBullets .b{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(233,236,245,.68);
  font-size:14px;
  line-height:1.6;
}

.hw-coreBullets .dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:rgba(215,194,154,.88);
  box-shadow:0 0 18px rgba(215,194,154,.18);
  margin-top:7px;
  flex:0 0 auto;
}

.hw-coreCtas{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.miniTitle{
  font-family:var(--mono);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(233,236,245,.55);
}

.hw-iconRow{
  margin-top:10px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hw-iconRow .ic{
  width:56px;
  height:56px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.16);
  display:grid;
  place-items:center;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.hw-iconRow img{
  width:36px;
  height:36px;
  object-fit:contain;
  opacity:.94;
}

.hw-iconRowLarge{
  gap:14px;
}

.hw-iconRowLarge .ic{
  width:64px;
  height:64px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}

.hw-iconRowLarge .ic img{
  width:44px;
  height:44px;
}

.hw-miniNote2{
  margin-top:10px;
  color:rgba(233,236,245,.50);
  font-family:var(--mono);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:11px;
}

/* ===== Sketches stack ===== */
.hw-sketches{
  padding:18px;
  margin-top:22px;
}

.hw-sketchStack{
  margin-top:18px;
}

.hw-sketchStage{
  position:relative;
  min-height:520px;
  perspective:1200px;
}

.hw-sketchSlide{
  position:absolute;
  inset:0;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
  box-shadow:0 30px 90px rgba(0,0,0,.45);
  opacity:0;
  transform:
    translateX(40px)
    translateY(20px)
    scale(.96)
    rotate(-2deg);
  transition:
    opacity .7s ease,
    transform .7s ease,
    filter .7s ease;
  filter:blur(8px);
  pointer-events:none;
}

.hw-sketchSlide:nth-child(2){
  transform:
    translateX(18px)
    translateY(12px)
    scale(.98)
    rotate(1deg);
}

.hw-sketchSlide:nth-child(3){
  transform:
    translateX(-8px)
    translateY(24px)
    scale(.94)
    rotate(-1deg);
}

.hw-sketchSlide.is-active{
  opacity:1;
  transform:
    translateX(0)
    translateY(0)
    scale(1)
    rotate(0deg);
  filter:blur(0);
  pointer-events:auto;
  z-index:3;
}

.hw-sketchSlide img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

.hw-sketchSlide::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 50% 35%, rgba(0,0,0,.05), rgba(0,0,0,.68)),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.50));
  pointer-events:none;
}

.hw-sketchOverlay{
  position:absolute;
  left:22px;
  bottom:22px;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.hw-sketchOverlay strong{
  font-family:var(--serif);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:18px;
  color:rgba(233,236,245,.96);
}

.hw-sketchOverlay span{
  font-family:var(--mono);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(215,194,154,.82);
}

.hw-sketchNav{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-top:18px;
}

/* ===== Collector ===== */
.hw-collector{
  padding:18px 0 6px;
}

.hw-collectorGrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.hw-collectorGrid4{
  grid-template-columns:repeat(4, 1fr);
}

.hw-shot{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
  box-shadow:var(--shadow2);
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease;
}

.hw-shot:hover{
  transform:translateY(-3px);
  border-color:rgba(215,194,154,.22);
}

.hw-shot .img{
  aspect-ratio:16 / 9;
  background:rgba(0,0,0,.18);
}

.hw-shot .img img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.95;
}

.hw-shot .cap{
  padding:12px 14px 14px;
  border-top:1px solid rgba(255,255,255,.06);
}

.hw-shot .cap strong{
  display:block;
  font-family:var(--serif);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:13px;
  color:rgba(233,236,245,.92);
}

.hw-shot .cap span{
  display:block;
  margin-top:6px;
  font-family:var(--mono);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(215,194,154,.78);
}

/* ===== Footer ===== */
.hw-footer{
  margin-top:26px;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.18);
  padding:18px 0 26px;
}

.hw-footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(233,236,245,.55);
}

.hw-footer__inner a{
  color:rgba(233,236,245,.60);
}

.hw-footer__inner a:hover{
  color:rgba(233,236,245,.90);
}

/* ===== Footer audio ===== */
.hw-footerAudio{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.hw-audioBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:44px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(215,194,154,.20);
  background:rgba(16,20,33,.35);
  color:rgba(233,236,245,.86);
  font-family:var(--mono);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}

.hw-audioBtn:hover{
  transform:translateY(-1px);
  background:rgba(16,20,33,.55);
  border-color:rgba(215,194,154,.34);
}

.hw-audioBtn .dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:rgba(233,236,245,.35);
  box-shadow:0 0 18px rgba(215,194,154,0);
  transition:background .2s ease, box-shadow .2s ease;
}

.hw-audioBtn.isOn .dot{
  background:rgba(215,194,154,.92);
  box-shadow:0 0 18px rgba(215,194,154,.22);
}

.hw-audioBtn .state{
  opacity:.7;
}

.hw-audioVol{
  width:110px;
  accent-color:rgba(215,194,154,.88);
}

.hw-audioBtn.hw-needsTap{
  animation:hwPulse .7s ease 1;
}

@keyframes hwPulse{
  0%{transform:translateY(0)}
  30%{transform:translateY(-2px)}
  100%{transform:translateY(0)}
}

.hw-nowPlaying{
  font-family:var(--mono);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:10px;
  color:rgba(233,236,245,.55);
  max-width:32ch;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* ===== Echo meta ===== */
.hw-echoMeta{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.06);
  display:grid;
  gap:10px;
}

.hw-metaRow{
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-family:var(--mono);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
}

.hw-metaRow .k{color:rgba(233,236,245,.55)}
.hw-metaRow .v{color:rgba(215,194,154,.78)}

/* ===== Echo page hero treatment ===== */
.hw-echoHero .hw-heroMedia{
  filter:blur(6px) saturate(.85) contrast(.94) brightness(.74);
  transform:scale(1.05);
}

.hw-echoHero .hw-heroMedia::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 40% 35%, rgba(215,194,154,.10), transparent 60%),
    radial-gradient(1200px 800px at 50% 45%, rgba(0,0,0,.18), rgba(0,0,0,.88)),
    linear-gradient(90deg, rgba(7,8,12,.86) 0%, rgba(7,8,12,.52) 55%, rgba(7,8,12,.86) 100%),
    linear-gradient(180deg, rgba(7,8,12,.18) 0%, rgba(7,8,12,.96) 100%);
  pointer-events:none;
}

/* ===== Player ===== */
.hw-playerTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.12);
}

.hw-playerBody{
  padding:16px;
}

.hw-playerGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:14px;
  align-items:start;
}

.hw-visual{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  aspect-ratio:16 / 9;
  background:var(--art, rgba(0,0,0,.18));
  background-size:cover;
  background-position:center;
  box-shadow:0 24px 70px rgba(0,0,0,.55);
  position:relative;
}

.hw-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 50% 35%, rgba(0,0,0,.06), rgba(0,0,0,.72)),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.52));
  pointer-events:none;
}

.hw-track{
  display:flex;
  align-items:center;
  gap:12px;
  margin:14px 0 12px;
  cursor:pointer;
}

.hw-trackArt{
  width:54px;
  height:54px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
  overflow:hidden;
  flex:0 0 auto;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.hw-trackArt img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.95;
}

.hw-trackTitle{
  font-family:var(--serif);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:14px;
  color:rgba(233,236,245,.92);
}

.hw-trackSub{
  font-family:var(--mono);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(233,236,245,.55);
  margin-top:4px;
}

.hw-trackListRows{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.hw-trackBtn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.20);
  color:rgba(233,236,245,.86);
  cursor:pointer;
  transition:transform .12s ease, border-color .12s ease, background .12s ease;
  text-align:left;
}

.hw-trackBtn:hover{
  transform:translateY(-1px);
  border-color:rgba(215,194,154,.20);
  background:rgba(0,0,0,.26);
}

.hw-trackBtn.isActiveTrack{
  border-color:rgba(215,194,154,.34);
  background:rgba(16,20,33,.35);
}

.hw-trackBtn .name{
  font-family:var(--serif);
  letter-spacing:.06em;
  font-size:14px;
  flex:1;
}

.hw-trackBtn .tag{
  font-family:var(--mono);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(215,194,154,.78);
}

.hw-trackBtn img,
.hw-elIcon{
  width:20px !important;
  height:20px !important;
  max-width:20px !important;
  max-height:20px !important;
  object-fit:contain;
  opacity:.92;
}

.hw-controls{
  display:grid;
  grid-template-columns:50px 1fr 160px;
  gap:12px;
  align-items:center;
  margin-top:12px;
}

.hw-iconBtn{
  width:50px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(215,194,154,.20);
  background:rgba(16,20,33,.35);
  color:rgba(233,236,245,.86);
  font-weight:900;
  cursor:pointer;
  transition:transform .15s ease, border-color .15s ease, background .15s ease;
}

.hw-iconBtn:hover{
  transform:translateY(-1px);
  border-color:rgba(215,194,154,.34);
  background:rgba(16,20,33,.55);
}

.hw-progressWrap{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.hw-time{
  display:flex;
  gap:8px;
  align-items:center;
  color:rgba(233,236,245,.55);
  font-family:var(--mono);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:11px;
}

.hw-time .sep{opacity:.6}

input[type="range"]{
  width:100%;
  accent-color:rgba(215,194,154,.88);
}

.hw-vol{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:flex-end;
}

.hw-volLabel{
  font-family:var(--mono);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(233,236,245,.55);
}

.hw-playerNote{
  margin-top:10px;
  color:rgba(233,236,245,.50);
  font-family:var(--mono);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:11px;
}

#hw-yt-host{
  position:fixed;
  width:1px;
  height:1px;
  left:-9999px;
  top:-9999px;
  opacity:0;
}

/* ===== Focus ===== */
a:focus-visible,
button:focus-visible,
summary:focus-visible{
  outline:2px solid rgba(215,194,154,.38);
  outline-offset:3px;
  border-radius:14px;
}

/* =========================
   VAULT GATE / PUZZLE
========================= */
.vaultGate{
  position:fixed;
  inset:0;
  z-index:1200;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  pointer-events:none;
  transition:opacity .28s ease;
}

.vaultGate.is-open{
  opacity:1;
  pointer-events:auto;
}

.vaultGate__backdrop{
  position:absolute;
  inset:0;
  background:rgba(3,4,8,.78);
  backdrop-filter:blur(8px);
}

.vaultGate__dialog{
  position:relative;
  width:min(100%, 760px);
  max-height:min(92vh, 980px);
  overflow:auto;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(12,14,20,.96), rgba(8,9,13,.96));
  box-shadow:
    0 30px 90px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.05);
  padding:24px;
}

.vaultGate__close{
  position:absolute;
  top:12px;
  right:12px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#efe3c2;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.vaultGate__close:hover{
  background:rgba(255,255,255,.08);
  box-shadow:0 0 18px rgba(230,216,180,.15);
}

.vaultGate__header{
  text-align:center;
  padding:4px 32px 8px;
}

.vaultGate__eyebrow{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:rgba(230,216,180,.72);
  margin-bottom:8px;
}

.vaultGate__title{
  margin:0;
  font-size:clamp(2rem, 4vw, 3rem);
  color:#f0e5c8;
}

.vaultGate__text{
  margin:10px auto 0;
  max-width:540px;
  color:rgba(233,236,245,.72);
}

.vaultGate__media{
  display:flex;
  justify-content:center;
  margin-top:12px;
  margin-bottom:18px;
}

.vaultGate__imageFade{
  position:relative;
  width:min(100%, 420px);
}

#puzzleOverlay,
#passwordImage{
  display:block;
  width:100%;
  transition:opacity 1s ease;
  user-select:none;
  -webkit-user-drag:none;
  pointer-events:none;
}

#passwordImage{
  position:absolute;
  inset:0;
  opacity:0;
}

.vaultGate__puzzleWrap,
.vaultPuzzleWrap{
  display:flex;
  justify-content:center;
}

.vaultPuzzle{
  --tile-size:120px;
  position:relative;
  display:grid;
  grid-template-columns:repeat(4, var(--tile-size));
  grid-template-rows:repeat(4, var(--tile-size));
  gap:2px;
  padding:12px;
  border-radius:18px;
  background:rgba(0,0,0,.58);
  box-shadow:0 0 30px rgba(0,0,0,.5);
  transition:box-shadow .3s ease, transform .2s ease;
  touch-action:none;
}

.vaultPuzzle.pulse{
  animation:vaultGlowPulse 1.5s infinite;
}

.vaultPuzzle.shake{
  animation:vaultPuzzleShake .18s linear infinite;
}

.vaultPuzzle.error{
  animation:vaultRedPulse .8s ease;
}

.vaultTile{
  width:var(--tile-size);
  height:var(--tile-size);
  overflow:hidden;
  background:#000;
  border:1px solid rgba(255,255,255,.08);
  cursor:grab;
}

.vaultTile img{
  width:100%;
  height:100%;
  display:block;
  pointer-events:none;
  user-select:none;
  -webkit-user-drag:none;
}

.vaultTile.is-dragging{
  cursor:grabbing;
}

.vaultTile.is-dragging img{
  opacity:.18;
}

.vaultTileFlash{
  animation:vaultTileFlash .15s ease-out;
}

.vaultGhost{
  position:fixed;
  z-index:9999;
  opacity:.88;
  transform:scale(1.06);
  pointer-events:none;
  display:none;
  box-shadow:0 0 18px rgba(230,216,180,.35);
}

.vaultGate__controls,
.vaultControls{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  margin-top:18px;
}

#vaultPasswordInput{
  width:100%;
  max-width:300px;
  padding:12px 14px;
  font-size:16px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  outline:none;
}

#vaultPasswordInput::placeholder{
  color:rgba(255,255,255,.42);
}

.vaultGate__btn,
.vaultBtn{
  width:100%;
  max-width:300px;
  padding:14px 24px;
  border-radius:12px;
  border:2px solid #e6d8b4;
  background:transparent;
  color:#e6d8b4;
  font-size:18px;
  cursor:pointer;
  transition:all .25s ease;
}

.vaultGate__btn:hover,
.vaultBtn:hover{
  background:rgba(230,216,180,.08);
  box-shadow:0 0 15px rgba(230,216,180,.28);
}

.vaultGate__btn.pulse,
.vaultBtn.pulse{
  animation:vaultGlowPulse 1.5s infinite;
}

.vaultGate__btn--secondary,
.vaultBtnSecondary{
  display:none;
  border-color:rgba(230,216,180,.5);
  color:rgba(230,216,180,.85);
}

.vaultGate__controls.compact #vaultPasswordInput,
.vaultGate__controls.compact .vaultGate__btn,
.vaultControls.compact #vaultPasswordInput,
.vaultControls.compact .vaultBtn{
  max-width:260px;
  font-size:16px;
  padding:10px 18px;
}

.vaultGate__flash,
.vaultUnlockFlash{
  position:fixed;
  inset:0;
  background:#fff;
  opacity:0;
  pointer-events:none;
  z-index:1300;
}

.vaultGate__flash.flash,
.vaultUnlockFlash.flash{
  animation:vaultFlashAnim 1s ease-in-out forwards;
}

.vault-hidden{
  display:none !important;
}

.vaultUnlockSection{
  padding:18px 22px 8px;
}

.vaultUnlockTitle{
  text-align:center;
}

.vaultUnlockCard{
  position:relative;
  margin:0 auto;
  width:min(100%, 760px);
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(12,14,20,.96), rgba(8,9,13,.96));
  box-shadow:
    0 30px 90px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.05);
  padding:24px;
}

.vaultUnlockMedia{
  display:flex;
  justify-content:center;
  margin-bottom:18px;
}

.vaultUnlockImageFade{
  position:relative;
  width:min(100%, 420px);
}

@keyframes vaultGlowPulse{
  0%{ box-shadow:0 0 10px rgba(230,216,180,.55); }
  50%{ box-shadow:0 0 25px rgba(230,216,180,.95); }
  100%{ box-shadow:0 0 10px rgba(230,216,180,.55); }
}

@keyframes vaultRedPulse{
  0%,100%{ box-shadow:0 0 0 rgba(255,0,0,0); }
  50%{ box-shadow:0 0 25px rgba(255,0,0,.8); }
}

@keyframes vaultPuzzleShake{
  0%{ transform:translate(0,0); }
  10%{ transform:translate(-2px,-2px); }
  20%{ transform:translate(2px,-2px); }
  30%{ transform:translate(-2px,2px); }
  40%{ transform:translate(2px,2px); }
  50%{ transform:translate(-1px,-2px); }
  60%{ transform:translate(2px,1px); }
  70%{ transform:translate(-1px,2px); }
  80%{ transform:translate(2px,-1px); }
  90%{ transform:translate(-2px,1px); }
  100%{ transform:translate(0,0); }
}

@keyframes vaultTileFlash{
  0%{
    transform:scale(1);
    box-shadow:0 0 10px rgba(230,216,180,.55);
  }
  50%{
    transform:scale(1.08);
    box-shadow:0 0 25px rgba(255,242,192,.95);
  }
  100%{
    transform:scale(1);
    box-shadow:0 0 10px rgba(230,216,180,.55);
  }
}

@keyframes vaultFlashAnim{
  0%{ opacity:0; }
  20%{ opacity:.9; }
  100%{ opacity:0; }
}

/* =========================
   GLOBAL SITE GATE
========================= */
.siteGate{
  position:fixed;
  inset:0;
  z-index:999999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.siteGate.is-hidden{
  display:none;
}

.siteGate__backdrop{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top, rgba(120,120,140,.12), transparent 40%),
    rgba(5,6,10,.92);
  backdrop-filter:blur(10px);
}

.siteGate__panel{
  position:relative;
  z-index:2;
  width:min(100%, 520px);
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(16,18,26,.96), rgba(8,10,15,.96));
  box-shadow:
    0 30px 90px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.04);
  text-align:center;
}

.siteGate__eyebrow{
  font-size:.78rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(230,216,180,.76);
  margin-bottom:10px;
}

.siteGate__title{
  margin:0;
  font-size:clamp(2rem, 4vw, 2.8rem);
  color:#f1e5c8;
}

.siteGate__text{
  margin:12px auto 0;
  max-width:380px;
  color:rgba(233,236,245,.72);
  line-height:1.55;
}

.siteGate__form{
  margin-top:22px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
}

.siteGate__input{
  width:100%;
  max-width:320px;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.05);
  color:#fff;
  font-size:16px;
  outline:none;
}

.siteGate__input::placeholder{
  color:rgba(255,255,255,.38);
}

.siteGate__button{
  width:100%;
  max-width:320px;
  padding:14px 20px;
  border-radius:12px;
  border:2px solid #e6d8b4;
  background:transparent;
  color:#e6d8b4;
  font-size:17px;
  cursor:pointer;
  transition:all .2s ease;
}

.siteGate__button:hover{
  background:rgba(230,216,180,.08);
  box-shadow:0 0 15px rgba(230,216,180,.22);
}

.siteGate__button.is-error,
.siteGate__input.is-error{
  border-color:#ff5a5a;
  box-shadow:0 0 18px rgba(255,90,90,.18);
}

.siteGate__error{
  min-height:1.2em;
  margin:10px 0 0;
  color:#ff8b8b;
  font-size:.95rem;
}

body.siteGate-lock{
  overflow:hidden;
}

/* ===== Desktop tuning ===== */
@media (max-width: 1180px){
  .hw-header__inner{
    gap:18px;
  }

  .hw-nav{
    gap:16px;
    font-size:12px;
    letter-spacing:.13em;
  }

  .hw-nav__vault{
    padding:0 16px;
  }
}

/* ===== Tablet / smaller desktop ===== */
@media (max-width: 980px){
  .hw-heroGrid,
  .hw-coreGrid,
  .hw-playerGrid{
    grid-template-columns:1fr;
  }

  .hw-cards,
  .hw-collectorGrid{
    grid-template-columns:1fr;
  }

  .hw-controls{
    grid-template-columns:50px 1fr;
  }

  .hw-vol{
    justify-content:flex-start;
  }

  .hw-collectorGrid4{
    grid-template-columns:repeat(2, 1fr);
  }

  .hw-trailerFrameCinema{
    aspect-ratio:16 / 9;
    min-height:unset;
  }

  .hw-logoMega{
    max-width:min(560px, 82vw);
  }

  .hw-heroWhispers .w2,
  .hw-heroWhispers .w3{
    display:none;
  }

  .hw-home .hw-homeStage{
    margin-top:clamp(28px, 6vh, 96px);
  }

  .hw-sketchStage{
    min-height:380px;
  }

  .hw-sketchSlide img{
    height:380px;
  }

  .hw-header__inner{
    gap:14px;
    min-height:68px;
  }

  .hw-brand__sub{
    display:none;
  }

  .hw-nav{
    gap:13px;
    font-size:11px;
    letter-spacing:.11em;
  }
}

/* ===== Mobile ===== */
@media (max-width: 860px){
  .wrap{
    padding:0 16px;
  }

  .hw-header{
    background:
      linear-gradient(180deg, rgba(7,8,12,.97), rgba(7,8,12,.90));
    box-shadow:
      0 12px 34px rgba(0,0,0,.24),
      inset 0 1px 0 rgba(255,255,255,.02);
  }

  .hw-header__inner{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:84px;
    gap:0;
    padding:10px 0;
  }

  .hw-brand{
    width:100%;
    max-width:none;
    justify-content:center;
    text-align:center;
    gap:0;
    margin:0 auto;
  }

  .hw-brand__text{
    width:100%;
    align-items:center;
    justify-content:center;
  }

  .hw-brand__logoImg{
    display:block;
    height:42px;
    width:auto;
    margin:0 auto;
    opacity:.98;
  }

  .hw-brand__sub{
    display:none;
  }

  .hw-brand__name{
    font-size:11px;
    letter-spacing:.18em;
    color:rgba(215,194,154,.94);
    text-align:center;
    margin-top:6px;
  }

  .hw-menuToggle{
    display:flex;
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    margin:0;
    z-index:30;
  }

  .hw-nav{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    width:auto;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:8px;
    margin-left:0;
    padding:14px;
    overflow:visible;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.08);
    background:
      linear-gradient(180deg, rgba(12,14,20,.98), rgba(8,9,13,.98));
    box-shadow:
      0 24px 60px rgba(0,0,0,.42),
      inset 0 1px 0 rgba(255,255,255,.03);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-8px);
    transition:
      opacity .22s ease,
      transform .22s ease,
      visibility .22s ease;
    font-size:11px;
    letter-spacing:.10em;
    mask-image:none;
  }

  .hw-header.is-open .hw-nav{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }

  .hw-nav__link,
  .hw-nav__vault{
    flex:0 0 auto;
    width:100%;
    justify-content:flex-start;
    min-height:44px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.07);
    background:
      linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    box-shadow:
      0 8px 20px rgba(0,0,0,.18),
      inset 0 1px 0 rgba(255,255,255,.03);
  }

  .hw-nav__link{
    color:rgba(233,236,245,.84);
  }

  .hw-nav__link::after{
    display:none;
  }

  .hw-nav__link:hover{
    color:#fff;
    transform:none;
  }

  .hw-nav__link[aria-current="page"]{
    color:#fff;
    border-color:rgba(215,194,154,.30);
    background:
      radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 42%),
      linear-gradient(135deg, rgba(215,194,154,.16), rgba(255,77,109,.05));
  }

  .hw-nav__vault{
    border-color:rgba(215,194,154,.34);
    background:
      radial-gradient(circle at 20% 20%, rgba(255,255,255,.09), transparent 40%),
      linear-gradient(135deg, rgba(215,194,154,.20), rgba(255,77,109,.06));
  }

  .hw-nav__vault:hover{
    transform:none;
  }

  .hw-rule{
    display:none;
  }

  .hw-heroWhispers,
  .hw-grain{
    display:none !important;
  }

  .hw-home .hw-hero::before{
    background:
      radial-gradient(circle at 50% 30%, rgba(255,255,255,.06), transparent 30%),
      linear-gradient(180deg, rgba(7,8,12,.18) 0%, rgba(7,8,12,.46) 52%, rgba(7,8,12,.84) 100%);
  }

  .hw-home .hw-hero::after{
    height:180px;
  }

  .hw-heroInner{
    padding:22px 0 18px;
  }

  .hw-home .hw-logoMega{
    display:none;
  }

  .hw-home .hw-homeHeroCenter{
    padding-top:4px;
  }

  .hw-home .hw-kickerCenter{
    margin-top:0;
  }

  .hw-kicker{
    font-size:10px;
    letter-spacing:.12em;
    padding:8px 12px;
  }

  .hw-heroH1,
  .hw-heroH1Center{
    font-size:clamp(30px, 9vw, 42px);
    line-height:1.02;
    max-width:none;
    margin:12px auto 10px;
  }

  .hw-heroH1Center span{
    display:block;
  }

  .hw-heroLead,
  .hw-heroLeadCenter{
    font-size:14px;
    line-height:1.65;
    max-width:34ch;
    margin-left:auto;
    margin-right:auto;
  }

  .hw-topDevCta{
    margin-top:12px;
    margin-bottom:6px;
  }

  .hw-devBanner{
    width:min(100%, 360px);
    min-height:66px;
    padding:12px 16px;
    border-radius:18px;
  }

  .hw-devBannerEyebrow{
    font-size:9px;
    letter-spacing:.16em;
  }

  .hw-devBannerTitle{
    font-size:clamp(19px, 6vw, 24px);
  }

  .hw-devBanner small{
    font-size:9px;
    letter-spacing:.13em;
  }

  .hw-homeRule,
  .hw-homeRuleCenter{
    display:none !important;
  }

  .hw-heroCtas,
  .hw-heroCtasCenter{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    margin-top:16px;
  }

  .hw-heroCtas .hw-btn,
  .hw-heroCtasCenter .hw-btn{
    width:100%;
  }

  .hw-textLink{
    margin-top:12px;
    font-size:10px;
    letter-spacing:.12em;
  }

  .hw-home .hw-homeStage{
    margin-top:24px;
    margin-bottom:20px;
  }

  .hw-homeStageHero{
    width:calc(100vw - 32px);
    margin-top:18px;
    margin-bottom:10px;
    margin-left:0;
    transform:none;
  }

  .hw-homeStageHero .hw-homeTrailer{
    width:100%;
  }

  .hw-trailerFrameCinema{
    aspect-ratio:16 / 9 !important;
    min-height:220px !important;
  }

  .hw-homeStageHero .hw-trailerFrameCinema{
    min-height:240px !important;
  }

  .hw-trailerPlay{
    min-width:min(100%, 280px);
    min-height:66px;
    padding:12px 16px;
    gap:10px;
  }

  .hw-trailerPlay .tri{
    border-left:11px solid rgba(215,194,154,.92);
    border-top:7px solid transparent;
    border-bottom:7px solid transparent;
  }

  .hw-trailerPlay span:last-child{
    font-size:clamp(19px, 6vw, 24px);
  }

  .hw-trailerHint{
    font-size:10px;
    letter-spacing:.08em;
    max-width:28ch;
  }

  .hw-homeTrailerTag{
    left:10px;
    bottom:10px;
    font-size:9px;
    padding:6px 8px;
    letter-spacing:.10em;
  }

  .hw-sectionTitle{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    margin:16px 0 10px;
  }

  .hw-sectionTitle h2{
    font-size:22px;
    letter-spacing:.08em;
  }

  .hw-sectionTitle p{
    font-size:13px;
    line-height:1.55;
    max-width:none;
  }

  .hw-corePanel{
    padding:16px;
    margin-top:18px;
  }

  .hw-coreHead{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    margin-bottom:12px;
  }

  .hw-coreHead h2{
    font-size:20px;
  }

  .hw-coreText p,
  .hw-coreBullets .b{
    font-size:14px;
    line-height:1.65;
  }

  .hw-coreCtas{
    flex-direction:column;
    align-items:stretch;
  }

  .hw-coreCtas .hw-btn{
    width:100%;
  }

  .hw-coreIcons .miniTitle:nth-of-type(2),
  .hw-coreIcons .hw-iconRowLarge:nth-of-type(2),
  .hw-miniNote2{
    display:none;
  }

  .hw-iconRowLarge{
    gap:10px;
  }

  .hw-iconRowLarge .ic{
    width:54px;
    height:54px;
  }

  .hw-iconRowLarge .ic img{
    width:34px;
    height:34px;
  }

  .hw-sketches{
    padding:16px;
    margin-top:18px;
  }

  .hw-sketchStage{
    min-height:260px;
  }

  .hw-sketchSlide{
    border-radius:18px;
  }

  .hw-sketchSlide img{
    height:260px;
  }

  .hw-sketchOverlay{
    left:14px;
    bottom:14px;
    gap:4px;
  }

  .hw-sketchOverlay strong{
    font-size:15px;
    letter-spacing:.06em;
  }

  .hw-sketchOverlay span{
    font-size:10px;
    letter-spacing:.08em;
  }

  .hw-sketchNav{
    justify-content:stretch;
    gap:8px;
  }

  .hw-sketchNav .hw-btn{
    flex:1 1 0;
  }

  .hw-shot .cap{
    padding:12px;
  }

  .hw-shot .cap strong{
    font-size:12px;
  }

  .hw-shot .cap span{
    font-size:10px;
    letter-spacing:.10em;
  }

  .hw-footer{
    margin-top:20px;
    padding:16px 0 22px;
  }

  .hw-footer__inner{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    font-size:11px;
    letter-spacing:.10em;
  }
}

@media (max-width: 768px){
  .vaultGate{
    padding:14px;
  }

  .vaultGate__dialog{
    padding:18px 14px 18px;
    border-radius:20px;
  }

  .vaultUnlockCard{
    padding:18px 14px;
    border-radius:20px;
  }

  .vaultPuzzle{
    --tile-size:70px;
    padding:8px;
  }

  .vaultGate__btn,
  .vaultBtn,
  #vaultPasswordInput{
    width:92%;
  }
}

@media (max-width: 640px){
  .wrap{
    padding:0 16px;
  }

  .hw-home .hw-heroMedia,
  .hw-heroFog{
    animation:none;
  }

  .hw-header__inner{
    min-height:76px;
    padding:8px 0;
  }

  .hw-brand__logoImg{
    height:36px;
  }

  .hw-brand__name{
    font-size:10px;
    letter-spacing:.16em;
    margin-top:5px;
  }

  .hw-menuToggle{
    width:46px;
    height:46px;
    border-radius:13px;
    right:0;
  }

  .hw-nav{
    top:calc(100% + 8px);
    padding:12px;
    border-radius:18px;
    gap:7px;
    font-size:10px;
    letter-spacing:.10em;
  }

  .hw-nav__link,
  .hw-nav__vault{
    min-height:42px;
    padding:0 13px;
  }

  .hw-kicker{
    font-size:9px;
    letter-spacing:.10em;
    padding:7px 10px;
  }

  .hw-heroH1,
  .hw-heroH1Center{
    font-size:clamp(28px, 9.2vw, 36px);
    max-width:none;
  }

  .hw-heroLead,
  .hw-heroLeadCenter{
    font-size:13px;
    line-height:1.6;
    max-width:30ch;
  }

  .hw-iconRow .ic{
    width:52px;
    height:52px;
  }

  .hw-iconRow img{
    width:32px;
    height:32px;
  }

  .hw-iconRowLarge .ic{
    width:50px;
    height:50px;
  }

  .hw-iconRowLarge .ic img{
    width:30px;
    height:30px;
  }

  .hw-sketchStage{
    min-height:220px;
  }

  .hw-sketchSlide img{
    height:220px;
  }

  .hw-sketchNav{
    justify-content:flex-start;
  }

  .hw-homeStageHero .hw-trailerFrameCinema{
    min-height:210px !important;
  }

  .hw-trailerPlay{
    min-width:min(100%, 250px);
    min-height:60px;
    padding:11px 14px;
  }

  .hw-trailerPlay span:last-child{
    font-size:clamp(18px, 5.6vw, 22px);
  }

  .hw-trailerHint,
  .hw-homeTrailerTag{
    display:none;
  }

  .siteGate__panel{
    padding:22px 16px;
    border-radius:18px;
  }
}

@media (max-width: 520px){
  .hw-heroH1{
    font-size:28px;
  }

  .hw-heroH1Center{
    font-size:clamp(32px, 4.8vw, 54px);
    max-width:none;
  }

  .hw-heroLeadCenter{
    font-size:14px;
    line-height:1.4;
  }

  .hw-collectorGrid4{
    grid-template-columns:1fr;
  }

  .hw-audioVol{
    width:90px;
  }

  .hw-heroWhispers span{
    font-size:12px;
    letter-spacing:.14em;
  }
}

@media (max-width: 420px){
  .hw-brand__name{
    font-size:10px;
    letter-spacing:.14em;
  }

  .hw-nav__link,
  .hw-nav__vault{
    padding:0 12px;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-step,
  .hw-homeTiles .hw-card,
  .hw-heroWhispers span,
  .hw-home .hw-heroMedia,
  .hw-heroFog,
  .hw-trailerPlay{
    animation:none !important;
    transform:none !important;
    opacity:1 !important;
    filter:none !important;
  }
}