/* ============================================================
   TUNING GARAGE — Prototype Stylesheet
   Aesthetic: NFS Underground / Tuner-Hub / Dark Neon
   ============================================================ */

:root {
  /* surface */
  --bg:            #050807;
  --bg-elevated:   #0a0f0c;
  --surface:       #0e1612;
  --surface-2:     #131c17;
  --surface-3:     #18241e;

  /* line */
  --border:        #1a2820;
  --border-bright: #2a3d33;
  --border-glow:   rgba(0, 255, 92, 0.18);

  /* brand */
  --green:         #00ff5c;
  --green-2:       #00b341;
  --green-dim:     #007a2c;
  --green-glow:    rgba(0, 255, 92, 0.45);
  --blue:          #00d4ff;
  --blue-glow:     rgba(0, 212, 255, 0.45);
  --gold:          #ffd84d;
  --gold-glow:     rgba(255, 216, 77, 0.45);
  --red:           #ff3838;

  /* text */
  --text:          #e8efe9;
  --text-dim:      #8a9890;
  --text-mute:     #4f5b54;

  /* type */
  --f-display: 'Anton', 'Bebas Neue', sans-serif;
  --f-ui:      'Rajdhani', 'Inter Tight', sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* radii / shadow */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 6px;

  /* timing */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: var(--f-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
.mono { font-family: var(--f-mono); font-weight: 500; letter-spacing: 0.04em; }
.text-green { color: var(--green); }
.text-blue  { color: var(--blue); }
.text-gold  { color: var(--gold); }

/* ============================================================
   AMBIENT BACKGROUNDS
   ============================================================ */
.bg-grid {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,255,92,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,92,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 90%);
}
.bg-vignette {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 20% 0%, rgba(0,255,92,0.10), transparent 60%),
    radial-gradient(ellipse 40% 30% at 100% 20%, rgba(0,212,255,0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255,216,77,0.04), transparent 60%);
}
.bg-scanlines {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,0.012) 2px 3px);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(to bottom, rgba(5,8,7,0.96) 0%, rgba(5,8,7,0.85) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  max-width: 1640px;
  margin: 0 auto;
  padding: 16px 32px;
}
.header-strip {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%, var(--green) 8%, var(--green) 12%,
    transparent 12.5%, transparent 18%, var(--blue) 18%, var(--blue) 22%,
    transparent 22.5%, transparent 80%, var(--gold) 80%, var(--gold) 83%,
    transparent 83.5%);
  opacity: 0.4;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark { display: inline-flex; filter: drop-shadow(0 0 14px var(--green-glow)); }
.brand-text {
  display: flex; flex-direction: column;
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 0.85;
  letter-spacing: 0.04em;
}
.brand-line { color: var(--text); }
.brand-line--alt { color: var(--green); }
.brand-tag {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  border-left: 1px solid var(--border-bright);
  padding-left: 10px;
  margin-left: 6px;
}

/* Primary nav */
.primary-nav {
  display: flex;
  gap: 4px;
  justify-self: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 4px;
}
.nav-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-radius: var(--r-sm);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: var(--text); background: var(--surface-2); }
.nav-link.is-active {
  color: var(--green);
  background: linear-gradient(180deg, rgba(0,255,92,0.10), rgba(0,255,92,0.02));
  box-shadow: inset 0 -2px 0 var(--green);
}
.nav-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
}
.nav-pill {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: var(--r-sm);
  background: var(--red);
  color: #fff;
  letter-spacing: 0.1em;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-dim);
  transition: all .2s var(--ease);
}
.icon-btn:hover { color: var(--green); border-color: var(--border-bright); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-bright); }
.btn-primary {
  position: relative;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-2) 100%);
  color: #001a08;
  border: 1px solid var(--green);
  box-shadow:
    0 0 0 1px rgba(0,255,92,0.2),
    0 8px 24px -8px var(--green-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(0,255,92,0.4),
    0 12px 32px -8px var(--green-glow);
}
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 14px 24px; font-size: 14px; }
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #001a08;
  position: relative;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%;
  background: rgba(0,26,8,0.4);
  animation: ping 1.6s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(.8); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 32px 56px;
  max-width: 1640px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-stripe {
  position: absolute;
  height: 240px;
  transform-origin: left center;
  opacity: 0.06;
  border-radius: 200px;
  filter: blur(60px);
}
.hero-stripe--1 { top: -40px; left: -10%; right: 40%; background: var(--green); transform: rotate(-6deg); }
.hero-stripe--2 { top: 80px; left: 30%; right: -10%; background: var(--blue); transform: rotate(4deg); opacity: 0.04; }
.hero-stripe--3 { top: 200px; left: 60%; right: -5%; background: var(--gold); transform: rotate(-2deg); opacity: 0.03; }

