/* ══════════════════════════════════════════════════════════════
   DiKED — TECHNICAL / HUD SYSTEM
   A distinct visual direction: monospace command-line typography,
   a live blueprint grid, phosphor-green/cyan signal accents, and
   clipped-corner chips in place of soft pill shapes. Drop-in
   replacement — same class names as style.css.
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700;800&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg:          #05080a;
  --bg-card:     #0a0f13;
  --bg-card2:    #0f161b;
  --text:        #dce8ec;
  --text-dim:    #5c747c;
  --purple:      #00ffb0;   /* primary signal — phosphor mint  */
  --magenta:     #00c2ff;   /* secondary signal — electric cyan */
  --cyan:        #00ffb0;   /* kept for compatibility w/ markup */
  --navy:        #0a2e28;
  --gradient:    linear-gradient(135deg, #00ffb0, #00c2ff);
  --gradient-2:  linear-gradient(135deg, #00c2ff, #00ffb0);
  --glass:       rgba(5, 8, 10, 0.88);
  --border:      rgba(0, 255, 176, 0.16);
  --border-strong: rgba(0, 255, 176, 0.55);
  --card-hover:  rgba(0, 255, 176, 0.045);
  --grid-line:   rgba(255, 255, 255, 0.035);
 /* --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  */
  --radius:      0px;
  --radius-lg:   0px;
  --notch:       10px; /* clipped-corner chip signature */
}
.light-mode {
  --bg:          #eef3f4;
  --bg-card:     #ffffff;
  --bg-card2:    #e2ebec;
  --text:        #071417;
  --text-dim:    #48626a;
  --purple:      #00a37a;
  --magenta:     #0089b4;
  --cyan:        #00a37a;
  --navy:        #cfe6e2;
  --glass:       rgba(238, 243, 244, 0.9);
  --border:      rgba(0, 90, 80, 0.22);
  --border-strong: rgba(0, 90, 80, 0.5);
  --card-hover:  rgba(0, 90, 80, 0.05);
  --grid-line:   rgba(0, 40, 45, 0.055);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .35s, color .35s;
}

h1, h2, h3, h4,
nav a, .btn, .ctrl-btn, .social-btn, .social-icon-btn,
.hero-eyebrow, .organ-role, .madde-no,
.mobile-nav a, .coming-badge, .footer-copy,
.step-num, .contact-note, .organ-label,
.card-icon {
  font-family: var(--font-mono);
}

/* Global focus ring — accessibility floor */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-strong); }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ─── BG GRID + SCANLINE ─────────────────────────────────────── */
.bg-glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  overflow: hidden;
}
.bg-glow::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 50% at 10% 8%, rgba(0,255,176,.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 92% 88%, rgba(0,194,255,.06) 0%, transparent 55%);
}
.bg-glow::after {
  content: '';
  position: absolute; left: 0; right: 0; top: -4%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple) 45%, var(--magenta) 55%, transparent);
  box-shadow: 0 0 14px 1px rgba(0,255,176,.6);
  opacity: .55;
  animation: scanline 8s linear infinite;
}
@keyframes scanline {
  0%   { top: -4%; }
  100% { top: 104%; }
}
@media (prefers-reduced-motion: reduce) {
  .bg-glow::after { animation: none; display: none; }
}
.light-mode .bg-glow::before {
  background: radial-gradient(ellipse 65% 50% at 10% 8%, rgba(0,90,80,.06) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 92% 88%, rgba(0,90,120,.05) 0%, transparent 55%);
}
.light-mode .bg-glow::after { opacity: .3; }

