/* DETAIL - auto detailing & car care starter. Near-black gloss, electric-blue
   brand, candy-red accent. Sora display / Inter body. Tokens feed the CMS blocks. */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --t-bg: #0c0d0f;
  --t-bg-alt: #15171b;
  --t-fg: #e9edf2;
  --t-muted: #9aa3b0;
  --t-brand: #2f7bff;
  --t-brand-fg: #06122b;
  --t-accent: #e23b3b;
  --t-dark-bg: #000000;
  --t-dark-fg: #e9edf2;
  --t-border: #23262c;
  --t-radius: 13px;
  --t-font-display: "Sora", system-ui, sans-serif;
  --t-font-body: "Inter", system-ui, sans-serif;
  --t-maxw: 1140px;
  --t-shadow: 0 22px 60px -24px rgba(0, 0, 0, .85);
  --t-display-weight: 800;
  --t-display-tracking: -0.025em;
}

* { box-sizing: border-box; }
body {
  margin: 0; font-family: var(--t-font-body); color: var(--t-fg);
  background:
    radial-gradient(880px 480px at 84% -10%, rgba(47, 123, 255, .20), transparent 60%),
    radial-gradient(620px 420px at 6% 4%, rgba(226, 59, 59, .12), transparent 55%),
    var(--t-bg);
  -webkit-font-smoothing: antialiased;
}

/* header */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(12, 13, 15, .84);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--t-border);
}
.site-header .bar {
  max-width: var(--t-maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 26px;
}
.logo {
  font-family: var(--t-font-display); font-weight: 800; font-size: 22px;
  color: var(--t-fg); text-decoration: none; letter-spacing: -.025em;
}
.logo .ember { color: var(--t-accent); }
.site-nav { display: flex; gap: 24px; margin-left: auto; }
.site-nav a {
  color: var(--t-muted); text-decoration: none; font-weight: 500; font-size: 15px;
}
.site-nav a:hover { color: var(--t-fg); }
.header-cta {
  background: linear-gradient(135deg, var(--t-brand), #1d5fe0);
  color: #fff; font-family: var(--t-font-display); font-weight: 600; font-size: 14.5px;
  padding: 10px 20px; border-radius: 11px; text-decoration: none;
  box-shadow: 0 10px 28px -10px var(--t-brand);
}
.header-cta:hover { filter: brightness(1.08); }
@media (max-width: 760px) { .site-nav { display: none; } }

/* footer */
.site-footer { background: var(--t-dark-bg); color: var(--t-dark-fg); border-top: 1px solid var(--t-border); }
.site-footer .inner {
  max-width: var(--t-maxw); margin: 0 auto; padding: 46px 24px;
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.site-footer p { margin: 0; color: #7e8794; font-size: 14px; }
.site-footer .foot-logo {
  font-family: var(--t-font-display); font-weight: 800; font-size: 19px; color: var(--t-dark-fg);
}
.site-footer .foot-logo .ember { color: var(--t-accent); }
