:root {
  --bg: #030605;
  --bg-soft: #080d0b;
  --panel: #0b1210;
  --text: #f0f4f1;
  --muted: #98a39d;
  --dim: #647069;
  --accent: #3a8d97;
  --accent-bright: #68c3c5;
  --green: #9fbe5c;
  --steel: #cbd2cf;
  --wolf-shadow: rgba(0, 18, 18, 0.82);
  --line: rgba(224, 238, 229, 0.13);
  --line-strong: rgba(224, 238, 229, 0.28);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(58, 141, 151, 0.1), transparent 28vw),
    radial-gradient(circle at 92% 32%, rgba(104, 195, 197, 0.07), transparent 30vw),
    var(--bg);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  border-color: transparent;
  background: transparent;
  backdrop-filter: none;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image: url("assets/wlz-w-symbol.png");
  background-position: calc(100% - 2vw) 34%;
  background-repeat: no-repeat;
  background-size: min(48vw, 720px);
  opacity: 0.024;
  filter: grayscale(1);
}

body::after {
  position: fixed;
  bottom: 6vh;
  left: -7vw;
  z-index: -1;
  width: min(34vw, 410px);
  aspect-ratio: 721 / 901;
  pointer-events: none;
  content: "";
  background: url("assets/wlz-claw-mark.png") center / contain no-repeat;
  filter: grayscale(1) drop-shadow(0 0 30px rgba(58, 141, 151, 0.22));
  opacity: 0.032;
  transform: rotate(-18deg);
}

::selection {
  color: #06100e;
  background: var(--accent-bright);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 12px max(24px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--line);
  background: rgba(3, 6, 5, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--text);
  font-size: 1.48rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(104, 195, 197, 0.16);
}

.brand-mark {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(58, 141, 151, 0.42));
  transform: translateY(-1px);
}

.brand span {
  display: inline-block;
}

.site-nav {
  z-index: 1;
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: clamp(16px, 2.2vw, 30px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(240, 244, 241, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent-bright);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-join {
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
}

.site-nav .nav-join::after,
.site-nav .nav-social::after {
  display: none;
}

.site-nav .nav-join:hover,
.site-nav .nav-join:focus-visible {
  border-color: var(--accent-bright);
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--line-strong);
}

.site-nav .nav-social {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--muted);
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: rgba(3, 6, 5, 0.7);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/wlz-forest-hero.png") 68% center / cover no-repeat;
  transform: scale(1.035);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 6, 5, 0.98) 0%, rgba(3, 6, 5, 0.82) 42%, rgba(3, 6, 5, 0.34) 70%, rgba(3, 6, 5, 0.58) 100%),
    linear-gradient(180deg, rgba(3, 6, 5, 0.3), transparent 38%, rgba(3, 6, 5, 0.92));
}

.hero-logo {
  position: absolute;
  top: 52%;
  right: max(-32px, calc((100vw - var(--max-width)) / 2 - 32px));
  z-index: 2;
  width: clamp(360px, 43vw, 650px);
  pointer-events: none;
  opacity: 0.86;
  transform: translateY(-50%);
  animation: heroWolfFloat 6.5s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%);
}

.hero-logo span {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(104, 195, 197, 0.28), rgba(58, 141, 151, 0.08) 42%, transparent 70%);
  filter: blur(20px);
  opacity: 0.9;
}

.hero-logo img {
  position: relative;
  width: 100%;
  filter:
    grayscale(0.05)
    contrast(1.14)
    drop-shadow(0 24px 56px var(--wolf-shadow))
    drop-shadow(0 0 28px rgba(58, 141, 151, 0.26));
}

.hero-claw {
  position: absolute;
  right: clamp(22px, 7vw, 118px);
  bottom: clamp(48px, 9vw, 132px);
  z-index: 2;
  width: clamp(110px, 12vw, 190px);
  pointer-events: none;
  filter: grayscale(0.2) drop-shadow(0 0 24px rgba(58, 141, 151, 0.18));
  opacity: 0.2;
  transform: rotate(-23deg);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 108px;
  padding-bottom: 92px;
}