/* ─── HEADER ─────────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1340px; margin: 0 auto;
  padding: .9rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img  { height: 46px; width: auto; }
.logo-light { display: none; }
.light-mode .logo-dark  { display: none; }
.light-mode .logo-light { display: block; }
.footer-logo.logo-light { display: none; }
.light-mode .footer-logo.logo-dark  { display: none; }
.light-mode .footer-logo.logo-light { display: block; }

nav.nav-desk { display: flex; align-items: center; gap: 2rem; }
nav.nav-desk ul { display: flex; list-style: none; gap: 1.4rem; }
nav a {
  text-decoration: none; color: var(--text-dim);
  font-size: .92rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  transition: color .25s;
  position: relative;
  padding-bottom: 3px;
}
nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--purple);
  transition: width .25s ease;
}
nav a:hover { color: var(--purple); }
nav a:hover::after { width: 100%; }
.coming-nav { opacity: .4; cursor: default !important; }
.coming-nav:hover { color: var(--text-dim) !important; }
.coming-nav:hover::after { width: 0 !important; }

/* ─── DROPDOWN NAV ──────────────────────────────────────────────── */
.nav-desk li.has-dropdown { position: relative; }
.nav-desk li.has-dropdown > a::before { content: " ▾"; font-size: .68rem; vertical-align: middle; }
.nav-desk li.has-dropdown > a::after { content: none; }
.nav-desk .dropdown {
  display: block;
  position: absolute;
  top: calc(100% + .8rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--purple);
  border-radius: 0;
  padding: .4rem 0;
  min-width: 240px;
  z-index: 200;
  box-shadow: 0 14px 36px rgba(0,0,0,.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .18s, visibility .18s;
  list-style: none;
}
.nav-desk li.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-desk .dropdown a {
  display: block;
  padding: .6rem 1.3rem;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  color: var(--text-dim);
  transition: color .18s, background .18s;
  border-radius: 0;
}
.nav-desk .dropdown a::after { content: none; }
.nav-desk .dropdown li:first-child a { border-radius: 0; }
.nav-desk .dropdown li:last-child  a { border-radius: 0; }
.nav-desk .dropdown a:hover { color: var(--purple); background: var(--card-hover); }

/* ─── MOBILE OVERLAY ────────────────────────────────────────────── */
#mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 899;
}
#mobile-overlay.open { display: block; }

/* ─── MOBILE SUB-NAV ────────────────────────────────────────────── */
.mobile-nav .sub-nav {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding-left: .8rem;
}
.mobile-nav .sub-nav.open { max-height: 420px; }
.mobile-nav .sub-nav a {
  display: block;
  font-size: .82rem; letter-spacing: 1px;
  padding: .5rem 0;
  color: var(--text-dim);
  transition: color .2s;
}
.mobile-nav .sub-nav a:hover { color: var(--purple); }
.mobile-nav li.has-dropdown > a::after { content: " ▾"; font-size: .75rem; }
.mobile-nav li.has-dropdown.open > a::after { content: " ▴"; font-size: .75rem; }

.controls {
  display: flex; gap: .6rem; align-items: center;
  border-left: 1px solid var(--border); padding-left: 1.4rem;
}
.ctrl-btn {
  background: none; border: 1px solid var(--border);
  color: var(--text); padding: .35rem .75rem;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - var(--notch)) 0, 100% var(--notch), 100% 100%, 0 100%);
  cursor: pointer;
  font-family: var(--font-mono); font-size: 0.86rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  transition: border-color .25s, background .25s, color .25s;
}
.ctrl-btn:hover { border-color: var(--purple); background: var(--card-hover); color: var(--purple); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 0; cursor: pointer; padding: .4rem .55rem;
  flex-direction: column; gap: 4px;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 0; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── MOBILE NAV PANEL ───────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(82vw, 340px);
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border);
  z-index: 900;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.8rem 2.5rem;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-logo { margin-bottom: 2.2rem; }
.mobile-nav-logo .logo-img { height: 34px; width: auto; }

.mobile-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: none; border: 1px solid var(--border);
  border-radius: 0; color: var(--text-dim);
  font-size: 1rem; cursor: pointer; padding: .28rem .62rem;
  line-height: 1; transition: color .2s, border-color .2s;
}
.mobile-close:hover { color: var(--purple); border-color: var(--purple); }

.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-nav > ul > li {
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .35s ease, transform .35s ease;
}
.mobile-nav.open > ul > li { opacity: 1; transform: translateX(0); }
.mobile-nav.open > ul > li:nth-child(1) { transition-delay: .07s; }
.mobile-nav.open > ul > li:nth-child(2) { transition-delay: .13s; }
.mobile-nav.open > ul > li:nth-child(3) { transition-delay: .19s; }
.mobile-nav.open > ul > li:nth-child(4) { transition-delay: .25s; }
.mobile-nav.open > ul > li:nth-child(5) { transition-delay: .31s; }
.mobile-nav.open > ul > li:nth-child(6) { transition-delay: .37s; }

