/* ============================================================
   PROXXY — LIGHT theme
   Bright, high-readability, conversion-focused.
   Inspired by successful PC-game landing pages.
   ============================================================ */

:root {
  /* surfaces — warm paper */
  --bg:        #f4f1ea;
  --bg-2:      #ece7dc;
  --paper:     #ffffff;
  --ink-panel: #17131c;   /* dark contrast sections */
  --line:      #ddd6c8;
  --line-2:    #c9c0ad;

  /* ink — high contrast for readability */
  --ink:       #181219;
  --ink-2:     #423a48;
  --muted:     #6b6270;
  --on-dark:   #f6f2ee;
  --on-dark-2: #c4bcc8;

  /* brand accent */
  --accent:        #e60a5a;
  --accent-deep:   #b80044;
  --accent-soft:   #fde7ef;
  --accent-glow:   rgba(230,10,90,.28);

  /* storefront identity (aids recognition → conversion) */
  --steam:     #1b2838;
  --steam-2:   #2a475e;
  --kick:      #05ce78;
  --kick-deep: #03a862;

  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 9px;

  --ff-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --ff-body: "Archivo", system-ui, sans-serif;
  --ff-mono: "Space Mono", ui-monospace, monospace;

  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 700; }
.display {
  font-family: var(--ff-display); font-weight: 800;
  line-height: .95; letter-spacing: -.005em; text-transform: uppercase;
}
.eyebrow {
  font-family: var(--ff-mono); font-size: .76rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin: 0;
}
.eyebrow.on-dark { color: #ff5b8f; }
.lead { font-size: 1.2rem; color: var(--ink-2); line-height: 1.6; text-wrap: pretty; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.4rem, 5.4vw, 4.2rem); line-height: .98; margin: 14px 0 0; }
.section-head .lead { margin-top: 18px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: var(--ff-body); font-weight: 700; font-size: 1rem;
  letter-spacing: .01em; padding: 15px 26px; border-radius: 100px;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .14s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -10px var(--accent-glow); }
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 16px 34px -12px var(--accent-glow); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--ink); background: var(--paper); }

