/* ============================================================
   sancak.tech — Tasarım Sistemi v1.0
   Altın kural: bekleyen ve seçen site. "Gel gel" yok.
   ============================================================ */

:root {
  /* Renkler */
  --bg-dark: #0d0f12;
  --bg-dark-2: #14171c;
  --bg-light: #f7f6f3;
  --ink: #1a1d22;
  --ink-soft: #4a4f58;
  --line: rgba(26, 29, 34, 0.12);
  --line-dark: rgba(247, 246, 243, 0.14);
  --accent: #c8f04a;            /* tek vurgu rengi — lime */
  --accent-ink: #14171c;
  --danger: #e05555;

  /* Tipografi */
  --font: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-body: 16.5px;
  --fs-h1: clamp(1.6rem, 3.2vw, 2.4rem);
  --fs-small: 0.82rem;

  /* Ritim */
  --radius: 14px;
  --gap: clamp(1.2rem, 3vw, 2.4rem);
  --page-max: 1080px;

  /* Hareket — 400ms üstü yasak */
  --t-fast: 180ms;
  --t-med: 320ms;
  --t-page: 380ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Açılış perdesi (~4 sn) ---------- */
#veil {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg-dark);
  display: grid; place-items: center;
  transition: opacity var(--t-page) var(--ease), visibility var(--t-page);
}
#veil.done { opacity: 0; visibility: hidden; }
#veil .veil-line {
  color: var(--bg-light);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 600; letter-spacing: 0.01em;
  opacity: 0; transform: translateY(10px);
  animation: veilIn 900ms var(--ease) 500ms forwards;
}
#veil .veil-line em { font-style: normal; color: var(--accent); }
#veil .veil-bar {
  margin-top: 1.4rem; height: 2px; width: 120px;
  background: var(--line-dark); overflow: hidden; border-radius: 2px;
}
#veil .veil-bar::after {
  content: ""; display: block; height: 100%; width: 40%;
  background: var(--accent); border-radius: 2px;
  animation: veilBar 2.6s var(--ease) 600ms forwards;
}
@keyframes veilIn { to { opacity: 1; transform: none; } }
@keyframes veilBar { from { transform: translateX(-120%); } to { transform: translateX(300%); } }