.mobile-nav a {
  display: block;
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: .95rem 0;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.mobile-nav > ul > li > a::before {
  content: '';
  position: absolute; left: -1.8rem;
  top: 50%; transform: translateY(-50%);
  width: 3px; height: 0;
  background: var(--gradient);
  border-radius: 0;
  transition: height .22s ease;
}
.mobile-nav > ul > li > a:hover { color: var(--purple); }
.mobile-nav > ul > li > a:hover::before { height: 55%; }

.mobile-nav .controls {
  margin-top: auto; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  border-left: none; padding-left: 0;
  display: flex; gap: .8rem; justify-content: flex-start;
}

/* ─── HELPERS ────────────────────────────────────────────────── */
.grad-text {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.underline {
  width: 56px; height: 3px; border-radius: 0;
  background: var(--gradient-2); margin: .8rem auto 0;
}
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h1,
.section-title h2 {
  font-size: clamp(2.1rem, 4.3vw, 2.8rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
}
.section-title p { color: var(--text-dim); max-width: 680px; margin: 1rem auto 0; font-size: 1.15rem; font-family: var(--font); }

section.block {
  padding: 90px 2rem;
  max-width: 1200px; margin: 0 auto;
}
.wide { max-width: 1340px; }

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 88vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 4rem 2rem; gap: 0;
}
.hero-eyebrow {
  font-size: 0.86rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--purple); margin-bottom: 1.2rem;
  display: inline-flex; align-items: center; gap: .55rem;
}
.hero-eyebrow::before {
  content: ''; width: 7px; height: 7px; background: var(--purple);
  box-shadow: 0 0 8px 1px var(--purple);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.7rem, 8vw, 5rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -.5px;
  margin-bottom: 1.6rem;
}
.hero p {
  font-family: var(--font);
  font-size: clamp(1.1rem, 2.3vw, 1.35rem);
  color: var(--text-dim); max-width: 740px;
  margin-bottom: 2.8rem; font-weight: 300; line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 1.8rem; }
.hero-btns .btn-primary { padding: .6rem 1.6rem; font-size: 0.9rem; }

/* ─── BUTTONS (clipped-corner chip signature) ───────────────── */
.btn {
  display: inline-block; text-decoration: none;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  font-weight: 700;
  font-family: var(--font-mono); font-size: .98rem;
  text-transform: uppercase; letter-spacing: 1.2px;
  cursor: pointer; border: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--purple); color: #04100c;
  padding: .85rem 2.2rem;
  box-shadow: 0 0 0 1px rgba(0,255,176,.25), 0 10px 24px rgba(0,255,176,.18);
}
.btn-primary:hover { box-shadow: 0 0 0 1px rgba(0,255,176,.4), 0 14px 30px rgba(0,255,176,.28); }
.btn-outline {
  background: none; color: var(--text);
  border: 1px solid var(--border);
  padding: .83rem 2.2rem;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }

/* ─── QUOTE BOX ──────────────────────────────────────────────── */
.quote-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--purple);
  border-radius: 0;
  padding: 2.5rem 3rem; margin-bottom: 3rem;
}
.quote-box p {
  font-family: var(--font-mono);
  font-size: 1.24rem; font-style: normal;
  line-height: 1.75; color: var(--text);
}
.quote-box cite {
  display: block; margin-top: .8rem;
  font-size: .92rem; color: var(--purple);
  font-style: normal; letter-spacing: 1.5px; text-transform: uppercase;
  font-family: var(--font-mono);
}
.quote-box cite::before { content: '// '; color: var(--text-dim); }

