:root{
  --space-blue:#0B1A3A;
  --panel-blue:#102A4C;
  --neon-orange:#FF6A00;
  --electric-purple:#9B5DFF;
  --white:#FFFFFF;
  --cloud-gray:#B0B8C5;
  --midnight-blue:#050D1F;
  --cyan-teal:#00E5FF;
  --bg:var(--midnight-blue);
  --surface:var(--space-blue);
  --surface-alt:var(--panel-blue);
  --text:var(--white);
  --text-dim:var(--cloud-gray);
  --accent:var(--neon-orange);
  --accent-2:var(--electric-purple);
  --signal:var(--cyan-teal);
  --radius:16px;
  --radius-sm:10px;
  --border-w:3px;
  --border-w-hard:4px;
  --shadow-hard:10px 10px 0 rgba(0,0,0,.45);
  --shadow-glow:0 0 24px rgba(0,229,255,.28);
  --header-h:80px;
  --sidebar-w:300px;
  --trans: .25s cubic-bezier(.4,0,.2,1);
  --font-head:'Space Grotesk','HarmonyOS Sans SC','PingFang SC','Microsoft YaHei',sans-serif;
  --font-body:'Inter','PingFang SC','Microsoft YaHei',sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);
  font-size:1rem;
  line-height:1.7;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:var(--signal);text-decoration:none}
