/* ============================================
   SETTER — VOLLEYBALL MANAGER
   Design tokens: dark arena court, scoreboard type
   ============================================ */

:root{
  --bg: #050F1E;
  --bg-elevated: #0A1830;
  --bg-card: #101F3B;
  --accent: #4F7CFF;
  --accent-dim: #3A5DBF;
  --text: #F4F0E8;
  --text-muted: #8C96AA;
  --border: rgba(244,240,232,0.10);
  --border-strong: rgba(244,240,232,0.22);

  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'Inter', -apple-system, sans-serif;

  --wrap: 1180px;
}

*{ box-sizing: border-box; margin:0; padding:0; }

html{ scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

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

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

a{ color: inherit; text-decoration: none; }

.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

::selection{ background: var(--accent); color: var(--bg); }

/* ---------- Typography ---------- */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  display:block;
}
.eyebrow.center{ text-align:center; }

.display-xl{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 1.0;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
h1.display-xl{
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.display-lg{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 6.1vw, 5.3rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.display-xl em, .display-lg em{
  font-style: normal;
  color: var(--accent);
}
.center{ text-align: center; }
.max-w{ max-width: 620px; margin-left:auto; margin-right:auto; }

.lead{
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 14px;
}
.lead.muted, .muted{ color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-accent{
  background: var(--accent);
  color: var(--text);
  font-weight: 600;
}
.btn-accent:hover{ transform: translateY(-2px); background:#7C9EFF; }
.btn-outline{
  border-color: var(--border-strong);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover{ border-color: var(--accent); color: var(--accent); }
.btn-small{ padding: 10px 18px; font-size: 0.72rem; }
.btn-steam-icon{ width: 18px; height:auto; flex-shrink:0; }
.btn-small .btn-steam-icon{ width: 15px; height:auto; }

/* ---------- Header ---------- */
.site-header{
  position: static;
  z-index: 200;
  backdrop-filter: blur(10px);
  background: rgba(5,15,30,0.7);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled{
  border-bottom-color: var(--border);
  background: rgba(5,15,30,0.92);
}
.site-header .wrap{ max-width: 1600px; padding: 0 28px; }
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  height: 76px;
  gap: 24px;
}
.logo{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.logo .dot{ color: var(--accent); }
.brand{ display:flex; align-items:center; margin-right:auto; }
.wordmark{ height: 46px; width:auto; display:block; }
@media (max-width: 420px){
  .header-row{ gap: 10px; }
  .header-row .wordmark{ height: 26px; }
  .header-row .btn-small{ padding: 9px 13px; font-size: 0.62rem; letter-spacing: 0.03em; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  display:flex; flex-direction:column; align-items:center;
  overflow: hidden;
}
.hero-row{
  display:flex;
  align-items:center;
  width: 100%;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}
.hero-text{ flex: 0 0 680px; max-width: 54vw; }
.hero-sub{
  max-width: none;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 26px 0 36px;
}
.hero-visual{ flex: 1 1 auto; min-width: 0; }
.hero-visual img{
  width: 100%;
  max-width: 620px;
  height:auto;
  display:block;
  margin: 0 0 0 auto;
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
}
@media (max-width: 1100px){
  .hero-row{
    flex-direction: column;
    padding: 40px 28px 20px;
    gap: 30px;
  }
  .hero-text{ flex: none; max-width: 100%; }
  .hero-visual{ width: 100%; }
  .hero-visual img{
    border-radius: 20px;
    max-width: 480px;
    margin: 0 0 0 auto;
  }
}
.hero-steam-btn{ margin: 10px 0 60px; }
@media (max-width: 600px){
  .hero-steam-btn{ display: none; }
  .hero-sub{ margin-bottom: 0; }
  .hero-row{ padding-bottom: 64px; }
}

/* ---------- Signup form ---------- */
.signup-form{
  display:flex;
  max-width: 480px;
  gap: 0;
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.signup-form input{
  flex:1;
  background: transparent;
  border: none;
  padding: 16px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  min-width: 0;
}
.signup-form input:focus{ outline: 2px solid var(--accent); outline-offset:-2px; }
.signup-form input::placeholder{ color: var(--text-muted); }
.signup-form input:disabled{ opacity: 0.7; cursor: not-allowed; }
.signup-form .btn{ border-radius:0; }
.signup-form .btn:disabled{ opacity: 0.85; cursor: not-allowed; transform: none; }
.center-form{ margin: 0 auto; }
.form-note{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 480px;
}
.form-change-link{
  display:block;
  background: none;
  border: none;
  padding: 0;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
}
.form-change-link:hover{ color: var(--text); }
.final-cta-copy .form-change-link{ color: var(--text); }
.final-cta-copy .form-change-link:hover{ color: rgba(244,240,232,0.7); }
.form-note.center{ margin-left:auto; margin-right:auto; text-align:center; }

@media (max-width: 540px){
  .signup-form{ flex-direction: column; }
  .signup-form .btn{ justify-content:center; }
}

/* ---------- Sections ---------- */
.section{ padding: 110px 0; }
@media (max-width: 600px){
  .section{ padding: 64px 0; }
}
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 800px){
  .two-col{ grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Philosophy ---------- */
.philosophy{
  background: var(--text);
  color: var(--bg);
}
.philosophy-grid{ display:flex; align-items:center; gap: 110px; max-width: 1320px; }
.philosophy-copy{ flex: 0 1 580px; min-width: 0; }
.philosophy-visual{
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  aspect-ratio: 16/12.5;
  background: var(--bg);
  border-radius: 6px;
  overflow: hidden;
  display:flex;
  align-items:flex-end;
  padding: 30px 32px;
}
.philosophy-photo{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index:0;
}
.philosophy-visual::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(5,15,30,0) 45%, rgba(5,15,30,0.8) 100%);
  z-index: 2;
}
.philosophy-watermark{
  position:absolute;
  right: -6vw;
  top: -18%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32rem;
  line-height: 1;
  color: rgba(244,240,232,0.06);
  user-select:none;
  z-index: 3;
}
.philosophy-caption{
  position: relative;
  z-index: 4;
  color: var(--text);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.25;
  text-transform: uppercase;
  max-width: 320px;
}
.philosophy-copy .display-lg{
  color: var(--bg);
  letter-spacing: -0.015em;
  max-width: 480px;
}
.philosophy-copy .lead{
  color: rgba(5,15,30,0.62);
  font-weight: 300;
  font-size: 1.02rem;
  max-width: none;
}
.philosophy-tag{
  display:flex;
  align-items:center;
  gap: 14px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  margin-top: 22px;
}
.philosophy-tag::before{
  content:"";
  width: 32px; height:2px;
  background: var(--bg);
  flex-shrink:0;
}
@media (max-width: 800px){
  .philosophy-grid{ flex-direction: column; align-items:stretch; gap: 30px; }
  .philosophy-copy{ flex-basis: auto; }
  .philosophy-watermark{ font-size: 14rem; }
}

/* ---------- Features ---------- */
.features{ background: var(--bg-elevated); }
.features .display-lg{
  letter-spacing: -0.025em;
}
.features-row{ display:flex; align-items:center; gap: 90px; max-width: 1420px; }
.features-copy{ flex: 0 1 900px; min-width: 0; }
.features-copy .lead{
  max-width: 560px;
  color: #8B96A7;
  font-weight: 300;
  font-size: 1rem;
}
.check-list{
  list-style:none;
  margin-top: 32px;
  display:flex;
  flex-direction: column;
  gap: 16px;
}
.check-list li{
  display:flex;
  align-items:center;
  gap: 10px;
  color: #8B96A7;
  font-weight: 300;
  font-size: 0.88rem;
}
.check-icon{
  flex-shrink:0;
  width: 22px; height:22px;
  color: var(--accent);
}
.features-visual{
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  aspect-ratio: 472/792;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow:hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
}
.features-visual-media{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
@media (max-width: 900px){
  .features-row{ flex-direction: column; gap: 40px; }
  .features-copy{ flex-basis: auto; }
  .features-visual{ max-width: 420px; width:100%; }
}

/* ---------- Gallery / carousel ---------- */
.gallery{ background: var(--text); }
.gallery h2{
  margin: 0 auto 16px;
  max-width: 900px;
  letter-spacing: -0.025em;
  color: var(--bg);
}
.gallery .wrap{ max-width: 1480px; }
.gallery .carousel-tag{ color: rgba(5,15,30,0.55); }
.gallery .carousel-dot{ background: rgba(5,15,30,0.2); }

.carousel{
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0 70px;
}
.carousel-track{
  position: relative;
  height: clamp(240px, 36vw, 520px);
}
.carousel-slide{
  position:absolute;
  left:50%; top:50%;
  width: clamp(300px, 62vw, 920px);
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow:hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 10px 45px rgba(5,15,30,0.18);
  cursor: grab;
  transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .5s ease;
}
.carousel-slide.is-active{ box-shadow: 0 14px 55px rgba(5,15,30,0.22); }
.carousel-slide img{
  width:100%; height:100%; display:block; object-fit:cover;
  cursor: inherit;
  -webkit-user-drag: none;
  user-select: none;
}
.carousel-track.is-dragging .carousel-slide{ cursor: grabbing; }
.carousel-arrow{
  position:absolute;
  top:50%; translate: 0 -50%;
  z-index: 4;
  width: 46px; height:46px;
  padding: 0;
  border-radius:50%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  line-height:1;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.carousel-arrow:hover{ border-color: var(--accent); color: var(--accent); }
.carousel-arrow--prev{ left: 3%; }
.carousel-arrow--next{ right: 3%; }
.carousel-arrow--next .icon-arrow{ margin-left: 3px; }
.carousel-arrow--prev .icon-arrow{ margin-right: 3px; }
@media (max-width: 700px){
  .carousel-arrow{ width:44px; height:44px; top:auto; bottom:10px; translate: 0 0; }
  .icon-arrow{ width:16px; height:16px; }
  .carousel-arrow--prev{ left: 4%; }
  .carousel-arrow--next{ right: 4%; }
}

.carousel-caption{
  margin-top: 32px;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  text-align:center;
}
.carousel-tag{
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.carousel-caption h3{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 0.03em;
}
.carousel-dots{
  display:flex; justify-content:center; gap:10px;
  margin-top: 22px;
}
.carousel-dot{
  position: relative;
  width:8px; height:8px;
  border-radius:50%;
  background: var(--border-strong);
  border:none;
  cursor:pointer;
  padding:0;
  transition: background .2s ease, transform .2s ease;
}
.carousel-dot.active{ background: var(--accent); transform: scale(1.3); }
@media (max-width: 700px){
  .carousel-dot::before{
    content:'';
    position:absolute;
    inset: -16px;
  }
}

/* ---------- Dev log ---------- */
.devlog-head{ margin-bottom: 56px; }
.devlog-title{ color: var(--text); }
.devlog-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 800px){ .devlog-grid{ grid-template-columns:1fr; } }
.devlog-card{
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  display:flex;
  flex-direction:column;
  color: inherit;
  text-decoration:none;
  transition: transform .2s ease, border-color .2s ease;
}
.devlog-card:hover{ transform: translateY(-4px); border-color: var(--border-strong); }
.devlog-meta{
  display:flex; justify-content:space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.devlog-card h3{
  font-family: var(--font-body);
  font-weight:600;
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height:1.3;
}
.devlog-card p{
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.93rem;
  margin-bottom: 36px;
}
.devlog-status{
  align-self:flex-start;
  margin-top: auto;
  display:inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 4px;
}
.devlog-card[data-status="live"] .devlog-status{
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.devlog-card[data-status="live"]:hover .devlog-status{
  color: var(--text);
  text-decoration-color: var(--text);
}
/* ---------- World ---------- */
.world{
  background: var(--text);
  color: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
}
@media (min-width: 801px){
  .world{ padding: 150px 0 100px; }
}
.world .wrap{ max-width: 1480px; }
.world-grid{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:flex-start;
  gap: 115px;
  padding-bottom: 64px;
}
.world-title{
  position: relative;
  z-index:1;
  flex: 0 0 360px;
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 6.1vw, 5.3rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.world-copy{ position: relative; z-index:1; flex: 1 1 620px; max-width: 640px; }
.world-subhead{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--bg);
  margin-bottom: 22px;
}
.world-text{
  max-width: 500px;
  color: rgba(5,15,30,0.62);
  font-weight: 350;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
}
.world-pills{ display:flex; flex-wrap:wrap; gap: 26px; }
.world-pill{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bg);
  text-decoration: underline;
  text-decoration-color: rgba(5,15,30,0.35);
  text-underline-offset: 5px;
  white-space: nowrap;
}
.world-watermark{
  position:absolute;
  right: 0;
  top: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 58rem;
  line-height: 1;
  color: rgba(5,15,30,0.035);
  user-select:none;
  z-index:0;
  transform: translate(18%, -22%);
}
.world-divider{ border-top: 1px solid rgba(5,15,30,0.15); }
.world-statement{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 16px;
  padding: 36px 0;
}
.world-statement span{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.world-statement .accent{ color: var(--accent); }
@media (max-width: 800px){
  .world-grid{ flex-direction:column; gap: 36px; padding-bottom:48px; }
  .world-title{ flex: none; }
  .world-copy{ flex: none; max-width:none; }
  .world-watermark{ font-size: 40rem; }
  .world-pills{ display:grid; grid-template-columns: repeat(2, auto); gap: 18px 14px; }
  .world-statement{ flex-direction: column; align-items: center; text-align: center; }
}

/* ---------- Final CTA ---------- */
.final-cta{
  background: var(--accent);
  color: var(--text);
  padding: 90px 0;
  overflow: hidden;
}
.final-cta-row{ display:flex; align-items:center; gap: 90px; }
.final-cta-title{
  flex: 1 1 480px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 6.1vw, 5.3rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.final-cta-copy{ flex: 1 1 420px; max-width: 480px; }
.final-cta-text{
  color: rgba(244,240,232,0.85);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.final-cta-form{ background: transparent; border: none; border-radius: 4px; }
.final-cta-form input{
  background: #fff;
  color: var(--bg);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.final-cta-form input::placeholder{ color: rgba(5,15,30,0.45); }
.final-cta-form input:focus{ outline-color: var(--bg); }
.final-cta-copy .form-note{ color: rgba(244,240,232,0.7); }
.final-cta-btn{
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
}
.final-cta-btn:hover{ background: var(--bg); color: var(--text); }
@media (max-width: 900px){
  .final-cta-row{ flex-direction: column; align-items:flex-start; gap: 36px; }
  .final-cta-title{ flex: none; }
  .final-cta-copy{ flex: none; max-width:none; }
}

/* ---------- reveal on scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view{ opacity:1; transform: translateY(0); }

/* ---------- Footer ---------- */
.site-footer{
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  background: var(--bg);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 700px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
.footer-logo{ display:block; height: 40px; margin-bottom: 14px; }
.footer-logo--mobile{ display:none; }
@media (max-width: 700px){
  .footer-logo--desktop{ display:none; }
  .footer-logo--mobile{ display:block; }
}
.socials{ display:flex; gap: 22px; margin-top: 18px; }
.socials a{
  width: 38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  transition: transform .15s ease, opacity .15s ease;
}
.socials a img{ width:100%; height:100%; display:block; object-fit:contain; }
.social-instagram img{ width: 82%; height:82%; margin: auto; }
.socials a:hover{ transform: translateY(-2px); opacity: 0.85; }
.footer-icon{ display:flex; align-items:center; justify-content:flex-end; }
@media (max-width: 700px){
  .footer-icon{ display:none; }
}
.footer-mark{ width: 78px; height:auto; opacity: 0.9; }
.footer-links{ display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end; width:fit-content; margin:0 auto; }
.footer-col h4{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a{ display:block; width:fit-content; margin-bottom: 10px; color: var(--text-muted); font-size: 0.92rem; }
.footer-col a:hover{ color: var(--text); }
.footer-bottom{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap: 10px;
  padding-top: 24px;
  padding-right: 60px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (max-width: 480px){
  .footer-bottom{ justify-content: flex-start; gap: 20px; padding-right: 0; }
}

/* ---------- back to top ---------- */
.to-top{
  position: fixed; right: 24px; bottom: 24px;
  width: 46px; height:46px;
  border-radius:50%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  z-index: 150;
  opacity:0; pointer-events:none;
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}
.to-top.show{ opacity:1; pointer-events:auto; }
.to-top:hover{ border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

/* ---------- arrow icon ---------- */
.icon-arrow{ width:20px; height:20px; display:block; flex-shrink:0; }
.icon-arrow--left{ transform: rotate(180deg); }
.icon-arrow--up{ transform: rotate(-90deg); }

/* ---------- lightbox ---------- */
.zoomable{ cursor: zoom-in; }
body.lightbox-locked{ overflow: hidden; }
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(5,15,30,0.92);
  backdrop-filter: blur(4px);
  cursor: zoom-out;
}
.lightbox.is-open{ display:flex; }
.lightbox-image{
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  cursor: default;
}
@media (max-width: 700px) and (orientation: portrait){
  .lightbox-image.lightbox-image--landscape{
    max-width: 90vh;
    max-height: 90vw;
    transform: rotate(90deg);
  }
  .lightbox:has(.lightbox-image--landscape) .lightbox-prev{
    top: 24px; left: 50%; right: auto; bottom: auto;
    transform: translateX(-50%) rotate(90deg);
  }
  .lightbox:has(.lightbox-image--landscape) .lightbox-next{
    bottom: 24px; top: auto; left: 50%; right: auto;
    transform: translateX(-50%) rotate(90deg);
  }
}
.lightbox-close{
  position: absolute;
  top: 24px; right: 24px;
  width: 46px; height:46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  display:flex; align-items:center; justify-content:center;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.lightbox-close:hover{ border-color: var(--accent); color: var(--accent); }
.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  width: 52px; height:52px;
  padding: 0;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  display:flex; align-items:center; justify-content:center;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.lightbox-nav:hover{ border-color: var(--accent); color: var(--accent); }
.lightbox-prev{ left: 24px; }
.lightbox-next{ right: 24px; }
.lightbox-next .icon-arrow{ margin-left: 3px; }
.lightbox-prev .icon-arrow{ margin-right: 3px; }
@media (max-width: 700px){
  .lightbox-nav{ width:40px; height:40px; }
  .lightbox-prev{ left: 10px; }
  .lightbox-next{ right: 10px; }
}

.carousel-track{ cursor: grab; touch-action: pan-y; }
.carousel-track.is-dragging{ cursor: grabbing; }
.carousel-track.is-dragging .carousel-slide{ transition: none; }

/* ---------- Press page (alternating light / dark sections) ---------- */
.press-section-light{ background: var(--text); color: var(--bg); }
.press-section-light .display-lg{ color: var(--bg); }
.press-section-light .display-lg em{ color: var(--accent); }
.press-section-light .lead{ color: var(--bg); }
.press-section-light .lead.muted,
.press-section-light .muted{ color: rgba(5,15,30,0.6); }
.press-section-light code{
  background: rgba(5,15,30,0.06);
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 0.9em;
}

.press-hero{ padding-bottom: 60px; }
.press-hero .display-lg{ margin-bottom: 16px; }
.press-hero-sub{ max-width: 640px; }
.press-contact-section{ padding: 64px 0; background: var(--accent); color: var(--text); }

.press-contact{
  display:flex;
  flex-wrap: wrap;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.press-contact-label{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.8);
  margin-bottom: 8px;
}
.press-contact-name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--text);
}
.press-contact-role{ color: rgba(244,240,232,0.75); font-size: 0.92rem; margin-top: 4px; }
.press-contact-details{ display:flex; flex-direction:column; gap: 18px; align-items:flex-start; }
.press-contact-details > div{ display:flex; flex-direction:column; gap: 4px; }
.press-contact-details .press-contact-role{ margin-top: 0; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); }
.press-contact-link{
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  text-decoration: underline;
  text-decoration-color: rgba(244,240,232,0.4);
  text-underline-offset: 4px;
}
.press-contact-link:hover{ color: var(--bg); text-decoration-color: var(--bg); }
@media (max-width: 640px){
  .press-contact{ flex-direction: column; align-items:flex-start; }
  .press-contact-details{ align-items:flex-start; }
}

.press-boilerplate-section{ background: var(--bg-elevated); }
.press-boilerplate{
  max-width: 780px;
}
.press-boilerplate-text{
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 20px 0 28px;
}

.press-release-list{ display:flex; flex-direction:column; gap: 18px; }
.press-release-item{
  display:flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 24px;
  background: #fff;
  border: 1px solid rgba(5,15,30,0.1);
  border-radius: 6px;
  padding: 26px 30px;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.press-release-item:hover{ border-color: rgba(5,15,30,0.25); transform: translateY(-2px); }
.press-release-thumb{
  flex: 0 0 auto;
  align-self: center;
  width: 56px; height: 56px;
  border-radius: 4px;
  object-fit: cover;
}
.press-release-date{
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  width: 110px;
}
.press-release-body{ flex: 1 1 320px; min-width: 0; }
.press-release-body h3{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--bg);
}
.press-release-body p{ color: rgba(5,15,30,0.6); font-size: 0.9rem; font-weight: 300; }
.press-release-link{
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(5,15,30,0.45);
  text-decoration: underline;
  text-decoration-color: rgba(5,15,30,0.25);
  text-underline-offset: 4px;
  align-self: center;
}
.press-release-item:hover .press-release-link{ color: var(--accent); text-decoration-color: var(--accent); }
@media (max-width: 640px){
  .press-release-date{ width: auto; }
}

.media-kit-subhead{
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.media-kit-grid + .media-kit-subhead{ margin-top: 12px; }
.media-kit-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin: 0 0 36px;
}
@media (max-width: 900px){ .media-kit-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .media-kit-grid{ grid-template-columns: 1fr; } }
.press-mediakit-inner{ max-width: 988px; margin: 0 auto; }
.media-kit-grid--2col{ grid-template-columns: repeat(3, 300px); justify-content: start; column-gap: 44px; row-gap: 44px; align-items: start; }
.media-kit-grid--2col .media-kit-item{ width: 300px; max-width: 100%; }
@media (max-width: 600px){
  .media-kit-grid--2col{ grid-template-columns: 1fr; }
  .media-kit-grid--2col .media-kit-item{ width: 100%; }
}
.media-kit-item{
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display:flex;
  flex-direction:column;
}
.media-kit-thumb{
  aspect-ratio: 4/3;
  display:flex; align-items:center; justify-content:center;
  padding: 24px;
  background: var(--bg);
}
.media-kit-thumb img{ max-width: 100%; max-height: 100%; object-fit: contain; }
.media-kit-thumb--split{ padding: 0; flex-direction: column; align-items: stretch; aspect-ratio: 4/3.5; }
.media-kit-thumb--row{ flex-direction: row; aspect-ratio: 4/3; }
.media-kit-swatch{
  flex: 1 1 0;
  width: 100%;
  display:flex; align-items:center; justify-content:center;
  padding: 0 18px;
  background: var(--accent);
}
.media-kit-thumb--row .media-kit-swatch{ padding: 18px; }
.media-kit-swatch img{ max-width: 100%; max-height: 100%; object-fit: contain; }
.media-kit-item-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.media-kit-item-footer span{ font-size: 0.82rem; color: var(--text-muted); }
.media-kit-downloads{ padding: 4px 16px 16px; display:flex; flex-direction:column; gap: 8px; }
.media-kit-download-row{ display:flex; align-items:center; gap: 12px; }
.media-kit-download-row > span{
  flex: 1 1 auto;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.media-kit-download{
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color .15s ease;
  white-space: nowrap;
}
.media-kit-download:hover{ text-decoration-color: var(--accent); }

.press-coverage-note{ max-width: 620px; margin-bottom: 36px; }
.press-logos-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
@media (max-width: 800px){ .press-logos-grid{ grid-template-columns: repeat(2,1fr); } }
.press-logo-slot{
  aspect-ratio: 3/1.4;
  display:flex; align-items:center; justify-content:center;
  border: 1px dashed rgba(5,15,30,0.25);
  border-radius: 6px;
  color: rgba(5,15,30,0.4);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.press-logo-slot img{ max-width: 70%; max-height: 50%; object-fit: contain; }

/* ---------- Press page: extra breathing room under h2 ---------- */
.press-main h2.display-lg{ margin-bottom: 40px; }

/* ---------- Press hero: game identity block ---------- */
.press-hero-game{
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 680px;
}
.press-hero-game-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.press-hero-tagline{
  font-style: italic;
  color: var(--text-muted);
  margin-top: 6px;
}
.press-hero-desc{
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.65;
}
.press-hero-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ---------- Quick facts ---------- */
.press-quickfacts{ padding: 150px 0; }
.press-quickfacts h2.display-lg{ margin-bottom: 80px; }
.quickfacts-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 44px 48px;
}
@media (max-width: 800px){ .quickfacts-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .quickfacts-grid{ grid-template-columns: 1fr; } }
@media (max-width: 700px){
  .press-quickfacts{ padding: 64px 0; }
  .press-quickfacts h2.display-lg{ margin-bottom: 32px; }
  .quickfacts-grid{ gap: 24px; }
}
.quickfact{ display:flex; flex-direction:column; gap: 6px; }
.quickfact-label{
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.quickfact-value{ font-size: 0.95rem; }
.quickfact-value a{ text-decoration: underline; text-decoration-color: rgba(5,15,30,0.3); text-underline-offset: 3px; }
.quickfact-value a:hover{ color: var(--accent); text-decoration-color: var(--accent); }

/* ---------- About Setter ---------- */
.press-about-setter{ background: var(--bg-elevated); }
.press-about-lead{
  font-size: 1.2rem;
  max-width: 760px;
  margin-bottom: 64px;
  line-height: 1.55;
}
.press-about-tiers{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  margin-bottom: 24px;
}
@media (max-width: 800px){ .press-about-tiers{ grid-template-columns: 1fr; } }
.press-about-tier-label{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.press-about-tier-text{ color: var(--text-muted); line-height: 1.7; }

/* ---------- Key features ---------- */
.press-key-features{ position: relative; overflow: hidden; }
.press-key-features .wrap{ position: relative; z-index: 1; }
.keyfeature-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
@media (max-width: 900px){ .keyfeature-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .keyfeature-grid{ grid-template-columns: 1fr; } }
.keyfeature-card{
  background: #fff;
  border: 1px solid rgba(5,15,30,0.1);
  border-radius: 6px;
  padding: 24px;
}
.keyfeature-card h3{ font-size: 1rem; margin-bottom: 8px; }
.keyfeature-card p{ color: rgba(5,15,30,0.6); font-size: 0.88rem; font-weight: 300; line-height: 1.55; }

.press-trailer h2.display-lg,
.press-screenshots h2.display-lg,
.press-media-kit h2.display-lg{ margin-bottom: 16px; }

.press-section-header-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 24px;
  margin-bottom: 64px;
}
.press-section-header-row .lead{ margin-bottom: 0; line-height: 1; }
.press-section-header-row .btn{ flex-shrink: 0; }
@media (max-width: 700px){
  .press-section-header-row{ flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
}

/* ---------- Trailer ---------- */
.press-trailer-inner{ max-width: 960px; margin: 0 auto; }
.trailer-player{
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}
.trailer-player video{ width:100%; height:100%; display:block; }
@media (orientation: portrait){
  .trailer-player video:fullscreen{
    width: 100vh;
    height: 100vw;
    object-fit: contain;
    transform: rotate(90deg);
  }
}

/* ---------- Screenshots ---------- */
.screenshot-grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 700px){ .screenshot-grid{ grid-template-columns: 1fr; } }
.screenshot-item{
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.screenshot-item img{ width:100%; aspect-ratio: 16/9; object-fit: cover; display:block; }
.screenshot-item-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 18px;
}
.screenshot-item-footer span{ font-size: 0.82rem; color: var(--text-muted); }

/* ---------- About studio / project story ---------- */
.press-story{ background: var(--bg-elevated); }
.press-studio-text, .press-story-text{
  max-width: 720px;
  line-height: 1.75;
}
.press-studio-text{ color: var(--bg); }
.press-story-text{ color: var(--text-muted); }
.press-story-text + .press-story-text{ margin-top: 18px; }

/* ---------- Reviews & creator coverage ---------- */
.press-reviews-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 700px){ .press-reviews-grid{ grid-template-columns: 1fr; } }
.press-reviews-block h3{ font-size: 1.05rem; margin-bottom: 10px; }
.press-reviews-block p{ color: var(--text-muted); line-height: 1.65; }
.press-reviews-block a{ text-decoration: underline; text-decoration-color: var(--border-strong); text-underline-offset: 3px; }
.press-reviews-block a:hover{ color: var(--accent); text-decoration-color: var(--accent); }

/* ---------- Closing press-kit CTA ---------- */
.press-final-cta{ text-align:center; }
.press-final-cta .lead{ max-width: 560px; margin: 0 auto 28px; }
@media (max-width: 700px){
  .press-screenshots h2.display-lg{ font-size: 2.1rem; }
  .press-final-cta h2.display-lg,
  .press-final-cta p.lead{ text-align: left; }
  .press-final-cta .lead{ margin-left: 0; margin-right: 0; }
}


/* Blogartikel: leeskolom met bestaande Setter-huisstijl. */
.story-hero{padding-top:145px;padding-bottom:48px;}
.story-back{font-size:0.9rem;color:var(--text-muted);text-decoration:underline;text-underline-offset:5px;}
.story-meta{display:flex;flex-wrap:wrap;gap:12px 24px;margin:42px 0 24px;font-size:0.875rem;color:var(--text-muted);}
.story-meta span:first-child{color:#9ab5ff;text-transform:uppercase;letter-spacing:0.12em;}
.story-hero h1{font-family:var(--font-display);font-size:clamp(2.8rem,7.5vw,6.5rem);line-height:1.04;letter-spacing:-0.045em;text-transform:uppercase;font-weight:750;margin-bottom:24px;}
.story-hero h1 em{color:var(--accent);font-style:normal;}
.story-deck{font-size:clamp(1.15rem,2.2vw,1.6rem);line-height:1.5;max-width:780px;color:#bdc8dc;}
.story-image{margin-top:0;margin-bottom:0;}
.story-image img{width:100%;height:auto;display:block;border:1px solid var(--border);}
.story-layout{display:grid;grid-template-columns:190px minmax(0,720px);gap:64px;padding-top:64px;padding-bottom:100px;justify-content:center;}
.story-aside{display:flex;flex-direction:column;align-items:flex-start;gap:15px;color:var(--text-muted);font-size:0.875rem;}
.story-aside img{object-fit:contain;margin-bottom:10px;}
.story-copy{font-size:1.125rem;line-height:1.85;color:#d5dceb;}
.story-copy>p{margin:0 0 28px;}
.story-copy>p:first-child{font-size:1.25rem;color:var(--text);}
.story-copy .story-callout{font-family:var(--font-display);font-size:clamp(1.9rem,4vw,3rem);line-height:1.2;font-weight:700;color:var(--text);border-left:4px solid var(--accent);padding:16px 0 16px 28px;margin:44px 0;}
.story-cta{background:var(--bg-card);border-top:3px solid var(--accent);padding:30px;margin-top:40px;}
.story-cta p{margin:0;}.story-cta p+p{margin-top:12px;}
.story-cta a{color:#adc2ff;text-decoration:underline;text-underline-offset:4px;}
.story-card{overflow:hidden;}.story-card-image{display:block;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;margin-bottom:24px;border-radius:4px;}
.story-page a:focus-visible,.story-card:focus-visible{outline:3px solid #adc2ff;outline-offset:6px;}
@media(max-width:760px){.story-hero{padding-top:110px;padding-bottom:32px;}.story-meta{margin-top:30px;}.story-layout{grid-template-columns:minmax(0,1fr);gap:24px;padding-top:32px;padding-bottom:60px;}.story-aside{flex-direction:row;align-items:center;flex-wrap:wrap;}.story-aside img{width:32px;height:32px;margin:0;}.story-copy{font-size:1rem;}.story-copy>p:first-child{font-size:1.125rem;}.story-cta{padding:24px;}}

/* Licentiemijlpaal in het wereldartikel. */
.world-deal-note{margin:40px 0;padding:32px;background:var(--bg-card);border-top:4px solid var(--accent);}
.world-deal-note p{margin:0;}
.world-deal-countries{display:flex;flex-wrap:wrap;gap:16px 32px;margin-top:24px;padding-top:24px;border-top:1px solid var(--border-strong);font-family:var(--font-display);font-size:clamp(1.7rem,4vw,2.6rem);font-weight:700;line-height:1.2;color:#adc2ff;}
@media(max-width:760px){.world-deal-note{padding:24px;}}