/* ─── CARDS GRID ─────────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--border-strong);
  border-radius: 0;
  padding: 2rem 1.8rem;
  transition: border-color .3s, transform .3s, background .3s;
}
.card:hover {
  border-color: var(--purple);
  border-top-color: var(--purple);
  transform: translateY(-4px);
  background: var(--bg-card2);
}
.card-icon {
  width: 44px; height: 44px; border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
  background: var(--gradient-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
  flex-shrink: 0; color: #04100c;
}
.card h3 {
  font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem;
  color: var(--text); text-transform: uppercase; letter-spacing: .3px;
}
.card p { font-family: var(--font); font-size: 1.05rem; color: var(--text-dim); line-height: 1.65; }

/* ─── HIGHLIGHT BAND ─────────────────────────────────────────── */
.band {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--purple);
  border-radius: 0;
  padding: 3rem 3.5rem;
  position: relative; overflow: hidden;
}
.band::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.band h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: .8rem; }

/* ─── MEMBER CARDS ───────────────────────────────────────────── */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1.6rem 1.2rem; text-align: center;
  transition: border-color .3s, transform .3s;
}
.member-card:hover { border-color: var(--magenta); transform: translateY(-3px); }
.member-avatar {
  width: 52px; height: 52px; border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  background: var(--gradient-2); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.5rem; font-weight: 700; color: #04100c;
}
.member-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: .35rem; }
.member-card span {
  font-family: var(--font-mono);
  font-size: 0.78rem; color: var(--purple);
  text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600;
}

/* ─── SECTION DIVIDER ────────────────────────────────────────── */
.sub-title {
  font-size: 1.3rem; font-weight: 700;
  margin: 3rem 0 1.5rem; letter-spacing: .5px;
  text-transform: uppercase;
}
.sub-title::after {
  content: ''; display: block; width: 36px; height: 2px;
  background: var(--gradient-2); border-radius: 0; margin-top: .5rem;
}

/* ─── CHARTER (TÜZÜK) ───────────────────────────────────────── */
.tuzuk-doc {
  max-width: 820px; margin: 0 auto;
}
.tuzuk-doc h3 {
  font-size: 1.1rem; font-weight: 700;
  margin: 2.8rem 0 .5rem; color: var(--text);
  padding-bottom: .35rem;
  text-transform: uppercase; letter-spacing: .5px;
  border-bottom: 1px solid var(--border);
}
.tuzuk-doc h4 {
  font-size: .96rem; font-weight: 700;
  margin: 1.8rem 0 .4rem; color: var(--purple);
  letter-spacing: .5px; text-transform: uppercase;
}
.tuzuk-doc p {
  font-family: var(--font);
  font-size: 1.02rem; color: var(--text-dim);
  margin-bottom: .85rem; line-height: 1.8;
}
.tuzuk-doc ol {
  margin: .6rem 0 1rem 1.6rem;
  list-style: none; counter-reset: tuzuk-item;
}
.tuzuk-doc ol li {
  font-family: var(--font);
  font-size: 1.02rem; color: var(--text-dim);
  line-height: 1.8; margin-bottom: .5rem;
  padding-left: .4rem;
  counter-increment: tuzuk-item;
  position: relative;
}
.tuzuk-doc strong { color: var(--text); }
.tuzuk-doc .madde-no {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--purple); margin-bottom: .4rem;
}
.tuzuk-doc .madde-no::before { content: '§ '; }
.tuzuk-doc hr {
  border: none; border-top: 1px dashed var(--border); margin: 2.5rem 0;
}
.tuzuk-download {
  display: flex; justify-content: center; gap: 1rem;
  margin: 2rem 0 3rem; flex-wrap: wrap;
}

/* ─── ORGAN MEMBER CARDS ─────────────────────────────────────── */
.organ-section { margin-bottom: 3rem; }

.organ-board-title {
  font-size: 1.15rem; font-weight: 700; margin: 0 0 1.2rem;
  text-transform: uppercase; letter-spacing: .5px;
  display: flex; align-items: center; gap: .75rem;
}
.organ-board-title::before {
  content: ''; width: 3px; height: 1.2em; border-radius: 0;
  background: var(--gradient-2); flex-shrink: 0;
}

.organ-label {
  font-size: .7rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-dim);
  margin: 1.5rem 0 .85rem;
  display: flex; align-items: center; gap: .8rem;
}
.organ-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.organ-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 1rem;
}

.organ-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  transition: border-color .3s, transform .3s, background .3s;
  cursor: default;
}
.organ-card:hover { border-color: var(--purple); transform: translateY(-4px); background: var(--bg-card2); }

