/* ============ Isaiah Bascope Car Detailing — Shared styles ============ */
:root {
  --bg: #06080d;
  --bg-2: #0b0f17;
  --bg-3: #11161f;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --ink: #ffffff;
  --ink-2: rgba(255,255,255,0.72);
  --ink-3: rgba(255,255,255,0.45);
  --blue: #1d8bff;
  --blue-2: #4ea7ff;
  --blue-deep: #0b5fcc;
  --blue-glow: rgba(29,139,255,0.35);
  --radius: 4px;
  --radius-lg: 10px;
  --max: 1280px;
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 20px 40px -20px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle ambient noise + radial */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(29,139,255,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(29,139,255,0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

/* ============ Type ============ */
.display {
  font-family: 'Oswald', 'Helvetica Neue', sans-serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.95;
}
.display-md {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue-2);
  font-weight: 600;
}
.eyebrow-mute {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.tagline {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 12px;
  color: var(--ink-2);
}
.tagline .dot { color: var(--blue); margin: 0 6px; }
.blue { color: var(--blue); }
.muted { color: var(--ink-2); }
.subtle { color: var(--ink-3); }

h1, h2, h3 { margin: 0; }
p { margin: 0 0 1em; color: var(--ink-2); }

/* ============ Header / Nav ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6,8,13,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}
.brand {
  display: flex; align-items: center; gap: 0;
  text-decoration: none;
}
.brand img.brand-logo {
  height: 76px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px var(--blue-glow));
  transition: filter 0.3s ease;
}
.brand:hover img.brand-logo { filter: drop-shadow(0 0 20px var(--blue-glow)); }
@media (max-width: 540px) {
  .brand img.brand-logo { height: 56px; }
}
.site-footer .brand img.brand-logo { height: 100px; }
.nav-links {
  display: flex; gap: 4px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  padding: 10px 14px;
  color: var(--ink-2);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--blue);
  margin-top: 6px;
  box-shadow: 0 0 8px var(--blue-glow);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 8px 24px -8px var(--blue-glow);
  transition: transform 0.15s, background 0.2s;
}
.nav-cta:hover { background: var(--blue-2); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }

.menu-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 8px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1) inset, 0 14px 40px -16px var(--blue-glow);
}
.btn-primary:hover { background: var(--blue-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-2); }
.btn svg { width: 14px; height: 14px; }

/* ============ Sections ============ */
section { position: relative; z-index: 1; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.section-head h2 { font-size: clamp(36px, 5vw, 64px); }

/* ============ Pillar trio (refined/restored/protected) ============ */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pillar {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  padding: 28px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.pillar::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.5;
}
.pillar-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--blue);
  margin-bottom: 16px;
  background: radial-gradient(circle at center, rgba(29,139,255,0.15), transparent);
}
.pillar-icon svg { width: 20px; height: 20px; }
.pillar h4 {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.pillar small {
  font-size: 10.5px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--blue-2); font-weight: 600;
}

/* ============ Footer ============ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 24px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.footer-grid h5 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; font-weight: 600;
  color: var(--ink-3); margin: 0 0 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-grid a { color: var(--ink-2); font-size: 14px; }
.footer-grid a:hover { color: var(--blue-2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 12px; color: var(--ink-3);
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* Angled blue accent stripe (decorative) */
.stripe {
  position: absolute;
  width: 2px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--blue), transparent);
  transform: skewX(-18deg);
  box-shadow: 0 0 12px var(--blue-glow);
}

/* Responsive */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }

  /* Mobile menu: hamburger reveals a dropdown over the page */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(6,8,13,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    gap: 0;
    z-index: 49;
  }
  .nav-links.open a {
    padding: 16px 12px;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav-links.open a:last-of-type { border-bottom: 0; }
  .nav-links.open a.active::after { display: none; }
  .nav-links.open a.active { color: var(--blue-2); }

  /* Footer-bottom stacks on narrow screens so the 3 items don't crash into each other */
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ Forms ============ */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.field input, .field select, .field textarea {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--bg-3);
  box-shadow: 0 0 0 3px rgba(29,139,255,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ============ Media: video + image placeholders ============ */
/* A unified media frame so video and placeholder share the same visual language. */
.media {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  isolation: isolate;
}
.media > video,
.media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  /* Subtle global color-grade: deepen blacks, cool the highlights */
  filter: contrast(1.05) saturate(1.05) brightness(0.96);
  transition: transform 0.8s ease, filter 0.4s ease;
}
.media:hover > video,
.media:hover > img { transform: scale(1.04); }

/* Falls behind real media. If no <video>/<img> are present, this is what you see. */
.media-fallback {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, var(--bg-2), var(--bg-3));
  color: var(--ink-3);
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  z-index: 0;
}
.media-fallback::before {
  content: ""; position: absolute; inset: 12px;
  border: 1px dashed var(--line-strong);
  pointer-events: none;
}
.media-fallback .drop-hint {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--ink-3);
  opacity: 0.7;
  margin-top: 8px;
}
.media-fallback .icon {
  width: 28px; height: 28px;
  border-radius: 50%; border: 1px solid var(--blue);
  display: grid; place-items: center;
  color: var(--blue);
  margin: 0 auto 12px;
  background: radial-gradient(circle at center, rgba(29,139,255,0.18), transparent);
}