.hero-inner { position: relative; max-width: 1100px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.eyebrow-tick {
  width: 24px; height: 1px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-transform: uppercase;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px;
  position: relative;
}
.hero-title-1 { color: var(--text); }
.hero-title-2 {
  color: var(--green);
  text-shadow:
    0 0 30px var(--green-glow),
    0 0 70px rgba(0,255,92,0.2);
}
.hero-title-accent {
  font-size: 0.55em;
  color: var(--gold);
  margin-left: auto;
  align-self: flex-end;
  font-family: var(--f-mono);
}
.hero-sub {
  max-width: 620px;
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Search */
.search-form {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  max-width: 820px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 6px 6px 6px 18px;
  margin-bottom: 56px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.search-form:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,255,92,0.08), 0 16px 48px -16px var(--green-glow);
}
.search-icon { color: var(--text-dim); display: inline-flex; }
.search-input {
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--f-ui);
  font-size: 15px;
  color: var(--text);
  padding: 14px 0;
}
.search-input::placeholder { color: var(--text-mute); }
.search-kbd {
  display: inline-flex;
  padding: 4px;
}
.search-kbd kbd {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-dim);
  background: var(--surface-3);
  border: 1px solid var(--border-bright);
  border-bottom-width: 2px;
  border-radius: var(--r-sm);
  padding: 2px 8px;
  min-width: 22px;
  text-align: center;
}
.search-submit {
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 22px;
  background: var(--green);
  color: #001a08;
  border-radius: var(--r-md);
  transition: all .2s var(--ease);
}
.search-submit:hover { background: #4dff8c; }

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 56px;
  list-style: none;
}
.hero-stats li {
  display: flex; flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--border-bright);
  padding-left: 16px;
}
.hero-stats li:first-child { border-left: 2px solid var(--green); }
.stat-num {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--text);
  display: inline-flex; align-items: center; gap: 8px;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(255,56,56,0.6);
  animation: pulse 1.4s ease-in-out infinite;
}

/* ============================================================
   TOOLBAR
   ============================================================ */
.toolbar {
  position: sticky; top: 71px; z-index: 40;
  background: rgba(10,15,12,0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.toolbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  max-width: 1640px;
  margin: 0 auto;
  padding: 14px 32px;
  flex-wrap: wrap;
}
.filter-pills {
  display: flex; gap: 6px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  transition: all .15s var(--ease);
}
.pill:hover { color: var(--text); border-color: var(--border-bright); }
.pill.is-active {
  color: #001a08;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(0,255,92,0.2);
}
.pill-count {
  font-family: var(--f-mono);
  font-size: 10px;
  opacity: 0.7;
  font-weight: 500;
}
.pill.is-active .pill-count { opacity: 0.6; color: #002211; }

.toolbar-controls { display: flex; align-items: center; gap: 16px; }
.select-wrap {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 6px 10px;
}
.select-label { font-size: 10px; color: var(--text-mute); }
.select {
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: 0;
  padding: 4px 0 4px 4px;
  cursor: pointer;
}
.select option { background: var(--surface); color: var(--text); }

.view-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 3px;
}
.view-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 28px;
  color: var(--text-mute);
  border-radius: var(--r-sm);
  transition: all .15s var(--ease);
}
.view-btn:hover { color: var(--text); }
.view-btn.is-active { color: var(--green); background: var(--surface-2); }

/* ============================================================
   FEATURED BANNER
   ============================================================ */
.featured {
  max-width: 1640px;
  margin: 56px auto 0;
  padding: 0 32px;
}
.featured-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 60%, var(--surface-3) 100%);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px 56px;
  align-items: end;
}
.featured-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(0,212,255,0.18), transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 30%, rgba(0,255,92,0.12), transparent 60%);
  pointer-events: none;
}
.featured-card::after {
  content: ''; position: absolute;
  right: -120px; top: -40px;
  width: 480px; height: 480px;
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(255,216,77,0.18) 50deg, transparent 100deg);
  filter: blur(40px);
  pointer-events: none;
}
.featured-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, transparent 49.5%, rgba(0,255,92,0.04) 49.5%, rgba(0,255,92,0.04) 50.5%, transparent 50.5%);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}
.featured-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
  position: relative;
  grid-column: 1 / -1;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  text-transform: uppercase;
}
.badge-gold {
  color: var(--gold);
  background: rgba(255,216,77,0.10);
  border: 1px solid rgba(255,216,77,0.3);
  box-shadow: inset 0 0 12px rgba(255,216,77,0.1);
}
.featured-id { font-size: 10px; color: var(--text-mute); }
.featured-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  color: var(--text);
  text-transform: uppercase;
  position: relative;
  grid-column: 1;
}
.featured-sub {
  display: block;
  font-family: var(--f-ui);
  font-weight: 500;
  font-size: 0.32em;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-top: 8px;
  text-transform: none;
}
.featured-desc {
  grid-column: 1;
  font-size: 15px;
  color: var(--text-dim);
  max-width: 560px;
  margin-top: 12px;
  position: relative;
}
.featured-desc strong { color: var(--text); font-weight: 600; }
.featured-actions {
  grid-column: 1;
  display: flex; gap: 12px;
  margin-top: 24px;
  position: relative;
}
.featured-stats {
  grid-column: 2;
  grid-row: 2 / span 3;
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 24px 28px;
  background: rgba(5,8,7,0.6);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--text);
  position: relative;
  min-width: 140px;
}
.featured-stats span {
  display: inline-flex; align-items: center; gap: 8px;
}
.featured-stats span:nth-child(1) { color: var(--gold); }
.featured-stats span:nth-child(2) { color: var(--text); }
.featured-stats span:nth-child(3) { color: var(--green); }

