@font-face {
  font-family: Uni;
  src: url("assets/uni-sans-ince.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: Mont;
  src: url("assets/mont.ttf") format("truetype");
  font-display: swap;
}

:root {
  --red: #99001c;
  --red-hot: #c8002a;
  --ink: #050505;
  --panel: #080808;
  --line: rgba(255, 255, 255, .075);
  --text: #e8e3dc;
  --muted: rgba(232, 227, 220, .58);
  --dim: rgba(232, 227, 220, .25);
  --display: Uni, "Arial Narrow", Arial, sans-serif;
  --body: Mont, Arial, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection {
  background: var(--red);
  color: #fff;
}

#scrollProgress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 9000;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), #ff3656);
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 8500;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  transition: opacity .8s var(--ease), visibility .8s;
}

.intro.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-sweep {
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 0;
  background: var(--red);
  animation: intro-red 1.15s .55s var(--ease) forwards;
}

.intro-logo {
  position: relative;
  z-index: 2;
  width: clamp(72px, 10vw, 120px);
  height: clamp(72px, 10vw, 120px);
  animation: logo-pop .9s var(--ease) both;
}

.intro-letters {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: clamp(18px, 4vw, 42px);
  font-family: var(--display);
  font-size: 10rem;
  line-height: .78;
  opacity: 0;
  animation: letters-in .7s .72s var(--ease) forwards;
}

.intro-progress {
  position: absolute;
  bottom: 12vh;
  left: 0;
  right: 0;
  z-index: 4;
  text-align: center;
}

.intro-progress span,
.intro-progress strong {
  display: block;
}

.intro-progress span {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .38);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .58rem;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.intro-progress strong {
  color: #fff;
  font-family: var(--body);
  font-size: 2rem;
  font-weight: 100;
}

@keyframes logo-pop {
  from {
    opacity: 0;
    transform: scale(.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes intro-red {
  60% {
    height: 100%;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}

@keyframes letters-in {
  from {
    opacity: 0;
    transform: scale(1.7);
  }
  60% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale(5);
  }
}

.site-video {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 52% 42%, rgba(155, 0, 28, .24), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, .95), rgba(40, 0, 9, .72), rgba(0, 0, 0, .92)),
    var(--poster-image, url("assets/poster.png")) center / cover no-repeat;
  filter: saturate(.8) contrast(1.2) brightness(.48);
}

.hud {
  position: fixed;
  inset: 22px;
  z-index: 30;
  pointer-events: none;
}

.hud i {
  position: absolute;
  width: 16px;
  height: 16px;
  opacity: .8;
}

.hud i:nth-child(1) {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(153, 0, 28, .55);
  border-left: 1px solid rgba(153, 0, 28, .55);
}

.hud i:nth-child(2) {
  top: 0;
  right: 0;
  border-top: 1px solid rgba(153, 0, 28, .55);
  border-right: 1px solid rgba(153, 0, 28, .55);
}

.hud i:nth-child(3) {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid rgba(153, 0, 28, .55);
  border-left: 1px solid rgba(153, 0, 28, .55);
}

.hud i:nth-child(4) {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid rgba(153, 0, 28, .55);
  border-right: 1px solid rgba(153, 0, 28, .55);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 400;
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 clamp(16px, 2.4vw, 30px);
  transition: background .35s, border-color .35s, backdrop-filter .35s;
}

.site-nav.scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, .68);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  margin-right: clamp(14px, 1.5vw, 22px);
}

.brand-flag {
  display: inline-block;
  width: 46px;
  height: 31px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 4px;
  background: #e30a17;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(153, 0, 28, .34);
}

.brand-flag.intro-logo {
  width: clamp(112px, 15vw, 190px);
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  box-shadow: 0 0 70px rgba(153, 0, 28, .5);
}

.brand span {
  color: #fff;
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: .13em;
  line-height: 1.1;
  max-width: 24ch;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 8px 9px;
  color: rgba(255, 255, 255, .86);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 1px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .nav-cta {
  margin-left: 6px;
  padding: 9px 16px;
  background: var(--red);
  box-shadow: 0 0 26px rgba(153, 0, 28, .35);
}

.nav-links .nav-cta::after {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .3);
  color: #fff;
  cursor: pointer;
}

.burger span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform .3s, opacity .2s;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 72px 0 0 auto;
  z-index: 350;
  width: min(100%, 420px);
  padding: 28px;
  background: #000;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}

.drawer.open {
  transform: translateX(0);
}

.drawer a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
  letter-spacing: .08em;
}

.drawer .drawer-cta {
  padding: 14px;
  border: 1px solid rgba(153, 0, 28, .38);
  background: rgba(153, 0, 28, .2);
  color: #fff;
}

.drawer .brand-flag {
  width: 34px;
  height: 23px;
}

.drawer-socials img {
  width: 20px;
}

.drawer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  opacity: .55;
}

.drawer-socials a {
  display: inline-flex;
  padding: 0;
  border: 0;
}

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

.page-body main > .posts,
.page-body main > .support {
  min-height: 100svh;
  padding-top: clamp(112px, 16vh, 170px);
}