/* Soft vignette + bottom gradient for legibility of overlay text */
.media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,8,13,0.78) 100%);
  pointer-events: none;
  z-index: 1;
}
.media-overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 20px;
  z-index: 2;
  display: flex; align-items: end; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  color: var(--ink);
}
.media-overlay h4 {
  font-family: 'Oswald', sans-serif; font-style: italic; font-weight: 700;
  font-size: 18px; text-transform: uppercase; letter-spacing: 0.03em;
  margin: 0;
}
.media-overlay small {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600;
  display: block; margin-top: 4px;
}
.media-overlay .badge {
  font-family: 'Oswald', sans-serif; font-style: italic; font-weight: 600;
  padding: 4px 10px; border: 1px solid var(--blue); border-radius: 999px;
  color: var(--blue-2); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  background: rgba(29,139,255,0.08);
  backdrop-filter: blur(6px);
}

/* "Play" tag — sits in the corner of any media tile that has motion */
.media-play {
  position: absolute; top: 14px; left: 14px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Oswald', sans-serif; font-style: italic; font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink);
  padding: 6px 10px 6px 8px;
  background: rgba(6,8,13,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.media-play::before {
  content: ""; width: 0; height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--blue);
  filter: drop-shadow(0 0 4px var(--blue-glow));
}

/* ============ Film grain overlay (whole page) ============ */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============ Shimmer / light sweep ============ */
@keyframes shimmer-sweep {
  0% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  20% { opacity: 0.7; }
  100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}
.shimmer { position: relative; overflow: hidden; }
.shimmer::after {
  content: ""; position: absolute; top: 0; left: 0; bottom: 0;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: shimmer-sweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

/* ============ Scroll reveals ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.65s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .shimmer::after { display: none; }
  body::after { display: none; }
  .media:hover > video, .media:hover > img { transform: none; }
}

/* ============ Macro detail strip ============ */
/* Tight crops of textures: paint, leather, glass, wheel. Used as visual rhythm
   between content sections — borrows imagery without needing context. */
.macro-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.macro-strip .macro {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: var(--bg-2);
}
.macro-strip .macro > video,
.macro-strip .macro > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.05) brightness(0.94);
}
.macro-strip .macro .macro-fallback {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 8px, transparent 8px 16px),
    linear-gradient(180deg, var(--bg-2), var(--bg-3));
  display: grid; place-items: end start;
  padding: 14px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-3);
}
.macro-strip .macro::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 30%, transparent 30%, rgba(6,8,13,0.45) 100%);
  pointer-events: none;
}
.macro-strip .macro .label {
  position: absolute; bottom: 12px; left: 12px;
  font-family: 'Oswald', sans-serif; font-style: italic; font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.macro-strip .macro .label .dot { color: var(--blue); }

@media (max-width: 900px) {
  .macro-strip { grid-template-columns: repeat(2, 1fr); }
  .macro-strip .macro:nth-child(n+5) { display: none; }
}

/* ============ Marquee (vehicle showcase) ============ */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  padding: 28px 0;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex; gap: 16px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  position: relative;
  flex: 0 0 auto;
  width: 320px; height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.marquee-item > video,
.marquee-item > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(1.05) brightness(0.96);
}
.marquee-item .meta {
  position: absolute; left: 14px; bottom: 12px; right: 14px;
  z-index: 2;
  display: flex; align-items: end; justify-content: space-between;
  font-family: 'Oswald', sans-serif; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink);
}
.marquee-item .meta strong { font-size: 14px; }
.marquee-item .meta small {
  font-size: 9.5px; letter-spacing: 0.28em; color: var(--ink-2); font-weight: 600;
}
.marquee-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,8,13,0.85) 100%);
  pointer-events: none;
}
.marquee-item .marquee-fallback {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 10px, transparent 10px 20px),
    linear-gradient(180deg, var(--bg-2), var(--bg-3));
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.24em;
  color: var(--ink-3);
}

/* ============ Live status pill ============ */
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(6,8,13,0.55);
  backdrop-filter: blur(8px);
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-2);
}
.live-pill .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46,204,113,0.7);
  animation: pulse-dot 2s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.7); }
  100% { box-shadow: 0 0 0 12px rgba(46,204,113,0); }
}

/* ============ Cursor spotlight (hero) ============ */
.cursor-spot {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(280px circle at var(--x, 50%) var(--y, 50%), rgba(29,139,255,0.18), transparent 60%);
  mix-blend-mode: screen;
}

/* ============ Reusable image placeholder (legacy) ============ */
.placeholder {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.placeholder::before {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid var(--line);
  pointer-events: none;
}