/* ---------- Hero (dark) ---------- */
.hero {
  position: relative; min-height: 100svh;
  background: var(--bg-dark); color: var(--bg-light);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero__media.on { opacity: 1; }
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.42) saturate(0.9);
}
.hero__scrim {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, transparent 20%, rgba(13,15,18,0.75) 90%);
}
.hero__body {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: var(--gap);
  gap: 1.1rem;
}
.hero__claim {
  font-size: var(--fs-h1); font-weight: 600; line-height: 1.3;
  max-width: 22ch; text-wrap: balance;
  opacity: 0; transform: translateY(14px);
  animation: rise var(--t-med) var(--ease) forwards;
}
.hero__claim em { font-style: normal; color: var(--accent); }
.hero__sub {
  color: rgba(247,246,243,0.66); font-size: var(--fs-small);
  letter-spacing: 0.02em;
  opacity: 0; transform: translateY(14px);
  animation: rise var(--t-med) var(--ease) 120ms forwards;
}
.hero__hint {
  position: absolute; bottom: 7.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(247,246,243,0.4); font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0; animation: rise var(--t-med) var(--ease) 900ms forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Menü ---------- */
.menu {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.menu--dark { color: var(--bg-light); }
.menu--light { color: var(--ink); background: rgba(247,246,243,0.86); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.menu__brand { font-weight: 700; letter-spacing: 0.02em; font-size: 1.02rem; }
.menu__brand b { color: var(--accent); font-weight: 700; }
.menu nav { display: flex; gap: 1.4rem; }
.menu nav a {
  font-size: var(--fs-small); letter-spacing: 0.04em; opacity: 0.82;
  position: relative; padding: 0.2rem 0;
  transition: opacity var(--t-fast);
}
.menu nav a:hover { opacity: 1; }
.menu nav a[aria-current="page"] { opacity: 1; }
.menu nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--accent); border-radius: 2px;
}

/* ---------- Sohbet çubuğu (sabit) ---------- */
.dock {
  position: fixed; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  z-index: 110; width: min(560px, calc(100vw - 2rem));
  transition: transform var(--t-med) var(--ease), opacity var(--t-med), visibility var(--t-med);
}
.dock__bar {
  display: flex; align-items: center; gap: 0.7rem;
  background: rgba(20,23,28,0.92); color: var(--bg-light);
  border: 1px solid var(--line-dark);
  border-radius: 999px; padding: 0.75rem 1.1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
  cursor: text;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.dock__bar:hover { border-color: rgba(200,240,74,0.4); }
.dock__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); flex: none;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.dock__ph { color: rgba(247,246,243,0.55); font-size: 0.95rem; flex: 1; text-align: left; }
.dock__go {
  flex: none; font-size: var(--fs-small); font-weight: 600;
  color: var(--accent-ink); background: var(--accent);
  padding: 0.42rem 0.95rem; border-radius: 999px;
  transition: transform var(--t-fast), filter var(--t-fast);
}
.dock__go:hover { transform: translateY(-1px); filter: brightness(1.06); }
.dock.hidden { transform: translateX(-50%) translateY(140%); opacity: 0; visibility: hidden; }

/* ---------- Odak modu (chat) ---------- */
.focus {
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-items: center; padding: 1rem;
  visibility: hidden; opacity: 0;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med);
}
.focus.on { visibility: visible; opacity: 1; }
.focus__dim { position: absolute; inset: 0; background: rgba(13,15,18,0.72); backdrop-filter: blur(6px); }
.focus__panel {
  position: relative; width: min(640px, 100%); height: min(72vh, 640px);
  background: var(--bg-dark-2); color: var(--bg-light);
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: translateY(16px) scale(0.985);
  transition: transform var(--t-med) var(--ease);
}
.focus.on .focus__panel { transform: none; }
.focus__head {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--line-dark);
  font-size: var(--fs-small); color: rgba(247,246,243,0.7);
}
.focus__head b { color: var(--accent); font-weight: 600; }
.focus__x {
  margin-left: auto; padding: 0.3rem 0.6rem; border-radius: 8px;
  color: rgba(247,246,243,0.7); font-size: 1rem; line-height: 1;
  transition: background var(--t-fast), color var(--t-fast);
}
.focus__x:hover { background: var(--line-dark); color: var(--bg-light); }
.focus__log { flex: 1; overflow-y: auto; padding: 1.1rem; display: flex; flex-direction: column; gap: 0.8rem; }
.focus__log:empty::after {
  content: "Merhaba. Sancak.tech'in asistanıyım. İş akışınızla ilgili sorunuz varsa dinliyorum.";
  color: rgba(247,246,243,0.5); font-size: 0.95rem; text-align: center; margin: auto; max-width: 34ch;
}
.msg { max-width: 82%; padding: 0.65rem 0.95rem; border-radius: 14px; font-size: 0.95rem; line-height: 1.55; white-space: pre-wrap; }
.msg--user { align-self: flex-end; background: var(--accent); color: var(--accent-ink); border-bottom-right-radius: 4px; }
.msg--bot { align-self: flex-start; background: rgba(247,246,243,0.08); border: 1px solid var(--line-dark); border-bottom-left-radius: 4px; }
.msg--sys { align-self: center; color: rgba(247,246,243,0.45); font-size: 0.8rem; background: none; }
.focus__in { display: flex; gap: 0.6rem; padding: 0.9rem 1rem; border-top: 1px solid var(--line-dark); }
.focus__in input {
  flex: 1; background: rgba(247,246,243,0.06); border: 1px solid var(--line-dark);
  border-radius: 10px; padding: 0.7rem 0.95rem; color: var(--bg-light); font: inherit; font-size: 0.95rem;
  outline: none; transition: border-color var(--t-fast);
}
.focus__in input:focus { border-color: rgba(200,240,74,0.5); }
.focus__in button {
  flex: none; background: var(--accent); color: var(--accent-ink);
  border-radius: 10px; padding: 0 1.1rem; font-weight: 600; font-size: 0.9rem;
  transition: filter var(--t-fast), transform var(--t-fast);
}
.focus__in button:hover { filter: brightness(1.07); }
.focus__in button:active { transform: scale(0.97); }
.typing { display: inline-flex; gap: 4px; padding: 0.3rem 0; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: rgba(247,246,243,0.5); animation: tp 1.1s infinite; }
.typing i:nth-child(2) { animation-delay: 0.15s; } .typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes tp { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Açık bölmeler ---------- */
.section { max-width: var(--page-max); margin: 0 auto; padding: clamp(3rem, 8vw, 5.5rem) var(--gap); }
.section__kicker { font-size: var(--fs-small); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.9rem; }
.section__title { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 600; text-wrap: balance; max-width: 30ch; }
.section--alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Sayı istatistikleri */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--gap); }
.stat b { display: block; font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; }
.stat b em { font-style: normal; color: var(--ink-soft); font-size: 0.55em; font-weight: 500; }
.stat span { color: var(--ink-soft); font-size: var(--fs-small); }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark); color: rgba(247,246,243,0.6);
  padding: 2.2rem var(--gap) 6.5rem;
  font-size: var(--fs-small);
}
.footer__in { max-width: var(--page-max); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer a { color: rgba(247,246,243,0.8); transition: color var(--t-fast); }
.footer a:hover { color: var(--accent); }

/* ---------- Sayfa geçişi (fade) ---------- */
.page { animation: pageIn var(--t-page) var(--ease); }
@keyframes pageIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Erişilebilirlik: hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  #veil { display: none; }
  .hero__media { opacity: 1; }
}

