/* Proper Miles marketing — event directory styles.
 * Dark theme + Inter, matches propermiles.com. Contains two layers:
 *   1. Base + event-specific (nav, hero, facts, related, event list)
 *   2. `.pm-landing` block scoped from the homepage marketing sections
 *      (features / teams / beyond-the-garage / footer). All rules in the
 *      pm-landing block are prefixed with `.pm-landing` so they can't
 *      leak into or clash with the top-of-page styles above.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --pm-red: #D3474A;
  --pm-orange: #FFA42F;
  --accent: #dc2626;
  --accent-hover: #b91c1c;
  --accent-subtle: rgba(220, 38, 38, 0.12);
  --bg-primary: #1a1a1a;
  --bg-card: #2a2a2a;
  --bg-elevated: #333333;
  --text-primary: #f5f5f5;
  --text-secondary: #a3a3a3;
  --text-muted: #737373;
  --border: #3a3a3a;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gradient-brand: linear-gradient(135deg, #D3474A 0%, #FFA42F 100%);
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  --max-width: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Nav ─── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-primary);
}
.nav-brand {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text-secondary); font-weight: 500; font-size: 0.9375rem; }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--accent-hover); text-decoration: none; }

/* ─── Top hero (event / index / landing) ─── */
.hero { padding: 56px 32px 40px; }
.hero-inner { max-width: var(--max-width); margin: 0 auto; }
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero-intro {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 680px;
  margin: 0 0 24px;
  line-height: 1.6;
}
.hero-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-cta { margin-top: 24px; }
.hero-chips { margin: 20px 0 12px; }