/* ============================================================
   GRID
   ============================================================ */
.grid-section {
  max-width: 1640px;
  margin: 0 auto;
  padding: 80px 32px 120px;
}
.grid-header {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.grid-title {
  font-family: var(--f-display);
  font-size: 36px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  display: inline-flex; align-items: baseline; gap: 16px;
}
.section-num { font-size: 14px; color: var(--green); letter-spacing: 0.1em; }
.grid-more {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-bright);
  padding-bottom: 4px;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.grid-more:hover { color: var(--green); border-color: var(--green); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}

/* ============================================================
   CREATION CARD
   ============================================================ */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform .25s var(--ease),
    border-color .25s var(--ease),
    box-shadow .25s var(--ease);
  isolation: isolate;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow:
    0 0 0 1px var(--border-glow),
    0 24px 48px -16px rgba(0,0,0,0.7),
    0 8px 32px -8px var(--green-glow);
}
.card--accent-blue:hover {
  border-color: rgba(0,212,255,0.4);
  box-shadow:
    0 0 0 1px rgba(0,212,255,0.3),
    0 24px 48px -16px rgba(0,0,0,0.7),
    0 8px 32px -8px var(--blue-glow);
}
.card--accent-gold:hover {
  border-color: rgba(255,216,77,0.4);
  box-shadow:
    0 0 0 1px rgba(255,216,77,0.3),
    0 24px 48px -16px rgba(0,0,0,0.7),
    0 8px 32px -8px var(--gold-glow);
}

.card-thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: linear-gradient(135deg, #0e1612 0%, #131c17 50%, #050807 100%);
}
.card-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,255,92,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,92,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
}
.card--accent-blue .card-thumb::before {
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
}
.card--accent-gold .card-thumb::before {
  background-image:
    linear-gradient(rgba(255,216,77,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,216,77,0.04) 1px, transparent 1px);
}
.card-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 110%, var(--card-glow, var(--green-glow)) 0%, transparent 60%);
  opacity: 0.5;
  transition: opacity .3s var(--ease);
}
.card:hover .card-thumb::after { opacity: 1; }

/* the abstract "car silhouette" – a stylized racing-shape svg */
.card-art {
  position: absolute; inset: 0;
  display: flex; align-items: end; justify-content: center;
  padding-bottom: 18%;
}
.card-art svg {
  width: 78%;
  height: auto;
  filter:
    drop-shadow(0 4px 12px rgba(0,0,0,0.6))
    drop-shadow(0 0 24px var(--card-glow, var(--green-glow)));
  transition: transform .4s var(--ease);
}
.card:hover .card-art svg { transform: translateY(-4px) scale(1.04); }

.card-corner {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  display: flex; flex-direction: column; gap: 2px;
}
.card-corner-id { color: var(--green); }
.card--accent-blue .card-corner-id { color: var(--blue); }
.card--accent-gold .card-corner-id { color: var(--gold); }

.card-category {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text);
  background: rgba(5,8,7,0.85);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-sm);
  padding: 4px 8px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.card-premium {
  position: absolute; bottom: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(5,8,7,0.85);
  border: 1px solid rgba(255,216,77,0.4);
  border-radius: var(--r-sm);
  padding: 4px 8px;
  backdrop-filter: blur(8px);
}

.card-hover-cta {
  position: absolute; left: 12px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(5,8,7,0.85);
  border: 1px solid rgba(0,255,92,0.4);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .25s var(--ease);
}
.card--accent-blue .card-hover-cta { color: var(--blue); border-color: rgba(0,212,255,0.4); }
.card--accent-gold .card-hover-cta { color: var(--gold); border-color: rgba(255,216,77,0.4); }
.card:hover .card-hover-cta { opacity: 1; transform: translateY(0); }

