:root {
  --wf-bg: #0B060C;
  --wf-bg-soft: #1A1520;
  --wf-surface: #333040;
  --wf-ink: #FFFFFF;
  --wf-ink-soft: #C0BCD5;
  --wf-ink-muted: #868FAE;
  --wf-accent: #3D67FF;
  --wf-accent-ink: #FFFFFF;

  --wf-font: 'Manrope', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wf-tracking: -0.015em;

  --wf-r-card: 16px;
  --wf-r-btn: 6px;
  --wf-r-icon: 6px;
  --wf-r-pill: 99px;

  --wf-glow: rgba(0, 0, 0, 0.7) 0px 20px 80px 0px;

  --wf-max: 1200px;
  --wf-header-h: 80px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, var(--wf-bg-soft) 0%, var(--wf-bg) 42%, var(--wf-bg) 100%);
  color: var(--wf-ink);
  font-family: var(--wf-font);
  letter-spacing: var(--wf-tracking);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 245, 226, 0.02), rgba(255, 245, 226, 0.02)),
    radial-gradient(circle at 20% 30%, rgba(255, 221, 170, 0.035), transparent 18%),
    radial-gradient(circle at 80% 60%, rgba(255, 221, 170, 0.025), transparent 20%);
  opacity: 0.9;
  mix-blend-mode: screen;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; letter-spacing: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

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

/* Thin scrollbars to match terminal feel */
* { scrollbar-width: thin; scrollbar-color: #2a2a2a transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #232323; border-radius: 99px; border: 3px solid var(--wf-bg); }
::-webkit-scrollbar-thumb:hover { background: #2f2f2f; }

/* ============================================================
   App shell
   ============================================================ */
#wf-root { min-height: 100vh; }

.wf-page {
  min-height: 100vh;
  overflow-x: clip;
}

.wf-logo {
  width: auto;
  max-width: 100%;
  display: block;
}

/* ---------- Main column ---------- */
.wf-main {
  min-height: 100vh;
  padding-top: var(--wf-header-h);
}

/* ---------- Header ---------- */
.wf-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--wf-header-h);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  background: color-mix(in srgb, var(--wf-bg) 72%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 154, 82, 0.12);
  box-shadow: inset 0 -1px 0 rgba(255, 232, 199, 0.03);
}
.wf-topbar-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: var(--wf-max);
  margin: 0 auto;
}
.wf-topbar-logo,
.wf-topbar-fill,
.wf-topbar .wf-chip,
.wf-topbar .wf-cta,
.wf-topbar-toggle {
  position: relative;
  z-index: 2;
}
.wf-topbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.03em;
  font-size: 15px;
}
.wf-topbar-logo .wf-logo { height: 40px; }
.wf-topbar-logo b { color: var(--wf-accent); }
.wf-topbar-nav {
  position: static;
  display: flex;
  align-items: center;
  gap: 22px;
}
.wf-topbar-nav a { color: var(--wf-ink-muted); font-size: 15px; font-weight: 500; transition: color .16s; }
.wf-topbar-nav a:hover { color: var(--wf-ink); }

.wf-topbar-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(216, 154, 82, 0.16);
  background: transparent;
  color: var(--wf-ink);
  place-items: center;
  flex: 0 0 auto;
}

.wf-topbar-fill { flex: 1; }

.wf-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(232, 213, 184, 0.34);
  color: var(--wf-ink);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  transition: background .16s, border-color .16s, transform .12s;
}
.wf-chip:hover { background: rgba(255, 232, 199, 0.06); }
.wf-chip:active { transform: translateY(1px); }
.wf-chip--outline { border-color: rgba(216, 154, 82, 0.14); color: var(--wf-ink-soft); }
.wf-chip--outline:hover { border-color: rgba(232, 213, 184, 0.34); color: var(--wf-ink); }

.wf-topbar .wf-chip,
.wf-topbar .wf-cta { height: 46px; padding: 0 24px; font-size: 15px; }