.page-body main > .manifesto {
  min-height: 100svh;
}

.page-body .manifesto-copy {
  padding-top: clamp(118px, 15vh, 156px);
  padding-bottom: clamp(54px, 8vw, 92px);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(31, 0, 8, .75) 42%, rgba(0, 0, 0, .72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 42%, rgba(0, 0, 0, .72));
}

.hero-content {
  width: min(660px, calc(100% - 44px));
  margin-left: clamp(22px, 26vw, 380px);
  padding-top: 68px;
  transform: translateY(62px);
  transform-style: preserve-3d;
}

.hero h1 {
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 8.4rem;
  line-height: .76;
  letter-spacing: 0;
  text-shadow: 0 34px 70px rgba(0, 0, 0, .8);
}

.hero h1 small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, .92);
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .075em;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .88);
  font-size: .9rem;
  letter-spacing: .22em;
}

.typed {
  min-height: 1.5em;
  margin: 0 0 30px;
  color: #fff;
  font-size: .94rem;
  letter-spacing: .18em;
}

.typed i {
  display: inline-block;
  width: 8px;
  height: 1.2em;
  margin-left: 5px;
  background: var(--red);
  vertical-align: -3px;
  animation: blink .9s steps(2) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-actions {
  display: grid;
  gap: 10px;
  width: min(400px, 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 50px;
  padding: 17px 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}

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

.btn-red {
  border-color: rgba(153, 0, 28, .88);
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 42px rgba(153, 0, 28, .24);
}

.btn-red:hover {
  background: var(--red-hot);
}

.btn-light {
  background: rgba(255, 255, 255, .65);
  color: #0b0b0b;
}

.btn-light:hover {
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.float {
  position: absolute;
  z-index: 1;
  opacity: .22;
  filter: grayscale(1) contrast(1.3);
  pointer-events: none;
}

.float-sign {
  top: 16%;
  left: 9%;
  width: min(310px, 32vw);
  animation: drift 5s ease-in-out infinite;
}

.float-map {
  right: 8%;
  bottom: 7%;
  width: min(430px, 32vw);
  aspect-ratio: 1007 / 527;
  object-fit: contain;
  opacity: .42;
  animation: drift 6s -1.4s ease-in-out infinite;
}

@keyframes drift {
  50% {
    transform: translate3d(10px, -14px, 0) rotate(1.6deg);
  }
}

.scroll-hint {
  position: absolute;
  right: 48px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-hint span {
  position: relative;
  width: 1px;
  height: 58px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  inset: -50% 0 auto;
  height: 42%;
  background: var(--red);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

.scroll-hint em {
  writing-mode: vertical-rl;
  color: var(--muted);
  font-size: .56rem;
  font-style: normal;
  letter-spacing: .32em;
  text-transform: uppercase;
}

@keyframes scroll-dot {
  to {
    transform: translateY(260%);
    opacity: 0;
  }
}

.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
  padding: 18px 0;
}

.ticker div {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ticker 34s linear infinite;
}

.ticker span,
.ticker b {
  flex: none;
  padding: 0 24px;
  color: rgba(210, 210, 210, .76);
  font-family: var(--display);
  font-size: .86rem;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.ticker b {
  padding: 0 5px;
  color: var(--red);
  opacity: .5;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.manifesto {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 68% 38%, rgba(255, 255, 255, .12), transparent 9%),
    radial-gradient(circle at 58% 45%, rgba(153, 0, 28, .34), transparent 24%),
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, .018) 4px),
    linear-gradient(110deg, #000 0%, #180006 54%, #050505 100%);
  filter: contrast(1.4) brightness(.9);
}

.manifesto-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .82) 42%, rgba(0, 0, 0, .35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 26%, rgba(0, 0, 0, .78));
}

.manifesto-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  width: min(980px, 92vw);
  padding: clamp(56px, 8vw, 92px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 20px;
  color: var(--red);
  font-family: var(--display);
  font-size: .56rem;
  letter-spacing: .48em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.manifesto h2,
.posts h2,
.project h2,
.support h2 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.manifesto h2 {
  font-size: 5rem;
  line-height: .82;
}

.manifesto h2 span,
.project h2 {
  color: var(--red);
}

.rule {
  width: 54px;
  height: 2px;
  margin: 28px 0;
  background: var(--red);
}

.manifesto-scroll {
  max-width: 680px;
  max-height: min(44vh, 460px);
  overflow-y: auto;
  padding-right: 16px;
  scrollbar-color: rgba(153, 0, 28, .55) transparent;
}

.manifesto-scroll p,
.manifesto-scroll blockquote {
  margin: 0 0 20px;
  padding-left: 20px;
  border-left: 2px solid rgba(153, 0, 28, .48);
  color: rgba(232, 227, 220, .72);
  font-size: .95rem;
  line-height: 2;
}

.manifesto-scroll blockquote {
  color: rgba(255, 255, 255, .9);
  font-style: italic;
}

.manifesto-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(780px, 100%);
  margin-top: 28px;
}

.manifesto-card {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-left-color: rgba(153, 0, 28, .72);
  border-radius: 6px;
  background: rgba(10, 10, 10, .58);
  backdrop-filter: blur(10px);
}

.manifesto-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--display);
  font-size: .68rem;
  letter-spacing: .22em;
}