.overline,
.section-index {
  margin: 0;
  color: var(--accent-bright);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-index::before {
  width: 16px;
  height: 22px;
  content: "";
  background: url("assets/wlz-claw-mark.png") center / contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(104, 195, 197, 0.4));
}

.overline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.overline::before {
  width: 48px;
  height: 1px;
  content: "";
  background: var(--accent-bright);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.35rem, 6.2vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.outline-text {
  margin-top: 8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 244, 241, 0.48);
}

.hero-statement {
  max-width: 610px;
  margin-top: 26px;
  padding-left: 22px;
  border-left: 1px solid rgba(104, 195, 197, 0.52);
}

.hero-statement p {
  margin: 0;
  color: #bac3be;
  font-size: clamp(0.94rem, 1.35vw, 1.07rem);
  line-height: 1.7;
}

.hero-statement p + p {
  margin-top: 6px;
}

.hero-statement .hero-oath {
  margin-top: 16px;
  color: var(--text);
}

.hero-oath strong {
  color: var(--accent-bright);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 194px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.btn span {
  margin-left: 28px;
  font-size: 1rem;
}

.btn-primary {
  border-color: var(--accent-bright);
  color: #020706;
  background: var(--accent-bright);
}

.btn-secondary {
  background: rgba(3, 6, 5, 0.56);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--green);
  background: var(--green);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--accent-bright);
}

.scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - var(--max-width)) / 2));
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(var(--accent-bright), transparent);
}

.signature {
  position: relative;
  display: grid;
  place-content: center;
  min-height: 92svh;
  overflow: hidden;
  padding: 120px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050907;
  text-align: center;
}

.signature::before {
  position: absolute;
  right: max(16px, 9vw);
  bottom: 12%;
  width: min(22vw, 250px);
  aspect-ratio: 721 / 901;
  content: "";
  background: url("assets/wlz-claw-mark.png") center / contain no-repeat;
  filter: grayscale(0.2) drop-shadow(0 0 30px rgba(58, 141, 151, 0.18));
  opacity: 0.09;
  transform: rotate(17deg);
}

.signature-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(82vw, 880px);
  transform: translate(-50%, -50%);
  opacity: 0.05;
  filter: grayscale(0.7) contrast(1.25) drop-shadow(0 0 60px rgba(58, 141, 151, 0.16));
}

.signature p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2.4rem, 6.8vw, 6.75rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.signature p + p {
  margin-top: 10px;
}

.signature strong {
  color: var(--accent-bright);
}