.wf-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--wf-r-btn);
  border: 1px solid rgba(255, 231, 194, 0.16);
  background: var(--wf-accent);
  color: var(--wf-accent-ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: filter .16s, transform .12s;
  box-shadow: inset 0 1px 0 rgba(255, 244, 226, 0.28), 0 12px 24px rgba(0, 0, 0, 0.2);
}
.wf-cta:hover { filter: brightness(1.06); box-shadow: inset 0 1px 0 rgba(255, 244, 226, 0.32), 0 16px 28px rgba(0, 0, 0, 0.26); }
.wf-cta:active { transform: translateY(1px); }
.wf-cta-lg { height: 52px; padding: 0 28px; font-size: 16px; border-radius: var(--wf-r-btn); }

/* ============================================================
   Content layout
   ============================================================ */
.wf-container {
  max-width: var(--wf-max);
  margin: 0 auto;
  padding: 0 28px;
}

section { scroll-margin-top: 80px; }

.wf-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.wf-h2 {
  font-family: var(--wf-font);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: var(--wf-tracking);
  margin: 0;
  color: var(--wf-ink-soft);
}
.wf-h2-sm { font-size: clamp(24px, 3vw, 34px); }

/* ============================================================
   HERO
   ============================================================ */
.wf-hero { padding: 40px 0 12px; }

.wf-hero .wf-hero-title {
  margin: 0 0 18px;
  font-family: var(--wf-font);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-align: left;
}

.wf-hero-lede {
  margin: 18px 0 0;
  color: var(--wf-ink-muted);
  font-size: 17px;
  line-height: 1.7;
}

.wf-hero-card {
  position: relative;
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(216, 154, 82, 0.12), transparent 28%),
    linear-gradient(180deg, var(--wf-surface), var(--wf-bg-soft)),
    var(--wf-bg-soft);
  border: 1px solid rgba(216, 154, 82, 0.15);
  box-shadow: var(--wf-glow);
  overflow: hidden;
}
 .wf-hero-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(232, 213, 184, 0.08);
  border-radius: 6px;
  pointer-events: none;
	}

.wf-hero-media {
  position: relative;
  min-height: 380px;
}
.wf-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

/* ============================================================
   GAMES carousel
   ============================================================ */
.wf-strip { margin-top: 64px; }
.wf-prose .wf-strip { margin-top: 20px; }
.wf-prose .wf-strip .wf-sec-head { margin-bottom: 0; }
.wf-strip-nav { display: none; }
.wf-arrow {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--wf-surface), var(--wf-bg-soft));
  border: 1px solid rgba(216, 154, 82, 0.18);
  color: var(--wf-ink-soft);
  display: grid; place-items: center;
  transition: border-color .16s, color .16s, opacity .16s;
}
.wf-arrow:hover:not(:disabled) { border-color: rgba(232, 213, 184, 0.34); color: var(--wf-ink); background: rgba(216, 154, 82, 0.08); }
.wf-arrow:disabled { opacity: .35; cursor: default; }

.wf-rail {
  max-width: 100%;
}
.wf-rail-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 18px;
}
.wf-rail-track::-webkit-scrollbar { display: none; }