.btn-steam { background: var(--steam); color: #fff; }
.btn-steam:hover { background: var(--steam-2); }

.btn-kick { background: var(--kick); color: #053a26; }
.btn-kick:hover { background: var(--kick-deep); color: #fff; }

.btn-lg { font-size: 1.08rem; padding: 18px 32px; }
.btn-block { width: 100%; }
.btn-ghost-dark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-dark:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }

/* ---------- tags / pills ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 9px; }
.tag {
  font-family: var(--ff-mono); font-size: .74rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-2);
  background: var(--paper); border: 1px solid var(--line); padding: 7px 13px; border-radius: 100px;
}
.tag::before { content: "#"; color: var(--accent); margin-right: 1px; }
.tag.on-dark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: var(--on-dark); }

/* ============================================================
   HEADER  (sticky, prominent store CTAs)
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center; gap: 24px; padding: 0 28px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 800; font-size: 1.7rem; letter-spacing: .01em; color: var(--ink); }
.brand-logo { height: 42px; width: auto; display: block; }
.brand-text { display: none; }
.brand .glyph { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); position: relative; flex: none; }
.brand .glyph::after { content: ""; position: absolute; inset: 7px; background: var(--bg); border-radius: 50%; }
.brand .glyph::before { content: ""; position: absolute; left: 50%; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); transform: translate(-50%,-50%); z-index: 1; }

.header-nav { display: flex; gap: 28px; margin-left: 10px; }
.header-nav a { font-weight: 600; font-size: .98rem; color: var(--ink-2); position: relative; padding: 4px 0; white-space: nowrap; }
.header-nav a:hover { color: var(--ink); }
.header-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--accent); transition: width .2s ease; }
.header-nav a:hover::after { width: 100%; }

.header-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

.lang { display: inline-flex; border: 1px solid var(--line-2); border-radius: 100px; overflow: hidden; font-family: var(--ff-mono); font-size: .72rem; font-weight: 700; }
.lang button { background: transparent; border: none; color: var(--muted); padding: 8px 12px; cursor: pointer; text-transform: uppercase; font: inherit; }
.lang button.active { background: var(--ink); color: #fff; }

.header .btn { padding: 11px 18px; font-size: .94rem; }
.header-cta-steam { gap: 8px; }
.nav-toggle { display: none; background: var(--paper); border: 1px solid var(--line-2); width: 44px; height: 40px; border-radius: 10px; cursor: pointer; font-size: 1.1rem; color: var(--ink); }

/* ============================================================
   HERO  — fits within the viewport, full image visible
   ============================================================ */
.hero { padding-top: var(--header-h); padding-bottom: 40px; position: relative; min-height: 100svh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; width: 100%; }
.hero .release-flag {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-mono); font-weight: 700;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent);
  background: var(--accent-soft); border: 1px solid #f7c9da; padding: 8px 14px; border-radius: 100px;
}
.hero h1 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.5rem, 5.2vw, 4.8rem); line-height: 1.08; margin: 0 0 .35em; letter-spacing: -.01em; text-wrap: balance; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { margin-top: 0; max-width: 38ch; font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.hero-cta { display: flex; flex-wrap: nowrap; gap: 12px; margin-top: 28px; }
.hero-cta .btn { flex: 1 1 0; min-width: 0; padding-left: 18px; padding-right: 18px; text-align: center; }
.hero-follow { display: flex; align-items: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.hero-follow .lbl { font-family: var(--ff-mono); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hero-follow .row { display: flex; gap: 9px; }
.hero-follow a {
  width: 42px; height: 42px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--ink); transition: transform .15s ease, background .2s, color .2s, border-color .2s;
}
.hero-follow a svg { width: 19px; height: 19px; }
.hero-follow a:hover { transform: translateY(-3px); background: var(--accent); color: #fff; border-color: var(--accent); }

/* hero art — full poster visible (landscape 3:2), capped to viewport height */
.hero-art { position: relative; }
.hero-art .frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 40px 80px -40px rgba(24,18,25,.4); background: #000; aspect-ratio: 3/2; max-height: calc(100svh - var(--header-h) - 110px); }
.hero-art .frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.hero-art .badge {
  position: absolute; bottom: -18px; left: -18px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 20px; box-shadow: 0 20px 40px -22px rgba(24,18,25,.4);
  display: flex; gap: 16px; align-items: center;
}
.hero-art .badge .num { font-family: var(--ff-display); font-weight: 800; font-size: 2.4rem; color: var(--accent); line-height: 1; }
.hero-art .badge .txt { font-size: .82rem; color: var(--ink-2); line-height: 1.3; }
.hero-art .badge .txt b { color: var(--ink); display: block; font-size: .92rem; }

/* ============================================================
   FACTS STRIP
   ============================================================ */
.facts { background: var(--ink-panel); color: var(--on-dark); }
.facts .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 34px; padding-bottom: 34px; }
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact .k { font-family: var(--ff-mono); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #ff5b8f; }
.fact .v { font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; }
.fact + .fact { border-left: 1px solid rgba(255,255,255,.12); padding-left: 24px; }

/* ============================================================
   TRAILER
   ============================================================ */
.trailer-frame {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9;
  background: var(--ink-panel); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 40px 80px -44px rgba(24,18,25,.45);
}
.trailer-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; display: block; }
.trailer-play {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; gap: 18px;
  align-items: center; justify-content: center; cursor: pointer; border: 0;
  background: linear-gradient(rgba(24,18,25,.18), rgba(24,18,25,.45));
  transition: opacity .25s ease;
}
.trailer-play[hidden] { display: none; }
.trailer-play .play { width: 86px; height: 86px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 40px -8px var(--accent-glow); transition: transform .18s ease; }
.trailer-play:hover .play { transform: scale(1.06); }
.trailer-play .play::after { content: ""; border-left: 24px solid #fff; border-top: 14px solid transparent; border-bottom: 14px solid transparent; margin-left: 6px; }
.trailer-play-label { font-family: var(--ff-mono); font-size: .82rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.5); }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease; }
.pillar:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -28px rgba(24,18,25,.34); }
.pillar .n { font-family: var(--ff-mono); font-weight: 700; font-size: .8rem; letter-spacing: .12em; color: var(--accent); }
.pillar h3 { font-family: var(--ff-display); font-weight: 800; font-size: 1.9rem; text-transform: uppercase; margin: 14px 0 10px; }
.pillar p { margin: 0; color: var(--ink-2); font-size: 1rem; }