.manifesto-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--display);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.manifesto-card p {
  margin: 0;
  color: rgba(232, 227, 220, .72);
  font-size: .86rem;
  line-height: 1.72;
}

.posts {
  position: relative;
  z-index: 4;
  padding: clamp(64px, 10vw, 115px) clamp(22px, 5vw, 80px);
  background: var(--ink);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(1400px, 100%);
  margin: 0 auto clamp(42px, 6vw, 76px);
}

.posts h2 {
  font-size: 4.9rem;
  line-height: .9;
  letter-spacing: .08em;
}

.section-head > a {
  color: var(--red);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.post-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 2px;
  width: min(1400px, 100%);
  margin: 0 auto;
}

.post-card {
  position: relative;
  min-height: clamp(230px, 28vh, 326px);
  overflow: hidden;
  background: #101010;
  isolation: isolate;
}

.post-card-large {
  grid-row: span 2;
  min-height: clamp(460px, 60vh, 660px);
}

.post-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #2a0008, #050505);
  background-position: center;
  background-size: cover;
  filter: grayscale(1) brightness(.56);
  transform: scale(1.08);
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.post-img-red {
  background:
    linear-gradient(145deg, rgba(153, 0, 28, .86), rgba(4, 4, 4, .82)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .06) 1px, transparent 1px, transparent 12px);
}

.post-img-grey {
  background:
    linear-gradient(135deg, rgba(80, 80, 80, .42), rgba(0, 0, 0, .9)),
    radial-gradient(circle at 72% 22%, rgba(153, 0, 28, .35), transparent 32%);
}

.post-img-dark {
  background:
    linear-gradient(155deg, rgba(8, 8, 8, .92), rgba(153, 0, 28, .32)),
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(255, 255, 255, .025) 25px);
}

.post-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, .97), rgba(0, 0, 0, .4) 55%, transparent);
}

.post-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
}

.post-card:hover::before {
  transform: scaleX(1);
}

.post-card:hover .post-img {
  filter: grayscale(.45) brightness(.68);
  transform: scale(1);
}

.post-body {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 10px;
  padding: clamp(22px, 3.4vw, 42px);
}

.post-body em {
  color: var(--red);
  font-size: .58rem;
  font-style: normal;
  letter-spacing: .34em;
}

.post-body strong {
  color: #fff;
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 300;
  line-height: .98;
  text-transform: uppercase;
}

.post-body small {
  color: rgba(232, 227, 220, .5);
  font-size: .78rem;
  line-height: 1.7;
}

.post-body b {
  color: var(--red);
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.project-bridge {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  min-height: clamp(170px, 22vh, 260px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(90deg, transparent, transparent 54px, rgba(255, 255, 255, .018) 55px),
    #060606;
}

.project-bridge::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(153, 0, 28, .6), transparent);
}

.project-bridge span,
.project-bridge strong {
  position: relative;
  z-index: 1;
  color: transparent;
  font-family: var(--display);
  font-size: 5.6rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .18);
}

.project-bridge span {
  color: var(--red);
  -webkit-text-stroke: 0;
}

.project {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 78vh, 780px);
  border-bottom: 1px solid var(--line);
  background: #060606;
}

.project-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(32px, 4.8vw, 64px);
  border-right: 1px solid var(--line);
}

.project-flip .project-copy {
  border-right: 0;
  border-left: 1px solid var(--line);
}

.project-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255, 255, 255, .015) 29px),
    linear-gradient(135deg, rgba(153, 0, 28, .13), transparent 48%);
}

.ghost-num {
  position: absolute;
  left: -.08em;
  bottom: -.24em;
  color: transparent;
  font-family: var(--display);
  font-size: 24rem;
  line-height: 1;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .045);
}

.project-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(460px, 44vw);
  opacity: .09;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.project h2 {
  margin-bottom: 24px;
  font-size: 4rem;
  line-height: .82;
}

.project h2 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .25);
}

.project-copy > p:not(.section-kicker) {
  position: relative;
  max-width: 52ch;
  margin: 0 0 32px;
  padding-left: 18px;
  border-left: 2px solid rgba(153, 0, 28, .48);
  color: rgba(232, 227, 220, .58);
  font-size: .98rem;
  line-height: 2;
}

.project-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.project-bottom small {
  color: var(--dim);
  font-family: var(--display);
  font-size: .58rem;
  letter-spacing: .3em;
  text-align: right;
  text-transform: uppercase;
}

.project-media {
  position: relative;
  overflow: hidden;
  background: #080808;
  transform-style: preserve-3d;
}

.project-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(153, 0, 28, .045) 4px);
  mix-blend-mode: screen;
}

.project-media-shot {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) brightness(.43) contrast(1.08);
  transition: filter .9s var(--ease), transform .9s var(--ease);
}