a:hover{text-decoration:underline}
ul,ol{list-style:none}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}
:focus-visible{outline:3px solid var(--signal);outline-offset:3px;border-radius:4px}
::selection{background:var(--neon-orange);color:#fff}

#main-content{min-height:60vh}

header[data-header]{position:relative}

.skip-link{
  position:absolute;
  top:-100%;
  left:1.5rem;
  z-index:3000;
  background:var(--signal);
  color:#001018;
  padding:.7rem 1.2rem;
  font-weight:700;
  border-radius:0 0 var(--radius-sm) var(--radius-sm);
  transition:top .3s;
}
.skip-link:focus{top:0;text-decoration:none}

.stk-scrollbar{
  position:fixed;
  top:0;left:0;
  height:4px;
  width:0%;
  background:var(--signal);
  z-index:4000;
  box-shadow:0 0 12px rgba(0,229,255,.8);
  transition:width .1s linear;
}
@media (prefers-reduced-motion:reduce){
  .stk-scrollbar{transition:none}
}

.stk-header{
  background:var(--surface);
  border-bottom:var(--border-w-hard) solid var(--panel-blue);
  position:sticky;
  top:0;
  z-index:2000;
  box-shadow:0 6px 0 rgba(0,0,0,.3);
}
.stk-header-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:stretch;
  max-width:1440px;
  margin:0 auto;
  padding:0 2rem;
  min-height:var(--header-h);
  position:relative;
}
.stk-orbit{
  display:none;
}
.stk-brand{
  display:flex;
  align-items:center;
  gap:1rem;
  padding:.6rem 1rem .6rem 0;
  position:relative;
}
.stk-brand::after{
  content:'';
  position:absolute;
  right:0;
  top:20%;
  height:60%;
  width:3px;
  background:var(--panel-blue);
}
.stk-brand-mark{
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  background:var(--neon-orange);
  color:var(--midnight-blue);
  font-family:var(--font-head);
  font-weight:700;
  font-size:1.6rem;
  clip-path:polygon(0 0,100% 0,100% 75%,75% 100%,0 100%);
  box-shadow:var(--shadow-hard);
}
.stk-brand-name{
  font-family:var(--font-head);
  font-size:1.55rem;
  font-weight:700;
  letter-spacing:-.03em;
  color:var(--text);
  display:flex;
  align-items:baseline;
  gap:.1rem;
}
.stk-brand-name span{
  color:var(--neon-orange);
  font-weight:700;
}
.stk-brand-status{
  display:flex;
  align-items:center;
  gap:.4rem;
  font-size:.65rem;
  color:var(--signal);
  letter-spacing:.1em;
  text-transform:uppercase;
  background:rgba(0,229,255,.08);
  border:1px solid rgba(0,229,255,.3);
  border-radius:99px;
  padding:.2rem .6rem;
  margin-left:.2rem;
}
.stk-brand-status::before{
  content:'';
  width:8px;height:8px;
  border-radius:50%;
  background:var(--signal);
  animation:stkPulse 2s infinite;
}
@keyframes stkPulse{
  0%,100%{opacity:1;box-shadow:0 0 4px var(--signal)}
  50%{opacity:.5;box-shadow:0 0 12px var(--signal)}
}
.stk-nav-area{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:0 1rem 0 2rem;
  gap:.15rem;
}
.stk-nav-decl{
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--cloud-gray);
  border-left:3px solid var(--electric-purple);
  padding-left:.8rem;
  line-height:1.4;
}
.stk-nav-list{
  display:flex;
  gap:2rem;
  flex-wrap:wrap;
  align-items:center;
}
.stk-nav-link{
  font-family:var(--font-head);
  font-size:.93rem;
  font-weight:700;
  color:var(--text-dim);
  position:relative;
  padding:.4rem .2rem;
  letter-spacing:.04em;
  transition:color .2s, text-shadow .2s;
}
.stk-nav-link::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:0%;height:3px;
  background:var(--neon-orange);
  transition:width .3s;
}
.stk-nav-link:hover,.stk-nav-link[aria-current='page']{
  color:var(--white);
  text-shadow:0 0 12px rgba(255,106,0,.5);
  text-decoration:none;
}
.stk-nav-link:hover::after,
.stk-nav-link[aria-current='page']::after{
  width:100%;
}
.stk-nav-link[aria-current='page']{
  color:var(--signal);
}
.stk-cta{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  background:var(--neon-orange);
  color:#0B0020;
  font-family:var(--font-head);
  font-weight:700;
  font-size:.92rem;
  letter-spacing:.05em;
  padding:.9rem 1.4rem;
  margin:auto 0;
  border-radius:0 var(--radius-sm) 0 var(--radius-sm);
  box-shadow:6px 6px 0 var(--electric-purple);
  transition:transform .25s, box-shadow .25s, background .25s;
  white-space:nowrap;
}
.stk-cta span{position:relative;z-index:1}
.stk-cta:hover{
  transform:translate(3px,3px);
  box-shadow:3px 3px 0 var(--electric-purple);
  text-decoration:none;
  background:var(--electric-purple);
  color:#fff;
}
.stk-cta-arrow{
  font-style:normal;
  transition:transform .3s;
}
.stk-cta:hover .stk-cta-arrow{transform:translateX(4px)}
.stk-nav-toggle{
  display:none;
}

@media(max-width:1080px){
  .stk-header-inner{grid-template-columns:auto 1fr auto;padding:0 1rem}
  .stk-brand-name{font-size:1.25rem}
  .stk-brand-status{display:none}
  .stk-nav-list{gap:1.2rem}
  .stk-nav-link{font-size:.82rem}
  .stk-cta{padding:.7rem .9rem;font-size:.78rem}
}