.card-body {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.card-title {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-car {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.card-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.card-author {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--text);
}
.card-author-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 10px;
  color: #001a08;
  flex-shrink: 0;
}
.card--accent-blue .card-author-dot { background: linear-gradient(135deg, var(--blue), #0080a0); color: #001022; }
.card--accent-gold .card-author-dot { background: linear-gradient(135deg, var(--gold), #c79a00); color: #221700; }

.card-stats {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-dim);
}
.card-stat {
  display: inline-flex; align-items: center; gap: 4px;
}
.card-stat svg { opacity: 0.7; }

/* small "scanline sweep" anim on hover */
.card::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(0,255,92,0.04) 50%, transparent 100%);
  pointer-events: none;
  transition: left .8s var(--ease);
  z-index: 1;
}
.card:hover::after { left: 100%; }

/* Load more */
.grid-loadmore {
  display: flex; justify-content: center;
  margin-top: 48px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #020403 100%);
  margin-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 56px;
  max-width: 1640px;
  margin: 0 auto;
  padding: 72px 32px 48px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-tag {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 6px; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  transition: all .2s var(--ease);
}
.footer-socials a:hover { color: var(--green); border-color: var(--border-bright); }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-h {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color .15s var(--ease);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  max-width: 1640px;
  margin: 0 auto;
  padding: 24px 32px 40px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .primary-nav { gap: 0; }
  .header-inner { gap: 24px; }
}
@media (max-width: 1100px) {
  .header-inner { gap: 16px; padding: 14px 24px; }
  .primary-nav { padding: 3px; }
  .nav-link { padding: 7px 11px; font-size: 12px; letter-spacing: 0.05em; }
  .brand-tag { display: none; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-stats { grid-column: 1; grid-row: auto; flex-direction: row; justify-content: space-around; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .header-actions .btn-ghost { display: none; }
  .header-actions .btn-primary { padding: 9px 14px; font-size: 12px; }
  .header-actions .btn-primary .pulse-dot { display: none; }
  .primary-nav { background: transparent; border: 0; }
  .nav-link { padding: 6px 9px; font-size: 11px; }
  .nav-link.is-active { box-shadow: inset 0 -2px 0 var(--green); background: transparent; }
}
@media (max-width: 720px) {
  .header-inner {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    padding: 10px 16px;
    row-gap: 8px;
  }
  .brand { grid-column: 1; grid-row: 1; }
  .header-actions { grid-column: 2; grid-row: 1; gap: 6px; }
  .primary-nav {
    grid-column: 1 / -1; grid-row: 2;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--border);
    padding-top: 6px;
  }
  .primary-nav::-webkit-scrollbar { display: none; }
  .nav-link { flex-shrink: 0; }
  .icon-btn { display: none; }
  .hero { padding: 56px 18px 40px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .toolbar-inner { padding: 12px 18px; }
  .toolbar-controls .view-toggle { display: none; }
  .featured { padding: 0 18px; }
  .featured-card { padding: 32px 24px; }
  .grid-section { padding: 48px 18px 80px; }
  .search-form { grid-template-columns: auto 1fr; }
  .search-form .search-kbd, .search-form .search-submit { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 18px 32px; }
  .footer-bottom { padding: 16px 18px 32px; flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PAGE LOAD FX
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fade-up .6s var(--ease) both; animation-delay: .05s; }
.hero-title   { animation: fade-up .8s var(--ease) both; animation-delay: .12s; }
.hero-sub     { animation: fade-up .8s var(--ease) both; animation-delay: .22s; }
.search-form  { animation: fade-up .8s var(--ease) both; animation-delay: .32s; }
.hero-stats   { animation: fade-up .8s var(--ease) both; animation-delay: .42s; }
.card         { animation: fade-up .6s var(--ease) both; }

/* ============================================================
   UPLOAD PAGE
   ============================================================ */
.upload-hero {
  position: relative;
  max-width: 1640px;
  margin: 0 auto;
  padding: 72px 32px 24px;
}
.upload-hero-inner { max-width: 920px; }
.upload-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  display: flex; flex-wrap: wrap; gap: 14px;
  margin: 18px 0 18px;
}
.upload-title .text-green {
  text-shadow: 0 0 30px var(--green-glow), 0 0 70px rgba(0,255,92,0.2);
}
.upload-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 640px;
}

.upload-section {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 32px 120px;
}
.upload-form {
  display: flex; flex-direction: column;
  gap: 48px;
}
.form-step { position: relative; }
.form-step-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.form-step-num {
  font-size: 13px;
  color: var(--green);
  letter-spacing: 0.12em;
}
.form-step-title {
  font-family: var(--f-display);
  font-size: 30px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
}

/* --- Name field (display-style) --- */
.field-wrap {
  position: relative;
  display: flex; align-items: flex-end;
  gap: 16px;
}
.field-input {
  width: 100%;
  background: transparent;
  border: 0; outline: 0;
  font-family: var(--f-display);
  font-size: 44px;
  letter-spacing: 0.005em;
  color: var(--text);
  text-transform: uppercase;
  padding: 12px 0 16px;
}
.field-input::placeholder {
  color: var(--text-mute);
  font-family: var(--f-display);
  letter-spacing: 0.005em;
  opacity: 0.55;
}
.field-input--display { caret-color: var(--green); }
.field-line {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--border-bright) 0%, var(--border) 50%, transparent 100%);
  pointer-events: none;
}
.field-input:focus ~ .field-line {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-2) 60%, transparent 100%);
  box-shadow: 0 0 12px var(--green-glow);
}
.field-counter {
  font-size: 11px;
  color: var(--text-mute);
  padding-bottom: 22px;
  flex-shrink: 0;
}
.field-hint {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 10px;
  font-family: var(--f-ui);
}
.field-hint--lead { margin-top: -4px; margin-bottom: 18px; }