.media-kultur {
  background:
    linear-gradient(145deg, rgba(0, 0, 0, .25), rgba(153, 0, 28, .32)),
    radial-gradient(circle at 68% 35%, rgba(255, 255, 255, .12), transparent 15%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .055) 1px, transparent 1px, transparent 34px),
    #101010;
}

.media-arsiv {
  background:
    linear-gradient(145deg, rgba(153, 0, 28, .26), rgba(0, 0, 0, .78)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .04) 1px, transparent 1px, transparent 28px),
    #0d0d0d;
}

.project-media:hover .project-media-shot {
  filter: grayscale(.55) brightness(.56) contrast(1.12);
  transform: scale(1.03);
}

.project-media div {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  padding: clamp(22px, 3vw, 38px);
  background: linear-gradient(0deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .45), transparent);
}

.project-media em {
  display: block;
  margin-bottom: 9px;
  color: var(--red);
  font-size: .54rem;
  font-style: normal;
  letter-spacing: .38em;
  text-transform: uppercase;
}

.project-media strong {
  color: #fff;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: .9;
  text-transform: uppercase;
}

.support {
  position: relative;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(80px, 14vh, 150px) 24px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .2), #050505),
    radial-gradient(ellipse 120% 90% at 50% 42%, #1b0006, #050505 60%, #000);
  text-align: center;
}

.support p {
  margin: 0;
  color: rgba(153, 0, 28, .72);
  font-family: var(--display);
  font-size: .52rem;
  letter-spacing: .5em;
  text-transform: uppercase;
}

.support .support-flag {
  width: clamp(120px, 14vw, 188px);
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  filter: drop-shadow(0 0 42px rgba(153, 0, 28, .42));
}

.support-map {
  width: min(760px, 92vw);
  height: auto;
  max-height: 300px;
  margin: 0 0 6px;
  object-fit: contain;
  opacity: .88;
  filter: drop-shadow(0 24px 70px rgba(153, 0, 28, .2));
}

.support-map-wrap {
  width: min(820px, 94vw);
  margin: 0 0 6px;
  filter: drop-shadow(0 24px 70px rgba(153, 0, 28, .2));
}

.support-map-wrap svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 340px;
}

.support-map-wrap #turkiye g[data-plakakodu] {
  cursor: pointer;
  outline: none;
}

.support-map-wrap #svg-turkiye-haritasi #turkiye g[data-plakakodu].is-selected path,
.support-map-wrap #svg-turkiye-haritasi #turkiye g[data-plakakodu]:focus path {
  fill: #c8002a !important;
  stroke: #fff !important;
  stroke-width: 1.2 !important;
}

.support-map-wrap #svg-turkiye-haritasi #turkiye g[data-plakakodu]:hover path {
  fill: #c8002a !important;
}

.map-selection {
  width: min(760px, 92vw);
  margin: -2px 0 4px;
  color: rgba(232, 227, 220, .62) !important;
  font-family: var(--body) !important;
  font-size: .78rem !important;
  letter-spacing: .08em !important;
  line-height: 1.6;
  text-transform: uppercase !important;
}

.map-selection strong {
  color: #fff;
  font-weight: 800;
}

.support h2 {
  max-width: 780px;
  font-size: 3.6rem;
  line-height: .96;
}

.support-copy {
  max-width: 620px;
  margin: -4px 0 8px;
  color: rgba(232, 227, 220, .62) !important;
  font-family: var(--body) !important;
  font-size: .92rem !important;
  letter-spacing: .04em !important;
  line-height: 1.8;
  text-transform: none !important;
}

.support-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 92vw);
  margin-top: 10px;
}

.support-form label {
  display: grid;
  gap: 8px;
  text-align: left;
}

.support-form .hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.support-form .wide {
  grid-column: 1 / -1;
}

.support-form span {
  color: rgba(232, 227, 220, .5);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.support-form input,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(0, 0, 0, .48);
  color: #fff;
  font: inherit;
  outline: none;
  padding: 12px;
}

.support-form input:focus,
.support-form textarea:focus {
  border-color: rgba(153, 0, 28, .72);
}

.support-form button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: min(100%, 280px);
}

.form-notice {
  width: min(760px, 92vw);
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--body) !important;
  font-size: .78rem !important;
  letter-spacing: .04em !important;
  text-transform: none !important;
}

.form-notice.ok {
  border-color: rgba(38, 166, 91, .45);
  color: #9fe0b7 !important;
  background: rgba(38, 166, 91, .08);
}

.form-notice.error {
  border-color: rgba(153, 0, 28, .55);
  color: #ff9daf !important;
  background: rgba(153, 0, 28, .1);
}

.page-info {
  align-content: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(940px, 92vw);
  margin-top: 10px;
}

.info-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(153, 0, 28, .08), transparent 42%),
    rgba(8, 8, 8, .74);
  text-align: left;
}

