*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --border: #2a2a2a;
  --text: #ffffff;
  --text-muted: #888888;
  --text-dim: #555555;
  --green: #4ade80;
  --red: #f87171;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0d0d0d;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 60px;
}

/* ── BACKGROUND ── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.page-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,1) 0%, rgba(13,13,13,0.6) 50%, transparent 80%);
  z-index: 1;
}

/* ── TOP NAV ── */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.top-nav .logo,
.top-nav .nav-links,
.top-nav .theme-toggle {
  pointer-events: all;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
}
.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── PAGE WRAPPER ── */
.page-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── MAIN LAYOUT (hero) ── */
.main-layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px 40px;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: calc(100vh - 550px);
}

/* ── HERO LEFT ── */
.hero-left {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
  width: fit-content;
}
.badge svg { flex-shrink: 0; }

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--text);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
}

.email-form {
  display: flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  padding: 5px 5px 5px 20px;
  max-width: 420px;
  gap: 8px;
}
.email-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
  font-family: inherit;
  min-width: 0;
}
.email-form input::placeholder { color: #666; }
.email-form button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e8e8e8;
  color: #111;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.2s;
}
.email-form button:hover { background: #fff; }

.success-msg {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}

/* GDPR consent checkbox */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 480px;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  accent-color: #fff;
  cursor: pointer;
}
.consent-label a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-label a:hover { opacity: 0.7; }
body.light .consent-label { color: #555; }
body.light .consent-label a { color: #111; }
body.light .consent-label input[type="checkbox"] { accent-color: #111; }

.preview-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.preview-link:hover { color: var(--text); }
.play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 10px;
}

/* ── HERO RIGHT / PHONES ── */
.hero-right {
  flex: 1;
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.phone-mockup {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}
.main-phone {
  width: 200px; height: 420px;
  background: #0e0e0e;
  left: 50%; top: 50%;
  transform: translate(-65%, -50%);
  z-index: 3;
}
.second-phone {
  width: 165px; height: 330px;
  background: #0e0e0e;
  right: 60px; top: 50%;
  transform: translateY(-52%);
  z-index: 2;
}
.phone-notch {
  width: 72px; height: 20px;
  background: #0e0e0e;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  border: 1px solid #1a1a1a;
  border-top: none;
}
.small-notch { width: 55px; height: 16px; }
.phone-screen {
  padding: 28px 12px 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}
.small-screen { padding: 24px 10px 10px; gap: 4px; }
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.status-icons { letter-spacing: -2px; font-size: 7px; }
.small-status { font-size: 7px; }
.balance-label { font-size: 8px; color: var(--text-muted); }
.balance-amount { font-size: 17px; font-weight: 700; letter-spacing: -0.5px; display: flex; align-items: center; gap: 4px; }
.caret { font-size: 11px; color: var(--text-muted); }
.phone-actions { display: flex; justify-content: space-between; margin: 3px 0; }
.action-btn { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 7px; color: var(--text-muted); }
.action-icon {
  width: 28px; height: 28px;
  background: #1e1e1e;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--text);
  border: 1px solid #2a2a2a;
}
.accounts-label { font-size: 9px; font-weight: 600; color: var(--text); display: flex; justify-content: space-between; margin-top: 2px; }
.arr { color: var(--text-muted); font-size: 7px; }
.account-row { display: flex; align-items: center; gap: 6px; padding: 4px 0; border-bottom: 1px solid #1a1a1a; }
.flag { font-size: 13px; }
.btc-flag { width: 18px; height: 18px; background: #f7931a; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; color: white; flex-shrink: 0; }
.acc-details { flex: 1; }
.acc-name { font-size: 9px; font-weight: 600; }
.acc-sub { font-size: 7px; color: var(--text-muted); }
.acc-right { text-align: right; }
.acc-amount { font-size: 9px; font-weight: 600; }
.acc-change { font-size: 7px; }
.acc-change.pos { color: var(--green); }
.acc-change.neg { color: var(--text-muted); }
.activity-label { font-size: 9px; font-weight: 600; margin-top: 3px; }
.activity-row { display: flex; align-items: center; gap: 5px; padding: 2px 0; }
.act-icon { font-size: 11px; }
.act-info { flex: 1; }
.act-name { font-size: 8px; font-weight: 500; }
.act-date { font-size: 6px; color: var(--text-muted); }
.act-amount { font-size: 8px; font-weight: 600; }
.act-amount.pos { color: var(--green); }
.act-amount.neg { color: var(--red); }
.phone-nav-bar { display: flex; justify-content: space-around; margin-top: auto; padding-top: 6px; border-top: 1px solid #1e1e1e; }
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 6px; color: var(--text-muted); }
.nav-item.active { color: var(--text); }
.card-label { font-size: 9px; font-weight: 600; margin-top: 3px; }
.card-num { font-size: 8px; color: var(--text-muted); }
.visa-logo-small { font-size: 10px; font-weight: 700; font-style: italic; letter-spacing: 1px; color: #aaa; text-align: right; }
.card-actions-row { display: flex; gap: 5px; margin: 3px 0; }
.card-action-btn { flex: 1; background: #1e1e1e; border: 1px solid #2a2a2a; border-radius: 7px; padding: 4px 3px; font-size: 6px; text-align: center; color: var(--text-muted); }
.spent-label { font-size: 7px; color: var(--text-muted); margin-top: 3px; }
.spent-amount { font-size: 15px; font-weight: 700; letter-spacing: -0.5px; }
.mini-chart { margin-top: 3px; }
.mini-chart svg { width: 100%; height: 36px; }
.card-mockup {
  position: absolute;
  bottom: 20px; right: 0;
  width: 150px; height: 92px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 16px 36px rgba(0,0,0,0.6);
  z-index: 5;
  overflow: hidden;
}
.card-inner { padding: 12px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.card-logo-text { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; }
.card-chip-icon { font-size: 16px; color: #888; position: absolute; bottom: 12px; left: 12px; }
.card-visa-text { text-align: right; font-size: 10px; font-weight: 700; font-style: italic; letter-spacing: 1px; line-height: 1.2; color: #ccc; }
.card-visa-text small { font-size: 7px; font-weight: 400; display: block; }

/* ── FEATURES STRIP ── */
.features-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 48px 28px;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: linear-gradient(to top, rgba(16,17,19,0.85) 0%, rgba(18,18,20,0.85) 50%, rgba(24,24,27,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 40px;
}
.feature-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 36px;
}
.feature-item:first-child { padding-left: 0; }
.feature-item:last-child { padding-right: 0; }
.feature-icon {
  width: 48px; height: 48px;
  background: #1e1e1e;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}
.feature-title { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.feature-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.feature-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ── VISION SECTION ── */
.vision-section {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 48px 32px;
}
.vision-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(18,18,18,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  min-height: 220px;
}
.vision-left {
  flex: 0 0 380px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.vision-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; color: var(--text-muted); }
.vision-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.vision-left p { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.vision-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
}
.globe-container { position: absolute; inset: 0; }
.globe-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.globe-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(18,18,18,0.95) 0%, rgba(18,18,18,0.5) 30%, transparent 55%); }
.launch-card {
  position: relative;
  z-index: 2;
  background: rgba(20,20,20,0.88);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
  backdrop-filter: blur(10px);
}
.launch-icon { font-size: 18px; }
.launch-title { font-size: 14px; font-weight: 600; }
.launch-sub { font-size: 11px; color: var(--text-muted); }
.btn-outline-dark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 14px;
  background: var(--text);
  color: #111;
  border-radius: 50px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.btn-outline-dark:hover { opacity: 0.88; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* Tablet wide */
@media (max-width: 1100px) {
  .main-layout    { padding: 90px 32px 32px; }
  .features-strip { padding: 0 32px 24px; }
  .vision-section { padding: 0 32px 28px; }
}

/* Tablet portrait – hide phones */
@media (max-width: 960px) {
  .hero-right { display: none; }

  .main-layout {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 28px;
    min-height: auto;
  }

  .hero-left {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .hero-sub { max-width: 100%; }
  .email-form { max-width: 100%; }

  .features-strip { padding: 0 28px 24px; }
  .features-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 28px;
  }
  .feature-divider { display: none; }
  .feature-item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 18px 0;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .feature-item:last-child { border-bottom: none; }

  .vision-section { padding: 0 28px 28px; }
  .vision-inner {
    flex-direction: column;
    min-height: auto;
  }
  .vision-left {
    flex: none;
    width: 100%;
    padding: 28px 28px 20px;
    text-align: center;
    align-items: center;
  }
  .vision-right {
    min-height: 180px;
    align-items: flex-end;
    justify-content: center;
    padding: 16px 20px 20px;
  }
  .launch-card { min-width: auto; width: 100%; max-width: 360px; }
}

/* Mobile */
@media (max-width: 600px) {
  .top-nav { padding: 12px 20px; }
  .logo-img { height: 48px; }

  /* Mobil háttérkép */
  .page-bg img {
    content: url('mobilebg.png');
    object-position: center top;
    filter: blur(3px) brightness(0.5);
    transform: scale(1.05);
  }
  .page-bg-overlay {
    background: linear-gradient(to bottom,
      rgba(13,13,13,0.75) 0%,
      rgba(13,13,13,0.55) 35%,
      rgba(13,13,13,0.55) 65%,
      rgba(13,13,13,0.8) 100%
    );
  }

  .main-layout { padding: 80px 20px 24px; }
  h1 { font-size: clamp(26px, 7vw, 36px); }
  .hero-sub { font-size: 13px; }
  .hero-left { gap: 16px; }

  .badge { padding: 7px 14px; font-size: 10px; }

  .email-form {
    flex-direction: column;
    padding: 8px;
    gap: 8px;
    border-radius: 12px;
    max-width: 100%;
  }
  .email-form input { padding: 12px 14px; font-size: 14px; }
  .email-form button {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 13px;
    border-radius: 8px;
  }

  /* Features: egymás alatt, középre igazítva */
  .features-strip { padding: 0 20px 20px; }
  .features-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px;
    border-radius: 16px;
  }
  .feature-item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 16px 0;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
  .feature-item:last-child { border-bottom: none; }
  .feature-icon { width: 42px; height: 42px; flex-shrink: 0; }
  .feature-title { font-size: 14px; }
  .feature-desc { font-size: 12px; }

  /* Vision: kompakt, ne kelljen görgetni */
  .vision-section { padding: 0 20px 20px; }
  .vision-inner { border-radius: 16px; }
  .vision-left {
    padding: 24px 20px 16px;
    gap: 10px;
  }
  .vision-left h2 { font-size: 22px; }
  .vision-left p { font-size: 12px; }
  .vision-right { min-height: 160px; padding: 14px 20px 18px; }
  .launch-card { padding: 16px; max-width: 100%; gap: 8px; }
  .launch-title { font-size: 13px; }
  .launch-sub { font-size: 11px; }
  .btn-outline-dark { font-size: 12px; padding: 9px 14px; }
}

/* Small mobile */
@media (max-width: 380px) {
  .main-layout { padding: 72px 16px 20px; }
  h1 { font-size: 24px; }
  .features-strip { padding: 0 16px 16px; }
  .features-inner { padding: 16px; border-radius: 14px; }
  .vision-section { padding: 0 16px 16px; }
  .vision-inner { border-radius: 14px; }
  .vision-left { padding: 24px 16px; }
  .vision-right { min-height: 220px; padding: 16px; }
}

/* ════════════════════════════════
   THEME TOGGLE BUTTON
════════════════════════════════ */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-link:hover { color: #ffffff; }
.nav-link.active { color: #ffffff; font-weight: 600; }

body.light .nav-link { color: rgba(0,0,0,0.55); }
body.light .nav-link:hover { color: #111111; }
body.light .nav-link.active { color: #111111; }

.theme-toggle {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.theme-toggle:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.08);
}

/* Melyik ikon látszik */
.theme-icon-light { display: none; }
.theme-icon-dark  { display: flex; }

body.light .theme-icon-light { display: flex; }
body.light .theme-icon-dark  { display: none; }

/* ════════════════════════════════
   LIGHT MODE
════════════════════════════════ */
body.light {
  background: #f0f0f0;
  color: #111111;
}

/* Háttér */
body.light .page-bg-overlay {
  background: linear-gradient(to right,
    rgba(240,240,240,0.92) 0%,
    rgba(240,240,240,0.65) 40%,
    transparent 80%
  );
}

/* Nav */
body.light .theme-toggle {
  border-color: rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.06);
  color: #111111;
}
body.light .theme-toggle:hover {
  background: rgba(0,0,0,0.12);
}

/* Logo */
body.light .logo { color: #111111; }

/* Badge */
body.light .badge {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.15);
  color: #333333;
}

/* H1 */
body.light h1 { color: #111111; }

/* Hero sub */
body.light .hero-sub { color: #555555; }

/* Email form */
body.light .email-form {
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
}
body.light .email-form input {
  color: #111111;
}
body.light .email-form input::placeholder { color: #999999; }
body.light .email-form button {
  background: #111111;
  color: #ffffff;
}
body.light .email-form button:hover { background: #333333; }

/* Preview link */
body.light .preview-link { color: #666666; }
body.light .preview-link:hover { color: #111111; }
body.light .play-btn { border-color: rgba(0,0,0,0.2); }

/* Features strip */
body.light .features-inner {
  background: linear-gradient(to top,
    rgba(255,255,255,0.75) 0%,
    rgba(245,245,245,0.85) 50%,
    rgba(255,255,255,0.75) 100%
  );
  border-color: rgba(0,0,0,0.1);
  backdrop-filter: blur(12px);
}
body.light .feature-icon {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.12);
  color: #111111;
}
body.light .feature-title { color: #111111; }
body.light .feature-desc { color: #666666; }
body.light .feature-divider { background: rgba(0,0,0,0.1); }

/* Vision section */
body.light .vision-inner {
  background: rgba(255,255,255,0.72);
  border-color: rgba(0,0,0,0.1);
  backdrop-filter: blur(16px);
}
body.light .vision-tag { color: #888888; }
body.light .vision-left h2 { color: #111111; }
body.light .vision-left p { color: #555555; }
body.light .globe-overlay {
  background: linear-gradient(to right, rgba(255,255,255,0.5) 0%, transparent 40%);
}

/* Launch card */
body.light .launch-card {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.12);
}
body.light .launch-title { color: #111111; }
body.light .launch-sub { color: #666666; }
body.light .btn-outline-dark {
  background: #111111;
  color: #ffffff;
}
body.light .btn-outline-dark:hover { opacity: 0.85; }

/* Mobile light overlay */
@media (max-width: 600px) {
  body.light .page-bg-overlay {
    background: linear-gradient(to bottom,
      rgba(240,240,240,0.8) 0%,
      rgba(240,240,240,0.6) 40%,
      rgba(240,240,240,0.6) 70%,
      rgba(240,240,240,0.8) 100%
    );
  }
}

/* Nav links responsive */
@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ── FOOTER ── */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 48px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.2px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-link {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text); }

/* Footer light mode */
body.light .site-footer {
  border-top-color: rgba(0,0,0,0.1);
  background: rgba(240,240,240,0.88);
}
body.light .footer-logo { color: #111111; }
body.light .footer-copy { color: #aaaaaa; }
body.light .footer-link { color: #252525; }
body.light .footer-link:hover { color: #111111; }

/* Footer responsive */
@media (max-width: 600px) {
  .site-footer { padding: 14px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-left { flex-direction: column; align-items: flex-start; gap: 4px; }
}
@media (max-width: 380px) {
  .site-footer { padding: 12px 16px; }
}