.organ-photo {
  width: 100%; aspect-ratio: 3 / 4;
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    linear-gradient(160deg, var(--bg-card2) 0%, var(--bg) 100%);
  background-size: 18px 18px, 18px 18px, 100% 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.organ-photo::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-2); opacity: .05; pointer-events: none;
}
.organ-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 38%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  opacity: .7; pointer-events: none;
}

.organ-initials {
  font-family: var(--font-mono);
  font-size: 2rem; font-weight: 800; letter-spacing: -.5px;
  background: var(--gradient-2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; position: relative; z-index: 1;
}

.organ-info {
  padding: .85rem .95rem 1rem;
  border-top: 1px solid var(--border);
}
.organ-info h4 {
  font-family: var(--font);
  font-size: .92rem; font-weight: 700; margin-bottom: .2rem; line-height: 1.3;
}
.organ-role {
  font-size: .7rem; color: var(--purple);
  text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600;
}

.organ-card.yedek { opacity: .7; }
.organ-card.yedek:hover { opacity: 1; border-color: var(--navy); }

/* ─── COMING SOON BAND ───────────────────────────────────────── */
.coming-band {
  background: var(--bg-card);
  border: 1px dashed var(--border-strong);
  border-radius: 0;
  padding: 5rem 2rem; text-align: center;
}
.coming-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: none; color: var(--purple);
  border: 1px solid var(--border-strong);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; padding: .35rem 1rem;
  margin-bottom: 1.2rem;
}
.coming-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--purple);
  box-shadow: 0 0 6px 1px var(--purple);
  border-radius: 50%;
}
@media (prefers-reduced-motion: no-preference) {
  .coming-badge::before { animation: pulse 1.8s ease-in-out infinite; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .25; }
}
.coming-band h1,
.coming-band h2 { font-size: 2.1rem; font-weight: 800; margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .5px; }
.coming-band p { font-family: var(--font); color: var(--text-dim); font-size: 1.15rem; max-width: 520px; margin: 0 auto; }