.info-grid span {
  color: var(--red);
  font-family: var(--display);
  font-size: .52rem;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.info-grid strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.info-grid p {
  color: rgba(232, 227, 220, .62) !important;
  font-family: var(--body) !important;
  font-size: .86rem !important;
  letter-spacing: .04em !important;
  line-height: 1.8;
  text-transform: none !important;
}

.info-grid .btn {
  width: fit-content;
  margin-top: auto;
}

footer {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(48px, 7vw, 84px) clamp(22px, 5vw, 80px) 34px;
  background: #050505;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand .brand-flag {
  width: 46px;
  height: 31px;
}

.footer-brand span {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: .2em;
}

.footer-brand p {
  max-width: 32ch;
  margin: 0;
  color: rgba(232, 227, 220, .34);
  font-size: .72rem;
  line-height: 2;
}

.footer-brand div {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-brand div img {
  width: 34px;
  height: 34px;
  padding: 10px;
  border: 1px solid var(--line);
  opacity: .5;
}

footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

footer strong {
  margin-bottom: 8px;
  color: rgba(153, 0, 28, .74);
  font-family: var(--display);
  font-size: .48rem;
  letter-spacing: .38em;
  text-transform: uppercase;
}

footer nav a {
  color: rgba(232, 227, 220, .38);
  font-size: .72rem;
  letter-spacing: .06em;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  color: rgba(232, 227, 220, .2);
  font-size: .62rem;
  letter-spacing: .12em;
}

.top-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 300;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #080808;
  color: var(--muted);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s, background .25s;
}

.top-btn.show {
  opacity: 1;
  pointer-events: auto;
}

.top-btn:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 15px;
    right: 18px;
    z-index: 460;
    border-color: rgba(255, 255, 255, .22);
    background: rgba(153, 0, 28, .82);
    box-shadow: 0 0 28px rgba(153, 0, 28, .28);
  }

  .hero-content {
    margin-left: clamp(22px, 8vw, 90px);
  }
}

@media (max-width: 900px) {
  .post-grid,
  .project,
  .info-grid,
  footer {
    grid-template-columns: 1fr;
  }

  .post-card-large {
    grid-row: auto;
    min-height: 360px;
  }

  .project {
    min-height: auto;
  }

  .project-copy,
  .project-flip .project-copy {
    min-height: 430px;
    border: 0;
  }

  .project-media {
    min-height: 420px;
  }

  .project-flip .project-media {
    order: 2;
  }
}

@media (max-width: 680px) {
  .hud {
    inset: 14px;
  }

  .site-nav {
    height: 64px;
    padding: 0 16px;
  }

  .burger {
    position: static;
    margin-left: 14px;
  }

  .drawer {
    top: 64px;
  }

  .hero {
    align-items: flex-end;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 0 22px 112px;
    transform: none;
  }

  .hero h1 span {
    font-size: 4.6rem;
  }

  .hero h1 small {
    font-size: 1.1rem;
    letter-spacing: .12em;
  }

  .eyebrow,
  .typed {
    font-size: .68rem;
    letter-spacing: .12em;
  }

  .float {
    display: none;
  }

  .scroll-hint {
    right: 22px;
    bottom: 34px;
  }

  .manifesto-copy,
  .posts,
  .project-copy {
    padding-left: 22px;
    padding-right: 22px;
  }

  .manifesto-sections {
    grid-template-columns: 1fr;
  }

  .manifesto-card {
    min-height: 0;
  }

  .section-head,
  .project-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-bottom small {
    text-align: left;
  }

  .btn {
    width: 100%;
  }

  .support-form {
    grid-template-columns: 1fr;
  }

  .project-bridge span,
  .project-bridge strong {
    font-size: 3.8rem;
  }

  footer {
    padding-bottom: 28px;
  }
}

/* Premium refresh */
:root {
  --red: #b40025;
  --red-hot: #e10a34;
  --gold: #d7b46a;
  --steel: #93a0ad;
  --glass: rgba(12, 12, 12, .72);
  --glass-strong: rgba(15, 15, 15, .9);
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, .56);
}

body {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(255, 255, 255, .02) 1px, transparent 1px) 0 0 / 72px 72px,
    #030303;
}

.site-video {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98), rgba(35, 0, 8, .78), rgba(0, 0, 0, .94)),
    linear-gradient(135deg, rgba(215, 180, 106, .09), transparent 34%),
    var(--poster-image, url("assets/poster.png")) center / cover no-repeat;
  filter: saturate(.9) contrast(1.25) brightness(.44);
}

.site-nav {
  height: 82px;
  padding: 0 clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, .055);
  background: linear-gradient(180deg, rgba(0, 0, 0, .74), rgba(0, 0, 0, .18));
  backdrop-filter: blur(16px);
}

.site-nav.scrolled {
  background: rgba(5, 5, 5, .86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .32);
}

.brand {
  min-width: 248px;
}

.brand-flag {
  border-color: rgba(255, 255, 255, .86);
  border-radius: 6px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .035), 0 0 34px rgba(180, 0, 37, .36);
}

.brand span {
  font-size: .78rem;
  letter-spacing: .16em;
}

.nav-links {
  margin-left: auto;
  gap: 8px;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 13px;
  color: rgba(255, 255, 255, .78);
  font-size: .62rem;
  transition: color .25s, background .25s, border-color .25s, transform .25s;
}