@media(max-width:768px){
  :root{--header-h:64px}
  .stk-header-inner{
    grid-template-columns:auto 1fr auto;
    padding:0 1rem;
    min-height:var(--header-h);
  }
  .stk-brand{padding:.4rem 0}
  .stk-brand-mark{width:38px;height:38px;font-size:1.3rem;box-shadow:4px 4px 0 rgba(0,0,0,.4)}
  .stk-brand-name{font-size:1.2rem}
  .stk-brand::after{display:none}
  .stk-nav-area{
    position:fixed;
    top:var(--header-h);
    left:0;
    width:100%;
    background:var(--surface);
    border-bottom:var(--border-w) solid var(--panel-blue);
    padding:1.2rem 1.5rem 1.8rem;
    gap:1rem;
    flex-direction:row;
    flex-wrap:wrap;
    align-items:flex-start;
    transform:translateY(-20px);
    opacity:0;
    visibility:hidden;
    transition:transform .35s, opacity .35s, visibility .35s;
    box-shadow:0 12px 30px rgba(0,0,0,.4);
    z-index:2999;
  }
  .stk-nav-area[data-open='true'],
  .stk-header .stk-nav-area[data-open]{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
  }
  .stk-nav-decl{
    width:100%;
    border-left:3px solid var(--electric-purple);
    padding-left:.8rem;
  }
  .stk-nav-list{
    flex-direction:column;
    align-items:flex-start;
    gap:.15rem;
    width:100%;
  }
  .stk-nav-link{
    display:block;
    font-size:1.05rem;
    padding:.55rem 0;
  }
  .stk-cta{
    font-size:0;
    padding:.7rem;
    width:48px;
    height:48px;
    justify-content:center;
    border-radius:0 0 0 0;
    box-shadow:4px 4px 0 var(--electric-purple);
    margin:auto 0;
  }
  .stk-cta span{font-size:0}
  .stk-cta-arrow{font-size:1.5rem;line-height:1}
  .stk-nav-toggle{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:48px;
    height:48px;
    padding:.6rem;
    margin:auto 0 auto .6rem;
    background:var(--panel-blue);
    border:var(--border-w) solid var(--panel-blue);
    border-radius:var(--radius-sm);
    transition:border-color .3s, background .3s;
  }
  .stk-nav-toggle:hover{border-color:var(--signal);background:var(--space-blue)}
  .stk-nav-toggle-line{
    display:block;
    height:3px;
    width:100%;
    background:var(--white);
    border-radius:3px;
    transition:transform .3s, opacity .3s;
  }
  .stk-nav-toggle[aria-expanded='true'] .stk-nav-toggle-line:nth-child(1){transform:translateY(8px) rotate(45deg)}
  .stk-nav-toggle[aria-expanded='true'] .stk-nav-toggle-line:nth-child(2){opacity:0}
  .stk-nav-toggle[aria-expanded='true'] .stk-nav-toggle-line:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
}

@media(min-width:1081px){
  .stk-header{
    position:sticky;
    top:0;
  }
  .stk-orbit{
    position:absolute;
    left:0;
    top:0;
    width:300px;
    height:100%;
    background:var(--panel-blue);
    overflow:hidden;
    display:block;
    pointer-events:none;
    z-index:0;
    border-right:var(--border-w) solid var(--space-blue);
  }
  .stk-orbit::before{
    content:'';
    position:absolute;
    width:180px;height:180px;
    border-radius:50%;
    border:1px dashed rgba(0,229,255,.4);
    left:-20px;top:50%;
    transform:translateY(-50%);
    animation:rotate 24s linear infinite;
  }
  .stk-orbit::after{
    content:'';
    position:absolute;
    width:100px;height:100px;
    border-radius:50%;
    background:rgba(155,93,255,.25);
    filter:blur(30px);
    right:20px;bottom:-30px;
  }
  @keyframes rotate{to{transform:translateY(-50%) rotate(360deg)}}
  .stk-orbit-dot{
    position:absolute;
    top:50%;
    left:70px;
    width:14px;height:14px;
    border-radius:50%;
    background:var(--cyan-teal);
    box-shadow:0 0 20px var(--cyan-teal);
    animation:stkOrbitDot 4s infinite alternate;
  }
  @keyframes stkOrbitDot{
    0%{transform:translateY(-30px);opacity:.6}
    100%{transform:translateY(30px);opacity:1}
  }
  .stk-orbit-pulse{
    position:absolute;
    top:50%;left:70px;
    width:30px;height:30px;
    border-radius:50%;
    border:2px solid rgba(0,229,255,.5);
    animation:pulse 3s infinite;
  }
  @keyframes pulse{
    0%{transform:scale(.6);opacity:1}
    100%{transform:scale(2.5);opacity:0}
  }
  .stk-header-inner{
    grid-template-columns:var(--sidebar-w) 1fr auto;
    padding-left:0;
    padding-right:2rem;
  }
  .stk-brand{
    padding-left:1.6rem;
    z-index:1;
  }
  .stk-brand::before{
    content:'';
    position:absolute;
    left:1.6rem;
    bottom:-6px;
    width:60%;
    height:4px;
    background:linear-gradient(90deg,var(--neon-orange),var(--electric-purple));
    clip-path:polygon(0 0,100% 0,85% 100%,0% 100%);
  }
  .stk-nav-area{
    padding-left:3rem;
    z-index:1;
  }
  .stk-brand::after{display:none}
  .stk-nav-toggle{display:none}
}