/* ─── MEMBERSHIP ─────────────────────────────────────────────── */
.mem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mem-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--border-strong);
  border-radius: 0;
  padding: 2.2rem;
}
.mem-box h3 {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem;
  color: var(--purple); text-transform: uppercase; letter-spacing: .5px;
}
.mem-box p, .mem-box li {
  font-family: var(--font);
  font-size: 1.08rem; color: var(--text-dim); line-height: 1.7;
}
.mem-box ul { list-style: none; }
.mem-box li { padding-left: 1.3rem; position: relative; margin-bottom: .5rem; }
.mem-box li::before { content: '→'; position: absolute; left: 0; color: var(--magenta); font-weight: 700; font-family: var(--font-mono); }
.steps { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.2rem; }
.step { display: flex; align-items: flex-start; gap: .9rem; }
.step-num {
  width: 30px; height: 30px; border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
  background: var(--gradient-2); color: #04100c;
  display: flex; align-items: center; justify-content: center;
  font-size: .96rem; font-weight: 700; flex-shrink: 0;
}
.step p { font-family: var(--font); font-size: 1.08rem; color: var(--text-dim); padding-top: .35rem; }
.btn-download {
  display: inline-block; margin-top: 1.4rem;
  background: var(--purple); color: #04100c;
  border: none; border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  padding: .7rem 1.8rem; font-size: 1.02rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-mono);
  transition: opacity .3s, transform .3s;
}
.btn-download:hover { opacity: .85; transform: translateY(-2px); }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--purple);
  border-radius: 0;
  padding: 3.5rem 2rem; text-align: center;
}
.email-link {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4.6vw, 2.3rem);
  font-weight: 700; display: inline-block;
  margin: 1rem 0 .5rem;
}
.social-row { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.social-btn {
  display: inline-block; text-decoration: none;
  border: 1px solid var(--border); color: var(--text-dim);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  padding: .45rem 1.1rem;
  font-size: .92rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .8px;
  transition: border-color .25s, color .25s;
}
.social-btn:hover { border-color: var(--purple); color: var(--purple); }
.social-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: 50%;
  color: var(--text-dim); text-decoration: none;
  transition: border-color .25s, color .25s;
}
.social-icon-btn:hover { border-color: var(--purple); color: var(--purple); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 4rem 2rem 0; }
.footer-inner {
  max-width: 1340px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-logo { height: 38px; width: auto; margin-bottom: 1rem; display: block; }
.footer-brand-desc { font-family: var(--font); font-size: .88rem; color: var(--text-dim); line-height: 1.65; margin-top: .5rem; }
.footer-col-title {
  font-family: var(--font); font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 1.2rem; opacity: .6;
}
.footer-col-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col-list a { text-decoration: none; color: var(--text-dim); font-family: var(--font); font-size: .88rem; text-transform: uppercase; letter-spacing: .5px; transition: color .25s; }
.footer-col-list a:hover { color: var(--purple); }
.footer-contact-line { display: block; font-family: var(--font); font-size: .88rem; color: var(--text-dim); margin-bottom: .4rem; text-decoration: none; }
.footer-email { transition: color .25s; }
.footer-email:hover { color: var(--purple); }
.footer-social { justify-content: flex-start; margin-top: 1rem; }
.footer-bottom { max-width: 1340px; margin: 0 auto; border-top: 1px solid var(--border); padding: 1.2rem 0; text-align: center; }
.footer-copy { font-size: 0.78rem; letter-spacing: .5px; color: var(--text-dim); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (min-width: 961px) and (max-width: 1280px) {
  .nav-mid-hide { display: none; }
}
@media (max-width: 960px) {
  nav.nav-desk { display: none; }
  .hamburger { display: flex; }
  .mem-grid { grid-template-columns: 1fr; }
  .band { padding: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .header-inner { padding: .8rem 1.2rem; }
  section.block { padding: 64px 1.2rem; }
  .quote-box { padding: 1.8rem; }
  .hero h1 { font-size: 2.6rem; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ─── INLINE STYLE REPLACEMENTS ─────────────────────────────── */
.btn-row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin: 2rem 0 3rem;
}
.btn-row-top {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-top: 2rem;
}
.mb-sm  { margin-bottom: .9rem; }
.mb-lg  { margin-bottom: 3rem; }
.mb-xl  { margin-bottom: 3.5rem; }
.mb-2xl { margin-bottom: 4rem; }
.mt-xs  { margin-top: .5rem; }
.mt-lg  { margin-top: 2rem; }
.text-center { text-align: center; }
.note-label  { font-family: var(--font-mono); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-top: 1.5rem; }
.contact-lead { font-family: var(--font); color: var(--text-dim); font-size: 1.15rem; }
.contact-sub  { font-family: var(--font); color: var(--text-dim); font-size: 1.08rem; margin-top: .5rem; }
.contact-note { color: var(--text-dim); font-size: 1.02rem; margin-top: .4rem; }
.link-cyan    { color: var(--purple); text-decoration: none; }

/* ─── SPLASH PAGE (index.html) ───────────────────────────────── */
.splash-body {
  background-color: #05080a;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: none;
}
.glow {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(0, 255, 176, 0.16) 0%,
    rgba(0, 194, 255, 0.09) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.logo-wrap {
  position: relative;
  z-index: 1;
  animation: fadeIn 0.8s ease both;
}
.logo-wrap img {
  display: block;
  width: clamp(200px, 50vw, 480px);
  height: auto;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-slide { display: none; animation: heroFadeIn .6s ease; padding: 0 2rem; position: relative; z-index: 1; }
.hero-slide.active { display: block; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.hero-dots { display: flex; justify-content: center; gap: .6rem; margin-top: 2rem; position: relative; z-index: 1; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.3); cursor: pointer; transition: background .3s; padding: 0; }
.hero-dot.active { background: var(--cyan); }


/* ── Hero Slider Background Video ── */
.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slider-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.light-mode .hero-slide { color: rgb(220, 232, 236); }

/* ─── COOKIE / KVKK CONSENT BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.5rem;
  color: #fff;
  font-family: var(--font);
  animation: cookieBannerIn .3s ease-out;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  min-width: 260px;
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
.cookie-banner-text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  padding: .55rem 1.3rem;
  font-size: .85rem;
  cursor: pointer;
  border: none;
}
@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    justify-content: flex-end;
  }
}