.nav-links a:hover {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  border-color: rgba(225, 10, 52, .68);
  background: linear-gradient(135deg, var(--red), #780017);
  box-shadow: 0 16px 40px rgba(180, 0, 37, .28);
}

.hero {
  min-height: 100svh;
  padding: 112px clamp(18px, 5vw, 74px) 92px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 82px clamp(18px, 5vw, 74px) 78px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .055);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 42px 42px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .82), transparent);
  pointer-events: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(30, 0, 8, .82) 48%, rgba(0, 0, 0, .7) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .88), transparent 46%, rgba(0, 0, 0, .82));
}

.hero-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  width: min(1320px, 100%);
  margin: 0 auto;
}

.hero-content {
  width: min(720px, 100%);
  margin: 0;
  padding-top: 0;
  transform: none;
}

.hero-label {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(215, 180, 106, .28);
  border-radius: 4px;
  background: rgba(215, 180, 106, .065);
  color: var(--gold);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero h1 span {
  font-size: 8.4rem;
  text-shadow: 0 34px 80px rgba(0, 0, 0, .9);
}

.hero h1 small {
  width: min(100%, 760px);
  font-size: 2.35rem;
  letter-spacing: .11em;
}

.eyebrow {
  max-width: 68ch;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  letter-spacing: .13em;
  line-height: 1.8;
}

.typed {
  color: rgba(255, 255, 255, .96);
  font-size: .94rem;
  letter-spacing: .14em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.hero-actions .btn {
  min-width: 190px;
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 54px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .22) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .65s var(--ease);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-red {
  background: linear-gradient(135deg, var(--red-hot), #870018);
}

.btn-light {
  border-color: rgba(215, 180, 106, .34);
  background: rgba(215, 180, 106, .12);
  color: #f7efe1;
}

.float-map {
  right: 7%;
  bottom: 9%;
  width: min(560px, 40vw);
  opacity: .18;
}

.hero-command {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(215, 180, 106, .09), transparent 34%),
    linear-gradient(180deg, rgba(20, 20, 20, .9), rgba(4, 4, 4, .82));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px);
}

.hero-command::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 34px 34px;
  opacity: .45;
  pointer-events: none;
}

.command-head,
.hero-metrics,
.command-links,
.command-map {
  position: relative;
  z-index: 1;
}

.command-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.command-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.command-head strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: .12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.command-map {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin: 18px 0;
  border: 1px solid rgba(255, 255, 255, .065);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(180, 0, 37, .16), transparent 44%),
    rgba(255, 255, 255, .025);
}

.command-map img {
  width: min(92%, 420px);
  max-height: 180px;
  object-fit: contain;
  opacity: .72;
  filter: grayscale(1) contrast(1.25) drop-shadow(0 18px 40px rgba(180, 0, 37, .22));
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-metrics article {
  min-height: 86px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 6px;
  background: rgba(255, 255, 255, .035);
}

.hero-metrics span {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.hero-metrics small {
  display: block;
  margin-top: 7px;
  color: rgba(232, 227, 220, .55);
  font-size: .68rem;
  line-height: 1.3;
}

.command-links {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.command-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 4px;
  background: rgba(0, 0, 0, .28);
  color: rgba(255, 255, 255, .72);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
}

.command-links a:hover {
  border-color: rgba(215, 180, 106, .36);
  background: rgba(215, 180, 106, .08);
  color: #fff;
}

.premium-rail {
  position: absolute;
  left: clamp(18px, 5vw, 74px);
  right: clamp(18px, 5vw, 74px);
  bottom: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  background: rgba(0, 0, 0, .44);
  backdrop-filter: blur(16px);
}

.premium-rail span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .64);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-align: center;
  text-transform: uppercase;
}

.premium-rail span:last-child {
  border-right: 0;
}

.posts,
.support,
footer {
  background-color: #050505;
}

.post-grid,
.info-grid,
.manifesto-sections,
.support-form,
.join-shell {
  perspective: 1200px;
}

.post-card,
.manifesto-card,
.info-grid article,
.admin-card,
.admin-stats article {
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.join-section {
  justify-items: stretch;
  padding-left: clamp(18px, 5vw, 74px);
  padding-right: clamp(18px, 5vw, 74px);
  text-align: left;
}

.join-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .78fr);
  gap: clamp(18px, 4vw, 44px);
  width: min(1260px, 100%);
  margin: 0 auto;
}

.join-map-panel,
.join-form-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(215, 180, 106, .08), transparent 38%),
    rgba(8, 8, 8, .76);
  box-shadow: var(--shadow-lg);
}

.join-map-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 640px;
  padding: clamp(28px, 4.4vw, 58px);
  text-align: center;
}

.join-map-panel .support-map-wrap {
  width: min(100%, 620px);
}

.join-map-panel .support-map-wrap svg {
  max-height: 300px;
}

.join-map-panel h2 {
  width: min(100%, 560px);
  font-size: 2.65rem;
  line-height: 1;
  overflow-wrap: break-word;
}

.join-map-panel .support-copy {
  max-width: 520px;
}