.split-section,
.mission,
.founding {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 130px);
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-intro h2,
.blueprint h2,
.mission h2,
.center-heading h2,
.code-section h2,
.enemy h2,
.pack h2,
.founding h2,
.faq h2,
.final-cta h2 {
  margin: 18px 0 0;
  font-size: clamp(2.55rem, 5.2vw, 5.1rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-intro h2 span,
.mission h2 span,
.enemy h2 span,
.founding h2 span,
.faq h2 span {
  color: var(--accent-bright);
}

.manifesto-lines {
  border-top: 1px solid var(--line-strong);
}

.manifesto-lines > p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.55;
}

.manifesto-lines strong {
  color: var(--text);
  text-align: right;
}

.manifesto-choice {
  display: grid;
  gap: 9px;
  margin-top: 42px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
}

.manifesto-choice strong {
  color: var(--accent-bright);
  text-align: left;
}

.section-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.section-band::after {
  position: absolute;
  top: 44px;
  right: -96px;
  width: min(31vw, 360px);
  aspect-ratio: 721 / 901;
  pointer-events: none;
  content: "";
  background: url("assets/wlz-claw-mark.png") center / contain no-repeat;
  filter: grayscale(0.25) drop-shadow(0 0 30px rgba(58, 141, 151, 0.16));
  opacity: 0.055;
  transform: rotate(-21deg);
}

.section-band > .section-shell {
  position: relative;
  z-index: 1;
}

.blueprint {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

.blueprint::before {
  position: absolute;
  inset: 0 50% 0 0;
  content: "";
  background: radial-gradient(circle at 50% 50%, rgba(58, 141, 151, 0.15), transparent 62%);
}

.blueprint-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(52px, 8vw, 130px);
}

.wolf-emblem {
  position: relative;
}

.wolf-emblem::before,
.founding-symbol::before {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(104, 195, 197, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 80px rgba(58, 141, 151, 0.13);
}

.wolf-emblem::after {
  position: absolute;
  right: 2%;
  bottom: 6%;
  width: 32%;
  aspect-ratio: 721 / 901;
  content: "";
  background: url("assets/wlz-claw-mark.png") center / contain no-repeat;
  opacity: 0.18;
  transform: rotate(18deg);
}

.wolf-emblem img {
  position: relative;
  width: 100%;
  z-index: 1;
  filter:
    grayscale(0.08)
    contrast(1.15)
    drop-shadow(0 24px 46px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 34px rgba(58, 141, 151, 0.25));
  mix-blend-mode: screen;
  animation: wolfFloat 7s ease-in-out infinite alternate;
}

.blueprint-copy > p:not(.section-index) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.blueprint-copy p strong {
  color: var(--text);
}

.cause-list {
  display: grid;
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.cause-list span {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #bac3be;
}

.blueprint blockquote {
  margin: 36px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--accent-bright);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.5;
}

.mission-copy {
  align-self: end;
  max-width: 660px;
}

.mission-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.78;
}

.mission-copy p + p {
  margin-top: 20px;
}

.mission-copy .mission-closing {
  margin-top: 40px;
  color: var(--text);
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
}

.mission-closing strong {
  color: var(--accent-bright);
}

.values {
  padding: 140px 0;
}

.center-heading {
  margin-bottom: 64px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.value-item {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}

.value-item::after,
.enemy-item::after {
  position: absolute;
  right: -28px;
  bottom: -42px;
  width: 116px;
  aspect-ratio: 721 / 901;
  content: "";
  background: url("assets/wlz-claw-mark.png") center / contain no-repeat;
  filter: grayscale(0.2);
  opacity: 0;
  transform: rotate(-18deg);
  transition: opacity 200ms ease, transform 200ms ease;
}

.value-item:hover {
  background: rgba(58, 141, 151, 0.07);
}

.value-item:hover::after,
.enemy-item:hover::after {
  opacity: 0.12;
  transform: rotate(-18deg) translate(-8px, -8px);
}

.value-item > span,
.enemy-item > span {
  position: relative;
  z-index: 1;
  color: var(--dim);
  font-size: 0.7rem;
  font-weight: 900;
}

.value-item h3,
.enemy-item h3 {
  position: relative;
  z-index: 1;
  margin: 56px 0 12px;
  font-size: 1.18rem;
  text-transform: uppercase;
}

.value-item p,
.enemy-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.code-section {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 130px 0;
}

.code-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 5, 0.96), rgba(3, 6, 5, 0.5), rgba(3, 6, 5, 0.93)),
    url("assets/wlz-claw-mark.png") 13% 51% / min(28vw, 330px) no-repeat,
    url("assets/wlz-forest-hero.png") 68% center / cover no-repeat;
  filter: grayscale(0.65);
  opacity: 0.58;
}

.code-content {
  position: relative;
  z-index: 2;
  max-width: calc(100vw - 36px);
  text-align: center;
}

.code-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--muted);
}

.code-words {
  display: grid;
  margin: 48px 0;
}

.code-words span {
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.code-words span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 244, 241, 0.7);
}