.wf-game {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wf-game-media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--wf-bg-soft);
  border: 1px solid rgba(216, 154, 82, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 232, 199, 0.04);
}
.wf-game-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wf-game-media::part(frame) { border-radius: 0; }
.wf-game-veil {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,0) 60%);
  opacity: 0;
  transition: opacity .18s;
  pointer-events: none;
}
.wf-game:hover .wf-game-veil,
.wf-game.wf-touched .wf-game-veil { opacity: 1; pointer-events: auto; }
.wf-game:hover .wf-game-media,
.wf-game.wf-touched .wf-game-media { border-color: rgba(216, 154, 82, 0.32); box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22); }
.wf-game-cta {
  width: 100%;
  height: 40px;
  border-radius: var(--wf-r-btn);
  background: var(--wf-accent);
  color: var(--wf-accent-ink);
  font-weight: 600;
  font-size: 14px;
  border: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.wf-live {
  position: absolute; top: 10px; right: 10px; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  height: 24px; padding: 0 9px;
  border-radius: var(--wf-r-btn);
  border: 1px solid #c36b47;
  color: #f0c2a3;
  background: rgba(27,19,14,.72);
  font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.wf-live .wf-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #c36b47; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.wf-game-meta .wf-game-name { font-size: 15px; font-weight: 600; letter-spacing: -.01em; line-height: 1.2; }
.wf-game-meta .wf-game-prov { font-size: 12px; color: var(--wf-ink-muted); margin-top: 3px; }

.wf-panel {
  position: relative;
  margin-top: 52px;
  padding: 28px;
  border-radius: calc(var(--wf-r-card) + 4px);
  background:
    radial-gradient(circle at top right, rgba(216, 154, 82, 0.11), transparent 26%),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, var(--wf-surface), var(--wf-bg-soft));
  border: 1px solid rgba(216, 154, 82, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.wf-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(232, 213, 184, 0.06);
  border-radius: calc(var(--wf-r-card) - 2px);
  pointer-events: none;
}
.wf-panel .wf-sec-head {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.wf-panel .wf-sec-head > div {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.wf-panel .wf-sec-head > div::after {
  content: "";
  width: 76px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wf-accent), rgba(216, 154, 82, 0));
  box-shadow: 0 0 18px rgba(216, 154, 82, 0.3);
}
.wf-panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 20px;
}
.wf-tile { min-width: 0; }
.wf-tile-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  padding: 20px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--wf-surface) 88%, white 12%), var(--wf-bg-soft)),
    var(--wf-surface);
  border: 1px solid rgba(216, 154, 82, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.wf-tile:hover .wf-tile-media {
  transform: translateY(-2px);
  border-color: rgba(232, 213, 184, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 28px rgba(0, 0, 0, 0.22);
  background:
    radial-gradient(circle at top center, rgba(216, 154, 82, 0.08), transparent 52%),
    linear-gradient(180deg, color-mix(in srgb, var(--wf-surface) 78%, white 22%), color-mix(in srgb, var(--wf-bg-soft) 88%, white 12%));
}
.wf-tile-logo {
  max-width: 200px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.wf-tile-logo--wide { max-width: 224px; }
.wf-tile-logo--tall { max-height: 82px; }
.wf-tile-name {
  margin-top: 12px;
  color: var(--wf-ink-soft);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.25;
  transition: color .16s ease;
}
.wf-tile:hover .wf-tile-name { color: var(--wf-ink); }
.wf-tile-media--alt {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 46%),
    linear-gradient(180deg, color-mix(in srgb, var(--wf-surface) 84%, white 16%), var(--wf-bg-soft));
}
.wf-tile-logo--alt {
  max-width: 210px;
  max-height: 78px;
}
.wf-prov-logo--wide { max-width: 230px; }
.wf-prov-logo--tall { max-height: 88px; }

/* ============================================================
   SEO content + FAQ
   ============================================================ */
.wf-article { margin-top: 88px; }
.wf-article-grid { display: block; }

.wf-article-body { min-width: 0; }
.wf-prose { min-width: 0; }
.wf-prose > *:first-child { margin-top: 0; }
.wf-prose > h2 {
  padding: 8px 0 0;
  margin: 34px 0 16px;
  border-top: 1px solid rgba(216, 154, 82, 0.08);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: var(--wf-tracking);
  color: var(--wf-ink-soft);
}
.wf-prose > h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.wf-prose h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 22px 0 10px;
  color: var(--wf-ink-soft);
}
.wf-prose p,
.wf-prose li {
  color: var(--wf-ink-muted);
  font-size: 17px;
  line-height: 1.7;
}
.wf-prose p { margin: 0 0 14px; }
.wf-prose strong { color: var(--wf-ink); font-weight: 600; }
.wf-prose ul,
.wf-prose ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.wf-prose li + li { margin-top: 8px; }
.wf-prose > .wf-cta,
.wf-prose .wf-closing .wf-cta {
  margin-top: 12px;
}
.wf-tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 22px 0;
}
.wf-tablewrap table {
  margin: 0;
}
.wf-prose table,
.wf-facts table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 22px 0;
  border: 1px solid rgba(216, 154, 82, 0.22);
  background: color-mix(in srgb, var(--wf-surface) 88%, white 12%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 30px rgba(0, 0, 0, 0.16);
  table-layout: fixed;
}

