/* Çelikor Global Lojistik — profesyonel açık (light) kurumsal tema */
:root {
  /* Brand */
  --brand: #F26522;
  --brand-hover: #E15612;
  --brand-soft: rgba(242, 101, 34, 0.08);
  --brand-line: rgba(242, 101, 34, 0.28);
  --brand-glow: rgba(242, 101, 34, 0.18);

  /* Neutral palette — light */
  --bg: #F7F8FB;
  --surface: #FFFFFF;
  --surface-2: #F1F4F9;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);

  --ink-100: #0F172A;   /* headings */
  --ink-200: #1E293B;
  --ink-300: #334155;   /* body text */
  --ink-400: #64748B;   /* muted / secondary */
  --ink-500: #94A3B8;   /* labels */
  --ink-600: #CBD5E1;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 14px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);

  --ease: cubic-bezier(.2,.8,.2,1);
  --nav-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }
body {
  font-family: 'Inter', 'SF Pro Text', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink-300);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* -------- Subtle background (clean, professional) -------- */
.cosmic-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(242, 101, 34, 0.045), transparent 60%),
    radial-gradient(ellipse 55% 40% at 0% 100%, rgba(100, 116, 139, 0.05), transparent 70%),
    var(--bg);
}
.cosmic-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, #000 30%, transparent 80%);
  opacity: 1;
}
.stars { display: none; }

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink-100);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.25rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

.brand-text { color: var(--brand); }
.muted { color: var(--ink-400); }

/* -------- Layout -------- */
.container { width: min(1200px, calc(100% - 2.5rem)); margin: 0 auto; }
.narrow { max-width: 860px; }
section { padding: clamp(56px, 8vw, 120px) 0; position: relative; }

/* -------- Navbar -------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  width: 100%;
}
.nav-brand {
  display: flex; align-items: center;
  text-decoration: none;
  padding-left: 12px;  /* küçük sağ kayma, nefes alsın */
}
.nav-brand img { height: 48px; width: auto; display: block; transition: transform 0.2s var(--ease); }
.nav-brand:hover img { transform: scale(1.02); }

.nav-links { display: flex; gap: 2px; align-items: center; list-style: none; }
.nav-links a {
  color: var(--ink-300); text-decoration: none;
  padding: 9px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav-links a:hover { color: var(--ink-100); background: rgba(15, 23, 42, 0.04); }
.nav-links a.active {
  color: var(--ink-100);
  background: rgba(15, 23, 42, 0.06);
}
.nav-cta {
  padding: 9px 18px !important;
  background: var(--brand) !important;
  color: #fff !important; font-weight: 600 !important;
  box-shadow: 0 1px 2px rgba(242, 101, 34, 0.3);
}
.nav-cta:hover { background: var(--brand-hover) !important; box-shadow: 0 4px 12px rgba(242,101,34,0.35); }
.burger {
  display: none; background: transparent; border: 0;
  color: var(--ink-100); font-size: 22px; cursor: pointer; padding: 6px;
}

.nav-drawer { display: none; }
@media (max-width: 1060px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-drawer {
    display: flex; flex-direction: column; gap: 2px;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px;
    box-shadow: var(--shadow);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: 0.2s var(--ease);
  }
  .nav-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-drawer a {
    color: var(--ink-300); text-decoration: none;
    padding: 12px 14px; border-radius: 8px; font-size: 15px; font-weight: 500;
  }
  .nav-drawer a:hover, .nav-drawer a.active { background: rgba(15, 23, 42, 0.04); color: var(--ink-100); }
  .nav-drawer .nav-cta { background: var(--brand) !important; color: #fff !important; text-align: center; margin-top: 6px; }
}

/* -------- Hero -------- */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 56px); padding-bottom: 56px;
  position: relative;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 1000px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  color: var(--brand);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 24px;
}
.kicker .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }

.hero h1 { margin-bottom: 20px; color: var(--ink-100); }
.hero p.lede {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  color: var(--ink-400); margin-bottom: 36px; max-width: 580px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  text-decoration: none; cursor: pointer; border: 0;
  transition: 0.18s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 1px 2px rgba(242,101,34,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(242,101,34,0.28); }
.btn-ghost {
  background: var(--surface); color: var(--ink-100);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--border-strong); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn i { font-size: 16px; }
.btn:hover i.bi-arrow-right { transform: translateX(3px); }
.btn i.bi-arrow-right { transition: transform 0.2s var(--ease); }

/* Hero visual — layered dashboard card */
.hero-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  display: flex; align-items: center; justify-content: center;
}
.dash-card {
  width: 100%; height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px; position: relative; overflow: hidden;
}
.dash-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, transparent 70%);
}
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-dot-row { display: flex; gap: 6px; }
.dash-dot-row span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ink-600);
}
.dash-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--ink-400); font-weight: 500;
  padding: 4px 10px; border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.dash-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E; box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
}
.dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.dash-stat {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 12px;
}
.dash-stat .lbl { font-size: 10px; color: var(--ink-400); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.dash-stat .val { font-size: 22px; font-weight: 700; color: var(--ink-100); font-family: 'Space Grotesk', sans-serif; margin-top: 6px; letter-spacing: -0.02em; }
.dash-stat .chg { font-size: 11px; margin-top: 4px; color: #16A34A; font-weight: 600; }
.dash-stat .chg.down { color: var(--brand); }
.dash-bars {
  display: flex; gap: 5px; align-items: flex-end;
  height: 100px; padding: 14px 12px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px;
}
.dash-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--brand), rgba(242,101,34,0.35));
  border-radius: 3px 3px 0 0;
}
.dash-rows { display: flex; flex-direction: column; gap: 8px; }
.dash-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--ink-400);
  padding: 8px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.dash-row i { color: var(--brand); font-size: 13px; }
.dash-row span.code { font-family: 'SF Mono', ui-monospace, monospace; color: var(--ink-100); font-weight: 500; }
.dash-row span.status {
  margin-left: auto; font-size: 10px;
  padding: 2px 8px; border-radius: 4px;
  background: rgba(34,197,94,0.12); color: #16A34A;
  font-weight: 600;
}

/* -------- Stats row -------- */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 720px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px 0; } }
.stats-row .stat { padding: 0 28px; position: relative; }
.stats-row .stat + .stat::before {
  content: ''; position: absolute; top: 10%; bottom: 10%; left: 0;
  width: 1px; background: var(--border);
}
@media (max-width: 720px) { .stats-row .stat + .stat::before { display: none; } }
.stat-value {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem); line-height: 1;
  color: var(--ink-100); letter-spacing: -0.02em;
}
.stat-label { color: var(--ink-400); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-top: 8px; }

/* -------- Section head -------- */
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .kicker { margin-bottom: 16px; }
.section-head p {
  color: var(--ink-400); max-width: 680px; margin: 18px auto 0;
  font-size: 1rem;
}

/* -------- Feature grid -------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .feature-grid, .feature-grid.cols-2 { grid-template-columns: 1fr; } }

.feature-card {
  padding: 32px 28px; border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: 0.2s var(--ease);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-line);
  box-shadow: var(--shadow);
}
.feat-icon {
  width: 46px; height: 46px; border-radius: var(--radius);
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  color: var(--brand); font-size: 22px;
}
.feature-card h3 { color: var(--ink-100); margin-bottom: 10px; }
.feature-card p { color: var(--ink-400); font-size: 14.5px; flex: 1; line-height: 1.65; }
.feat-link {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand); font-weight: 600; font-size: 13.5px;
}
.feat-link i { transition: transform 0.2s var(--ease); }
.feature-card:hover .feat-link i { transform: translateX(4px); }

/* -------- Split sections -------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { margin-bottom: 18px; color: var(--ink-100); }
.split-text p { color: var(--ink-400); margin-bottom: 14px; }
.split-text p strong { color: var(--ink-100); font-weight: 600; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 18px 0 26px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--ink-300); font-size: 14.5px; line-height: 1.55;
}
.check-list i {
  color: var(--brand); flex-shrink: 0; margin-top: 3px; font-size: 15px;
}

/* -------- Locations / Maps -------- */
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 960px) { .location-grid { grid-template-columns: 1fr; } }
.location-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: 0.2s var(--ease);
}
.location-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow); }
.location-card iframe { width: 100%; height: 220px; border: 0; filter: grayscale(0.15); }
.location-body { padding: 22px; }
.location-tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  color: var(--brand);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px;
}
.location-body h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--ink-100); }
.location-body p { color: var(--ink-400); font-size: 13.5px; line-height: 1.6; }
.location-body p strong { color: var(--ink-100); font-weight: 600; }