/* --- Dropzones --- */
.dropzone {
  position: relative;
  border: 1.5px dashed var(--border-bright);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(0,255,92,0.02) 0%, transparent 100%),
    var(--surface);
  cursor: pointer;
  transition: all .2s var(--ease);
  overflow: hidden;
}
.dropzone::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,255,92,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,92,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000 0%, transparent 100%);
  pointer-events: none;
  opacity: 0.7;
}
.dropzone:hover {
  border-color: var(--green);
  background: linear-gradient(180deg, rgba(0,255,92,0.04) 0%, var(--surface) 100%);
  box-shadow: inset 0 0 0 1px rgba(0,255,92,0.1);
}
.dropzone.is-drag {
  border-color: var(--green);
  background: linear-gradient(180deg, rgba(0,255,92,0.08) 0%, var(--surface) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(0,255,92,0.3),
    0 0 48px -16px var(--green-glow);
  transform: scale(1.005);
}
.dropzone[data-state="ok"]    { border-color: rgba(0,255,92,0.4); border-style: solid; }
.dropzone[data-state="error"] { border-color: rgba(255,56,56,0.5); border-style: solid; }

.dropzone-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 56px 32px;
  gap: 14px;
}
.dropzone-icon {
  color: var(--green);
  filter: drop-shadow(0 0 16px var(--green-glow));
  margin-bottom: 6px;
}
.dropzone--build .dropzone-icon { color: var(--blue); filter: drop-shadow(0 0 16px var(--blue-glow)); }
.dropzone-title {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
}
.dropzone-sub {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.dropzone-sub .kw {
  display: inline-block;
  font-family: var(--f-mono);
  color: var(--green);
  background: rgba(0,255,92,0.08);
  border: 1px solid rgba(0,255,92,0.2);
  border-radius: var(--r-sm);
  padding: 1px 6px;
  margin: 0 2px;
}
.dropzone-browse {
  margin-top: 6px;
  pointer-events: none; /* parent zone handles click */
}

.dropzone-status {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  font-family: var(--f-ui);
}
.dropzone-status.is-error   { color: #ffb3b3; }
.dropzone-status.is-error svg   { color: var(--red); flex-shrink: 0; }
.dropzone-status.is-success { color: var(--text); }
.dropzone-status.is-success svg { color: var(--green); flex-shrink: 0; }
.status-headline {
  font-weight: 600;
  font-size: 14px;
  word-break: break-all;
}
.status-detail {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  margin-top: 2px;
}
.status-reset {
  margin-left: auto;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  border-radius: var(--r-sm);
  font-size: 20px;
  line-height: 1;
  transition: all .15s var(--ease);
  flex-shrink: 0;
}
.status-reset:hover { color: var(--text); background: var(--surface-2); }

/* --- Parts grid --- */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.part-card {
  position: relative;
  display: flex; align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: left;
  transition: all .15s var(--ease);
  overflow: hidden;
}
.part-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--border-bright);
  transition: background .2s var(--ease);
}
.part-card:hover {
  border-color: var(--border-bright);
  background: var(--surface-2);
}
.part-card:hover::before { background: var(--green); }
.part-card.is-active {
  background: linear-gradient(135deg, rgba(0,255,92,0.10) 0%, rgba(0,255,92,0.02) 100%);
  border-color: var(--green);
  box-shadow:
    inset 0 0 0 1px rgba(0,255,92,0.15),
    0 8px 24px -12px var(--green-glow);
}
.part-card.is-active::before { background: var(--green); box-shadow: 0 0 8px var(--green-glow); }
.part-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-dim);
  flex-shrink: 0;
  transition: all .2s var(--ease);
}
.part-card.is-active .part-icon {
  color: var(--green);
  border-color: rgba(0,255,92,0.4);
  background: rgba(0,255,92,0.05);
  filter: drop-shadow(0 0 8px var(--green-glow));
}
.part-label {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  flex: 1;
}
.part-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--bg);
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  color: transparent;
  flex-shrink: 0;
  transition: all .2s var(--ease);
}
.part-card.is-active .part-check {
  color: #001a08;
  background: var(--green);
  border-color: var(--green);
}

/* --- Actions --- */
.form-actions {
  display: flex; justify-content: flex-end; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* --- Modal --- */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(2,4,3,0.75);
  backdrop-filter: blur(10px) saturate(1.1);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.modal-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  padding: 48px 40px 36px;
  text-align: center;
  overflow: hidden;
  transform: translateY(16px) scale(.98);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.modal-glow {
  position: absolute;
  left: 50%; top: -100px;
  width: 480px; height: 480px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.6;
}
.modal.is-open .modal-backdrop { opacity: 1; }
.modal.is-open .modal-card     { transform: translateY(0) scale(1); opacity: 1; }

.modal-icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  filter: drop-shadow(0 0 24px var(--green-glow));
  position: relative;
}
.modal-eyebrow {
  display: block;
  font-size: 10px;
  color: var(--green);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  position: relative;
}
.modal-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.modal-text {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto 28px;
  position: relative;
}
.modal-actions {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 720px) {
  .upload-hero    { padding: 48px 18px 16px; }
  .upload-section { padding: 16px 18px 80px; }
  .field-input    { font-size: 32px; }
  .form-step-title{ font-size: 24px; }
  .dropzone-inner { padding: 36px 18px; }
  .form-actions   { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .modal-card     { padding: 36px 24px 28px; }
}

/* ============================================================
   GENERIC PAGE HERO (Builds, Garages, Shop)
   ============================================================ */
.page-hero {
  position: relative;
  max-width: 1640px;
  margin: 0 auto;
  padding: 80px 32px 36px;
  overflow: hidden;
}
.page-hero-inner { max-width: 1100px; position: relative; }
.page-title {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 18px;
  margin: 18px 0 22px;
  animation: fade-up .8s var(--ease) both;
  animation-delay: .12s;
}
.page-title > span:first-child {
  color: var(--text);
  text-shadow: 0 0 30px var(--green-glow), 0 0 70px rgba(0,255,92,0.18);
}
.page-title-accent {
  font-family: var(--f-ui);
  font-weight: 500;
  font-size: 0.22em;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: none;
  align-self: end;
  margin-bottom: 0.4em;
}
.page-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 28px;
  animation: fade-up .8s var(--ease) both;
  animation-delay: .22s;
}
.page-meta-row {
  display: flex; flex-wrap: wrap; gap: 14px 32px;
  list-style: none;
  font-size: 13px;
  color: var(--text-dim);
  animation: fade-up .8s var(--ease) both;
  animation-delay: .32s;
}
.page-meta-row li {
  display: inline-flex; align-items: center; gap: 8px;
}
.page-meta-row li .mono {
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
}