.stk-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 2rem;
}
.stk-container-narrow{
  max-width:880px;
  margin:0 auto;
  padding:0 2rem;
}
.stk-grid-12{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:2rem;
}
.stk-card{
  background:var(--surface);
  border:var(--border-w) solid var(--panel-blue);
  border-radius:var(--radius);
  padding:2rem;
  box-shadow:var(--shadow-hard);
  transition:transform .3s, box-shadow .3s, border-color .3s;
}
.stk-card:hover{
  transform:translateY(-6px);
  box-shadow:14px 14px 0 rgba(0,0,0,.5);
  border-color:var(--electric-purple);
}
.stk-panel{
  background:linear-gradient(135deg,var(--surface) 0%,var(--panel-blue) 100%);
  border:var(--border-w-hard) solid var(--panel-blue);
  border-radius:var(--radius);
  padding:2rem;
  position:relative;
}
.stk-panel::before{
  content:'';
  position:absolute;
  top:-4px;left:3rem;
  width:80px;height:3px;
  background:var(--neon-orange);
  clip-path:polygon(0 0,100% 0,85% 100%,0% 100%);
}
.stk-stat{
  font-family:var(--font-head);
  font-size:clamp(2rem,4vw,3rem);
  font-weight:700;
  color:var(--white);
  letter-spacing:-.03em;
}
.stk-stat small{
  font-size:.8rem;
  color:var(--cloud-gray);
  letter-spacing:.06em;
  display:block;
}
.stk-breadcrumb{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-size:.85rem;
  color:var(--text-dim);
  margin-bottom:2rem;
  padding:1rem 0;
  border-bottom:1px solid rgba(176,184,197,.15);
}
.stk-breadcrumb a{
  color:var(--signal);
}
.stk-breadcrumb a:hover{color:var(--neon-orange);text-decoration:none}
.stk-breadcrumb span{color:var(--cloud-gray)}

.stk-filter-bar{
  display:flex;
  flex-wrap:wrap;
  gap:.8rem;
  margin-bottom:2rem;
}
.stk-filter-chip{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:var(--panel-blue);
  color:var(--cloud-gray);
  border:var(--border-w) solid var(--panel-blue);
  border-radius:999px;
  padding:.5rem 1.3rem;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.06em;
  transition:all .25s;
}
.stk-filter-chip::before{
  content:'';
  width:10px;height:10px;
  border-radius:50%;
  background:transparent;
  transition:background .25s;
}
.stk-filter-chip:hover{
  border-color:var(--cyan-teal);
  color:var(--white);
  background:var(--space-blue);
}
.stk-filter-chip.is-active{
  background:var(--accent);
  color:#0B0020;
  border-color:var(--accent);
  box-shadow:0 0 16px rgba(255,106,0,.4);
}
.stk-filter-chip.is-active::before{
  background:var(--midnight-blue);
}