/* ============================================================
   COLLAR (dark band)
   ============================================================ */
.band-dark { background: var(--ink-panel); color: var(--on-dark); }
.band-dark .lead { color: var(--on-dark-2); }
.collar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.collar-grid h2 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1; margin: 14px 0 0; }
.collar-grid .danger { margin-top: 26px; display: inline-flex; align-items: center; gap: 12px; font-family: var(--ff-mono); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ff5b8f; border: 1px dashed #ff5b8f; padding: 12px 18px; border-radius: 100px; }
.diagram { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.14); background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.06), rgba(255,255,255,.01)); overflow: hidden; }
.diagram .floor { position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(255,255,255,.14); }
.dot-player { position: absolute; top: 50%; width: 54px; height: 54px; transform: translate(-50%,-50%); display: flex; align-items: center; justify-content: center; }
.dot-player .body { width: 26px; height: 26px; border-radius: 50%; background: #fff; }
.dot-player .ring { position: absolute; inset: 0; border: 2px solid var(--accent); border-radius: 50%; animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ transform: scale(.85); opacity:.5;} 50%{ transform: scale(1.05); opacity:1;} }
.tether { position: absolute; top: 50%; height: 2px; background: linear-gradient(90deg, var(--accent), #ff3b3b); transform: translateY(-50%); }
.diagram .gauge { position: absolute; left: 18px; bottom: 16px; font-family: var(--ff-mono); font-size: .7rem; font-weight: 700; letter-spacing: .1em; color: var(--on-dark-2); text-transform: uppercase; }
.diagram .gauge b { color: var(--accent); }

/* ============================================================
   MODES
   ============================================================ */
.modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mode { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; transition: transform .2s ease, box-shadow .2s ease; }
.mode:hover { transform: translateY(-4px); box-shadow: 0 26px 48px -28px rgba(24,18,25,.32); }
.mode.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.mode .badge { display: inline-block; font-family: var(--ff-mono); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 6px 12px; border-radius: 100px; }
.mode h3 { font-family: var(--ff-display); font-weight: 800; font-size: 2.6rem; text-transform: uppercase; margin: 18px 0 4px; }
.mode .sub { font-family: var(--ff-mono); font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.mode p { color: var(--ink-2); margin: 16px 0 0; }
.mode ul { list-style: none; padding: 0; margin: 20px 0 0; }
.mode li { display: flex; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); font-size: .98rem; color: var(--ink-2); }
.mode li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 8px; flex: none; }
.players { display: flex; align-items: center; gap: 18px; margin-top: 28px; justify-content: center; flex-wrap: wrap; }
.players .pips { display: flex; gap: 8px; }
.players .pip { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); border: 2px solid var(--accent); }
.players .label { font-family: var(--ff-mono); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   HOST
   ============================================================ */
.host-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; }
.host-portrait { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 3/4; background: #1a0f16; box-shadow: 0 36px 70px -40px rgba(24,18,25,.45); }
.host-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 22% 18%; }
.host-portrait .name { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 20px 18px; background: linear-gradient(transparent, rgba(0,0,0,.86)); }
.host-portrait .name .role { font-family: var(--ff-mono); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #ff5b8f; }
.host-portrait .name .who { font-family: var(--ff-display); font-weight: 800; font-size: 2.6rem; text-transform: uppercase; color: #fff; line-height: 1; margin-top: 4px; }
.host-copy h2 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1; margin: 14px 0 0; }
.host-copy .quote { margin: 26px 0 0; padding: 22px 26px; background: var(--paper); border-left: 4px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 1.28rem; font-style: italic; color: var(--ink); box-shadow: 0 18px 40px -30px rgba(24,18,25,.4); }
.host-copy .lead { margin-top: 24px; }

/* ============================================================
   ROOMS
   ============================================================ */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.room { display: block; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg-2); box-shadow: 0 16px 34px -22px rgba(24,18,25,.45); transition: transform .2s ease, box-shadow .2s ease; }