/* ============================================================
   BUILDS — Featured "of the month"
   ============================================================ */
.featured-card--month::after {
  background: conic-gradient(from 220deg at 50% 50%, transparent 0deg, rgba(255,216,77,0.25) 60deg, transparent 120deg);
}

/* ============================================================
   BUILDS — Podium
   ============================================================ */
.podium-section {
  max-width: 1640px;
  margin: 64px auto 0;
  padding: 0 32px;
}
.podium {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 18px;
  align-items: end;
}
.podium-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-md);
  padding: 56px 22px 22px;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  animation: fade-up .6s var(--ease) both;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.podium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.7), 0 8px 32px -8px var(--card-glow, var(--green-glow));
}
.podium-card--1 { padding-top: 70px; transform: translateY(-12px); }
.podium-card--1:hover { transform: translateY(-16px); }
.podium-card--1 { border-color: rgba(255,216,77,0.45); }
.podium-card--2 { border-color: rgba(232,239,233,0.25); }
.podium-card--3 { border-color: rgba(205,127,50,0.4); }

.podium-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--card-glow, var(--green-glow)) 0%, transparent 30%);
  opacity: 0.08;
  pointer-events: none;
}
.podium-medal {
  position: absolute;
  left: 50%; top: -6px;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  filter: drop-shadow(0 0 16px var(--card-glow));
}
.podium-card--1 .podium-medal { color: var(--gold); }
.podium-card--2 .podium-medal { color: #c8d0c9; }
.podium-card--3 .podium-medal { color: #cd7f32; }
.podium-num {
  position: absolute;
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: currentColor;
  text-shadow: 0 0 12px currentColor;
}
.podium-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse 60% 60% at 50% 60%, var(--card-glow) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-elevated) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 16px;
}
.podium-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}
.podium-thumb .card-art { padding-bottom: 16%; }
.podium-id {
  display: block;
  font-size: 10px;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.podium-title {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.podium-card--1 .podium-title { font-size: 30px; }
.podium-car {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.podium-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.podium-specs div { display: flex; flex-direction: column; gap: 2px; }
.podium-specs dt {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.podium-specs dd {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.01em;
}
.podium-specs dd span {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-left: 2px;
}
.podium-cta { width: 100%; justify-content: center; }

/* ============================================================
   GARAGES — Spotlight (top tuner)
   ============================================================ */
.garage-spotlight {
  position: relative;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 60%, var(--surface-3) 100%);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px 56px;
  overflow: hidden;
}
.garage-spotlight::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(0,212,255,0.18), transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 30%, rgba(0,255,92,0.10), transparent 60%);
  pointer-events: none;
}
.garage-spotlight-main { position: relative; }
.garage-spotlight-row {
  display: flex; align-items: center; gap: 24px;
  margin-top: 14px;
}
.garage-spotlight-name {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 0.95;
  margin-bottom: 8px;
}
.garage-spotlight-tag {
  font-size: 15px;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 6px;
}
.garage-spotlight-bio {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.garage-spotlight-actions {
  display: flex; gap: 12px;
  margin-top: 24px;
}
.garage-spotlight-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  align-content: center;
  padding: 28px 32px;
  background: rgba(5,8,7,0.55);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-width: 280px;
}
.garage-spotlight-stats > div { display: flex; flex-direction: column; gap: 2px; }
.garage-spotlight-stats span {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--text);
  letter-spacing: 0.005em;
}
.garage-spotlight-stats em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ============================================================
   GARAGES — Avatar
   ============================================================ */
.garage-avatar {
  position: relative;
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  background:
    linear-gradient(135deg, var(--avatar-tint, var(--green)) 0%, transparent 100%),
    var(--surface);
  border: 1px solid var(--border-bright);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  font-family: var(--f-display);
  color: var(--text);
  flex-shrink: 0;
  filter: drop-shadow(0 0 14px var(--avatar-tint, var(--green-glow)));
}
.garage-avatar-mono {
  position: relative;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-shadow: 0 0 12px var(--avatar-tint);
}
.garage-avatar--xl {
  width: 96px; height: 96px;
}
.garage-avatar--xl .garage-avatar-mono { font-size: 34px; }