/* -------- FAQ -------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: 0.2s var(--ease);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: var(--brand-line); box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 20px 24px;
  font-size: 15px; font-weight: 600; color: var(--ink-100);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\F282'; font-family: 'bootstrap-icons'; color: var(--brand);
  transition: transform 0.25s var(--ease); font-size: 18px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-content { padding: 0 24px 20px; color: var(--ink-400); font-size: 14.5px; line-height: 1.7; }

/* -------- Contact CTA -------- */
.cta-card {
  padding: clamp(40px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(242,101,34,0.08), transparent 60%),
    linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center; position: relative;
}
.cta-card h2 { margin-bottom: 16px; color: var(--ink-100); }
.cta-card p { color: var(--ink-400); margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }

/* -------- Footer -------- */
.footer {
  margin-top: 40px;
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-400); margin-bottom: 16px; font-weight: 600;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer a {
  color: var(--ink-300); text-decoration: none; font-size: 14px;
  transition: color 0.18s ease;
}
.footer a:hover { color: var(--brand); }
.footer-brand img { height: 42px; margin-bottom: 14px; display: block; }
.footer-brand p { color: var(--ink-400); font-size: 13.5px; margin-bottom: 20px; max-width: 340px; line-height: 1.6; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--ink-400); font-size: 16px;
  transition: 0.18s var(--ease);
}
.socials a:hover { background: var(--brand-soft); color: var(--brand); border-color: var(--brand-line); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  color: var(--ink-500); font-size: 12.5px;
}

/* -------- Page hero (sub-pages) -------- */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 56px;
  text-align: center; position: relative;
}
.page-hero h1 { margin-bottom: 16px; color: var(--ink-100); }
.page-hero .lede { color: var(--ink-400); font-size: 1.05rem; max-width: 680px; margin: 0 auto; }
.page-hero .breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-400); font-size: 13px; margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--ink-300); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--brand); }
.page-hero .breadcrumb i { font-size: 11px; color: var(--ink-500); }

/* -------- Prose (sub-page content) -------- */
.prose h2 { margin: 44px 0 16px; color: var(--ink-100); }
.prose h3 { margin: 32px 0 12px; color: var(--ink-100); font-weight: 600; font-size: 1.25rem; }
.prose p { color: var(--ink-300); margin-bottom: 16px; font-size: 15.5px; line-height: 1.75; }
.prose ul {
  color: var(--ink-300); list-style: none; padding-left: 0;
  margin: 14px 0 22px; display: flex; flex-direction: column; gap: 8px;
}
.prose ul li {
  padding: 12px 16px 12px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative; font-size: 14.5px;
}
.prose ul li::before {
  content: '\F26A'; font-family: 'bootstrap-icons';
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--brand); font-size: 15px;
}
.prose a { color: var(--brand); font-weight: 500; }
.prose strong { color: var(--ink-100); }

/* Price table */
.price-table {
  width: 100%; border-collapse: collapse; margin: 22px 0;
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.price-table th, .price-table td { padding: 14px 20px; text-align: left; font-size: 14px; }
.price-table thead { background: var(--surface-2); border-bottom: 1px solid var(--border); }
.price-table th { color: var(--ink-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; }
.price-table tbody tr { border-top: 1px solid var(--border); }
.price-table tbody tr:hover { background: var(--surface-2); }
.price-table td strong { color: var(--ink-100); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }

/* Utility */
.flex { display: flex; }
.between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

/* Whatsapp floating */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  color: #fff; font-size: 26px;
  display: grid; place-items: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.45); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--ink-600); border-radius: 10px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-500); }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Text selection */
::selection { background: var(--brand); color: #fff; }

/* Meta theme helper */
html { color-scheme: light; }
