/* ═══════════════════════════════════════════════════════════════════
   Spika — getspika.app
   Landing final ("i lansuar") + mini-site ligjor.
   Marka: nata urbane, Space Grotesk (display) + Inter (trup).
   Zero JS, zero CDN — fontet janë woff2 lokale (shih /fonts).
   ═══════════════════════════════════════════════════════════════════ */

/* ── Fontet lokale (variable woff2, font-display: swap) ──────────────── */
/* Inter — trupi. Një skedar variable mbulon 400–700; dy nën-bashkësi:
   latin (bazë) + latin-ext (diakritikët shqip: ë ç ï …). */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Space Grotesk — display (tituj, wordmark). Variable 300–700. */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/space-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Tokenat e markës ────────────────────────────────────────────────── */
:root {
  --night: #0E0D12;
  --night-deep: #0B0A10;
  --surface: #17161D;
  --surface-2: #1F1D28;
  --border: #262430;
  --border-2: #2A2834;
  --border-strong: #3A3744;
  --spark: #FF4D6A;
  --spark-text: #FFF7F3;
  --amber: #FFB454;
  --text: #F4F1EA;
  --text-soft: #DCD7E2;
  --muted: #C9C3D4;
  --dim: #9B96A6;
  --faint: #6B6678;
  --fainter: #57525F;
  --ghost: #2E2B39;
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
  --wrap: 1160px;
  --read: 680px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img, svg { max-width: 100%; }
:focus-visible { outline: 2px solid var(--spark); outline-offset: 3px; border-radius: 4px; }

/* ── Wordmark (pika-pin si pikë e "ı"-së) ────────────────────────────── */
.wm {
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.wm .i { position: relative; display: inline-block; }
.wm .pin {
  position: absolute;
  left: 50%;
  top: 0.02em;
  width: 0.19em;
  height: 0.19em;
  transform: translateX(-50%) rotate(-45deg);
  background: var(--spark);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 0.34em rgba(255, 77, 106, 0.75);
}

/* Ikona-pin e ripërdorshme (teardrop me vrimë nate në qendër) */
.pinmark {
  position: relative;
  display: inline-block;
  background: var(--spark);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 10px rgba(255, 77, 106, 0.55);
}
.pinmark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: var(--night);
}

/* ═══════════════ NAV (landing) ═══════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 13, 18, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 48px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 36px);
}
.nav .wm { font-size: 23px; }
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dim);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--spark);
  color: var(--spark-text) !important;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(255, 77, 106, 0.3);
}
.nav-cta:hover { filter: brightness(1.07); }

/* ═══════════════ HERO ═══════════════ */
.hero { position: relative; overflow: clip; }
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 106, 0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 4.5vw, 48px) clamp(56px, 7vw, 104px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}
.hero-copy { flex: 1 1 460px; min-width: min(100%, 460px); }
.hero-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(76px, 11vw, 132px);
  letter-spacing: -0.035em;
  line-height: 0.94;
  color: var(--text);
}
.hero-wordmark .i { position: relative; display: inline-block; }
.hero-wordmark .pin {
  position: absolute;
  left: 50%;
  top: 0.025em;
  width: 0.17em;
  height: 0.17em;
  transform: translateX(-50%) rotate(-45deg);
  background: var(--spark);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 0.38em rgba(255, 77, 106, 0.72);
}
.hero-wordmark .pin::before {
  content: "";
  position: absolute;
  inset: -0.35em;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 106, 0.34) 0%, transparent 68%);
  transform: rotate(45deg);
  animation: glowBreathe 3.2s ease-in-out infinite;
}
.hero-wordmark .pin::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 29%;
  height: 29%;
  border-radius: 50%;
  background: var(--night);
}
.hero-title {
  margin: clamp(22px, 3vw, 34px) 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.14;
  text-wrap: balance;
}
.hero-sub {
  margin: 16px 0 0;
  font-size: clamp(16.5px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--dim);
  max-width: 44ch;
  text-wrap: pretty;
}