.stk-image-wrap{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  background:linear-gradient(135deg,var(--panel-blue),var(--space-blue));
  border:var(--border-w) solid var(--panel-blue);
  aspect-ratio:4/3;
  box-shadow:8px 8px 0 rgba(0,0,0,.35);
}
.stk-image-wrap::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg,transparent 25%,rgba(0,229,255,.08) 45%,transparent 60%),
    radial-gradient(circle at 80% 20%,rgba(155,93,255,.15),transparent 50%),
    repeating-linear-gradient(90deg,transparent 0 22px,rgba(0,229,255,.02) 22px 23px);
  pointer-events:none;
}
.stk-image-wrap::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  height:6px;
  width:35%;
  background:var(--neon-orange);
  clip-path:polygon(0 0,100% 0,85% 100%,0% 100%);
}
.stk-image-placeholder{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-head);
  color:var(--cloud-gray);
  font-size:.85rem;
  letter-spacing:.12em;
  background:
    linear-gradient(45deg,transparent 55%,rgba(255,255,255,.03) 57%,transparent 60%),
    linear-gradient(-45deg,transparent 55%,rgba(255,106,0,.06) 57%,transparent 60%);
}

@media(max-width:768px){
  .stk-container,.stk-container-narrow{padding:0 1.2rem}
  .stk-grid-12{grid-template-columns:repeat(6,1fr);gap:1rem}
  .stk-card{padding:1.5rem}
  .stk-filter-chip{padding:.4rem 1rem;font-size:.78rem}
}

.stk-footer{
  background:var(--midnight-blue);
  border-top:var(--border-w-hard) solid var(--panel-blue);
  margin-top:5rem;
  position:relative;
  overflow:hidden;
}
.stk-footer-accents{
  pointer-events:none;
}
.stk-footer-corner{
  position:absolute;
  display:block;
}
.corner-a{
  right:-60px;
  top:-60px;
  width:200px;
  height:200px;
  border:30px solid rgba(155,93,255,.12);
  transform:rotate(45deg);
}
.corner-b{
  left:-40px;
  bottom:-40px;
  width:120px;
  height:120px;
  background:rgba(255,106,0,.06);
  clip-path:polygon(0 0,100% 100%,0 100%);
}
.stk-footer-main{
  display:grid;
  grid-template-columns:1.2fr 1fr .8fr;
  gap:3rem;
  padding-top:4rem;
  padding-bottom:3rem;
  position:relative;
  z-index:1;
}
.stk-footer-brand{max-width:400px}
.stk-footer-logo{
  font-family:var(--font-head);
  font-size:2rem;
  font-weight:700;
  color:var(--white);
  letter-spacing:-.03em;
}
.stk-footer-logo span{color:var(--neon-orange)}
.stk-footer-desc{
  margin-top:1rem;
  color:var(--text-dim);
  font-size:.92rem;
  line-height:1.8;
  border-left:3px solid var(--electric-purple);
  padding-left:1.2rem;
}
.stk-footer-label{
  font-size:.72rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--cyan-teal);
  font-weight:700;
  margin-bottom:.8rem;
}
.stk-footer-line{
  color:var(--text-dim);
  font-size:.92rem;
  margin-bottom:.4rem;
  padding-left:1.8rem;
  position:relative;
}
.stk-footer-line::before{
  content:'';
  position:absolute;
  left:.2rem;
  top:50%;
  width:1.2rem;
  height:2px;
  background:var(--neon-orange);
}
.stk-footer-links{
  display:flex;
  flex-direction:column;
  gap:.7rem;
  align-items:flex-start;
}
.stk-footer-link{
  color:var(--cloud-gray);
  font-size:.95rem;
  font-weight:600;
  padding:.4rem 0;
  border-bottom:2px solid transparent;
  transition:color .25s, border-color .25s;
}
.stk-footer-link:hover{
  color:var(--signal);
  border-color:var(--signal);
  text-decoration:none;
}
.stk-footer-bottom{
  border-top:1px solid rgba(176,184,197,.12);
  padding:1.4rem 0;
}
.stk-footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#6B7A91;
  font-size:.82rem;
}

@media(max-width:900px){
  .stk-footer-main{
    grid-template-columns:1fr 1fr;
    gap:2rem;
  }
  .stk-footer-brand{grid-column:1/-1}
}
@media(max-width:600px){
  .stk-footer-main{
    grid-template-columns:1fr;
    gap:1.8rem;
    padding-top:3rem;
  }
  .stk-footer-bottom-inner{flex-direction:column;gap:.5rem;font-size:.75rem}
  .stk-footer-line::before{opacity:0}
  .stk-footer-line{padding-left:0}
}