/* ---------- Mobil ---------- */
@media (max-width: 640px) {
  .menu nav { gap: 0.9rem; }
  .menu nav a { font-size: 0.78rem; }
  .hero__hint { bottom: 7rem; }
  .dock { bottom: 1rem; }
  .footer { padding-bottom: 6rem; }
}

/* ============================================================
   ANA SAYFA v2 — tek ekran sohbet arayüzü (ChatGPT tarzı)
   Yapı: topbar + claim + transcript + askbar + chips + drawer
   ============================================================ */
body.home {
  background: var(--bg-dark);
  color: var(--bg-light);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* Üst çubuk */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 1.6rem);
  background: rgba(13, 15, 18, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-dark);
}
.burger {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  color: rgba(247,246,243,0.75);
  transition: background var(--t-fast), color var(--t-fast);
}
.burger:hover { background: rgba(247,246,243,0.08); color: var(--bg-light); }
.brand { font-weight: 400; letter-spacing: -0.01em; color: var(--bg-light); }
.brand b { color: var(--accent); font-weight: 700; }
.brand--center { position: absolute; left: 50%; transform: translateX(-50%); }
.topbar__spacer { width: 38px; }

/* Tema değiştirme butonu (sağ üst) */
.theme-toggle {
  margin-left: auto;
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  color: rgba(247,246,243,0.7);
  transition: background var(--t-fast), color var(--t-fast);
}
.theme-toggle:hover { background: rgba(247,246,243,0.08); color: var(--bg-light); }
.theme-toggle .ic { display: block; }
body.home:not(.light) .ic--moon { display: none; }
body.home.light .ic--sun { display: none; }
body.home.light .theme-toggle { color: var(--ink-soft); }
body.home.light .theme-toggle:hover { background: rgba(26, 29, 34, 0.06); color: var(--ink); }

/* Sahne: içerik ortalanır */
.stage {
  flex: 1;
  display: grid; place-items: center;
  padding: clamp(2rem, 6vh, 4rem) var(--gap);
}
.stage__in { width: 100%; max-width: 780px; }