/* ============================================================
   GARAGES — Grid + card
   ============================================================ */
.garages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.garage-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 22px 18px;
  display: flex; flex-direction: column;
  gap: 18px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  animation: fade-up .6s var(--ease) both;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.garage-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--avatar-tint, var(--green));
  opacity: 0.7;
  transition: opacity .2s var(--ease);
}
.garage-card::after {
  content: '';
  position: absolute;
  right: -40%; top: -40%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, var(--avatar-tint, var(--green-glow)) 0%, transparent 60%);
  opacity: 0.06;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.garage-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.7), 0 8px 32px -8px var(--avatar-tint);
}
.garage-card:hover::before { opacity: 1; }
.garage-card:hover::after { opacity: 0.12; }

.garage-card-top {
  display: flex; align-items: center;
  gap: 16px;
}
.garage-card-head { flex: 1; min-width: 0; }
.garage-card-name {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
.garage-verified {
  color: var(--green);
  display: inline-flex;
  filter: drop-shadow(0 0 6px var(--green-glow));
}
.garage-card-handle {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.garage-type {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border: 1px solid var(--border-bright);
  border-radius: var(--r-sm);
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.garage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.garage-stats > div { display: flex; flex-direction: column; }
.garage-stats dt {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.garage-stats dd {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--text);
  letter-spacing: 0.01em;
}
.garage-card-sig {
  display: flex; flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: var(--bg-elevated);
  border-left: 2px solid var(--avatar-tint, var(--green));
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.garage-sig-label {
  font-size: 9px;
  color: var(--text-mute);
  letter-spacing: 0.15em;
}
.garage-sig-title {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.garage-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.garage-visit, .garage-follow { padding: 10px 14px; font-size: 11px; }

/* ============================================================
   SHOP — TG+ banner
   ============================================================ */
.tgplus-banner {
  position: relative;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(255,216,77,0.12), transparent 60%),
    linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid rgba(255,216,77,0.35);
  border-radius: var(--r-lg);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.tgplus-glow {
  position: absolute;
  right: -120px; top: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,216,77,0.25) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}
.tgplus-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, transparent 49.5%, rgba(255,216,77,0.06) 49.5%, rgba(255,216,77,0.06) 50.5%, transparent 50.5%);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}
.tgplus-left { position: relative; }
.tgplus-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 14px 0 22px;
}
.tgplus-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
}
.tgplus-features li {
  display: inline-flex; align-items: center; gap: 10px;
}
.tgplus-features li svg { color: var(--green); flex-shrink: 0; }
.tgplus-right {
  position: relative;
  text-align: right;
  padding: 24px 28px;
  background: rgba(5,8,7,0.6);
  border: 1px solid rgba(255,216,77,0.25);
  border-radius: var(--r-md);
  min-width: 240px;
}
.tgplus-price {
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 6px;
  color: var(--text);
  font-family: var(--f-display);
}
.tgplus-currency { font-size: 28px; color: var(--gold); margin-right: 4px; }
.tgplus-amount   { font-size: 72px; line-height: 1; letter-spacing: -0.02em; }
.tgplus-cents    { font-size: 28px; color: var(--text-dim); }
.tgplus-period   { font-family: var(--f-mono); font-size: 11px; color: var(--text-dim); letter-spacing: 0.08em; margin-left: 8px; }
.tgplus-note {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.tgplus-cta {
  width: 100%;
  justify-content: center;
  background: linear-gradient(180deg, var(--gold) 0%, #d4a800 100%);
  color: #221700;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(255,216,77,0.3), 0 8px 24px -8px var(--gold-glow);
}
.tgplus-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255,216,77,0.5), 0 12px 32px -8px var(--gold-glow);
}

/* ============================================================
   SHOP — Product cards
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}
.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  animation: fade-up .6s var(--ease) both;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 0 0 1px var(--card-glow), 0 24px 48px -16px rgba(0,0,0,0.7), 0 8px 32px -8px var(--card-glow);
}
.product-card--featured { border-color: rgba(255,216,77,0.35); }

.product-thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: linear-gradient(135deg, #0e1612 0%, #131c17 50%, #050807 100%);
}
.product-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
}
.product-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 60%, var(--card-glow) 0%, transparent 60%);
  opacity: 0.4;
  transition: opacity .3s var(--ease);
}
.product-card:hover .product-thumb::after { opacity: 0.85; }
.product-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 20%;
  z-index: 1;
}
.product-art svg {
  width: 100%; height: auto;
  filter:
    drop-shadow(0 4px 12px rgba(0,0,0,0.6))
    drop-shadow(0 0 18px var(--card-glow));
  transition: transform .4s var(--ease);
}
.product-card:hover .product-art svg { transform: scale(1.05); }

.product-badge {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  background: rgba(5,8,7,0.85);
  border: 1px solid rgba(255,216,77,0.4);
  border-radius: var(--r-sm);
  color: var(--gold);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.product-price-tag {
  position: absolute;
  left: 12px; bottom: 12px;
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  background: rgba(5,8,7,0.9);
  border: 1px solid var(--border-bright);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.product-price {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--gold);
  text-shadow: 0 0 8px var(--gold-glow);
}

.product-body {
  padding: 16px 18px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.product-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.product-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.btn-buy {
  padding: 8px 14px;
  font-size: 11px;
  background: var(--green);
  color: #001a08;
}
.btn-buy.is-added {
  background: var(--gold);
  color: #221700;
}

/* Header cart icon badge */
.icon-btn { position: relative; }
.icon-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  color: #001a08;
  background: var(--green);
  border-radius: 100px;
  box-shadow: 0 0 0 2px var(--bg);
}