/* Badges e store-ave */
.store-badges {
  margin-top: clamp(26px, 3.4vw, 38px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 20px 12px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.badge:hover { border-color: var(--border-strong); background: #1D1B24; }
.badge svg { flex: none; }
.badge-sub {
  display: block;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--dim);
}
.badge-name {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 1px;
}

/* ── Telefoni me hartën (imazhi i markës) ── */
.phone-wrap { flex: 0 1 auto; margin: 0 auto; position: relative; }
.phone-wrap::before {
  content: "";
  position: absolute;
  inset: 8% -6% -4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 106, 0.12) 0%, transparent 66%);
  filter: blur(6px);
  pointer-events: none;
  animation: glowBreathe 4s ease-in-out infinite;
}
.phone {
  position: relative;
  width: clamp(268px, 78vw, 320px);
  aspect-ratio: 320 / 660;
  background: #05040a;
  border: 1px solid #2b2838;
  border-radius: 46px;
  padding: 9px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}
.phone-screen {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 38px;
  background: var(--night-deep);
  font-family: var(--body);
}
.phone-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 22px;
  background: #05040a;
  border-radius: 999px;
  z-index: 9;
}
/* rrjeti + rrugët e hartës */
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(244, 241, 234, 0.03) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(244, 241, 234, 0.03) 0 1px, transparent 1px 40px);
}
.map-street { position: absolute; background: #201e2b; border-radius: 3px; }
.map-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 95% at 50% 36%, transparent 52%, rgba(4, 3, 7, 0.62));
  pointer-events: none;
}
.map-label {
  position: absolute;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.4px;
  color: #4e4a5c;
}
/* grumbuj pinash me numër */
.cluster {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--text);
  background: #3a1b28;
  border: 1.5px solid var(--spark);
  box-shadow: 0 0 0 4px rgba(244, 241, 234, 0.06), 0 0 24px rgba(255, 77, 106, 0.4);
}
.cluster::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 106, 0.28) 0%, transparent 70%);
  animation: glowBreathe 3s ease-in-out infinite;
}
.cluster.sm { background: #2a1720; border-width: 1px; box-shadow: 0 0 16px rgba(255, 77, 106, 0.28); }
/* pin i vetëm me unazë */
.mp {
  position: absolute;
  width: 17px;
  height: 17px;
  background: var(--spark);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 12px rgba(255, 77, 106, 0.6);
}
.mp::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 32%;
  height: 32%;
  border-radius: 50%;
  background: var(--night-deep);
}
.mp-ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 180, 84, 0.85);
  animation: ringPulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