.stk-back-top{
  position:fixed;
  right:1.5rem;
  bottom:1.5rem;
  width:54px;
  height:54px;
  border-radius:50%;
  background:var(--neon-orange);
  color:#0B0020;
  font-size:1.5rem;
  font-weight:700;
  box-shadow:0 0 0 rgba(0,0,0,0);
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:all .3s;
  z-index:1500;
  border:var(--border-w) solid var(--midnight-blue);
}
.stk-back-top.is-visible{
  opacity:1;
  visibility:visible;
  box-shadow:6px 6px 0 var(--electric-purple), 0 0 24px rgba(255,106,0,.4);
  transform:translateY(0);
}
.stk-back-top:hover{
  transform:translateY(-4px) scale(1.05);
  box-shadow:8px 8px 0 var(--electric-purple), 0 0 32px rgba(255,106,0,.6);
}
@media(max-width:768px){
  .stk-back-top{right:1rem;bottom:1rem;width:46px;height:46px;font-size:1.2rem}
}

[data-reveal]{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].is-revealed{
  opacity:1;
  transform:none;
}
.stk-reveal-child{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .5s ease, transform .5s ease;
}
[data-reveal].is-revealed .stk-reveal-child{
  opacity:1;
  transform:none;
}
[data-reveal].is-revealed .stk-reveal-child:nth-child(1){transition-delay:.08s}
[data-reveal].is-revealed .stk-reveal-child:nth-child(2){transition-delay:.16s}
[data-reveal].is-revealed .stk-reveal-child:nth-child(3){transition-delay:.24s}
[data-reveal].is-revealed .stk-reveal-child:nth-child(4){transition-delay:.32s}
[data-reveal].is-revealed .stk-reveal-child:nth-child(5){transition-delay:.4s}
[data-reveal].is-revealed .stk-reveal-child:nth-child(6){transition-delay:.48s}
[data-reveal].is-revealed .stk-reveal-child:nth-child(7){transition-delay:.56s}
[data-reveal].is-revealed .stk-reveal-child:nth-child(8){transition-delay:.64s}

.stk-filter-item{
  transition:opacity .3s, transform .3s;
}
.stk-filter-item[hidden]{
  display:none;
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
  [data-reveal]{opacity:1;transform:none}
  .stk-reveal-child{opacity:1;transform:none}
  .stk-card:hover{transform:none}
  .stk-cta{transition:none}
}

@media(max-width:768px){
  .stk-nav-area{
    position:fixed;
    top:var(--header-h);
    left:0;
    right:0;
    z-index:2500;
  }
  body.nav-open{
    overflow:hidden;
  }
  body.nav-open .stk-header{
    box-shadow:none;
  }
}

[data-back-top]{display:none}
[data-back-top].is-visible{display:flex;align-items:center;justify-content:center}

.page-hero{
  position:relative;
  padding:5rem 0 4rem;
  overflow:hidden;
}
.page-hero::before{
  content:'';
  position:absolute;
  right:10%;
  top:-40%;
  width:350px;height:350px;
  background:radial-gradient(circle,rgba(155,93,255,.25),transparent 60%);
  pointer-events:none;
  z-index:0;
}
.page-hero .stk-container{position:relative;z-index:1}
.page-title{
  font-family:var(--font-head);
  font-size:clamp(2rem,5vw,4rem);
  font-weight:700;
  line-height:1.1;
  letter-spacing:-.02em;
  margin-bottom:1rem;
  color:var(--white);
}
.page-title .accent{
  color:var(--neon-orange);
}
.page-subtitle{
  font-size:1.1rem;
  color:var(--cloud-gray);
  max-width:560px;
  border-left:4px solid var(--electric-purple);
  padding-left:1.2rem;
}