.join-form-panel {
  display: grid;
  align-content: center;
  padding: clamp(22px, 3vw, 34px);
}

.join-form-panel .section-kicker,
.join-form-panel .map-selection {
  width: auto;
  margin: 0 0 12px;
}

.join-form-panel h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.join-form-panel .section-kicker {
  color: var(--gold) !important;
  font-family: var(--display) !important;
  font-size: .56rem !important;
  letter-spacing: .34em !important;
  text-transform: uppercase !important;
}

.support-form {
  width: 100%;
  margin-top: 16px;
}

.support-form input,
.support-form textarea,
.field input,
.field textarea,
.field select {
  border-radius: 6px;
  background: rgba(0, 0, 0, .58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.support-form input:focus,
.support-form textarea:focus,
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(215, 180, 106, .56);
  box-shadow: 0 0 0 3px rgba(215, 180, 106, .08);
}

.page-info .info-grid article {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(215, 180, 106, .08), transparent 36%),
    linear-gradient(180deg, rgba(17, 17, 17, .88), rgba(7, 7, 7, .86));
}

.manifesto-card {
  background:
    linear-gradient(145deg, rgba(215, 180, 106, .075), transparent 36%),
    rgba(10, 10, 10, .72);
}

.top-btn {
  border-radius: 6px;
}

.home-map-section {
  position: relative;
  z-index: 5;
  padding: clamp(86px, 10vh, 128px) clamp(18px, 5vw, 74px);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background:
    radial-gradient(circle at 28% 20%, rgba(180, 0, 37, .24), transparent 32%),
    linear-gradient(135deg, rgba(215, 180, 106, .055), transparent 36%),
    #050505;
}

.home-map-copy {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
}

.home-map-copy h2,
.policy-page h1 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.home-map-copy > p:not(.section-kicker) {
  max-width: 62ch;
  margin: 16px 0 0;
  color: rgba(232, 227, 220, .62);
  line-height: 1.8;
}

.home-map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.home-map-board,
.province-info-card,
.policy-card {
  border: 1px solid rgba(255, 255, 255, .095);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(215, 180, 106, .075), transparent 32%),
    rgba(8, 8, 8, .78);
  box-shadow: var(--shadow-lg);
}

.home-map-board {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(24px, 4vw, 52px);
}

.home-map-board::before,
.join-map-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 6px;
  pointer-events: none;
}

.home-map-board svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 470px;
  filter: drop-shadow(0 30px 70px rgba(180, 0, 37, .16));
}

.home-map-board #turkiye g[data-plakakodu],
.join-map-panel #turkiye g[data-plakakodu] {
  cursor: pointer;
  outline: none;
}

.home-map-board #turkiye g[data-plakakodu] path {
  transition: fill .22s, stroke .22s, filter .22s;
}

.home-map-board #turkiye g[data-plakakodu]:hover path,
.home-map-board #turkiye g[data-plakakodu].is-selected path,
.home-map-board #turkiye g[data-plakakodu]:focus path {
  fill: #e10a34 !important;
  stroke: #fff !important;
  stroke-width: 1.1 !important;
  filter: drop-shadow(0 0 12px rgba(225, 10, 52, .5));
}

.province-info-card {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 520px;
  padding: 26px;
}

.province-info-card span {
  color: var(--gold);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.province-info-card strong {
  color: #fff;
  font-family: var(--display);
  font-size: 2.45rem;
  font-weight: 300;
  line-height: .95;
  text-transform: uppercase;
}

.province-info-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.province-info-card div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 6px;
  background: rgba(0, 0, 0, .28);
}

.province-info-card dt {
  margin-bottom: 8px;
  color: rgba(232, 227, 220, .48);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.province-info-card dd {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.join-map-panel {
  gap: clamp(12px, 1.8vw, 20px);
  background:
    radial-gradient(ellipse 58% 34% at 50% 18%, rgba(225, 10, 52, .2), transparent 68%),
    radial-gradient(ellipse 82% 44% at 50% 56%, rgba(215, 180, 106, .1), transparent 72%),
    linear-gradient(150deg, rgba(255, 255, 255, .04), transparent 38%),
    rgba(7, 6, 6, .88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05),
    0 32px 90px rgba(0, 0, 0, .42);
}

.join-map-panel::after {
  content: "";
  position: absolute;
  inset: auto 15% 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 180, 106, .48), rgba(225, 10, 52, .26), transparent);
}

.join-map-panel .support-flag {
  position: relative;
  z-index: 2;
  width: clamp(132px, 12vw, 164px);
  margin-bottom: 0;
  transform: translateY(0);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .72),
    0 0 0 6px rgba(255, 255, 255, .035),
    0 24px 72px rgba(225, 10, 52, .42);
}

.join-map-panel .support-map-wrap {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: clamp(4px, 1.1vw, 12px) 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 28px 64px rgba(0, 0, 0, .46));
}