/* shiriti i kërkimit lart */
.phone-search {
  position: absolute;
  top: 40px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 6;
}
.phone-search .field {
  flex: 1;
  height: 40px;
  border-radius: 999px;
  background: rgba(23, 22, 29, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--dim);
  font-size: 13px;
}
.phone-search .gps {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(23, 22, 29, 0.9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
}
/* bottom sheet me postet */
.phone-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 47%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.5);
  z-index: 7;
  display: flex;
  flex-direction: column;
  padding: 0 12px;
}
.phone-grab { flex: none; width: 40px; height: 4.5px; border-radius: 999px; background: var(--border-strong); margin: 9px auto 6px; }
.phone-sheet-head {
  flex: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2px 6px 10px;
}
.phone-sheet-title { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.phone-sheet-sort { font-size: 12px; color: var(--dim); }
.phone-posts { flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 9px; }
.phone-post { background: var(--surface-2); border: 1px solid var(--border-2); border-radius: 13px; padding: 11px 13px; }
.phone-post .meta { font-size: 11px; color: var(--dim); margin-bottom: 5px; }
.phone-post .body { font-size: 13px; line-height: 1.45; max-height: 38px; overflow: hidden; color: #edeae3; }
.phone-post .react { margin-top: 7px; font-size: 11px; color: var(--dim); }

/* ═══════════════ SEKSIONE GJENERALE ═══════════════ */
.section { border-top: 1px solid #1c1a24; }
.section-inner { max-width: var(--wrap); margin: 0 auto; padding: clamp(64px, 8vw, 110px) clamp(20px, 4.5vw, 48px); }
.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
  color: var(--faint);
}
.section-title {
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.16;
  text-wrap: balance;
}

/* ── 2 · Si funksionon ── */
.steps {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(28px, 4vw, 52px);
}
.step { display: flex; flex-direction: column; gap: 10px; }
.step-num { font-family: var(--display); font-weight: 700; font-size: 52px; letter-spacing: -0.03em; color: var(--ghost); line-height: 1; }
.step-label { font-family: var(--display); font-weight: 600; font-size: clamp(20px, 1.9vw, 23px); letter-spacing: -0.01em; }
.step-label .pinmark { width: 15px; height: 15px; margin-left: 2px; vertical-align: -1px; }

/* ── 3 · Harta jeton (animuar) ── */
.mapband {
  border-top: 1px solid #1c1a24;
  border-bottom: 1px solid #1c1a24;
  background: var(--night-deep);
  position: relative;
  overflow: clip;
}
.mapband::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(244, 241, 234, 0.025) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(90deg, rgba(244, 241, 234, 0.025) 0 1px, transparent 1px 54px);
}
.mapband::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 55% 45%, transparent 55%, rgba(4, 3, 7, 0.66));
  pointer-events: none;
}
.mapband-inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 4.5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.mapband-copy { flex: 1 1 340px; min-width: min(100%, 340px); }
.mapfield { flex: 1 1 380px; min-width: min(100%, 380px); position: relative; height: clamp(380px, 42vw, 480px); }
.mapfield .city {
  position: absolute;
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.6px;
  color: #4e4a5c;
}
/* pin i madh me numër (qytet aktiv) */
.geo {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--text);
  background: #3a1b28;
  border: 1.5px solid var(--spark);
  box-shadow: 0 0 0 4px rgba(244, 241, 234, 0.06), 0 0 26px rgba(255, 77, 106, 0.45);
}
.geo::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 106, 0.3) 0%, transparent 70%);
  animation: glowBreathe 3s ease-in-out infinite;
}
.geo.mid { background: #2a1720; border-width: 1px; box-shadow: 0 0 16px rgba(255, 77, 106, 0.28); }
.geo.mid::before { inset: -12px; background: radial-gradient(circle, rgba(255, 77, 106, 0.22) 0%, transparent 70%); animation: none; }
/* pin i vogël me unazë që ndizet me radhë */
.spark-pin { position: absolute; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; }
.spark-pin i {
  position: relative;
  width: 13px;
  height: 13px;
  background: var(--spark);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 10px rgba(255, 77, 106, 0.6);
  font-style: normal;
}
.spark-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 77, 106, 0.75);
  animation: ringPulse 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.spark-pin.d1::before { animation-delay: 0.4s; }
.spark-pin.d2::before { animation-delay: 1.3s; }
.spark-pin.d3::before { animation-delay: 2.1s; }
.dim-pin { position: absolute; width: 13px; height: 13px; background: var(--spark); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); opacity: 0.55; box-shadow: 0 0 8px rgba(255, 77, 106, 0.45); }