.code-words span:nth-child(3) {
  color: var(--accent-bright);
}

.code-copy {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}

.code-copy p {
  margin: 4px 0;
}

.code-copy strong {
  display: block;
  margin-top: 14px;
  color: var(--text);
}

.enemy {
  padding-top: 150px;
  padding-bottom: 150px;
}

.enemy-heading {
  max-width: 900px;
}

.enemy-heading > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.enemy-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid var(--line-strong);
}

.enemy-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.enemy-item:first-child {
  border-left: 1px solid var(--line);
}

.enemy-item h3 {
  margin-top: 70px;
  font-size: 1rem;
}

.pack {
  padding: 140px 0;
  text-align: center;
}

.pack-heading {
  max-width: 790px;
  margin: 0 auto;
}

.pack-heading > p:last-child {
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.pack-heading strong {
  color: var(--text);
}

.roles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 64px auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.roles span {
  padding: 22px 28px;
  border-right: 1px solid var(--line);
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.38rem);
  font-weight: 800;
}

.roles span:first-child {
  border-left: 1px solid var(--line);
}

.pack-closing {
  color: var(--muted);
  line-height: 1.65;
}

.pack-closing p {
  margin: 8px 0;
}

.pack-closing strong {
  color: var(--accent-bright);
}

.founding {
  align-items: center;
}

.founding-copy > p:not(.section-index) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.founding-copy strong {
  color: var(--text);
}

.founding-copy .btn {
  margin-top: 34px;
}

.founding-symbol {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.founding-symbol::after {
  position: absolute;
  right: 8%;
  bottom: 5%;
  width: 28%;
  aspect-ratio: 721 / 901;
  content: "";
  background: url("assets/wlz-claw-mark.png") center / contain no-repeat;
  filter: grayscale(0.2);
  opacity: 0.16;
  transform: rotate(19deg);
}

.founding-symbol img {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  opacity: 0.58;
  filter:
    grayscale(0.1)
    contrast(1.14)
    drop-shadow(0 0 38px rgba(58, 141, 151, 0.25));
  mix-blend-mode: screen;
}

.founding-symbol span {
  position: absolute;
  z-index: 2;
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.faq {
  padding: 140px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 120px);
}

.faq-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.accordion {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 80px;
  padding: 18px 4px;
  border: 0;
  color: var(--text);
  background: transparent;
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  gap: 20px;
}

.faq-item button:hover,
.faq-item button:focus-visible {
  color: var(--accent-bright);
}

.faq-item i {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
}

.faq-item i::before,
.faq-item i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-item i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 52px 26px 4px;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.final-cta::before {
  position: absolute;
  top: 50%;
  right: max(10px, 7vw);
  z-index: 1;
  width: min(36vw, 470px);
  aspect-ratio: 1;
  content: "";
  background: url("assets/wlz-wolf-logo.png") center / contain no-repeat;
  filter:
    grayscale(0.2)
    contrast(1.16)
    drop-shadow(0 0 42px rgba(58, 141, 151, 0.22));
  opacity: 0.24;
  transform: translateY(-50%);
}

.final-cta-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 5, 0.98) 0%, rgba(3, 6, 5, 0.78) 45%, rgba(3, 6, 5, 0.34) 100%),
    linear-gradient(180deg, rgba(3, 6, 5, 0.3), rgba(3, 6, 5, 0.92)),
    url("assets/wlz-forest-hero.png") 70% center / cover no-repeat;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.final-cta-content > p:not(.section-index) {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta-content .hunt-line {
  margin-top: 8px;
  color: var(--text);
  font-weight: 800;
}

.cta-actions {
  margin-top: 34px;
}

.coming-soon {
  color: var(--dim);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 80px 0 28px;
  background: #020403;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 1.1fr;
  gap: clamp(36px, 7vw, 100px);
}

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(58, 141, 151, 0.28));
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--dim);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-bright);
}