.claim {
  font-size: clamp(1.7rem, 4.6vw, 3rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.18;
  text-align: center;
  margin-bottom: clamp(1.6rem, 4vh, 2.6rem);
  text-wrap: balance;
}
.claim em { font-style: normal; color: var(--accent); }

/* Sohbet geçmişi */
.transcript {
  display: flex; flex-direction: column; gap: 0.9rem;
  margin-bottom: 1.1rem;
  max-height: 46vh; overflow-y: auto;
  scrollbar-width: thin;
}
.transcript:empty { display: none; }
.transcript .msg {
  max-width: 85%;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  font-size: 0.96rem;
  line-height: 1.6;
  animation: msgIn var(--t-fast) var(--ease);
}
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.transcript .msg--user {
  align-self: flex-end;
  background: #232930;
  color: #e8ecf1;
  border-bottom-right-radius: 5px;
}
.transcript .msg--bot {
  align-self: flex-start;
  background: transparent;
  color: #d5dae2;
  padding-left: 0.2rem;
  border-bottom-left-radius: 5px;
}
.transcript .typing { display: inline-flex; gap: 5px; padding: 0.15rem 0; }
.transcript .typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(247,246,243,0.45);
  animation: typingBounce 1s infinite;
}
.transcript .typing i:nth-child(2) { animation-delay: 150ms; }
.transcript .typing i:nth-child(3) { animation-delay: 300ms; }
@keyframes typingBounce { 0%, 60%, 100% { transform: none; } 30% { transform: translateY(-4px); } }

/* Soru çubuğu (gri buton) */
.askbar {
  display: flex; align-items: center; gap: 0.5rem;
  background: #16191e;
  border: 1px solid rgba(247,246,243,0.09);
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 1.15rem;
  transition: border-color var(--t-fast);
}
.askbar:focus-within { border-color: rgba(247,246,243,0.22); }
.askbar input {
  flex: 1; min-width: 0;
  background: none; border: none; outline: none;
  color: var(--bg-light); font: inherit;
}
.askbar input::placeholder { color: rgba(247,246,243,0.4); }
.askbar button {
  flex-shrink: 0;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 600; font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast);
}
.askbar button:hover { background: #b7dd3f; color: var(--accent-ink); }

/* Menü butonları (soldan sağa, gri) */
.chips {
  display: flex; flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}
.chip {
  background: #1b1f25;
  color: rgba(247,246,243,0.75);
  font-size: 0.88rem; font-weight: 500;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(247,246,243,0.07);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.chip:hover {
  background: #262b33;
  color: var(--bg-light);
  border-color: rgba(247,246,243,0.14);
}

/* Footer */
.homefoot {
  text-align: center;
  color: rgba(247,246,243,0.4);
  font-size: 0.8rem;
  padding: 1.4rem var(--gap) 1.8rem;
}
.homefoot__brand { color: var(--accent); font-weight: 600; }

/* Sol menü (drawer) */
.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 100;
  width: min(320px, 86vw);
  background: var(--bg-dark-2);
  border-right: 1px solid var(--line-dark);
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--t-med) var(--ease);
}
.drawer.on { transform: none; }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line-dark);
}
.drawer__x {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  color: rgba(247,246,243,0.6);
  transition: background var(--t-fast), color var(--t-fast);
}
.drawer__x:hover { background: rgba(247,246,243,0.08); color: var(--bg-light); }
.drawer__nav {
  flex: 1; overflow-y: auto;
  padding: 1rem 1.1rem;
  display: flex; flex-direction: column; gap: 0.15rem;
}
.drawer__label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(247,246,243,0.45);
  padding: 0 0.5rem 0.55rem;
}
.drawer__nav a {
  display: block;
  font-size: 0.9rem; line-height: 1.45;
  color: rgba(247,246,243,0.78);
  padding: 0.55rem 0.6rem;
  border-radius: 9px;
  transition: background var(--t-fast), color var(--t-fast);
}
.drawer__nav a:hover { background: rgba(247,246,243,0.07); color: var(--bg-light); }
.drawer__foot {
  display: flex; justify-content: space-between;
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
}
.drawer__foot a { color: rgba(247,246,243,0.65); transition: color var(--t-fast); }
.drawer__foot a:hover { color: var(--accent); }

.scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0,0,0,0.55);
  animation: msgIn var(--t-fast) var(--ease);
}

/* Ana sayfa mobil */
@media (max-width: 640px) {
  .claim { font-size: clamp(1.45rem, 7vw, 2rem); }
  .transcript .msg { max-width: 92%; }
  .chips { gap: 0.45rem; justify-content: center; }
  .chip { font-size: 0.82rem; padding: 0.45rem 0.9rem; }
}

/* ---------- Arka plan videosu (açık modda belirir) ---------- */
.stage__bg {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1200ms var(--ease);
}
body.home.light .stage__bg.on { opacity: 0.16; }
.stage__in, .homefoot { position: relative; z-index: 1; }

/* ---------- Tema geçişi: koyu → açık (4. sn'de tetiklenir) ----------
   Tüm renk taşıyan yüzeylerde yumuşak geçiş */
body.home, .topbar, .burger, .brand, .askbar, .askbar input, .askbar button,
.chip, .homefoot, .drawer, .drawer__x, .drawer__nav a, .drawer__label,
.drawer__foot a, .scrim, .transcript .msg--user, .transcript .msg--bot {
  transition:
    background-color 1000ms var(--ease),
    color 1000ms var(--ease),
    border-color 1000ms var(--ease);
}

/* AÇIK TEMA */
body.home.light { background: var(--bg-light); color: var(--ink); }
body.home.light .topbar {
  background: rgba(247, 246, 243, 0.85);
  border-bottom-color: var(--line);
}
body.home.light .burger { color: var(--ink-soft); }
body.home.light .burger:hover { background: rgba(26, 29, 34, 0.06); color: var(--ink); }
body.home.light .brand { color: var(--ink); }
body.home.light .brand b { color: #7fa30a; }

body.home.light .askbar { background: #fff; border-color: var(--line); }
body.home.light .askbar:focus-within { border-color: rgba(26, 29, 34, 0.25); }
body.home.light .askbar input { color: var(--ink); }
body.home.light .askbar input::placeholder { color: rgba(26, 29, 34, 0.42); }
body.home.light .askbar button { background: var(--accent); color: var(--accent-ink); }
body.home.light .askbar button:hover { background: #b7dd3f; color: var(--accent-ink); }

body.home.light .chip { background: #fff; color: var(--ink-soft); border-color: var(--line); }
body.home.light .chip:hover { background: #efeeea; color: var(--ink); border-color: rgba(26, 29, 34, 0.2); }

body.home.light .transcript .msg--user { background: #fff; color: var(--ink); border: 1px solid var(--line); }
body.home.light .transcript .msg--bot { color: var(--ink-soft); }
body.home.light .transcript .typing i { background: rgba(26, 29, 34, 0.4); }

body.home.light .homefoot { color: rgba(26, 29, 34, 0.45); }

body.home.light .drawer { background: #fff; border-right-color: var(--line); }
body.home.light .drawer__head { border-bottom-color: var(--line); }
body.home.light .drawer__x { color: var(--ink-soft); }
body.home.light .drawer__x:hover { background: rgba(26, 29, 34, 0.06); color: var(--ink); }
body.home.light .drawer__brand { color: var(--ink); }
body.home.light .drawer__label { color: rgba(26, 29, 34, 0.45); }
body.home.light .drawer__nav a { color: var(--ink-soft); }
body.home.light .drawer__nav a:hover { background: rgba(26, 29, 34, 0.05); color: var(--ink); }
body.home.light .drawer__foot { border-top-color: var(--line); }
body.home.light .drawer__foot a { color: rgba(26, 29, 34, 0.55); }
body.home.light .drawer__foot a:hover { color: #7fa30a; }
body.home.light .scrim { background: rgba(26, 29, 34, 0.3); }