/* ── 4 · Siguria ── */
.cards {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 16px;
}
.card2 { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 24px 24px 26px; }
.card2-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #201e28;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13.5px;
}
.card2-title {
  margin-top: 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18.5px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.safe-links {
  margin-top: 22px;
  font-size: 13px;
  color: var(--faint);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.safe-links a {
  color: var(--dim);
  text-decoration: none;
  border-bottom: 1px solid var(--ghost);
  padding-bottom: 1px;
  transition: color 0.15s ease;
}
.safe-links a:hover { color: var(--text); }

/* ── 5 · Për lokalet ── */
.locals { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4.5vw, 48px) clamp(64px, 8vw, 110px); }
.locals-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(26px, 4vw, 40px) clamp(24px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px clamp(24px, 4vw, 48px);
}
.locals-copy { flex: 1 1 380px; min-width: min(100%, 380px); }
.locals-title { font-family: var(--display); font-weight: 700; font-size: clamp(21px, 2.2vw, 26px); letter-spacing: -0.015em; line-height: 1.25; }
.locals-title .star { color: var(--amber); }
.locals-sub { margin: 9px 0 0; font-size: 15px; line-height: 1.6; color: var(--dim); text-wrap: pretty; }
.btn-outline {
  text-decoration: none;
  height: 48px;
  padding: 0 26px;
  border-radius: 14px;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-outline:hover { border-color: var(--spark); color: var(--spark-text); }

/* ── 6 · FAQ ── */
.faq { border-top: 1px solid #1c1a24; }
.faq-inner { max-width: 760px; margin: 0 auto; padding: clamp(64px, 8vw, 110px) clamp(20px, 4.5vw, 48px); }
.faq-list { margin-top: clamp(26px, 3.5vw, 38px); display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: clip; }
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { color: var(--faint); font-size: 13px; transition: transform 0.2s ease; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { margin: 0; padding: 0 22px 20px; font-size: 14.5px; line-height: 1.65; color: var(--dim); text-wrap: pretty; }
.faq details p a { color: var(--muted); }

/* ═══════════════ FOOTER (i përbashkët kudo) ═══════════════ */
.site-footer { border-top: 1px solid var(--border); }
.foot-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 34px clamp(20px, 4.5vw, 48px) 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
}
.foot-inner .wm { font-size: 19px; }
.foot-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; font-size: 13px; }
.foot-links a { text-decoration: none; color: var(--dim); transition: color 0.15s ease; }
.foot-links a:hover { color: var(--text); }
.foot-copy { margin-left: auto; font-size: 12.5px; color: var(--fainter); }

/* Reading-pages: foter i njëjtë, i ngushtuar te kolona e leximit */
body.reading .foot-inner { max-width: var(--read); padding-left: 24px; padding-right: 24px; }

/* ═══════════════ TEMPLATE MINIMAL I LEXIMIT (faqet ligjore + rregullat) ═══════════════ */
.readnav { border-bottom: 1px solid var(--border); }
.readnav-inner {
  max-width: var(--read);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.readnav .back { text-decoration: none; font-size: 13px; color: var(--dim); transition: color 0.15s ease; }
.readnav .back:hover { color: var(--text); }

main.read { max-width: var(--read); margin: 0 auto; padding: clamp(44px, 7vw, 72px) 24px 96px; }
main.read h1 { margin: 14px 0 0; font-family: var(--display); font-weight: 700; font-size: clamp(30px, 5vw, 40px); letter-spacing: -0.02em; }
main.read .updated { margin: 10px 0 0; font-size: 13.5px; color: var(--faint); }
main.read .lede { margin: 20px 0 0; font-size: 16.5px; line-height: 1.7; color: var(--muted); }
main.read h2 { margin: 40px 0 0; font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: -0.01em; scroll-margin-top: 76px; }
main.read h3 { margin: 26px 0 0; font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; color: var(--text-soft); }
main.read p { margin: 12px 0 0; font-size: 15.5px; line-height: 1.7; color: var(--muted); text-wrap: pretty; }
main.read ul, main.read ol { margin: 12px 0 0; padding-left: 22px; font-size: 15.5px; line-height: 1.85; color: var(--muted); }
main.read li { margin: 4px 0 0; }
main.read li::marker { color: var(--faint); }
main.read a { color: var(--text); text-underline-offset: 2px; }
main.read strong { color: var(--text); font-weight: 600; }

/* Kartë veprimi (fshi llogarinë, rregullat) */
.actioncard { margin: 20px 0 0; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px; }
.actioncard ol, .actioncard ul { margin: 6px 0 0; }
.rulecard { margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
.rule {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.rule .dot { flex: none; width: 7px; height: 7px; border-radius: 999px; background: var(--spark); box-shadow: 0 0 8px rgba(255, 77, 106, 0.5); }
.rule.amber .dot { background: var(--amber); box-shadow: 0 0 8px rgba(255, 180, 84, 0.5); }
.rule span { font-size: 15.5px; color: var(--text-soft); }

/* ═══════════════ ANIMACIONET ═══════════════ */
@keyframes glowBreathe { 0%, 100% { opacity: 0.65; } 50% { opacity: 1; } }
@keyframes ringPulse { 0% { transform: scale(0.55); opacity: 0.95; } 70% { transform: scale(1.9); opacity: 0; } 100% { transform: scale(1.9); opacity: 0; } }

/* Respekto preferencën e sistemit për lëvizje të reduktuar */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-inner { padding-top: clamp(36px, 8vw, 48px); }
  .foot-copy { margin-left: 0; width: 100%; }
}