.room:hover { transform: translateY(-4px); box-shadow: 0 26px 46px -24px rgba(24,18,25,.5); }
.room img { width: 100%; height: auto; display: block; }

/* ============================================================
   CONVERSION — the big "support us" block
   ============================================================ */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.support-card { border-radius: var(--radius); padding: 40px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.support-card .ico-wrap { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.support-card .ico-wrap svg { width: 30px; height: 30px; }
.support-card h3 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: 2.3rem; margin: 22px 0 0; line-height: 1; }
.support-card p { margin: 14px 0 0; font-size: 1.02rem; }
.support-card .btn { margin-top: 26px; }
.support-card ul { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 10px; }
.support-card li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; }
.support-card li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; }

.support-card.kick { background: linear-gradient(165deg, #062c1d, #0a4a31); color: #eafff5; border: 1px solid #0d6b47; }
.support-card.kick .ico-wrap { background: var(--kick); color: #053a26; }
.support-card.kick li svg { color: var(--kick); }
.support-card.kick .meter { margin-top: 24px; }
.support-card.kick .meter .bar { height: 8px; border-radius: 100px; background: rgba(255,255,255,.14); overflow: hidden; }
.support-card.kick .meter .bar i { display: block; height: 100%; width: 0; background: var(--kick); border-radius: 100px; }
.support-card.kick .meter .row { display: flex; justify-content: space-between; margin-top: 10px; font-family: var(--ff-mono); font-size: .76rem; font-weight: 700; letter-spacing: .04em; color: #bff0d8; }
.support-card.kick .meter .row b { color: #fff; }

.support-card.steam { background: var(--ink-panel); color: var(--on-dark); border: 1px solid #2a2233; }
.support-card.steam .ico-wrap { background: var(--steam-2); color: #fff; }
.support-card.steam li svg { color: #66c0f4; }

/* ============================================================
   COMMUNITY — big social cards (conversion focus)
   ============================================================ */
.social-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.soc {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink);
  padding: 28px 22px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.soc:hover { transform: translateY(-5px); box-shadow: 0 26px 46px -28px rgba(24,18,25,.34); }
.soc .ico { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--ink-panel); color: #fff; }
.soc .ico svg { width: 24px; height: 24px; }
.soc .n { font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem; text-transform: uppercase; color: var(--ink); }
.soc .h { font-size: .9rem; color: var(--ink-2); margin-top: -8px; }
.soc .go { margin-top: auto; font-family: var(--ff-mono); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.soc:hover .go { gap: 10px; }
/* brand tints on hover */
.soc.discord:hover { border-color: #5865f2; } .soc.discord .ico { background: #5865f2; }
.soc.tiktok:hover { border-color: #111; } .soc.tiktok .ico { background: #111; }
.soc.reddit:hover { border-color: #ff4500; } .soc.reddit .ico { background: #ff4500; }
.soc.x:hover { border-color: #111; } .soc.x .ico { background: #111; }
.soc.web:hover { border-color: var(--accent); } .soc.web .ico { background: var(--accent); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.news-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 56px; text-align: center; max-width: 760px; margin: 0 auto; box-shadow: 0 30px 60px -40px rgba(24,18,25,.3);
}
.news-card h2 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1; margin: 14px 0 0; }
.news-card form { display: flex; gap: 12px; margin: 30px auto 0; max-width: 520px; }
.news-card input { flex: 1; background: var(--bg); border: 1px solid var(--line-2); color: var(--ink); padding: 16px 18px; border-radius: 100px; font: inherit; font-size: 1rem; }
.news-card input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.news-card .note { font-family: var(--ff-mono); font-size: .72rem; color: var(--muted); margin-top: 16px; }
.news-card .note a { color: var(--ink-2); text-decoration: underline; }
.news-card .ok { color: var(--kick-deep); font-family: var(--ff-mono); font-weight: 700; font-size: .88rem; margin-top: 16px; min-height: 1.2em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-panel); color: var(--on-dark); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand .glyph::after { background: var(--ink-panel); }
.footer .studio { color: var(--on-dark-2); font-size: .94rem; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s, transform .15s; }
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer h4 { font-family: var(--ff-mono); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-2); margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { color: var(--on-dark); font-size: .96rem; }
.footer ul a:hover { color: #ff5b8f; }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-family: var(--ff-mono); font-size: .74rem; color: var(--on-dark-2); }
.footer-bottom a { color: var(--on-dark-2); } .footer-bottom a:hover { color: #ff5b8f; }

/* ============================================================
   LEGAL
   ============================================================ */
.legal { padding-top: calc(var(--header-h) + 56px); padding-bottom: 90px; }
.legal .wrap { max-width: 860px; }
.legal h1 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.6rem, 6vw, 4.2rem); }
.legal .updated { font-family: var(--ff-mono); font-size: .8rem; color: var(--muted); margin-top: 12px; }
.legal h2 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: 1.7rem; margin: 48px 0 12px; }
.legal h3 { font-size: 1.12rem; font-weight: 700; margin: 28px 0 6px; }
.legal p, .legal li { color: var(--ink-2); font-size: 1.02rem; line-height: 1.7; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal ul { padding-left: 20px; }
.legal .block { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px 28px; margin-top: 20px; }
.legal .ph { background: var(--accent-soft); border: 1px dashed var(--accent); border-radius: 5px; padding: 2px 8px; font-family: var(--ff-mono); font-size: .84rem; color: var(--accent-deep); }
.legal .note { margin-top: 36px; padding: 20px 24px; border-left: 4px solid var(--accent); background: var(--accent-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .94rem; color: var(--ink-2); }
.back-link { font-family: var(--ff-mono); font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); display: inline-flex; gap: 8px; margin-bottom: 20px; }
.back-link:hover { color: var(--accent); }

/* ---------- reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .facts .wrap { grid-template-columns: 1fr 1fr; gap: 20px; }
  .fact:nth-child(3) { border-left: none; padding-left: 0; }
}
/* header chrome collapses earlier so the Kickstarter CTA is never pushed off-screen */
@media (max-width: 1180px) {
  .header-nav { display: none; }
  .header .header-cta-extra { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 900px) {
  .hero-grid, .collar-grid, .modes-grid, .host-grid, .support-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: 0; padding-top: calc(var(--header-h) + 28px); padding-bottom: 56px; }
  .hero-art { max-width: 460px; margin: 0 auto; }
  .hero-art .frame { max-height: none; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .header { gap: 14px; padding: 0 18px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .pillars, .social-grid, .rooms-grid { grid-template-columns: 1fr; }
  .facts .wrap { grid-template-columns: 1fr; }
  .fact + .fact { border-left: none; padding-left: 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .news-card { padding: 36px 22px; }
  .news-card form { flex-direction: column; }
  .hero-cta { gap: 12px; flex-wrap: wrap; }
  .hero-cta .btn { flex: 1 1 100%; }
  .mobile-menu.open { display: flex; }
  .header { gap: 10px; padding: 0 14px; }
  .brand-logo { height: 34px; }
  .header .btn { padding: 10px 14px; font-size: .88rem; }
  .lang button { padding: 7px 10px; }
}
@media (max-width: 380px) {
  .header .btn-primary { display: none; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* mobile menu */
.mobile-menu { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99; background: var(--bg); border-bottom: 1px solid var(--line); flex-direction: column; padding: 12px 28px 20px; }
.mobile-menu a { padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink); }
.mobile-menu .btn { margin-top: 14px; }
.mobile-menu.open { display: flex; }
@media (min-width: 1181px) { .mobile-menu { display: none !important; } }