.footer-legal p {
  margin: 0 0 10px;
  color: var(--dim);
  font-size: 0.74rem;
  line-height: 1.58;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  right: max(18px, calc((100vw - var(--max-width)) / 2));
  bottom: 18px;
  left: max(18px, calc((100vw - var(--max-width)) / 2));
  z-index: 70;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  max-width: 940px;
  padding: 16px;
  border: 1px solid rgba(104, 195, 197, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(5, 9, 7, 0.98), rgba(8, 15, 13, 0.96)),
    radial-gradient(circle at 16% 20%, rgba(58, 141, 151, 0.18), transparent 34%);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.62),
    0 0 38px rgba(58, 141, 151, 0.13);
  backdrop-filter: blur(18px);
  animation: cookieRise 360ms ease both;
}

.cookie-banner::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(104, 195, 197, 0.17), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%);
  border-radius: inherit;
}

.cookie-mark,
.cookie-copy,
.cookie-actions {
  position: relative;
  z-index: 1;
}

.cookie-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  background: rgba(3, 6, 5, 0.58);
}

.cookie-mark img {
  width: 38px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(104, 195, 197, 0.35));
  transform: rotate(-18deg);
}

.cookie-copy p,
.cookie-copy h2,
.cookie-copy span {
  margin: 0;
}

.cookie-copy p {
  color: var(--accent-bright);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-copy h2 {
  margin-top: 4px;
  color: var(--text);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.cookie-copy span {
  display: block;
  max-width: 560px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-actions button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(3, 6, 5, 0.62);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cookie-actions button:hover,
.cookie-actions button:focus-visible {
  transform: translateY(-2px);
}

.cookie-accept {
  border-color: var(--accent-bright) !important;
  color: #020706 !important;
  background: var(--accent-bright) !important;
}

.cookie-accept:hover,
.cookie-accept:focus-visible {
  border-color: var(--green) !important;
  background: var(--green) !important;
}

.cookie-essential:hover,
.cookie-essential:focus-visible {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-0.7%, -0.4%, 0); }
}

@keyframes heroWolfFloat {
  from { transform: translateY(-50%) translate3d(0, 0, 0); }
  to { transform: translateY(-50%) translate3d(0, -14px, 0); }
}

@keyframes wolfFloat {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -12px, 0); }
}

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

@media (max-width: 1050px) {
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 0.65rem; }
  .enemy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .enemy-item:nth-child(4) { border-left: 1px solid var(--line); }
}

@media (max-width: 840px) {
  .section-shell { width: min(calc(100% - 36px), var(--max-width)); }
  .site-header { padding-inline: 18px; }
  .hero-logo { right: -15vw; width: min(60vw, 520px); opacity: 0.54; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    margin: 0;
    padding: 92px 24px 40px;
    background: rgba(3, 6, 5, 0.995);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
    gap: 4px;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 12px; font-size: 1rem; }
  .site-nav .nav-join { margin: 12px auto 0; padding: 12px 28px; }
  .nav-divider { width: 80px; height: 1px; margin: 12px auto; }
  .site-nav .nav-social { display: inline-grid; width: 42px; height: 42px; margin: 2px auto; }
  .split-section,
  .mission,
  .founding,
  .faq-layout { grid-template-columns: 1fr; }
  .blueprint-grid { grid-template-columns: 0.8fr 1.2fr; gap: 34px; }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-heading { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; max-width: 640px; }
}