.wf-prose table > thead,
.wf-prose table > tbody,
.wf-facts table > thead,
.wf-facts table > tbody {
  display: table-row-group;
}

.wf-prose thead,
.wf-facts thead {
  display: table-header-group;
}

.wf-prose th,
.wf-prose td,
.wf-facts th,
.wf-facts td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: break-word;
}

.wf-prose thead th,
.wf-facts thead th {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wf-ink);
  background: color-mix(in srgb, var(--wf-accent) 12%, var(--wf-surface) 88%);
  border-bottom: 1px solid rgba(216, 154, 82, 0.22);
}

.wf-prose tbody td,
.wf-facts tbody td {
  color: var(--wf-ink-muted);
  font-size: 15px;
  line-height: 1.55;
  background: transparent;
  border-top: 1px solid rgba(216, 154, 82, 0.12);
}

.wf-prose tbody th,
.wf-facts tbody th {
  width: 34%;
  color: var(--wf-ink);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.55;
  background: color-mix(in srgb, var(--wf-surface) 55%, transparent);
  border-top: 1px solid rgba(216, 154, 82, 0.12);
}

.wf-prose tbody tr:first-child th,
.wf-facts tbody tr:first-child th {
  border-top: none;
}

.wf-prose th + td,
.wf-prose td + th,
.wf-facts th + td,
.wf-facts td + th {
  border-left: 1px solid rgba(216, 154, 82, 0.10);
}

.wf-prose tbody tr:first-child td,
.wf-facts tbody tr:first-child td {
  border-top: none;
}

.wf-prose th + th,
.wf-prose td + td,
.wf-facts th + th,
.wf-facts td + td {
  border-left: 1px solid rgba(216, 154, 82, 0.10);
}

.wf-prose tbody td:first-child,
.wf-prose thead th:first-child,
.wf-facts tbody td:first-child {
  width: 34%;
  color: var(--wf-ink);
  font-weight: 600;
}

.wf-facts thead th:first-child {
  width: 34%;
}
.wf-prose .wf-closing {
  margin-top: 42px;
  padding: 28px;
  border-radius: calc(var(--wf-r-card) + 2px);
  background:
    radial-gradient(circle at top right, rgba(216, 154, 82, 0.12), transparent 28%),
    linear-gradient(180deg, var(--wf-surface), var(--wf-bg-soft)),
    var(--wf-bg-soft);
  border: 1px solid rgba(216, 154, 82, 0.14);
  box-shadow: var(--wf-glow);
}
.wf-prose .wf-closing h2 {
  margin: 0 0 12px;
  padding: 0;
  border-top: none;
}
.wf-updated {
  position: relative;
  margin-top: 28px;
  padding: 18px 24px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--wf-accent) 10%, transparent), transparent 22%),
    color-mix(in srgb, var(--wf-surface) 76%, var(--wf-bg) 24%);
  border: 1px solid color-mix(in srgb, var(--wf-accent) 18%, var(--wf-ink-muted) 82%);
  color: var(--wf-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--wf-ink) 8%, transparent),
    0 10px 24px rgba(0, 0, 0, 0.08);
}
/* ============================================================
   FAQ accordion
   ============================================================ */
.wf-faq {
  border-top: 1px solid rgba(216, 154, 82, 0.12);
  margin-top: 8px;
}
.wf-faq-item {
  border-bottom: 1px solid rgba(216, 154, 82, 0.12);
}
.wf-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 4px;
  background: transparent;
  border: 0;
  color: var(--wf-ink);
  font-family: var(--wf-font);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: color .16s;
}
.wf-faq-q:hover { color: var(--wf-accent); }
.wf-faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}
.wf-faq-plus::before,
.wf-faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--wf-accent);
  border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}