.hero-event, .hero-index {
  background: radial-gradient(ellipse at 50% 0%, rgba(211, 71, 74, 0.15) 0%, transparent 60%),
              linear-gradient(180deg, #17191c 0%, var(--bg-primary) 100%);
}
.hero-landing {
  background: radial-gradient(ellipse at 50% 0%, rgba(211, 71, 74, 0.2) 0%, transparent 65%),
              linear-gradient(180deg, #17191c 0%, var(--bg-primary) 100%);
  padding: 88px 32px 64px;
  text-align: center;
}
.hero-landing .hero-inner { text-align: center; }
.hero-landing .hero-intro { margin-left: auto; margin-right: auto; }
.hero-landing .hero-chips { justify-content: center; }

.breadcrumbs {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--pm-red); }

/* ─── Disclaimer callout (event page) ─── */
.event-disclaimer {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(211, 71, 74, 0.08);
  border: 1px solid rgba(211, 71, 74, 0.25);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 720px;
}
.event-disclaimer strong { color: var(--text-primary); font-weight: 700; }
.event-disclaimer a { color: var(--pm-red); font-weight: 600; }

/* ─── Badges + chips ─── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-upcoming { background: rgba(34, 197, 94, 0.16); color: #22c55e; }
.badge-in-progress { background: rgba(234, 179, 8, 0.16); color: #eab308; }
.badge-completed { background: rgba(120, 120, 120, 0.16); color: var(--text-muted); }

.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.chip:hover { border-color: var(--pm-red); color: var(--text-primary); text-decoration: none; }
.chip-sm { padding: 2px 9px; font-size: 0.6875rem; }
.chip-lg { padding: 9px 18px; font-size: 0.875rem; }

/* ─── Facts card (event page) ─── */
.facts { padding: 0 32px 40px; }
.facts-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.fact-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.fact-value { font-size: 0.9375rem; color: var(--text-primary); line-height: 1.5; }
.event-description {
  max-width: var(--max-width);
  margin: 24px auto 8px;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  padding: 0 32px;
}
.event-attribution {
  max-width: var(--max-width);
  margin: 0 auto 8px;
  padding: 0 32px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── Related / list sections ─── */
.related, .event-list-section { padding: 32px 32px 40px; }
.related-inner, .event-list-inner { max-width: var(--max-width); margin: 0 auto; }
.related h2 { font-size: 1.5rem; margin: 0 0 20px; letter-spacing: -0.01em; }

.event-count { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }
.empty {
  padding: 40px 24px;
  text-align: center;
  color: var(--text-muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.event-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.event-list-item a {
  display: block;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.event-list-item a:hover {
  text-decoration: none;
  border-color: var(--pm-red);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.event-list-name { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.event-list-meta {
  color: var(--text-muted);
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}

/* ─── Cross links ─── */
.cross-links { padding: 32px; background: #17191c; border-top: 1px solid var(--border); }
.cross-links-inner { max-width: var(--max-width); margin: 0 auto; }
.cross-links h3 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 14px;
  font-weight: 700;
}

/* ─── Buttons (shared) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-secondary { background: var(--bg-elevated); color: var(--text-primary); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--pm-red); color: var(--pm-red); text-decoration: none; }

/* ─── Aggregation disclaimer strip (between related + marketing) ─── */
.agg-notice {
  padding: 20px 32px;
  text-align: center;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8125rem;
}
.agg-notice a { color: var(--pm-red); font-weight: 600; }

/* ─── Responsive ─── */
@media (max-width: 640px) {
  .nav { padding: 14px 16px; }
  .hero { padding: 40px 16px 28px; }
  .facts, .related, .event-list-section, .cross-links, .agg-notice { padding-left: 16px; padding-right: 16px; }
  .event-description, .event-attribution { padding-left: 16px; padding-right: 16px; }
  .hero-landing { padding: 56px 16px 40px; }
}

/* ============================================================
 * pm-landing — SCOPED marketing sections lifted from the
 * propermiles.com homepage (Webflow embed). Every rule is
 * prefixed with `.pm-landing` so nothing here leaks into the
 * event/index/landing styles above.
 * ============================================================ */

.pm-landing *, .pm-landing *::before, .pm-landing *::after { margin: 0; padding: 0; box-sizing: border-box; }
.pm-landing { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; }
.pm-landing a { color: inherit; text-decoration: none; }
.pm-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pm-section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { .pm-section { padding: 64px 0; } }
.pm-section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pm-red); margin-bottom: 16px; }
.pm-section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gradient-brand); border-radius: 1px; }
.pm-section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em; }
.pm-section-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-secondary); max-width: 600px; line-height: 1.6; }
.pm-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: inherit; font-size: 1rem; font-weight: 600; border: none; border-radius: 12px; cursor: pointer; transition: all 0.2s ease; text-decoration: none; }
.pm-btn-primary { background: var(--accent); color: #fff; padding: 16px 32px; font-size: 1.0625rem; }
.pm-btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3); }
.pm-btn-secondary { background: var(--bg-elevated); color: var(--text-primary); padding: 16px 32px; border: 1px solid var(--border); }
.pm-btn-secondary:hover { background: #3a3a3a; border-color: #525252; }
.pm-btn-orange { background: var(--pm-orange); color: #100F0D; }
.pm-btn-orange:hover { background: #eb9525; }
.pm-gradient-text { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pm-features { position: relative; }
.pm-feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--border); }
.pm-feature-block:last-child { border-bottom: none; }
.pm-feature-block--reversed { direction: rtl; }
.pm-feature-block--reversed > * { direction: ltr; }
@media (max-width: 768px) { .pm-feature-block, .pm-feature-block--reversed { grid-template-columns: 1fr; gap: 40px; direction: ltr; text-align: center; } }
.pm-feature-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.pm-feature-desc { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.pm-feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pm-feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9375rem; color: var(--text-secondary); }
@media (max-width: 768px) { .pm-feature-list li { text-align: left; } }
.pm-feature-list-check { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: rgba(34, 197, 94, 0.15); color: var(--success); display: flex; align-items: center; justify-content: center; font-size: 0.6875rem; margin-top: 2px; }
.pm-feature-visual { display: flex; justify-content: center; align-items: center; }
.pm-feature-mockup { background: linear-gradient(145deg, #2a2a2a 0%, #222222 100%); border: 1px solid var(--border); border-radius: 20px; padding: 28px; width: 100%; max-width: 480px; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3); }
.pm-mock-timeline { display: flex; flex-direction: column; gap: 16px; }
.pm-mock-compare { display: flex; flex-direction: column; gap: 12px; }
.pm-mock-compare-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: rgba(255, 255, 255, 0.03); border-radius: 10px; font-size: 0.8125rem; }
.pm-mock-compare-label { color: var(--text-secondary); }
.pm-mock-compare-values { display: flex; gap: 16px; }
.pm-mock-compare-value { font-weight: 700; font-size: 0.875rem; }
.pm-mock-compare-value--high { color: var(--danger); }
.pm-mock-compare-value--fair { color: var(--success); }
.pm-mock-chat { display: flex; flex-direction: column; gap: 10px; }
.pm-mock-chat-msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 0.8125rem; line-height: 1.5; }
.pm-mock-chat-msg--user { align-self: flex-end; background: var(--accent); color: #fff; border-bottom-right-radius: 4px; }
.pm-mock-chat-msg--ai { align-self: flex-start; background: var(--bg-elevated); color: var(--text-primary); border-bottom-left-radius: 4px; }
.pm-maint-card { background: var(--bg-card); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.pm-maint-header { padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; }
.pm-maint-header-left { display: flex; align-items: center; gap: 8px; }
.pm-maint-service { font-size: 0.8125rem; font-weight: 600; color: var(--text-primary); }
.pm-maint-due { font-size: 0.6875rem; color: var(--text-muted); margin-top: 1px; }
.pm-maint-body { padding: 0 14px 14px; border-top: 1px solid var(--border); padding-top: 12px; }
.pm-maint-desc { font-size: 0.6875rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 12px; }
.pm-cost-pills { display: flex; gap: 6px; margin-bottom: 10px; }
.pm-cost-pill { flex: 1; text-align: center; padding: 8px 6px; border-radius: 8px; background: var(--bg-primary); border: 1px solid var(--border); }
.pm-cost-pill--highlight { background: var(--accent-subtle); border: 1px solid rgba(220, 38, 38, 0.25); }
.pm-cost-pill-label { font-size: 0.5625rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.pm-cost-pill-value { font-size: 0.8125rem; font-weight: 600; color: var(--text-primary); }
.pm-cost-pill--highlight .pm-cost-pill-value { color: var(--accent); }
.pm-difficulty-row { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.pm-difficulty-label { font-size: 0.625rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
.pm-difficulty-dots { display: flex; gap: 3px; }
.pm-difficulty-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--bg-elevated); }
.pm-difficulty-dot--filled { background: var(--accent); }
.pm-difficulty-text { font-size: 0.6875rem; color: var(--text-secondary); }
.pm-maint-actions { display: flex; gap: 6px; }
.pm-maint-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 8px 10px; border-radius: 8px; font-size: 0.625rem; font-weight: 600; border: none; }
.pm-maint-btn--primary { background: var(--gradient-brand); color: #fff; }
.pm-maint-btn--secondary { background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--border); }
.pm-upload-area { border: 2px dashed var(--border); border-radius: 12px; padding: 16px; text-align: center; margin-bottom: 10px; }
.pm-mock-badge { font-size: 0.5625rem; padding: 2px 8px; border-radius: 100px; font-weight: 600; }
.pm-mock-badge--high { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.pm-mock-badge--medium { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.pm-mock-badge--low { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.pm-mock-title { font-size: 0.75rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.pm-teams { background: linear-gradient(180deg, var(--bg-primary) 0%, #141414 50%, var(--bg-primary) 100%); position: relative; }
.pm-teams::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%); }
.pm-teams-header { text-align: center; margin-bottom: 64px; }
.pm-teams-header .pm-section-subtitle { margin: 0 auto; }
.pm-teams-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
@media (max-width: 960px) { .pm-teams-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pm-teams-grid { grid-template-columns: 1fr; } }
.pm-teams-card { background: linear-gradient(145deg, #2a2a2a 0%, #222222 100%); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: all 0.3s ease; }
.pm-teams-card:hover { border-color: rgba(211, 71, 74, 0.3); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
.pm-teams-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 20px; }
.pm-teams-card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.pm-teams-card-desc { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; }
.pm-teams-cta { text-align: center; }
/* App-hero section (the left half of the original split hero,
 * lifted intact and re-scoped as a full-width standalone section). */
.pm-app-hero { padding: 88px 0 96px; text-align: center; position: relative; overflow: hidden; }
.pm-app-hero::before { content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(211, 71, 74, 0.1) 0%, transparent 70%); pointer-events: none; }
.pm-app-hero .pm-container { position: relative; z-index: 1; }
.pm-app-hero .pm-hero-content { max-width: 640px; margin: 0 auto 32px; }
.pm-hero-label { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.pm-hero-label--app { color: var(--pm-red); }
.pm-hero-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 20px; }
.pm-hero-subtitle { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.pm-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.pm-hero-visual { position: relative; display: flex; justify-content: center; align-items: center; margin-top: 48px; min-height: 520px; }

/* Phone carousel */
.pm-phone-carousel { position: relative; width: 240px; height: 480px; perspective: 1200px; }
.pm-phone-frame { position: absolute; width: 240px; height: 480px; border-radius: 28px; background: var(--bg-card); border: 2px solid var(--border); overflow: hidden; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.pm-phone-frame--active { z-index: 3; transform: translateX(0) scale(1); opacity: 1; }
.pm-phone-frame--prev { z-index: 2; transform: translateX(-50px) scale(0.88) rotateY(8deg); opacity: 0.5; }
.pm-phone-frame--next { z-index: 2; transform: translateX(50px) scale(0.88) rotateY(-8deg); opacity: 0.5; }
.pm-phone-frame--hidden { z-index: 1; transform: translateX(0) scale(0.75); opacity: 0; }
.pm-phone-screen { width: 100%; height: 100%; padding: 20px 16px; display: flex; flex-direction: column; gap: 12px; background: var(--bg-primary); text-align: left; }
.pm-phone-statusbar { display: flex; justify-content: space-between; align-items: center; font-size: 0.6875rem; font-weight: 600; color: var(--text-muted); padding: 0 4px 8px; }
.pm-phone-notch { width: 70px; height: 22px; background: #000; border-radius: 0 0 14px 14px; position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 10; }
.pm-mock-card { background: var(--bg-card); border-radius: 12px; padding: 14px; border: 1px solid var(--border); }
.pm-mock-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.625rem; padding: 6px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.pm-mock-typing { display: flex; gap: 4px; padding: 10px 14px; align-self: flex-start; }
.pm-mock-typing-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); animation: pm-typing 1.4s ease-in-out infinite; }
.pm-mock-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.pm-mock-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pm-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}
.pm-trend-line { stroke: var(--pm-red); stroke-width: 2.5; fill: none; }
.pm-trend-fill { fill: url(#pmTrendGradient); opacity: 0.6; }

.pm-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); }
.pm-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.3s ease; border: none; padding: 0; }
.pm-carousel-dot--active { background: var(--pm-red); width: 24px; border-radius: 4px; }

.pm-footer { padding: 48px 0; border-top: 1px solid var(--border); }
.pm-footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.pm-footer-logo { font-size: 1.125rem; font-weight: 800; letter-spacing: -0.02em; }
.pm-footer-logo .pm-gradient-text { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pm-footer-copy { font-size: 0.8125rem; color: var(--text-muted); }