.join-map-panel .support-map-wrap::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 7%;
  height: 34%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(225, 10, 52, .18), transparent 68%),
    radial-gradient(ellipse at center, rgba(215, 180, 106, .12), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.join-map-panel .support-map-wrap svg {
  position: relative;
  z-index: 1;
  max-height: 330px;
}

.join-map-panel #svg-turkiye-haritasi #turkiye g[data-plakakodu] path {
  fill: #ece8df !important;
  stroke: rgba(15, 12, 11, .78) !important;
  transition: fill .22s, stroke .22s, filter .22s;
}

.join-map-panel #svg-turkiye-haritasi #turkiye g[data-plakakodu]:hover path,
.join-map-panel #svg-turkiye-haritasi #turkiye g[data-plakakodu].is-selected path,
.join-map-panel #svg-turkiye-haritasi #turkiye g[data-plakakodu]:focus path {
  fill: #e10a34 !important;
  stroke: #fff !important;
  stroke-width: 1.15 !important;
  filter: drop-shadow(0 0 12px rgba(225, 10, 52, .48));
}

.join-map-panel h2 {
  position: relative;
  z-index: 2;
  margin-top: 2px;
  max-width: 620px;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  text-shadow: 0 20px 52px rgba(0, 0, 0, .54);
}

.join-map-panel .support-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: rgba(232, 227, 220, .68) !important;
}

.policy-page {
  min-height: 100svh;
  padding: clamp(120px, 16vh, 170px) clamp(18px, 5vw, 74px) clamp(64px, 9vh, 110px);
  background:
    radial-gradient(circle at 24% 20%, rgba(180, 0, 37, .22), transparent 32%),
    #050505;
}

.policy-page .support-flag {
  width: 120px;
  height: auto;
  margin-bottom: 24px;
}

.policy-card {
  width: min(920px, 100%);
  margin-top: 28px;
  padding: clamp(22px, 4vw, 42px);
}

.policy-card p {
  margin: 0 0 18px;
  color: rgba(232, 227, 220, .72);
  line-height: 1.9;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.consent-banner {
  position: fixed;
  left: auto;
  right: 12px;
  bottom: 20px;
  z-index: 700;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy actions"
    "links actions";
  align-items: center;
  gap: 12px;
  width: min(490px, calc(100% - 24px));
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(5, 5, 5, .92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
}

.consent-banner.show {
  display: grid;
}

.consent-banner strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.consent-banner > div:first-child {
  grid-area: copy;
}

.consent-banner p {
  margin: 0;
  color: rgba(232, 227, 220, .62);
  font-size: .74rem;
  line-height: 1.5;
}

.consent-banner nav,
.consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.consent-banner nav {
  grid-area: links;
}

.consent-actions {
  grid-area: actions;
  flex-direction: column;
}

.consent-banner a,
.consent-actions button,
.notify-toggle {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font: inherit;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}

.consent-banner a,
.consent-actions button {
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
}

.consent-actions button {
  justify-content: center;
}

.consent-actions button[data-consent="accept"],
.notify-toggle.is-on {
  border-color: rgba(225, 10, 52, .55);
  background: linear-gradient(135deg, var(--red-hot), #870018);
}

.notify-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 650;
  min-height: 42px;
  padding: 0 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .34);
}

.consent-open .notify-toggle {
  bottom: 232px;
}

@media (min-width: 981px) {
  .nav-links {
    display: flex;
  }

  .burger {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .site-nav {
    height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 84px;
  }

  .hero::before {
    inset: 72px 18px 70px;
    mask-image: linear-gradient(180deg, #000, transparent);
  }

  .hero-shell,
  .join-shell,
  .home-map-shell {
    grid-template-columns: 1fr;
  }

  .hero-command {
    order: -1;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .premium-rail {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(2, 1fr);
    width: min(100%, 720px);
    margin: 24px auto 0;
  }

  .premium-rail span:nth-child(2) {
    border-right: 0;
  }

  .premium-rail span:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .join-map-panel {
    min-height: auto;
  }

  .join-map-panel h2 {
    font-size: 2.25rem;
  }

  .home-map-board,
  .province-info-card {
    min-height: auto;
  }

  .consent-banner {
    align-items: stretch;
  }

  .consent-banner nav,
  .consent-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .intro-letters {
    font-size: 5.2rem;
  }

  .hero h1 span {
    font-size: 4.6rem;
  }

  .hero h1 small {
    font-size: 1.25rem;
  }

  .hero-command,
  .join-map-panel,
  .join-form-panel {
    border-radius: 6px;
  }

  .join-map-panel h2,
  .join-form-panel h3,
  .home-map-copy h2,
  .policy-page h1 {
    font-size: 1.85rem;
  }

  .home-map-section,
  .policy-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-map-board {
    padding: 18px;
  }

  .province-info-card {
    padding: 18px;
  }

  .consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "links"
      "actions";
    width: calc(100% - 24px);
  }

  .consent-actions {
    flex-direction: row;
  }

  .notify-toggle {
    right: 14px;
    bottom: 18px;
  }

  .consent-open .notify-toggle {
    bottom: 238px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .premium-rail {
    grid-template-columns: 1fr;
  }

  .premium-rail span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .premium-rail span:last-child {
    border-bottom: 0;
  }
}

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