.wf-faq-plus::before { width: 14px; height: 2px; }
.wf-faq-plus::after { width: 2px; height: 14px; }
.wf-faq-item.wf-open .wf-faq-plus::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.wf-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .26s ease, padding .26s ease;
  padding: 0 4px;
}
.wf-faq-item.wf-open .wf-faq-a {
  max-height: 640px;
  padding: 0 4px 18px;
}
.wf-faq-a p {
  margin: 0;
  color: var(--wf-ink-muted);
  font-size: 16px;
  line-height: 1.7;
}



/* ============================================================
   Footer
   ============================================================ */
.wf-footer { margin-top: 96px; border-top: 1px solid rgba(216, 154, 82, 0.12); background: linear-gradient(180deg, var(--wf-bg-soft), var(--wf-bg)); }
.wf-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding: 56px 0 40px; }
.wf-footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .16em; color: var(--wf-ink-muted); margin: 0 0 16px; font-weight: 600; }
.wf-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.wf-footer ul a { color: var(--wf-ink-muted); font-size: 14px; }
.wf-footer ul a:hover { color: var(--wf-ink); }
.wf-footer-brand .wf-footer-logo { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 18px; letter-spacing: .02em; margin-bottom: 14px; font-family: var(--wf-font); }
.wf-footer-brand .wf-footer-logo .wf-logo { height: 60px; }
.wf-footer-brand .wf-footer-logo b { color: var(--wf-accent); }
.wf-footer-brand p { color: var(--wf-ink-muted); font-size: 14px; line-height: 1.6; max-width: 36ch; margin: 0 0 18px; }
.wf-social { display: flex; gap: 10px; }
.wf-social-link { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(216, 154, 82, 0.16); background: var(--wf-surface); display: grid; place-items: center; color: var(--wf-ink-soft); transition: color .15s, border-color .15s, background .15s; }
.wf-social-link:hover { color: var(--wf-ink); border-color: rgba(232, 213, 184, 0.34); background: rgba(216, 154, 82, 0.08); }
.wf-footer-legal {
  border-top: 1px solid rgba(216, 154, 82, 0.08);
  padding: 22px 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.wf-footer-legal p { margin: 0; color: var(--wf-ink-muted); font-size: 12.5px; line-height: 1.6; max-width: 72ch; }
.wf-age { display: inline-flex; align-items: center; gap: 8px; color: var(--wf-ink-soft); font-size: 12px; font-weight: 600; }
.wf-age-num { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgba(232, 213, 184, 0.18); display: grid; place-items: center; font-size: 11px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .wf-panel { padding: 24px; }
  .wf-topbar-logo .wf-logo { height: 34px; }
  .wf-topbar-logo { display: flex; }
  .wf-topbar-toggle { display: grid; }
  .wf-panel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wf-rail-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wf-topbar-nav {
    position: fixed;
    top: var(--wf-header-h);
    left: 0;
    right: 0;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    padding: 0 18px;
    background: color-mix(in srgb, var(--wf-bg) 96%, transparent);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(216, 154, 82, 0.12);
    transition: max-height .26s ease, opacity .2s ease;
  }
  .wf-topbar-nav.wf-open { max-height: 280px; opacity: 1; pointer-events: auto; padding: 8px 18px 18px; }
  .wf-topbar-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(216, 154, 82, 0.08); }
  .wf-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .wf-hero-media { min-height: 280px; }
  .wf-hero-media img { object-position: 76% center; }
  .wf-footer { margin-top: 72px; }
  .wf-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 32px 0 24px;
  }
  .wf-footer-grid > div {
    padding: 18px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--wf-surface) 72%, var(--wf-bg) 28%);
    border: 1px solid color-mix(in srgb, var(--wf-ink-muted) 20%, transparent);
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--wf-ink) 7%, transparent);
  }
  .wf-footer-grid > :first-child {
    grid-column: 1 / -1;
  }
  .wf-footer h4 {
    margin-bottom: 12px;
    color: var(--wf-ink-soft);
  }
  .wf-footer ul {
    gap: 10px;
  }
  .wf-footer ul a {
    color: var(--wf-ink-soft);
    font-size: 15px;
    line-height: 1.35;
  }
  .wf-footer-brand p {
    max-width: none;
    margin-bottom: 14px;
  }
  .wf-social {
    flex-wrap: wrap;
  }
  .wf-footer-legal {
    padding: 18px 0 28px;
    gap: 12px;
  }
  .wf-footer-legal p,
  .wf-age {
    color: var(--wf-ink-soft);
  }
  .wf-container { padding: 0 18px; }
  .wf-topbar { padding: 0 16px; }
  .wf-topbar {
    gap: 10px;
  }
  .wf-topbar-logo {
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.015em;
    min-width: 0;
    flex: 1;
  }
  .wf-topbar .wf-chip--outline.wf-login,
  .wf-topbar .wf-cta {
    height: 42px;
    padding: 0 18px;
    font-size: 14px;
    flex: 0 0 auto;
  }
}