/* ============================================================
   RESPONSIVE TAIL
   ============================================================ */
@media (max-width: 1100px) {
  .podium { grid-template-columns: 1fr; }
  .podium-card--1 { transform: none; padding-top: 56px; }
  .podium-card--1:hover { transform: translateY(-4px); }
  .garage-spotlight { grid-template-columns: 1fr; padding: 36px 32px; }
  .garage-spotlight-stats { min-width: 0; }
  .tgplus-banner { grid-template-columns: 1fr; padding: 36px 32px; }
  .tgplus-right { text-align: left; min-width: 0; }
  .tgplus-cta { width: auto; }
}
@media (max-width: 720px) {
  .page-hero { padding: 56px 18px 24px; }
  .podium-section { padding: 0 18px; }
  .featured { padding: 0 18px; }
  .garage-spotlight, .tgplus-banner { padding: 28px 22px; }
  .garage-spotlight-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .garage-spotlight-stats { grid-template-columns: repeat(2, 1fr); padding: 18px 20px; gap: 14px 18px; }
  .garage-spotlight-stats span { font-size: 22px; }
  .tgplus-amount { font-size: 56px; }
}

/* ============================================================
   LEGAL PAGES (Legal Notice / Privacy)
   ============================================================ */
.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 32px 120px;
}
.legal-page-inner { position: relative; }
.legal-eyebrow {
  display: inline-block;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.legal-h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
  text-shadow: 0 0 30px var(--green-glow);
}
.legal-lede {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-page h2 {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin: 40px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--green);
}
.legal-page p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.legal-page p strong { color: var(--text); font-weight: 600; }
.legal-page p em { color: var(--gold); font-style: italic; }
.legal-page a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,255,92,0.3);
  transition: border-color .15s var(--ease), color .15s var(--ease);
}
.legal-page a:hover { color: #4dff8c; border-bottom-color: var(--green); }
.legal-page ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.legal-page ul li {
  position: relative;
  padding: 4px 0 4px 22px;
  font-size: 14px;
  color: var(--text-dim);
}
.legal-page ul li::before {
  content: '▸';
  position: absolute;
  left: 0; top: 4px;
  color: var(--green);
  font-size: 12px;
}
.legal-foot {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
  text-transform: uppercase;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.notfound {
  min-height: calc(100vh - 0px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
}
.notfound-inner {
  text-align: center;
  max-width: 640px;
}
.notfound-eyebrow {
  display: inline-block;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.notfound-code {
  font-family: var(--f-display);
  font-size: clamp(120px, 22vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: 0 0 60px var(--green-glow);
  margin-bottom: 8px;
  display: inline-flex; align-items: baseline;
}
.notfound-slash {
  color: var(--green);
  font-size: 0.6em;
  margin-left: 6px;
}
.notfound-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.notfound-sub {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.6;
}
.notfound-actions {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.notfound-foot {
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}
.notfound-foot a {
  color: var(--green);
  border-bottom: 1px solid rgba(0,255,92,0.3);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px 120px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.contact-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 26px 26px;
  overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--green);
  opacity: 0.5;
  transition: opacity .2s var(--ease);
}
.contact-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.7), 0 6px 24px -8px var(--green-glow);
}
.contact-card:hover::before { opacity: 1; }
.contact-card--alert::before { background: var(--gold); }
.contact-card--alert:hover { box-shadow: 0 24px 48px -16px rgba(0,0,0,0.7), 0 6px 24px -8px var(--gold-glow); }
.contact-card-num {
  display: block;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.contact-card--alert .contact-card-num { color: var(--gold); }
.contact-card-title {
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.contact-card-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 18px;
}
.contact-card-link {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--green);
  border-bottom: 1px solid rgba(0,255,92,0.3);
  padding-bottom: 2px;
  transition: color .15s var(--ease), border-color .15s var(--ease);
  word-break: break-all;
}
.contact-card-link:hover { color: #4dff8c; border-color: var(--green); }
.contact-card--alert .contact-card-link { color: var(--gold); border-color: rgba(255,216,77,0.4); }
.contact-card--alert .contact-card-link:hover { color: #ffe88a; border-color: var(--gold); }

@media (max-width: 720px) {
  .legal-page { padding: 48px 18px 80px; }
  .contact-section { padding: 16px 18px 80px; }
}