@media (max-width: 620px) {
  .site-header { min-height: 70px; }
  .site-header.is-scrolled { min-height: 64px; }
  .brand { gap: 9px; font-size: 1.24rem; }
  .brand-mark { width: 44px; height: 44px; }
  .hero { min-height: 92svh; align-items: flex-end; }
  .hero-media { background-position: 69% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 6, 5, 0.9), rgba(3, 6, 5, 0.18)),
      linear-gradient(180deg, rgba(3, 6, 5, 0.42), rgba(3, 6, 5, 0.2) 30%, rgba(3, 6, 5, 0.98) 76%);
  }
  .hero-logo {
    top: 38%;
    right: -52vw;
    width: min(134vw, 560px);
    opacity: 0.3;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-claw {
    right: -30px;
    bottom: 18%;
    width: 132px;
    opacity: 0.14;
  }
  .hero-content { padding-top: 90px; padding-bottom: 34px; }
  .overline { margin-bottom: 16px; font-size: 0.63rem; }
  .overline::before { width: 44px; }
  .hero h1 { font-size: clamp(2.7rem, 12.5vw, 3.5rem); line-height: 0.93; }
  .hero-statement { margin-top: 18px; padding-left: 16px; }
  .hero-statement p { font-size: 0.9rem; line-height: 1.58; }
  .hero-statement .hero-oath { margin-top: 11px; }
  .hero-actions { display: grid; }
  .hero-actions { margin-top: 18px; }
  .hero-actions .btn { min-height: 48px; }
  .hero-actions .btn { width: 100%; }
  .scroll-cue { display: none; }
  .signature { min-height: 78svh; padding: 100px 18px; }
  .signature::before { right: -44px; bottom: 9%; width: 168px; opacity: 0.08; }
  .signature p { font-size: clamp(2rem, 11vw, 3.25rem); }
  .section-band::after { top: 24px; right: -136px; width: 250px; opacity: 0.045; }
  .split-section,
  .mission,
  .founding { gap: 44px; padding-top: 96px; padding-bottom: 96px; }
  .section-intro h2,
  .blueprint h2,
  .mission h2,
  .center-heading h2,
  .enemy h2,
  .pack h2,
  .founding h2,
  .faq h2,
  .final-cta h2 { font-size: clamp(2.25rem, 12vw, 3.6rem); }
  .manifesto-lines > p { display: grid; gap: 7px; padding: 20px 0; }
  .manifesto-lines strong { text-align: left; }
  .blueprint { padding: 96px 0; }
  .blueprint-grid { grid-template-columns: 1fr; }
  .wolf-emblem { width: min(100%, 360px); margin: 0 auto; }
  .wolf-emblem img { opacity: 0.7; }
  .values { padding: 96px 0; }
  .center-heading { margin-bottom: 44px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { min-height: 180px; }
  .value-item h3 { margin-top: 42px; }
  .code-section { min-height: 88svh; padding: 100px 0; }
  .code-words span { font-size: clamp(3.7rem, 19vw, 6.5rem); }
  .enemy { padding-top: 96px; padding-bottom: 96px; }
  .enemy-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .enemy-item,
  .enemy-item:nth-child(4) { min-height: 190px; border-left: 1px solid var(--line); }
  .enemy-item h3 { margin-top: 44px; }
  .pack { padding: 96px 0; }
  .roles { display: grid; grid-template-columns: 1fr 1fr; }
  .roles span,
  .roles span:first-child { padding: 18px 10px; border-right: 1px solid var(--line); border-left: 0; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
  .roles span:nth-child(odd) { border-left: 1px solid var(--line); }
  .founding-symbol { min-height: 340px; order: -1; }
  .faq { padding: 96px 0; }
  .faq-layout { gap: 44px; }
  .faq-item button { min-height: 72px; }
  .faq-item.is-open .faq-answer p { padding-right: 4px; }
  .final-cta { min-height: 80svh; }
  .final-cta::before { right: -144px; width: 360px; opacity: 0.16; }
  .cta-actions { display: grid; align-items: start; }
  .cta-actions .btn { width: 100%; }
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }
  .cookie-mark {
    display: none;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cookie-actions button {
    width: 100%;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: auto; }
  .footer-bottom { display: grid; justify-content: center; gap: 10px; text-align: center; }
}

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