@media (max-width: 520px) {
  .wf-hero {
    padding-top: 28px;
  }
  .wf-panel {
    margin-top: 40px;
    padding: 18px 16px;
  }
  .wf-panel::before { inset: 10px; }
  .wf-panel .wf-sec-head {
    margin-bottom: 18px;
  }
  .wf-panel .wf-sec-head > div {
    gap: 8px;
  }
  .wf-panel .wf-sec-head > div::after {
    width: 64px;
  }
  .wf-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }
  .wf-rail-track {
    gap: 16px 12px;
  }
  .wf-tile-media {
    min-height: 104px;
    padding: 14px;
    border-radius: 14px;
  }
  .wf-tile-logo {
    max-width: 132px;
    max-height: 44px;
  }
  .wf-tile-logo--wide { max-width: 144px; }
  .wf-tile-logo--tall { max-height: 52px; }
  .wf-tile-logo--alt {
    max-width: 138px;
    max-height: 48px;
  }
  .wf-prov-logo--wide { max-width: 150px; }
  .wf-prov-logo--tall { max-height: 56px; }
  .wf-tile-name {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.3;
  }
  .wf-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 26px 0 22px;
  }
  .wf-footer-grid > div {
    padding: 16px;
    border-radius: 12px;
  }
  .wf-footer-grid > :first-child,
  .wf-footer-grid > :last-child {
    grid-column: 1 / -1;
  }
  .wf-footer h4 {
    font-size: 11px;
    letter-spacing: .14em;
  }
  .wf-footer ul a {
    font-size: 14px;
  }
  .wf-footer-legal {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0 24px;
  }
  .wf-topbar {
    padding: 0 12px;
    gap: 8px;
  }
  .wf-topbar-logo {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .wf-topbar .wf-chip--outline.wf-login,
  .wf-topbar .wf-cta {
    min-width: 0;
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .wf-topbar-logo {
    font-size: 12px;
    letter-spacing: 0.01em;
  }
  .wf-topbar .wf-chip--outline.wf-login,
  .wf-topbar .wf-cta {
    padding: 0 13px;
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .wf-panel {
    padding: 16px 14px;
  }
  .wf-panel-grid {
    gap: 14px 10px;
  }
  .wf-tile-media {
    min-height: 92px;
    padding: 12px;
  }
  .wf-tile-logo {
    max-width: 116px;
    max-height: 38px;
  }
  .wf-tile-logo--wide { max-width: 126px; }
  .wf-tile-logo--tall { max-height: 46px; }
  .wf-tile-logo--alt {
    max-width: 122px;
    max-height: 42px;
  }
  .wf-prov-logo--wide { max-width: 132px; }
  .wf-prov-logo--tall { max-height: 50px; }
  .wf-tile-name {
    font-size: 12px;
  }
  .wf-footer-grid {
    grid-template-columns: 1fr;
  }
  .wf-footer-grid > :first-child,
  .wf-footer-grid > :last-child {
    grid-column: auto;
  }
  .wf-topbar {
    gap: 6px;
  }
  .wf-topbar-logo {
    font-size: 12px;
    letter-spacing: 0.01em;
  }
  .wf-topbar .wf-chip--outline.wf-login,
  .wf-topbar .wf-cta {
    height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }
}