/* mrcheckpoint — main.css
   Tailwind CSS CDN handles utilities. This file adds custom overrides
   that can't be expressed as Tailwind classes, plus iOS safe-area support. */

:root {
  /* Brand */
  --brand: #f47c1f;
  --brand-hover: #e06e14;
  --brand-deep: #c45f11;
  --ink: #111827;
  --asphalt: #0c1017;
  --asphalt-mid: #151b26;
  --sodium: rgba(244, 124, 31, 0.35);
  --telegram: #2AABEE;
  --surface: #f8f9fb;
  --surface-elevated: #ffffff;

  /* Type */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 150ms;
  --duration: 280ms;

  /* Mobile chrome */
  --bottom-nav-h: 4rem;
}

/* ── iOS safe-area padding for bottom nav ── */
.safe-area-bottom {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Body bottom padding accounts for bottom nav + safe area */
body {
  font-family: var(--font-body);
  padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0px));
  background-color: var(--surface);
  color: var(--ink);
  overflow-x: clip;
}

/* Extra room when Map jump is visible above the bottom nav */
body:has([data-map-jump]:not([hidden])) {
  padding-bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px));
}

/* Display headings — road-sign weight without shouting */
h1, h2, .font-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* ── FAQ accordion chevron transition ── */
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}

/* ── Tap target minimum (mobile accessibility) ── */
.tap-target {
  min-height: 44px;
  min-width: 44px;
}

/* ── Smooth scroll for anchor links (#states, #waitlist) ── */
html {
  scroll-behavior: smooth;
}

/* ── Prevent text size inflation on iOS ── */
html {
  -webkit-text-size-adjust: 100%;
}

/* ── Focus ring override — use orange instead of browser default ── */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* ── Section headings (state/county/city grids) ── */
.section-heading {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 2px solid var(--brand);
  padding-bottom: 0.3rem;
}

/* ── Geography grid cards (states, counties, cities) ── */
.geo-grid-panel {
  background: #f0e6dc;
  border-radius: 1.25rem;
  padding: 0.75rem;
  box-shadow: inset 0 1px 2px rgba(90, 50, 20, 0.08);
}

.geo-grid-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-height: 4.5rem;
  padding: 0.95rem 2.75rem 0.95rem 1rem;
  background: linear-gradient(160deg, #fffaf3 0%, #ffffff 60%);
  border: 2px solid #e2d2c0;
  border-left: 4px solid #ea580c;
  border-radius: 0.9rem;
  box-shadow: 0 3px 0 #d4c0a8, 0 6px 14px rgba(90, 50, 20, 0.08);
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) ease,
              border-color var(--duration-fast) ease,
              background var(--duration-fast) ease;
}

.geo-grid-card:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #d4c0a8, 0 2px 6px rgba(90, 50, 20, 0.08);
}

.geo-grid-card:hover,
.geo-grid-card:focus-visible {
  border-color: #f59e0b;
  border-left-color: #ea580c;
  background: #fff7ed;
  box-shadow: 0 3px 0 #ea580c, 0 8px 18px rgba(234, 88, 12, 0.18);
}

/* Featured / Most Active — same dusk family as Tonight cards */
.geo-grid-card--featured {
  background:
    radial-gradient(ellipse 100% 90% at 100% -10%, rgba(244, 124, 31, 0.45), transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(245, 158, 11, 0.2), transparent 45%),
    linear-gradient(150deg, #2a1c12 0%, #1a120c 50%, #120d09 100%);
  border-color: #3d2a1a;
  border-left: 4px solid #f59e0b;
  box-shadow: 0 3px 0 #0c0806, 0 12px 28px rgba(42, 28, 18, 0.35);
}

.geo-grid-card--featured:hover,
.geo-grid-card--featured:focus-visible {
  background:
    radial-gradient(ellipse 100% 90% at 100% -10%, rgba(244, 124, 31, 0.55), transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(245, 158, 11, 0.25), transparent 45%),
    linear-gradient(150deg, #2a1c12 0%, #1a120c 50%, #120d09 100%);
  border-color: #5c3d24;
  border-left-color: #f59e0b;
  box-shadow: 0 3px 0 #0c0806, 0 14px 32px rgba(42, 28, 18, 0.42);
}

.geo-grid-card--featured:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #0c0806, 0 4px 12px rgba(42, 28, 18, 0.25);
}

.geo-grid-card--featured .geo-grid-title {
  color: #fff;
}

.geo-grid-card--featured .geo-grid-meta {
  color: rgba(255, 236, 210, 0.65);
}

.geo-grid-card--featured .geo-grid-badge {
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(253, 186, 116, 0.35);
}

.geo-grid-card--featured .geo-grid-icon {
  color: #fdba74;
  background: rgba(244, 124, 31, 0.2);
  border: none;
}

/* Language switcher — charcoal active */
.lang-switcher {
  display: flex;
  align-items: center;
  background: #f3f4f6;
  border-radius: 9999px;
  padding: 0.125rem;
  gap: 0.125rem;
}

.lang-switcher__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-width: 2.75rem;
  padding: 0.375rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #6b7280;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.lang-switcher__flag {
  display: block;
  width: 1rem;
  height: auto;
  flex-shrink: 0;
  border-radius: 1px;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.12);
}

.lang-switcher__pill:hover {
  color: #111827;
}

.lang-switcher__pill--active {
  color: #ffffff;
  background: #111827;
  box-shadow: 0 1px 3px rgba(17, 24, 39, 0.35);
}

.lang-switcher__pill--active:hover {
  color: #ffffff;
  background: #030712;
}

/* Most Active section label pill */
.geo-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  border: none;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

.geo-grid-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.5rem;
  padding: 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  border-radius: 0.45rem;
}

.geo-grid-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.125rem;
  color: #f47c1f;
  background: #fff7ed;
  border-radius: 0.5rem;
}

.geo-grid-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding-right: 0.25rem;
}

.geo-grid-meta {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6b7280;
}

.geo-grid-meta--accent {
  color: #4b5563;
}

/* ── Bottom navigation bar ── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to top, #ffedd5 0%, #fff7ed 35%, #ffffff 100%);
  border-top: 2px solid #fb923c;
  box-shadow: 0 -4px 24px rgba(244, 124, 31, 0.14);
}

.bottom-nav-inner {
  display: flex;
  align-items: stretch;
  height: 4rem;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 0.25rem;
}

.nav-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  min-height: 44px;
  padding: 0.25rem 0.125rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1;
  color: #f47c1f;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.1s ease;
}

.nav-tab:active {
  transform: scale(0.96);
}

.nav-tab-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.nav-tab-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Active tab — clear pill behind icon + darker label */
.nav-tab--active {
  color: #f47c1f;
  font-weight: 700;
}

.nav-tab--active .nav-tab-icon-wrap {
  background: #fed7aa;
  box-shadow: inset 0 0 0 1px #fb923c;
}

/* Near Me — charcoal complement */
.nav-tab--near-me {
  color: #111827;
}

/* Alerts — brand orange */
.nav-tab--alerts {
  color: #f47c1f;
  font-weight: 700;
}

.nav-tab--alerts.nav-tab--active .nav-tab-icon-wrap {
  background: #fed7aa;
  box-shadow: inset 0 0 0 1px #fb923c;
}

/* ── Form fields ── */
.form-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

/* Standalone form cards (advertise, etc.) keep a surface */
form:not(.submit-form) > .form-card,
form:not(.submit-form) .grid > .form-card {
  background: linear-gradient(160deg, #fffaf3 0%, #ffffff 70%);
  border: 1.5px solid #e8ddd0;
  border-left: 4px solid var(--brand);
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(90, 50, 20, 0.04);
}

/* Brand CTA strip */
.cta-strip {
  background: #f47c1f;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(244, 124, 31, 0.22);
}

.cta-strip--alerts {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.12) 0%, transparent 45%),
    var(--brand);
}

.cta-strip__row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.cta-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.cta-strip__tg {
  width: 1.35rem;
  height: 1.35rem;
  color: #fff;
}

.cta-strip__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background-color var(--duration-fast) ease;
}

.cta-strip__btn:hover {
  background: #fff7ed;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a3412;
  margin-bottom: 0.5rem;
}

.form-label .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #6b7280;
  font-size: 0.6875rem;
}

.form-input {
  width: 100%;
  border: 2px solid #fed7aa;
  border-radius: 0.75rem;
  padding: 0 0.875rem;
  height: 2.75rem;
  font-size: 0.875rem;
  color: #111827;
  background: #f9fafb;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  outline: none;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  border-color: #f47c1f;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 3px rgba(244, 124, 31, 0.18);
}

.form-input:hover:not(:focus) {
  border-color: #fed7aa;
}

.form-hint {
  font-size: 0.6875rem;
  color: #6b7280;
  margin-top: 0.375rem;
  line-height: 1.4;
}

/* Time toggle buttons */
.time-toggle {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.time-toggle-btn {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.75rem;
  border: 2px solid #e2d2c0;
  background: #fffaf3;
  color: #9a3412;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  min-height: 44px;
  text-align: center;
  line-height: 1.2;
}

.time-toggle-btn:hover {
  border-color: #f0c9a0;
  background: #fff7ed;
}

.time-toggle-btn.active {
  border-color: #f47c1f;
  background: var(--brand);
  color: #ffffff;
}

/* ── Desktop layout helpers ── */

/* On desktop the bottom nav is hidden; remove its body offset */
@media (min-width: 1024px) {
  body,
  body:has([data-map-jump]:not([hidden])) {
    padding-bottom: 0;
  }
}

/* Checkpoint card list — single column on all screen sizes */
.checkpoint-grid {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.checkpoint-grid article {
  margin-bottom: 0;
}

/* Homepage live feed */
.live-checkpoints-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.live-checkpoints-grid article {
  margin-bottom: 0;
}

/* Section head — one title + counts (no nested band labels) */
.cp-section-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cp-section-head__pulse {
  position: relative;
  display: flex;
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.cp-section-head__ping {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: #f87171;
  opacity: 0.6;
  animation: ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.cp-section-head__dot {
  position: relative;
  margin: auto;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: #ef4444;
}

.cp-section-head__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.cp-section-head__counts {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cp-section-head__count {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  color: #fff;
  line-height: 1.2;
}

.cp-section-head__count--live {
  background: #dc2626;
}

.cp-section-head__count--upcoming {
  background: var(--brand);
}

/* ── Checkpoint cards ── */
.cp-card {
  position: relative;
  display: block;
  padding: 1rem 1rem 1rem 1.05rem;
  background: #fff;
  border: none;
  border-radius: 1.15rem;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.04),
    0 8px 24px rgba(17, 24, 39, 0.06);
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) ease;
}

.cp-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  bottom: 0.9rem;
  width: 3px;
  border-radius: 9999px;
  background: var(--brand);
  z-index: 0;
}

.cp-card--linked:active {
  transform: scale(0.99);
}

.cp-card__hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.cp-card__inner {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.cp-card__main {
  flex: 1;
  min-width: 0;
  padding-left: 0;
}

.cp-card__badge-wrap {
  margin-bottom: 0.45rem;
}

/* Live — sodium glow / road atmosphere */
.cp-card--live {
  background:
    radial-gradient(ellipse 90% 80% at 100% 0%, rgba(244, 124, 31, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(239, 68, 68, 0.18), transparent 50%),
    linear-gradient(145deg, #1c2433 0%, #111827 48%, #0a0e14 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.32);
  overflow: hidden;
}

.cp-card--live::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.015) 10px,
      rgba(255, 255, 255, 0.015) 11px
    );
  pointer-events: none;
  z-index: 0;
}

.cp-card--live::before {
  background: #ef4444;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.65);
  z-index: 1;
}

.cp-card--live .cp-card__place {
  color: rgba(255, 255, 255, 0.62);
}

.cp-card--live .cp-card__when {
  color: rgba(255, 255, 255, 0.78);
}

.cp-card--live .cp-card__when-icon {
  color: #fb923c;
}


/* Upcoming — same asphalt family as tonight, cooler slate (less sodium) */
.cp-card--upcoming {
  background:
    radial-gradient(ellipse 90% 80% at 100% -5%, rgba(244, 124, 31, 0.22), transparent 52%),
    radial-gradient(ellipse 55% 50% at 0% 100%, rgba(56, 189, 248, 0.08), transparent 48%),
    linear-gradient(150deg, #1e2636 0%, #141a24 52%, #0c1018 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.3);
  overflow: hidden;
}

.cp-card--upcoming::before {
  display: none;
}

.cp-card--upcoming::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -14deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.018) 11px,
      rgba(255, 255, 255, 0.018) 12px
    );
  pointer-events: none;
  z-index: 0;
}

.cp-card--upcoming .cp-card__title {
  color: #fff;
}

.cp-card--upcoming .cp-card__place {
  color: rgba(226, 232, 240, 0.62);
}

.cp-card--upcoming .cp-card__when {
  color: rgba(226, 232, 240, 0.82);
}

.cp-card--upcoming .cp-card__when-icon {
  color: #fdba74;
}

.cp-card--tonight {
  background:
    radial-gradient(ellipse 100% 90% at 100% -10%, rgba(244, 124, 31, 0.45), transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(245, 158, 11, 0.2), transparent 45%),
    linear-gradient(150deg, #2a1c12 0%, #1a120c 50%, #120d09 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(42, 28, 18, 0.35);
  overflow: hidden;
}

.cp-card--tonight::before {
  display: none;
}

.cp-card--tonight::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      12deg,
      transparent,
      transparent 12px,
      rgba(255, 200, 120, 0.03) 12px,
      rgba(255, 200, 120, 0.03) 13px
    );
  pointer-events: none;
  z-index: 0;
}

.cp-card--tonight .cp-card__title {
  color: #fff;
}

.cp-card--tonight .cp-card__place {
  color: rgba(255, 236, 210, 0.65);
}

.cp-card--tonight .cp-card__when {
  color: rgba(255, 236, 210, 0.85);
}

.cp-card--tonight .cp-card__when-icon {
  color: #fdba74;
}

.cp-card--muted {
  background: #f9fafb;
  box-shadow: none;
  opacity: 0.85;
}

.cp-card--muted::before {
  background: #9ca3af;
}

/* Date / LIVE rail — fixed width on every card for column alignment */
.cp-card__rail {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.35rem;
  min-height: 4.25rem;
  padding: 0.5rem 0.25rem;
  border-radius: 0.9rem;
  line-height: 1.05;
  background: rgba(244, 124, 31, 0.14);
}

.cp-card--live .cp-card__rail {
  background: rgba(239, 68, 68, 0.2);
  box-shadow: inset 0 0 0 1px rgba(252, 165, 165, 0.35);
}

.cp-card--tonight .cp-card__rail {
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 0 0 1px rgba(253, 186, 116, 0.25);
}

.cp-card--upcoming .cp-card__rail {
  background: rgba(0, 0, 0, 0.32);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.28);
}

.cp-card__rail-live {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fecaca;
}

.cp-card__rail-live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
  animation: cp-pulse 1.6s ease-out infinite;
}

.cp-card__rail-dow {
  font-family: var(--font-display);
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c2410c;
}

.cp-card--tonight .cp-card__rail-dow {
  color: #fdba74;
}

.cp-card--upcoming .cp-card__rail-dow {
  color: #cbd5e1;
}

.cp-card--live .cp-card__rail-dow {
  color: #fecaca;
}

.cp-card__rail-day {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin: 0.15rem 0;
}

.cp-card--tonight .cp-card__rail-day,
.cp-card--upcoming .cp-card__rail-day,
.cp-card--live .cp-card__rail-day {
  color: #fff;
}

.cp-card__rail-mon {
  font-family: var(--font-display);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a3412;
}

.cp-card--tonight .cp-card__rail-mon {
  color: rgba(253, 186, 116, 0.85);
}

.cp-card--upcoming .cp-card__rail-mon {
  color: rgba(203, 213, 225, 0.85);
}

.cp-card__title--pending {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-style: normal;
  opacity: 0.92;
}

.cp-card__pending-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.cp-card--live .cp-card__pending-icon,
.cp-card--tonight .cp-card__pending-icon,
.cp-card--upcoming .cp-card__pending-icon {
  color: #fdba74;
}

.cp-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  line-height: 1;
}

.cp-card__badge--live {
  background: #ef4444;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.22);
}

.cp-card__badge--tonight {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.cp-card__badge--upcoming {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.28);
}

.cp-card__badge--muted {
  background: #e5e7eb;
  color: #6b7280;
}

.cp-card__badge--pending {
  background: #fef3c7;
  color: #a16207;
}

.cp-card__pulse {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  animation: cp-pulse 1.6s ease-out infinite;
}

.cp-card__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: #ffffff;
}

@keyframes cp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.cp-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111827;
  margin: 0;
}

.cp-card--live .cp-card__title {
  color: #fff;
}

.cp-card__place {
  margin: 0.3rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.3;
}

.cp-card__when {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.45rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4b5563;
  line-height: 1.3;
}

.cp-card__when-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  color: var(--brand);
}

.cp-card__note {
  margin: 0.4rem 0 0;
  font-size: 0.6875rem;
  font-weight: 550;
  line-height: 1.35;
  color: #6b7280;
}

.cp-card--live .cp-card__note,
.cp-card--tonight .cp-card__note,
.cp-card--upcoming .cp-card__note {
  color: rgba(255, 255, 255, 0.62);
}

/* Map — mid-right, above stretched hit area */
.cp-card__map {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex-shrink: 0;
  width: 3.25rem;
  min-height: 3.25rem;
  padding: 0.45rem 0.35rem;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #111827;
  border-radius: 0.85rem;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cp-card__map:hover,
.cp-card__map:focus-visible {
  background: #030712;
  transform: scale(1.03);
}

.cp-card--live .cp-card__map,
.cp-card--tonight .cp-card__map,
.cp-card--upcoming .cp-card__map {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  box-shadow: none;
}

.cp-card--live .cp-card__map:hover,
.cp-card--live .cp-card__map:focus-visible,
.cp-card--tonight .cp-card__map:hover,
.cp-card--tonight .cp-card__map:focus-visible,
.cp-card--upcoming .cp-card__map:hover,
.cp-card--upcoming .cp-card__map:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.cp-card__map-icon {
  width: 1.1rem;
  height: 1.1rem;
}

/* 2-column page layout (main content + sticky sidebar) */
.desktop-layout {
  display: block;
}

@media (min-width: 1024px) {
  .desktop-layout {
    display: grid;
    grid-template-columns: 1fr 18rem;
    gap: 2rem;
    align-items: start;
  }

  .desktop-sidebar {
    position: sticky;
    top: 5rem; /* clears the sticky header */
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

/* ── Full-bleed asphalt hero (breaks out of main max-width padding) ── */
.hero-bleed {
  position: relative;
  /* Escape centered main: edge-to-edge across the viewport */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -1.5rem;
  margin-bottom: 1.75rem;
  padding: 2.25rem 1.25rem 2.75rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, var(--sodium), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 90%, rgba(244, 124, 31, 0.12), transparent 50%),
    linear-gradient(165deg, var(--asphalt-mid) 0%, var(--asphalt) 55%, #080b10 100%);
  color: #fff;
  overflow: hidden;
}

.hero-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.015) 11px,
      rgba(255, 255, 255, 0.015) 12px
    );
  pointer-events: none;
}

/* Soft handoff into page content — less “floating rectangle” */
.hero-bleed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2rem;
  background: linear-gradient(to bottom, transparent 20%, var(--surface) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-bleed__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
  max-width: 64rem; /* align with header / main lg max */
  margin: 0 auto;
  padding-bottom: 0.75rem; /* sit above the fade */
}

.hero-bleed__copy {
  text-align: center;
  width: 100%;
}

.hero-bleed__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-bleed__cone {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(244, 124, 31, 0.35));
}

.hero-bleed__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  margin: 0;
}

.hero-bleed__name-accent {
  color: var(--brand);
}

.hero-bleed__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.78);
  max-width: 22rem;
  margin: 0 auto 1rem;
}

.hero-bleed__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  max-width: 22rem;
  margin: 0 auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease,
              border-color var(--duration-fast) ease;
  cursor: pointer;
}

.hero-cta:active {
  transform: scale(0.97);
}

.hero-cta--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 28px rgba(244, 124, 31, 0.45);
}

.hero-cta--primary:hover {
  background: var(--brand-hover);
  box-shadow: 0 10px 32px rgba(244, 124, 31, 0.55);
}

.hero-cta--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-bleed__hint {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}

/* Telegram alert mock — product proof, not a free entry point */
.hero-bleed__proof {
  width: 100%;
  max-width: 20rem;
}

.tg-alert-mock {
  background: #1c2129;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.tg-alert-mock__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tg-alert-mock__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.tg-alert-mock__app {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.tg-alert-mock__bubble {
  padding: 0.875rem 1rem 1rem;
  background: linear-gradient(180deg, #1e2733 0%, #171c24 100%);
}

.tg-alert-mock__bot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--telegram);
}

.tg-alert-mock__avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 2px;
}

.tg-alert-mock__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
}

.tg-alert-mock__body {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.tg-alert-mock__msg {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  white-space: pre-wrap;
}

.tg-alert-mock__msg--spaced {
  margin-top: 0.65rem;
}

.tg-alert-mock__time {
  margin: 0.5rem 0 0;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-enter {
  animation: hero-enter var(--duration) var(--ease-out) both;
}

.hero-enter--delay {
  animation-delay: 120ms;
}

@media (min-width: 1024px) {
  .hero-bleed {
    margin-top: -1.5rem;
    margin-bottom: 2.25rem;
    padding: 3.5rem 2.5rem 4rem;
  }

  .hero-bleed__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .hero-bleed__copy {
    text-align: left;
    flex: 1;
  }

  .hero-bleed__brand {
    align-items: flex-start;
  }

  .hero-bleed__cone {
    width: 5.5rem;
    height: 5.5rem;
  }

  .hero-bleed__tagline {
    max-width: 26rem;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-bleed__actions {
    margin-left: 0;
    margin-right: 0;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
    align-items: center;
  }

  .hero-bleed__hint {
    text-align: left;
  }

  .hero-bleed__proof {
    flex-shrink: 0;
    max-width: 22rem;
  }
}

/* Rotating spotlight — applied one tab at a time via JS */
@keyframes nav-spotlight-in {
  0%   { box-shadow: 0 0 0 0 rgba(244, 124, 31, 0);    background: transparent; }
  25%  { box-shadow: 0 0 0 6px rgba(244, 124, 31, 0.28); background: rgba(255, 237, 213, 0.85); }
  75%  { box-shadow: 0 0 0 6px rgba(244, 124, 31, 0.28); background: rgba(255, 237, 213, 0.85); }
  100% { box-shadow: 0 0 0 0 rgba(244, 124, 31, 0);    background: transparent; }
}

.nav-tab--spotlight .nav-tab-icon-wrap {
  animation: nav-spotlight-in 2s ease-in-out forwards;
}

/* Subscribe page — selected plan card highlight */
.plan-card--selected {
  box-shadow: 0 0 0 3px #fb923c, 0 8px 24px rgba(244, 124, 31, 0.2);
  transform: translateY(-2px);
}

/* Subscribe hero — full-bleed asphalt, matches homepage / place heroes */
.subscribe-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
  padding: 2rem 1.25rem 2.25rem;
  color: #fff;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--sodium), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(42, 171, 238, 0.12), transparent 50%),
    linear-gradient(165deg, var(--asphalt-mid) 0%, var(--asphalt) 55%, #080b10 100%);
}

.subscribe-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.015) 11px,
      rgba(255, 255, 255, 0.015) 12px
    );
  pointer-events: none;
}

.subscribe-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1.75rem;
  background: linear-gradient(to bottom, transparent 15%, var(--surface) 100%);
  pointer-events: none;
  z-index: 2;
}

.subscribe-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding-bottom: 0.5rem;
}

.subscribe-hero__cone {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 8px 20px rgba(244, 124, 31, 0.4));
}

.subscribe-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 186, 116, 0.9);
  margin: 0 0 0.65rem;
}

.subscribe-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 0.75rem;
}

.subscribe-hero__lead {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 auto 1rem;
  max-width: 22rem;
}

.subscribe-hero__delivery {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 650;
  color: #7dd3fc;
  background: rgba(42, 171, 238, 0.15);
  border: 1px solid rgba(42, 171, 238, 0.35);
  border-radius: 9999px;
  padding: 0.4rem 0.85rem;
}

.subscribe-hero__tg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  color: var(--telegram);
}

.subscribe-plans__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
  margin: 0 0 1rem;
}

.plan-card {
  border-radius: 1.15rem;
  padding: 1.25rem;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) ease,
              border-color var(--duration-fast) ease;
}

.plan-card--basic {
  background: linear-gradient(160deg, #fffaf3 0%, #ffffff 65%);
  border: 2px solid #e2d2c0;
  box-shadow: 0 3px 0 #d4c0a8, 0 8px 18px rgba(90, 50, 20, 0.06);
}

.plan-card--basic .plan-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
}

.plan-card--basic .plan-card__desc {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

.plan-card--basic .plan-card__price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.plan-card--basic .plan-card__period {
  font-size: 0.75rem;
  color: #9ca3af;
}

.plan-card--basic .plan-card__features {
  font-size: 0.8125rem;
  color: #4b5563;
}

.plan-card--basic .plan-card__check {
  color: var(--brand);
}

.plan-card--basic .plan-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  border-radius: 0.85rem;
  background: var(--asphalt);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: background-color var(--duration-fast) ease;
}

.plan-card--basic .plan-card__btn:hover {
  background: #1c2433;
}

.plan-card--premium {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 255, 255, 0.18), transparent 50%),
    linear-gradient(145deg, #f47c1f 0%, #e06e14 55%, #c45f11 100%);
  border: 2px solid #e06e14;
  box-shadow: 0 3px 0 #9a4a0c, 0 12px 28px rgba(244, 124, 31, 0.35);
  color: #fff;
}

.plan-card--premium .plan-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff7ed;
  color: #9a3412;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.plan-card--premium .plan-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
}

.plan-card--premium .plan-card__desc {
  font-size: 0.75rem;
  color: rgba(255, 237, 213, 0.85);
  margin-top: 0.2rem;
}

.plan-card--premium .plan-card__price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.plan-card--premium .plan-card__period {
  font-size: 0.75rem;
  color: rgba(255, 237, 213, 0.75);
}

.plan-card--premium .plan-card__features {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
}

.plan-card--premium .plan-card__check {
  color: rgba(255, 255, 255, 0.85);
}

.plan-card--premium .plan-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  border-radius: 0.85rem;
  background: #fff;
  color: #9a3412;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color var(--duration-fast) ease;
}

.plan-card--premium .plan-card__btn:hover {
  background: #fff7ed;
}

.plan-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.subscribe-about {
  background: linear-gradient(160deg, #fffaf3 0%, #ffffff 70%);
  border: 1.5px solid #e8ddd0;
  border-radius: 1.15rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(90, 50, 20, 0.04);
}

.subscribe-about__label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a3412;
  margin: 0 0 0.5rem;
}

.subscribe-about__body {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

.plan-form__panel {
  background: linear-gradient(160deg, #fffaf3 0%, #ffffff 70%);
  border: 2px solid #f0c9a0;
  border-radius: 1.15rem;
  padding: 1.25rem;
  box-shadow: 0 4px 16px rgba(244, 124, 31, 0.08);
}

/* Submit a Tip — asphalt hero + parchment form */
.submit-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
  padding: 2rem 1.25rem 2.25rem;
  color: #fff;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--sodium), transparent 55%),
    radial-gradient(ellipse 45% 40% at 10% 90%, rgba(244, 124, 31, 0.15), transparent 50%),
    linear-gradient(165deg, var(--asphalt-mid) 0%, var(--asphalt) 55%, #080b10 100%);
}

.submit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.015) 11px,
      rgba(255, 255, 255, 0.015) 12px
    );
  pointer-events: none;
}

.submit-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1.75rem;
  background: linear-gradient(to bottom, transparent 15%, var(--surface) 100%);
  pointer-events: none;
  z-index: 2;
}

.submit-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding-bottom: 0.5rem;
}

.submit-hero__cone {
  width: 3.75rem;
  height: 3.75rem;
  object-fit: contain;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 8px 20px rgba(244, 124, 31, 0.4));
}

.submit-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 186, 116, 0.9);
  margin: 0 0 0.65rem;
}

.submit-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 0.75rem;
}

.submit-hero__lead {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 auto;
  max-width: 22rem;
}

/* ── Choose cards (submit / advertise pickers) ── */
.choose-cards {
  max-width: 40rem;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.choose-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  text-decoration: none;
  color: inherit;
  border-radius: 1.1rem;
  border: 1px solid rgba(244, 124, 31, 0.28);
  border-left: 4px solid var(--brand);
  background:
    linear-gradient(145deg, #fff8f1 0%, #ffffff 42%, #fff 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 24px rgba(12, 16, 23, 0.06);
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.choose-card:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 124, 31, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 32px rgba(244, 124, 31, 0.14);
}

.choose-card:active {
  transform: translateY(0);
}

.choose-card--footage {
  border-left-color: #0ea5e9;
  border-color: rgba(14, 165, 233, 0.28);
  background:
    linear-gradient(145deg, #f0f9ff 0%, #ffffff 42%, #fff 100%);
}

.choose-card--footage:hover {
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 32px rgba(14, 165, 233, 0.12);
}

.choose-card--bail {
  border-left-color: #64748b;
  border-color: rgba(100, 116, 139, 0.3);
  background:
    linear-gradient(145deg, #f8fafc 0%, #ffffff 42%, #fff 100%);
}

.choose-card--bail:hover {
  border-color: rgba(100, 116, 139, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 32px rgba(15, 23, 42, 0.1);
}

.choose-card--inquiry {
  border-left-color: #a16207;
  border-color: rgba(161, 98, 7, 0.28);
  background:
    linear-gradient(145deg, #fffbeb 0%, #ffffff 42%, #fff 100%);
}

.choose-card--inquiry:hover {
  border-color: rgba(161, 98, 7, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 32px rgba(161, 98, 7, 0.12);
}

.choose-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #fff 0%, #ffedd5 100%);
  border: 1px solid rgba(244, 124, 31, 0.35);
  color: var(--brand-deep);
  box-shadow: 0 4px 12px rgba(244, 124, 31, 0.12);
}

.choose-card--footage .choose-card__icon {
  background: linear-gradient(160deg, #fff 0%, #e0f2fe 100%);
  border-color: rgba(14, 165, 233, 0.35);
  color: #0369a1;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.12);
}

.choose-card--bail .choose-card__icon {
  background: linear-gradient(160deg, #fff 0%, #e2e8f0 100%);
  border-color: rgba(100, 116, 139, 0.35);
  color: #334155;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.choose-card--inquiry .choose-card__icon {
  background: linear-gradient(160deg, #fff 0%, #fef3c7 100%);
  border-color: rgba(161, 98, 7, 0.35);
  color: #92400e;
  box-shadow: 0 4px 12px rgba(161, 98, 7, 0.1);
}

.choose-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

.choose-card__body {
  min-width: 0;
  flex: 1;
  padding-top: 0.1rem;
}

.choose-card__eyebrow {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin: 0 0 0.3rem;
}

.choose-card--footage .choose-card__eyebrow {
  color: #0369a1;
}

.choose-card--bail .choose-card__eyebrow {
  color: #475569;
}

.choose-card--inquiry .choose-card__eyebrow {
  color: #92400e;
}

.choose-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.35rem;
}

.choose-card__desc {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #5b6472;
  margin: 0;
}

.choose-card__chevron {
  flex-shrink: 0;
  align-self: center;
  width: 1.5rem;
  height: 1.5rem;
  color: #9ca3af;
  transition: color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.choose-card:hover .choose-card__chevron {
  color: var(--brand);
  transform: translateX(2px);
}

.choose-card--footage:hover .choose-card__chevron {
  color: #0284c7;
}

@media (prefers-reduced-motion: reduce) {
  .choose-card,
  .choose-card__chevron {
    transition: none;
  }
  .choose-card:hover {
    transform: none;
  }
}

.submit-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.submit-form__panel {
  background: linear-gradient(160deg, #fffaf3 0%, #ffffff 70%);
  border: 2px solid #e8ddd0;
  border-radius: 1.15rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(90, 50, 20, 0.06);
}

.submit-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.submit-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3rem;
  border: none;
  border-radius: 0.9rem;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(244, 124, 31, 0.35);
  transition: background-color var(--duration-fast) ease,
              transform var(--duration-fast) var(--ease-out);
}

.submit-form__submit:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
}

.submit-success {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: linear-gradient(160deg, #fffaf3 0%, #ffffff 70%);
  border: 2px solid #f0c9a0;
  border-radius: 1.15rem;
  padding: 1.25rem;
  box-shadow: 0 4px 16px rgba(244, 124, 31, 0.1);
}

.submit-success__cone {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

.submit-success__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  color: #9a3412;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.submit-success__meta {
  font-size: 0.8125rem;
  color: #b45309;
  margin: 0;
  line-height: 1.4;
}

/* Post-pay activation — asphalt band + activate card */
.success-activate {
  text-align: center;
}

.success-activate__hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
  padding: 2rem 1.25rem 2.25rem;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(244, 124, 31, 0.4), transparent 55%),
    linear-gradient(165deg, var(--asphalt-mid) 0%, var(--asphalt) 60%, #080b10 100%);
}

.success-activate__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.015) 11px,
      rgba(255, 255, 255, 0.015) 12px
    );
  pointer-events: none;
}

.success-activate__hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1.75rem;
  background: linear-gradient(to bottom, transparent 15%, var(--surface) 100%);
  pointer-events: none;
  z-index: 2;
}

.success-activate__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 24rem;
  margin: 0 auto;
  padding-bottom: 0.5rem;
}

.success-activate__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  background: rgba(244, 124, 31, 0.25);
  color: #fdba74;
  box-shadow: inset 0 0 0 1px rgba(253, 186, 116, 0.4);
}

.success-activate__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.5rem;
}

.success-activate__lead {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 20rem;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 500;
}

.success-activate__card {
  max-width: 22rem;
  margin: 0 auto 1.25rem;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.12);
  text-align: left;
}

.success-activate__card-top {
  padding: 1.25rem 1.2rem 1.15rem;
  background: var(--brand);
  color: #fff;
}

.success-activate__card-bottom {
  padding: 1.15rem 1.2rem 1.25rem;
  background: #111827;
  color: #fff;
}

.success-activate__panel-label {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.success-activate__panel-hint {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.success-activate__copy-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.success-activate__code {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0.65rem 0.75rem;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  word-break: break-all;
  line-height: 1.3;
}

.success-activate__copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-shrink: 0;
  min-width: 4.5rem;
  padding: 0 0.85rem;
  border: none;
  border-radius: 0.65rem;
  background: #fff;
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out), background-color var(--duration-fast) ease;
}

.success-activate__copy-btn:hover {
  background: #fff7ed;
}

.success-activate__copy-btn:active {
  transform: scale(0.97);
}

.success-activate__copy-btn--done {
  background: #111827;
  color: #fff;
}

.success-activate__copy-icon {
  width: 1rem;
  height: 1rem;
}

.success-activate__next-label {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.success-activate__primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3.15rem;
  padding: 0 1.25rem;
  border-radius: 9999px;
  background: #0088cc;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.35);
  transition: transform var(--duration-fast) var(--ease-out), background-color var(--duration-fast) ease;
}

.success-activate__primary:hover {
  background: #0077b3;
}

.success-activate__primary:active {
  transform: scale(0.97);
}

.success-activate__panel-note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.success-activate__receipt {
  margin: 0 auto 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.success-activate__home {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.success-activate__home:hover {
  color: var(--brand);
}

/* ── Breadcrumb variants ── */
.breadcrumb {
  background: #fff7ed;
  border-bottom: 1px solid #ffedd5;
  padding: 0.5rem 1rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  color: #6b7280;
}

@media (min-width: 1024px) {
  .breadcrumb__list {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.breadcrumb__link {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.breadcrumb__link:hover {
  color: #c2410c;
  text-decoration: underline;
}

.breadcrumb__sep {
  color: #fdba74;
  user-select: none;
}

.breadcrumb__current {
  color: #9a3412;
  font-weight: 600;
  max-width: 12.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb--dark {
  background: var(--asphalt);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumb--dark .breadcrumb__list {
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb--dark .breadcrumb__link:hover {
  color: #fdba74;
}

.breadcrumb--dark .breadcrumb__sep {
  color: rgba(244, 124, 31, 0.45);
}

.breadcrumb--dark .breadcrumb__current {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Checkpoint detail hero (Telegram deep-link landing) ── */
.cp-detail-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 1rem 1.75rem;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 15%, var(--sodium), transparent 55%),
    linear-gradient(165deg, var(--asphalt-mid) 0%, var(--asphalt) 55%, #080b10 100%);
}

.cp-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.015) 11px,
      rgba(255, 255, 255, 0.015) 12px
    );
  pointer-events: none;
}

.cp-detail-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1.75rem;
  background: linear-gradient(to bottom, transparent 15%, var(--surface) 100%);
  pointer-events: none;
  z-index: 2;
}

.cp-detail-hero--live {
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(244, 124, 31, 0.32), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(239, 68, 68, 0.22), transparent 50%),
    linear-gradient(145deg, #1c2433 0%, #111827 48%, #0a0e14 100%);
}

.cp-detail-hero--tonight {
  background:
    radial-gradient(ellipse 100% 90% at 100% -10%, rgba(244, 124, 31, 0.45), transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(245, 158, 11, 0.22), transparent 45%),
    linear-gradient(150deg, #2a1c12 0%, #1a120c 50%, #120d09 100%);
}

.cp-detail-hero--upcoming {
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(244, 124, 31, 0.28), transparent 55%),
    linear-gradient(165deg, #1a1520 0%, var(--asphalt) 60%, #080b10 100%);
}

.cp-detail-hero--muted {
  background:
    linear-gradient(165deg, #1a1d24 0%, #12151a 55%, #0a0c10 100%);
}

.cp-detail-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26.5rem;
  margin: 0 auto;
  padding-bottom: 0.75rem;
}

/* ── Instagram-ready share card (screenshot this) ── */
.cp-share-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1.1rem 1.05rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.35);
}

.cp-share-card--map {
  gap: 0.85rem;
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 42rem);
  min-height: 28rem;
}

.cp-share-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.cp-share-card__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.cp-share-card__mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  object-fit: cover;
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 8px 18px rgba(0, 0, 0, 0.35);
}

.cp-share-card__brand-text {
  min-width: 0;
}

.cp-share-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.cp-share-card__tag {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.cp-share-card__badge {
  margin: 0;
  flex-shrink: 0;
}

.cp-share-card__body {
  min-width: 0;
}

.cp-share-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 6.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 0.45rem;
}

.cp-share-card__place {
  margin: 0 0 0.7rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.cp-share-card__when {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 650;
  line-height: 1.4;
  color: rgba(255, 236, 210, 0.92);
}

.cp-share-card__when-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #fdba74;
}

.cp-share-card__map {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
}

.cp-share-card__map .mcp-map,
.cp-share-card__map .mcp-map__shell {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  height: 100%;
}

.cp-share-card__map .mcp-map__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cp-share-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.15rem;
}

.cp-share-card__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cp-share-card__ig:hover {
  color: rgba(255, 255, 255, 0.85);
}

.cp-share-card__ig-icon {
  width: 1.05rem;
  height: 1.05rem;
  color: #fdba74;
  flex-shrink: 0;
}

.cp-share-card__site {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.55);
}

/* Page tools — outside the screenshot card */
.cp-detail-hero__tools {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cp-detail-hero__maps-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  align-self: center;
  color: rgba(255, 236, 210, 0.72);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(253, 186, 116, 0.35);
  padding-bottom: 0.1rem;
  transition: color var(--duration-fast) ease, border-color var(--duration-fast) ease;
}

.cp-detail-hero__maps-link:hover {
  color: #fff;
  border-bottom-color: rgba(253, 186, 116, 0.8);
}

.cp-detail-hero__maps-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.cp-detail-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  line-height: 1;
}

.cp-detail-hero__badge--live {
  background: rgba(220, 38, 38, 0.35);
  color: #fecaca;
  box-shadow: inset 0 0 0 1px rgba(252, 165, 165, 0.35);
}

.cp-detail-hero__badge--tonight {
  background: rgba(245, 158, 11, 0.25);
  color: #fde68a;
  box-shadow: inset 0 0 0 1px rgba(253, 186, 116, 0.35);
}

.cp-detail-hero__badge--upcoming {
  background: rgba(244, 124, 31, 0.25);
  color: #fed7aa;
  box-shadow: inset 0 0 0 1px rgba(253, 186, 116, 0.3);
}

.cp-detail-hero__badge--muted {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}

.cp-detail-hero__pulse {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
  animation: cp-pulse 1.6s ease-out infinite;
}

.cp-detail-hero__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  background: #f59e0b;
}

/* ── Share bar ─────────────────────────────────────────────────────────────── */
.share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.share-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0 0.9rem;
  border-radius: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--duration-fast) ease,
              transform var(--duration-fast) var(--ease-out),
              color var(--duration-fast) ease;
}

.share-bar__icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.share-bar__x,
.share-bar__fb {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.share-bar__btn--primary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.share-bar__btn--primary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.share-bar__btn--ghost {
  background: transparent;
  color: rgba(255, 236, 210, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.share-bar__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* On desktop without native share, Share is secondary — Copy / X / FB do the work */
.share-bar--fallback [data-share-native] {
  display: none;
}

.share-bar--fallback.share-bar--card [data-share-native] {
  display: inline-flex;
}

.share-bar--nudge [data-share-copy],
.share-bar--nudge [data-share-x],
.share-bar--nudge [data-share-fb] {
  box-shadow: inset 0 0 0 1px rgba(253, 186, 116, 0.85);
  transform: translateY(-1px);
}

/* On mobile with native share, keep Share + Copy; hide social intents */
@media (max-width: 640px) {
  .share-bar--native [data-share-x],
  .share-bar--native [data-share-fb] {
    display: none;
  }
}

.share-bar--hero {
  margin-top: 1rem;
}

.share-bar--tools {
  margin-top: 0;
  justify-content: center;
}

.share-bar--tools .share-bar__btn--primary {
  background: rgba(255, 255, 255, 0.1);
}

.share-bar--profile {
  margin: 0 0 1.25rem;
}

.share-bar--profile .share-bar__btn--primary {
  background: var(--brand);
  box-shadow: 0 8px 24px rgba(244, 124, 31, 0.35);
}

.share-bar--profile .share-bar__btn--primary:hover {
  background: var(--brand-hover);
}

.share-bar--profile .share-bar__btn--ghost {
  color: #374151;
  box-shadow: inset 0 0 0 1px #d1d5db;
  background: #fff;
}

.share-bar--profile .share-bar__btn--ghost:hover {
  background: #f9fafb;
  color: #111827;
}

.share-bar--card {
  position: relative;
  z-index: 2;
  margin: 0;
  flex-direction: column;
  gap: 0.4rem;
}

.share-bar--card .share-bar__btn {
  width: 3.25rem;
  min-height: 3.25rem;
  padding: 0.45rem 0.35rem;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0.85rem;
}

.share-bar--card .share-bar__icon {
  width: 1.05rem;
  height: 1.05rem;
}

.share-bar--card [data-share-copy],
.share-bar--card [data-share-x],
.share-bar--card [data-share-fb] {
  display: none;
}

.share-bar--card .share-bar__btn--primary {
  background: #111827;
  color: #fff;
  box-shadow: none;
}

.cp-card--live .share-bar--card .share-bar__btn--primary,
.cp-card--tonight .share-bar--card .share-bar__btn--primary,
.cp-card--upcoming .share-bar--card .share-bar__btn--primary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.cp-card__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

/* Detail facts panel below hero */
.cp-detail-panel {
  background: var(--surface-elevated);
  border: 1.5px solid #e8e4de;
  border-radius: 1.15rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.05);
}

.cp-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cp-detail-row + .cp-detail-row {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid #f0ebe4;
}

.cp-detail-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: #fff7ed;
  color: var(--brand);
  flex-shrink: 0;
}

.cp-detail-row__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.cp-detail-row__label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9a3412;
  margin: 0 0 0.2rem;
}

.cp-detail-row__value {
  font-size: 0.9375rem;
  font-weight: 650;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
}

.cp-detail-row__sub {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0.25rem 0 0;
}

.cp-detail-row__link {
  font-size: 0.8125rem;
  color: #c2410c;
  word-break: break-all;
}

.cp-detail-row__link:hover {
  text-decoration: underline;
}

.cp-detail-source {
  margin-bottom: 1.5rem;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1.5px solid #e8e4de;
  background: #fff;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.05);
}

.cp-detail-source__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 24rem;
  object-fit: contain;
  background: #f9fafb;
}

.cp-detail-source__cap {
  font-size: 0.75rem;
  color: #6b7280;
  padding: 0.65rem 1rem;
  border-top: 1px solid #f0ebe4;
  margin: 0;
}

/* ── Place hero (state / county / city) ── */
.place-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.25rem 1.75rem;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 75% 20%, var(--sodium), transparent 55%),
    linear-gradient(160deg, var(--asphalt-mid) 0%, var(--asphalt) 60%, #080b10 100%);
}

.place-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.015) 11px,
      rgba(255, 255, 255, 0.015) 12px
    );
  pointer-events: none;
}

.place-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1.5rem;
  background: linear-gradient(to bottom, transparent 20%, var(--surface) 100%);
  pointer-events: none;
  z-index: 2;
}

.place-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 0.35rem;
}

@media (min-width: 640px) {
  .place-hero__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.place-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 186, 116, 0.85);
  margin: 0 0 0.4rem;
}

.place-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 0.4rem;
}

.place-hero__meta {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.4;
}

.place-hero__sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  line-height: 1.45;
  max-width: 36rem;
}

.place-hero__inner--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.place-hero__copy {
  min-width: 0;
}

.place-hero--attorneys .atty-advertise-cta {
  margin: 0;
}

.place-hero--attorneys .atty-advertise-cta__link,
.place-hero--attorneys .atty-advertise-cta__link--secondary {
  color: #fdba74;
  text-decoration-color: rgba(253, 186, 116, 0.45);
}

.place-hero--attorneys .atty-advertise-cta__link:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.place-hero--attorneys .atty-advertise-cta__sep {
  color: rgba(253, 186, 116, 0.45);
}

.place-hero__meta a {
  color: #fdba74;
  text-decoration: none;
  font-weight: 600;
}

.place-hero__meta a:hover {
  text-decoration: underline;
  color: #fff;
}

.place-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0 1.15rem;
  border-radius: 9999px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(244, 124, 31, 0.4);
  transition: background-color var(--duration-fast) ease;
}

.place-hero__cta:hover {
  background: var(--brand-hover);
}

/* ── FAQ block (geo + detail pages) ── */
.faq-block {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.faq-block__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.faq-block__icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--brand);
  flex-shrink: 0;
}

.faq-block__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.faq-block__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq-item {
  background: linear-gradient(160deg, #fffaf3 0%, #ffffff 70%);
  border: 1.5px solid #e8ddd0;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(90, 50, 20, 0.04);
}

.faq-item[open] {
  border-color: #f0c9a0;
  box-shadow: 0 4px 14px rgba(244, 124, 31, 0.08);
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--ink);
  user-select: none;
  transition: background-color var(--duration-fast) ease;
}

.faq-item__summary:hover {
  background: #fff7ed;
}

.faq-item__chevron {
  width: 1rem;
  height: 1rem;
  color: #c4a484;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out), color var(--duration-fast) ease;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--brand);
}

.faq-item__body {
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.55;
  border-top: 1px solid #f0ebe4;
  padding-top: 0.75rem;
}

/* ── Help page ─────────────────────────────────────────────────────────────── */

.help-hero .subscribe-hero__cone {
  width: 3.5rem;
  height: 3.5rem;
}

.help-page {
  max-width: 36rem;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.help-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.4rem;
  border-radius: 1.05rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.help-tab {
  appearance: none;
  border: 1px solid transparent;
  background: #fff;
  color: #4b5563;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  min-height: 3.15rem;
  padding: 0.4rem 0.25rem;
  border-radius: 0.8rem;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.help-tab__icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  opacity: 0.85;
}

.help-tab__icon--substack {
  width: 0.95rem;
  height: 0.95rem;
}

.help-tab:hover {
  color: #9a3412;
  border-color: #fed7aa;
  background: #fff7ed;
  transform: translateY(-1px);
}

.help-tab:focus-visible {
  outline: 2px solid #f47c1f;
  outline-offset: 1px;
}

.help-tab.is-active {
  color: #fff;
  background: linear-gradient(145deg, #f47c1f, #ea580c);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(244, 124, 31, 0.32);
}

.help-tab.is-active .help-tab__icon {
  opacity: 1;
}

.help-tab--muted:not(.is-active) {
  color: #6b7280;
  background: #fafafa;
  border-color: #eceff3;
}

.help-tab--muted:not(.is-active):hover {
  color: #9a3412;
  background: #fff7ed;
  border-color: #fed7aa;
}

.help-panel {
  background: #fff;
  border: 1px solid #eee6dc;
  border-radius: 1.15rem;
  padding: 1.25rem 1.15rem 1.35rem;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
  animation: helpPanelIn 0.22s ease;
}

.help-panel.is-hidden,
.help-panel[hidden] {
  display: none !important;
}

@keyframes helpPanelIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.help-panel__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

.help-panel__lead {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

.help-panel--substack .help-panel__lead {
  margin-bottom: 0.85rem;
}

@media (max-width: 380px) {
  .help-tab {
    font-size: 0.65rem;
    min-height: 2.9rem;
    gap: 0.15rem;
  }

  .help-tab__icon {
    width: 0.95rem;
    height: 0.95rem;
  }
}

.help-billing-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

@media (min-width: 520px) {
  .help-billing-form__row {
    flex-direction: row;
    align-items: stretch;
  }

  .help-billing-form__row .form-input {
    flex: 1 1 auto;
  }

  .help-billing-form__row .help-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

.help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.help-btn--primary {
  color: #fff;
  background: linear-gradient(145deg, #f47c1f, #ea580c);
  box-shadow: 0 4px 14px rgba(244, 124, 31, 0.28);
}

.help-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(244, 124, 31, 0.35);
}

.help-btn--ghost {
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  margin-top: 0.75rem;
}

.help-panel--substack .help-btn--primary {
  margin-top: 0.15rem;
}

.help-btn--block {
  width: 100%;
  margin-top: 0.35rem;
}

.help-callout {
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.help-callout strong {
  display: block;
  font-size: 0.8125rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.help-callout p {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}

.help-flash {
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  margin-bottom: 0.85rem;
}

.help-flash--ok {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.help-flash--err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.help-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.help-faq {
  border: 1px solid #eee6dc;
  border-radius: 0.9rem;
  background: #fafaf8;
  overflow: hidden;
}

.help-faq[open] {
  background: #fff;
  border-color: #fed7aa;
}

.help-faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.35;
}

.help-faq__q::-webkit-details-marker {
  display: none;
}

.help-faq__chev {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  color: #9ca3af;
  transition: transform 0.18s ease;
}

.help-faq[open] .help-faq__chev {
  transform: rotate(180deg);
  color: var(--brand);
}

.help-faq__a {
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.55;
  white-space: pre-wrap;
  border-top: 1px solid #f0ebe4;
  padding-top: 0.75rem;
}

.help-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.help-contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .help-contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.help-inline-link {
  color: #ea580c;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.help-back {
  text-align: center;
  margin: 0.35rem 0 0;
}

.help-back a {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ea580c;
  text-decoration: none;
}

.help-back a:hover {
  text-decoration: underline;
}

.help-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ── Place view tabs (Checkpoints | Attorneys) ─────────────────────────────── */

.place-view-switch {
  position: relative;
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem 1.15rem;
  border-radius: 1.1rem;
  overflow: hidden;
  color: #fff;
  border: 1px solid #3d2a1a;
  border-left: 4px solid var(--brand);
  background:
    radial-gradient(ellipse 90% 80% at 100% -20%, rgba(244, 124, 31, 0.4), transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 110%, rgba(245, 158, 11, 0.18), transparent 50%),
    linear-gradient(150deg, #2a1c12 0%, #1a120c 50%, #120d09 100%);
  box-shadow: 0 3px 0 #0c0806, 0 12px 28px rgba(42, 28, 18, 0.28);
}

.place-view-switch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.02) 11px,
      rgba(255, 255, 255, 0.02) 12px
    );
  pointer-events: none;
}

.place-view-switch__label {
  position: relative;
  z-index: 1;
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 186, 116, 0.9);
}

.place-view-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 0.9rem;
  padding: 0.35rem;
  width: 100%;
  max-width: 28rem;
}

.place-view-tabs__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 236, 210, 0.72);
  text-decoration: none;
  border-radius: 0.7rem;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease,
              border-color 0.15s ease, transform 0.12s ease;
  white-space: nowrap;
}

.place-view-tabs__pill:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.place-view-tabs__pill--active {
  color: #111827;
  background: linear-gradient(180deg, #ffd7a8 0%, #f47c1f 55%, #e06e14 100%);
  border-color: rgba(255, 215, 160, 0.55);
  box-shadow: 0 2px 0 #9a3412, 0 8px 18px rgba(244, 124, 31, 0.35);
}

.place-view-tabs__pill--active:hover {
  color: #111827;
  background: linear-gradient(180deg, #ffe0bc 0%, #f59a3d 55%, #f47c1f 100%);
}

.place-view-tabs__pill--active .place-view-tabs__count {
  background: #111827;
  color: #ffedd5;
}

.place-view-tabs__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.35rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 236, 210, 0.9);
}

.place-view-switch__hint {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 236, 210, 0.7);
}

.place-view-switch__hint a {
  color: #fdba74;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.place-view-switch__hint a:hover {
  color: #fed7aa;
}

.atty-scope-chip {
  border: none;
  cursor: pointer;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  border-radius: 0.4rem;
  background: #fff7ed;
  color: #9a3412;
}

/* ── Attorney practice category chips ─────────────────────────────────────── */

.att-cat-nav {
  margin: 0 0 1.75rem;
}

.att-cat-nav__label {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a3412;
}

.att-cat-nav__row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.35rem;
  margin: 0 -0.15rem;
  padding-left: 0.15rem;
  padding-right: 0.15rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.att-cat-nav__row::-webkit-scrollbar {
  display: none;
}

@media (min-width: 640px) {
  .att-cat-nav__row {
    flex-wrap: wrap;
    overflow: visible;
    margin: 0;
    padding: 0;
  }
}

.att-cat-chip {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 2.25rem;
  padding: 0.4rem 0.95rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #9a3412;
  text-decoration: none;
  white-space: nowrap;
  background: #fff;
  border: 1.5px solid #fdba74;
  border-radius: 999px;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease,
              box-shadow 0.15s ease;
}

.att-cat-chip:hover {
  color: #7c2d12;
  border-color: #f47c1f;
  background: #fff7ed;
  box-shadow: 0 2px 8px rgba(196, 95, 17, 0.1);
}

.att-cat-chip--active {
  color: #fff;
  background: #111827;
  border-color: #111827;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.18);
}

.att-cat-chip--active:hover {
  color: #fff;
  background: #1f2937;
  border-color: #1f2937;
}

/* ── Attorney cards / profile / featured ───────────────────────────────────── */

.atty-featured__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.atty-featured__hint {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  color: #6b7280;
}

.atty-card {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #e8e0d6;
  border-radius: 1.1rem;
  box-shadow: 0 1px 2px rgba(28, 25, 23, 0.04);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.atty-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #f47c1f 0%, #c45f11 100%);
}

.atty-card--linked:hover {
  border-color: #fdba74;
  box-shadow: 0 8px 22px rgba(154, 52, 18, 0.08);
  transform: translateY(-1px);
}

.atty-card__hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.atty-card__inner {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  padding: 0.95rem 1rem 0.95rem 1.15rem;
}

.atty-card__rail {
  width: 4.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atty-card__photo {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 0.85rem;
  object-fit: cover;
  background: #f3f4f6;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.06);
}

.atty-card__initials {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 0.85rem;
  background: linear-gradient(160deg, #1f2937 0%, #111827 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.atty-card__main {
  flex: 1;
  min-width: 0;
}

.atty-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: #111827;
}

.atty-card__sponsored {
  margin: 0 0 0.2rem;
  font-family: var(--font-display, inherit);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8a29e;
  line-height: 1;
}

.atty-card__sub {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #6b7280;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.atty-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.45rem 0 0;
}

.atty-card__chip {
  font-size: 0.65rem;
  font-weight: 650;
  padding: 0.18rem 0.5rem;
  border-radius: 0.4rem;
  background: #fff7ed;
  color: #9a3412;
}

.atty-card__ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.atty-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  min-width: 4.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--duration-fast) ease, color var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

.atty-card__cta--call {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 2px rgba(154, 52, 18, 0.18);
}

.atty-card__cta--call:hover {
  background: var(--brand-hover, #ea580c);
  color: #fff;
}

.atty-card__cta--email {
  background: #fff;
  color: #9a3412;
  box-shadow: inset 0 0 0 1.5px #fdba74;
}

.atty-card__cta--email:hover {
  background: #fff7ed;
  color: #7c2d12;
}

.atty-card__cta--ghost {
  color: #9ca3af;
  pointer-events: none;
  font-weight: 650;
}

@media (max-width: 479px) {
  .atty-card__inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .atty-card__ctas {
    flex-direction: row;
    width: 100%;
    padding-left: 5.4rem;
    margin-top: -0.15rem;
  }

  .atty-card__cta {
    flex: 1;
  }
}

.cp-card__maps--ghost {
  pointer-events: none;
  opacity: 0.7;
}

.featured-atty__head {
  font-family: Outfit, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin: 0 0 0.75rem;
}

.featured-atty__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.featured-atty__card {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
}

.featured-atty__photo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #e5e7eb;
}

.featured-atty__photo--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #fff;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 700;
}

.featured-atty__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111827;
  margin: 0;
}

.featured-atty__sponsored {
  margin: 0 0 0.2rem;
  font-family: var(--font-display, inherit);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  line-height: 1;
}

.featured-atty__firm {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0.15rem 0 0;
}

.featured-atty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.featured-atty__btn {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  text-decoration: none;
  background: #f3f4f6;
  color: #111827;
}

.featured-atty__btn--call {
  background: #111827;
  color: #fff;
}

.atty-profile__hero {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

/* Instagram-ready attorney share card (mirrors .cp-share-card) */
.atty-share-card {
  gap: 0.85rem;
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 42rem);
  min-height: 28rem;
}

.atty-share-card__photo-wrap {
  flex: 1 1 auto;
  min-height: 0;
  border-radius: 1.05rem;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 12px 28px rgba(0, 0, 0, 0.35);
  background: #0b0f16;
}

.atty-share-card__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atty-share-card__photo--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(244, 124, 31, 0.28), transparent 60%),
    linear-gradient(165deg, #1a1d24 0%, #0b0f16 100%);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 16vw, 5rem);
  letter-spacing: -0.04em;
}

.atty-share-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.4rem 0 0.35rem;
}

.atty-share-card__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 236, 210, 0.92);
  background: rgba(244, 124, 31, 0.18);
  box-shadow: inset 0 0 0 1px rgba(253, 186, 116, 0.28);
}

.atty-share-card__geo {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 550;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.55);
}

.atty-share-card__phone {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #fdba74;
}

.atty-profile__cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  width: 100%;
  max-width: 22rem;
  align-self: center;
  margin-inline: auto;
}

.atty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.55rem 1rem;
  border-radius: 0.85rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  transition: background-color var(--duration-fast) ease, transform var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease, color var(--duration-fast) ease;
}

.atty-cta__icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.atty-cta__label {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.atty-cta__meta {
  font-size: 0.6875rem;
  font-weight: 650;
  opacity: 0.88;
  max-width: 8.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.atty-cta--call {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.atty-cta--call:hover {
  background: #fff7ed;
  color: var(--brand-hover, #ea580c);
}

.atty-cta--secondary,
.atty-cta--email,
.atty-cta--website {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4);
}

.atty-cta--secondary:hover,
.atty-cta--email:hover,
.atty-cta--website:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Attorney profile: one Share button + optional desktop menu */
.share-bar--atty {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  flex-wrap: nowrap;
  gap: 0;
}

.share-bar--atty.share-bar--fallback [data-share-native],
.share-bar--atty.share-bar--native [data-share-native] {
  display: inline-flex;
  width: 100%;
}

.share-bar--atty .atty-share-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.4rem);
  z-index: 5;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.4rem;
  border-radius: 0.85rem;
  background: #151b26;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.share-bar--atty.is-open .atty-share-menu,
.share-bar--atty .atty-share-menu:not([hidden]) {
  display: flex;
}

.share-bar--atty .atty-share-menu[hidden] {
  display: none !important;
}

.atty-share-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.75rem;
  border: none;
  border-radius: 0.65rem;
  background: transparent;
  color: #ffedd5;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.atty-share-menu__item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.atty-profile__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 0.15rem;
}

.atty-profile__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.75rem;
  color: rgba(255, 236, 210, 0.88);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: background-color var(--duration-fast) ease, color var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.atty-profile__social:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: translateY(-1px);
}

.atty-profile__social svg {
  width: 1.1rem;
  height: 1.1rem;
}

.atty-profile__quiet-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.35rem;
}

.atty-profile__section {
  margin-top: 1.75rem;
}

.atty-profile__section:first-child {
  margin-top: 0;
}

.atty-profile__section-title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a3412;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.atty-profile__tagline {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink, #111827);
}

.atty-profile__bio {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #374151;
}

.atty-profile__bio p {
  margin: 0 0 0.85rem;
}

.atty-profile__bio p:last-child {
  margin-bottom: 0;
}

.atty-profile__contact-panel {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(160deg, #fffaf3 0%, #ffffff 72%);
  border: 1.5px solid #e8ddd0;
  box-shadow: 0 2px 10px rgba(90, 50, 20, 0.04);
}

.atty-profile__contact-panel--mapped {
  padding: 0;
  overflow: hidden;
  gap: 0;
}

.atty-profile__contact-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}

.atty-profile__contact-panel--mapped .atty-profile__contact-meta {
  padding: 0.9rem 1.05rem 1rem;
}

.atty-profile__address {
  margin: 0;
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #1f2937;
  font-weight: 550;
  min-width: min(100%, 12rem);
  flex: 1 1 12rem;
}

.atty-profile__address-line {
  display: block;
}

.atty-profile__gmaps {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #fff7ed;
  box-shadow: inset 0 0 0 1px #fdba74;
  font-size: 0.75rem;
  font-weight: 750;
  color: #9a3412;
  text-decoration: none;
}

.atty-profile__gmaps:hover {
  background: #ffedd5;
  color: var(--brand);
  text-decoration: none;
}

.atty-profile__gmaps-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.atty-profile__map {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.atty-profile__contact-panel:not(.atty-profile__contact-panel--mapped) .atty-profile__map {
  border-radius: 0.85rem;
}

.atty-profile__map .mcp-map,
.atty-profile__map .mcp-map__shell {
  min-height: 14rem;
}

.atty-profile__map .mcp-map__canvas {
  min-height: 14rem;
}

@media (min-width: 720px) {
  .atty-profile__contact-panel--mapped {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(12rem, 0.85fr);
    align-items: stretch;
  }

  .atty-profile__contact-panel--mapped .atty-profile__map {
    min-height: 100%;
  }

  .atty-profile__contact-panel--mapped .atty-profile__map .mcp-map,
  .atty-profile__contact-panel--mapped .atty-profile__map .mcp-map__shell,
  .atty-profile__contact-panel--mapped .atty-profile__map .mcp-map__canvas {
    min-height: 16rem;
    height: 100%;
  }

  .atty-profile__contact-panel--mapped .atty-profile__contact-meta {
    flex-direction: column;
    justify-content: center;
    padding: 1.25rem 1.2rem;
    border-left: 1px solid #f0e6d8;
  }
}

.atty-profile__hours {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #374151;
  white-space: pre-line;
}

.atty-profile__blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.atty-profile__blog-link {
  font-size: 0.9rem;
  font-weight: 650;
  color: #9a3412;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.atty-profile .faq-block {
  margin-top: 1.75rem;
}

.atty-advertise-cta {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  color: #9a3412;
}

.atty-advertise-cta__link {
  color: #9a3412;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-color: rgba(154, 52, 18, 0.35);
}

.atty-advertise-cta__link:hover {
  color: #7c2d12;
  text-decoration-color: rgba(124, 45, 18, 0.55);
}

.atty-advertise-cta__link--secondary {
  font-weight: 550;
  color: #b45309;
}

.atty-advertise-cta__sep {
  margin: 0 0.35rem;
  color: #fdba74;
}

.atty-profile__photo {
  width: 7rem;
  height: 7rem;
  border-radius: 1rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #e5e7eb;
}

.atty-profile__photo--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #fff;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.atty-profile__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9a3412;
  margin: 0 0 0.35rem;
}

.atty-profile__name {
  font-family: Outfit, system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.15;
}

.atty-profile__firm {
  margin: 0.35rem 0 0;
  color: #4b5563;
  font-size: 1rem;
}

.atty-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.atty-profile__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: #f47c1f;
  text-decoration: underline;
}

.atty-profile__video {
  margin-top: 1.75rem;
  max-width: 40rem;
}

.atty-profile__video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.85rem;
  background: #111;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.atty-profile__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 560px) {
  .atty-profile__hero {
    flex-direction: column;
  }
}

/* ── Checkpoint click-to-load map (MapLibre + OpenFreeMap) ───────────────── */
.mcp-map {
  margin: 0;
}

.mcp-map--hero {
  height: 100%;
  width: 100%;
}

.mcp-map__shell {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 180px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(244, 124, 31, 0.18), transparent 55%),
    #10151d;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.mcp-map__canvas {
  width: 100%;
  height: 100%;
  min-height: 180px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mcp-map--ready .mcp-map__canvas {
  opacity: 1;
}

.mcp-map__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.25rem;
  text-align: center;
  background: rgba(10, 14, 20, 0.72);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mcp-map--ready .mcp-map__overlay,
.mcp-map--loading-done .mcp-map__overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mcp-map__hint {
  margin: 0;
  max-width: 14rem;
  font-family: var(--font-display, inherit);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 236, 210, 0.85);
}

.mcp-map__approx-badge {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  z-index: 3;
  margin: 0;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff7ed;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

/* ── Place page multi-pin map ───────────────────────────────────────────── */

.place-map__head {
  margin-bottom: 0.5rem;
}

.place-map__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.place-map__swatch {
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.place-map__swatch--checkpoint {
  background: #f47c1f;
}

.place-map__swatch--attorney {
  background: #2f6fed;
}

.mcp-map--place {
  width: 100%;
}

.mcp-map--place .mcp-map__shell {
  min-height: 280px;
  height: min(52vw, 380px);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.mcp-map--place .mcp-map__canvas {
  min-height: 280px;
}

/* ── Progressive disclosure: collapse later upcoming on mobile only ── */
.cp-feed-later {
  margin-top: 0.625rem;
}

.cp-feed-more__summary {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 1rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--brand-deep);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 0.875rem;
  cursor: pointer;
  text-align: left;
  transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}

.cp-feed-more__summary:hover {
  background: #ffedd5;
  border-color: #fb923c;
}

.cp-feed-more__summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.cp-feed-more__chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--duration) var(--ease-out);
  flex-shrink: 0;
}

.cp-feed-later.is-expanded .cp-feed-more__chevron {
  transform: rotate(225deg);
  margin-top: 0.25rem;
}

.cp-feed-more__grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.625rem;
}

/* ── Compact checkpoint rows ── */
.cp-row-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cp-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.4rem;
  padding: 0.55rem 0.65rem 0.55rem 0.5rem;
  background:
    linear-gradient(180deg, #fffdfb 0%, #fff8f1 100%);
  border: 1px solid rgba(196, 95, 17, 0.14);
  border-radius: 0.85rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset,
              0 1px 2px rgba(15, 23, 42, 0.04);
}

.cp-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #f47c1f 0%, #c45f11 100%);
  opacity: 0.85;
}

.cp-row--linked:hover {
  border-color: rgba(196, 95, 17, 0.28);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset,
              0 4px 14px rgba(196, 95, 17, 0.08);
}

.cp-row--linked:active {
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.cp-row__hit {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}

.cp-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  flex-shrink: 0;
  padding: 0.35rem 0.2rem;
  line-height: 1.05;
  background: rgba(255, 247, 237, 0.9);
  border: 1px solid rgba(253, 186, 116, 0.55);
  border-radius: 0.55rem;
}

.cp-row__dow {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c45f11;
}

.cp-row__day {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.cp-row__main {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
  pointer-events: none;
}

.cp-row__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cp-row__meta {
  margin: 0.18rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cp-row__sep {
  margin: 0 0.2rem;
  opacity: 0.5;
}

.cp-row__map {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(160deg, #f47c1f 0%, #c45f11 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(196, 95, 17, 0.28);
}

.cp-row__map:hover,
.cp-row__map:focus-visible {
  filter: brightness(1.06);
}

.cp-row__map-icon {
  width: 1.05rem;
  height: 1.05rem;
}

/* ── Desktop place split: list + sticky map ── */
.place-split {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 1024px) {
  .place-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    grid-template-rows: auto auto;
    column-gap: 1.5rem;
    align-items: start;
  }

  /* Give place pages room for list + sticky map */
  main:has(.place-split) {
    max-width: 72rem;
  }

  .place-split__feed {
    grid-column: 1;
    grid-row: 1;
  }

  .place-split__map {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: sticky;
    top: 5.5rem;
    align-self: start;
  }

  .place-split__map .place-map {
    margin-bottom: 0;
  }

  .place-split__map .mcp-map--place .mcp-map__shell,
  .place-split__map .mcp-map--place .mcp-map__canvas {
    min-height: 420px;
    height: min(68vh, 560px);
  }

  .place-split__rest {
    grid-column: 1;
    grid-row: 2;
  }
}

/* Mobile + JS: hide later cards until expanded; show the expand button */
@media (max-width: 1023px) {
  html.mcp-js .cp-feed-more__summary {
    display: flex;
  }

  html.mcp-js .cp-feed-later:not(.is-expanded) .cp-feed-more__grid {
    display: none;
  }

  html.mcp-js .cp-feed-later.is-expanded .cp-feed-more__summary {
    margin-bottom: 0.25rem;
  }
}

/* Desktop: always show every upcoming card */
@media (min-width: 1024px) {
  .cp-feed-more__summary {
    display: none !important;
  }

  .cp-feed-later .cp-feed-more__grid {
    display: flex !important;
  }
}

/* ── Mobile map jump (single Map ↔ List control above bottom nav) ── */
.mcp-map-jump {
  position: fixed;
  left: 50%;
  bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 0.75rem);
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 5.5rem;
  padding: 0.55rem 1.35rem;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--brand);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(196, 95, 17, 0.35);
  cursor: pointer;
}

.mcp-map-jump[hidden] {
  display: none !important;
}

.mcp-map-jump:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

body.mcp-map-mode .mcp-map-jump {
  color: var(--ink);
  background: #fff;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.16);
}

/* Mobile only — desktop already shows map inline under the feed */
@media (max-width: 1023px) {
  .mcp-map-jump:not([hidden]) {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .mcp-map-jump {
    display: none !important;
  }
}

/* Full-viewport map mode on mobile */
@media (max-width: 1023px) {
  body.mcp-map-mode {
    overflow: hidden;
  }

  body.mcp-map-mode .place-map {
    position: fixed;
    inset: 0 0 calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px)) 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0.75rem 1rem 1rem;
    background: var(--surface);
  }

  body.mcp-map-mode .place-map__head {
    margin-bottom: 0.35rem;
  }

  body.mcp-map-mode .place-map__legend {
    margin-bottom: 0.5rem;
  }

  body.mcp-map-mode .mcp-map--place {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  body.mcp-map-mode .mcp-map--place .mcp-map__shell,
  body.mcp-map-mode .mcp-map--place .mcp-map__canvas {
    flex: 1;
    min-height: 0;
    height: 100% !important;
  }
}

.mcp-map-popup__label {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.mcp-map-popup__link {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c2410c;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .mcp-map--place .mcp-map__shell,
  .mcp-map--place .mcp-map__canvas {
    min-height: 320px;
    height: 360px;
  }
}

/* ── Attorney advertise / visibility packages ───────────────────────────── */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.vis-hero {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(244,124,31,0.18), transparent 55%),
    linear-gradient(165deg, var(--asphalt-mid) 0%, var(--asphalt) 55%, #080b10 100%);
  color: #fff;
  padding: 2.25rem 1.25rem 2.5rem;
  margin: 0 -1rem 0;
}
@media (min-width: 768px) {
  .vis-hero { margin: 0; border-radius: 1.25rem; padding: 2.75rem 2rem 3rem; }
}
.vis-hero__inner { max-width: 44rem; margin: 0 auto; text-align: center; }
.vis-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brand);
}
.vis-hero__title {
  margin: 0;
  font-family: var(--font-display, inherit);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  color: #fff;
}
.vis-hero__title span { display: block; }
.vis-hero__title-accent { color: var(--brand); }
.vis-hero__sub {
  margin: 0.85rem auto 0;
  max-width: 32rem;
  font-size: 0.9rem; line-height: 1.5; color: rgba(255,255,255,0.72);
}
.vis-hero__back { margin: 1.1rem 0 0; }
.vis-hero__back a {
  font-size: 0.8125rem; font-weight: 650; color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.vis-hero__back a:hover { color: var(--brand); }

.vis-stats {
  background: var(--asphalt);
  color: #fff;
  margin: 0 -1rem 1.75rem;
  border-top: 1px solid rgba(244,124,31,0.25);
  border-bottom: 1px solid rgba(244,124,31,0.25);
}
@media (min-width: 768px) {
  .vis-stats { margin: 1.25rem 0 2rem; border-radius: 0.85rem; }
}
.vis-stats__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
}
@media (min-width: 800px) {
  .vis-stats__inner { grid-template-columns: repeat(4, 1fr); }
}
.vis-stats__item { text-align: center; }
.vis-stats__value {
  font-family: var(--font-display, inherit);
  font-size: 1.25rem; font-weight: 800; color: var(--brand); line-height: 1.1;
}
.vis-stats__label {
  margin-top: 0.3rem;
  font-size: 0.68rem; font-weight: 650; letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(255,255,255,0.65); line-height: 1.35;
}

.vis-error {
  max-width: 40rem; margin: 0 auto 1.25rem;
  padding: 0.85rem 1rem; border-radius: 0.85rem;
  background: #fef2f2; border: 1px solid #fecaca; color: #991b1b;
  font-size: 0.875rem;
}
.vis-empty {
  max-width: 40rem; margin: 0 auto 2rem;
  padding: 1.25rem; border-radius: 1rem;
  background: #fff7ed; border: 1px solid #ffedd5; color: #9a3412;
  font-weight: 650; text-align: center;
}

.vis-billing {
  text-align: center;
  margin: 0 0 1.5rem;
}
.vis-billing__toggle {
  display: inline-flex;
  background: #eef0f3;
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.vis-billing__btn {
  border: 0; border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem; font-weight: 750;
  cursor: pointer;
  background: transparent; color: #4b5563;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}
.vis-billing__btn.is-active {
  background: var(--asphalt); color: #fff;
}
.vis-billing__save {
  margin-left: 0.25rem;
  font-size: 0.7rem; font-weight: 700; opacity: 0.8;
  color: var(--brand);
}
.vis-billing__btn.is-active .vis-billing__save { color: #ffd4a8; }
.vis-billing__note {
  margin: 0.55rem 0 0;
  font-size: 0.75rem; color: #6b7280; font-weight: 600;
}

.vis-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto 2rem;
  padding: 0 0.25rem;
}
@media (min-width: 960px) {
  .vis-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

.vis-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(12,16,23,0.06);
}
.vis-card.is-featured {
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 14px 36px rgba(12,16,23,0.1);
}
.vis-card__ribbon {
  position: absolute; top: 14px; right: -28px;
  transform: rotate(35deg);
  background: var(--asphalt); color: #fff;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 2.2rem;
  z-index: 2;
}

.vis-card__head {
  padding: 1.15rem 1.2rem 1rem;
  color: #fff;
}
.vis-card--bronze .vis-card__head {
  background: linear-gradient(135deg, #8b5a2b 0%, #cd7f32 55%, #a66b2b 100%);
}
.vis-card--silver .vis-card__head {
  background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #78716c 100%);
}
.vis-card--gold .vis-card__head {
  background: linear-gradient(135deg, #b45309 0%, #d4af37 45%, #f0d78c 100%);
  color: #1a1205;
}
.vis-card--gold .vis-card__tier,
.vis-card--gold .vis-card__tagline,
.vis-card--gold .vis-card__price,
.vis-card--gold .vis-card__price-unit,
.vis-card--gold .vis-card__annual-hint { color: #1a1205; }
.vis-card--gold .vis-card__annual-hint { opacity: 0.75; }

.vis-card__tier {
  margin: 0;
  font-family: var(--font-display, inherit);
  font-size: 1.55rem; font-weight: 800; letter-spacing: 0.02em;
  text-transform: uppercase; line-height: 1;
}
.vis-card__tagline {
  margin: 0.35rem 0 0;
  font-size: 0.72rem; font-weight: 750; letter-spacing: 0.08em;
  text-transform: uppercase; opacity: 0.92;
}
.vis-card__price-wrap { margin-top: 0.85rem; }
.vis-card__price {
  margin: 0;
  font-family: var(--font-display, inherit);
  font-size: 1.65rem; font-weight: 800; line-height: 1.1;
}
.vis-card__price-unit {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; opacity: 0.85;
}
.vis-card__annual-hint {
  margin: 0.4rem 0 0;
  font-size: 0.72rem; font-weight: 700; opacity: 0.9;
}

.vis-card__blurb {
  margin: 0;
  padding: 0.9rem 1.2rem 0;
  font-size: 0.875rem; color: #4b5563; line-height: 1.45;
}

.vis-features {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0 1.2rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  flex: 1;
}
.vis-feature {
  display: flex; gap: 0.7rem; align-items: flex-start;
}
.vis-feature__icon {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.vis-feature__icon svg { width: 1rem; height: 1rem; }
.vis-card--bronze .vis-feature__icon {
  background: rgba(205,127,50,0.15); color: #8b5a2b;
}
.vis-card--silver .vis-feature__icon {
  background: rgba(107,114,128,0.15); color: #4b5563;
}
.vis-card--gold .vis-feature__icon {
  background: rgba(212,175,55,0.2); color: #92400e;
}
.vis-feature__body { min-width: 0; }
.vis-feature__title {
  display: block;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--ink); line-height: 1.25;
}
.vis-feature__detail {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem; color: #6b7280; line-height: 1.4; font-weight: 500;
}

.vis-card__pitch {
  margin: 1.1rem 1.2rem 0;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  font-size: 0.72rem; font-weight: 750; letter-spacing: 0.02em;
  text-transform: uppercase; line-height: 1.35; text-align: center;
}
.vis-card--bronze .vis-card__pitch {
  background: #cd7f32; color: #fff;
}
.vis-card--silver .vis-card__pitch {
  background: #6b7280; color: #fff;
}
.vis-card--gold .vis-card__pitch {
  background: #d4af37; color: #1a1205;
}

.vis-card__cta {
  display: flex; flex-direction: column; gap: 0.55rem;
  margin-top: auto;
  padding: 1.1rem 1.2rem 1.25rem;
}
.vis-card__email {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.65rem;
  padding: 0.65rem 0.8rem;
  font-size: 0.875rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
}
.vis-card__email:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
  border-color: transparent;
}
.vis-card__submit {
  width: 100%;
  border: 0; border-radius: 0.65rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem; font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  background: var(--brand); color: #fff;
  transition: background 0.15s ease;
}
.vis-card__submit:hover:not(:disabled) { background: var(--brand-hover); }
.vis-card__submit:disabled {
  opacity: 0.55; cursor: not-allowed;
}
.vis-card--gold .vis-card__submit {
  background: var(--asphalt); color: #f0d78c;
}
.vis-card--gold .vis-card__submit:hover:not(:disabled) {
  background: #151b26;
}
.vis-card__stripe-note {
  margin: -0.35rem 1.2rem 1rem;
  font-size: 0.7rem; color: #9ca3af;
}

.vis-footnote {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  padding: 1rem 1.15rem;
  text-align: center;
  font-size: 0.8125rem; line-height: 1.5; color: #6b7280;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  .vis-billing__btn,
  .vis-card__submit { transition: none; }
}

/* ── Homepage attorney directory CTA ───────────────────────────────────────── */

.home-atty {
  margin: 1.75rem 0 0.25rem;
}

.home-atty__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1.1rem;
  background:
    linear-gradient(135deg, rgba(244, 124, 31, 0.08) 0%, transparent 55%),
    linear-gradient(165deg, #fffaf3 0%, #ffffff 70%);
  border: 1.5px solid #e8ddd0;
}

@media (min-width: 640px) {
  .home-atty__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem 1.5rem;
  }
}

.home-atty__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9a3412;
}

.home-atty__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink, #111827);
}

.home-atty__sub {
  margin: 0.4rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #6b7280;
  max-width: 36rem;
}

.home-atty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.home-atty__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--duration-fast) ease, color var(--duration-fast) ease, border-color var(--duration-fast) ease;
}

.home-atty__btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(244, 124, 31, 0.25);
}

.home-atty__btn--primary:hover {
  background: var(--brand-hover, #ea580c);
}

.home-atty__btn--ghost {
  background: #fff;
  color: #9a3412;
  border: 1.5px solid #fdba74;
}

.home-atty__btn--ghost:hover {
  background: #fff7ed;
  border-color: var(--brand);
}

/* ── Blog (homepage teaser, index, post) ───────────────────────────────────── */

.home-blog {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.home-blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.home-blog__sub {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.home-blog__all {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

.home-blog__all:hover { color: var(--brand-hover, #ea580c); }

.home-blog__layout {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-blog__layout {
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
  }
}

.home-blog__feature {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ece7df;
  box-shadow: 0 2px 12px rgba(90, 50, 20, 0.04);
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.home-blog__feature:hover {
  border-color: #fdba74;
  box-shadow: 0 8px 24px rgba(244, 124, 31, 0.1);
}

.home-blog__feature-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e5e7eb;
}

.home-blog__feature-img--empty {
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(244, 124, 31, 0.22), transparent 60%),
    linear-gradient(165deg, #1a1d24 0%, #0b0f16 100%);
}

.home-blog__feature-body { padding: 1rem 1.1rem 1.15rem; }

.home-blog__chip {
  margin: 0 0 0.4rem;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a3412;
}

.home-blog__feature-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink, #111827);
}

.home-blog__feature-excerpt {
  margin: 0.45rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #6b7280;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog__date {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: #9ca3af;
}

.home-blog__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.home-blog__row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  border-radius: 0.9rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #ece7df;
  transition: border-color var(--duration-fast) ease;
}

.home-blog__row:hover { border-color: #fdba74; }

.home-blog__thumb {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 0.7rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #e5e7eb;
}

.home-blog__thumb--empty {
  display: block;
  background: linear-gradient(145deg, #fff7ed, #e5e7eb);
}

.home-blog__row-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.25;
  color: #111827;
}

.home-blog__row-excerpt {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: #6b7280;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog__empty {
  display: block;
  padding: 1.25rem 1.35rem;
  border-radius: 1.1rem;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(160deg, #fffaf3 0%, #ffffff 70%);
  border: 1.5px solid #e8ddd0;
}

.blog-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: -0.5rem 0 1.5rem;
}

.blog-cat-nav__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 650;
  text-decoration: none;
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.blog-cat-nav__chip.is-active,
.blog-cat-nav__chip:hover {
  color: #9a3412;
  border-color: #fdba74;
  background: #fff7ed;
}

.blog-empty {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 3rem;
}

.blog-index {
  display: grid;
  gap: 1.15rem;
  margin: 0 auto 3rem;
  max-width: 920px;
}

@media (min-width: 700px) {
  .blog-index { grid-template-columns: repeat(2, 1fr); }
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 1.05rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ece7df;
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.blog-card:hover {
  border-color: #fdba74;
  box-shadow: 0 10px 28px rgba(244, 124, 31, 0.1);
}

.blog-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e5e7eb;
}

.blog-card__img--empty {
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(244, 124, 31, 0.2), transparent 60%),
    #111827;
}

.blog-card__body { padding: 1rem 1.05rem 1.15rem; }

.blog-card__chip {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9a3412;
}

.blog-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #111827;
}

.blog-card__date {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #9ca3af;
}

.blog-card__excerpt {
  margin: 0.45rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post {
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.blog-post__header { margin-bottom: 1.25rem; }

.blog-post__crumb {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
}

.blog-post__crumb a {
  color: inherit;
  text-decoration: none;
}

.blog-post__crumb a:hover { color: var(--brand); }

.blog-post__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
}

.blog-post__chip {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.blog-post__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111827;
}

.blog-post__date {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.blog-post__hero {
  margin: 0 0 1.35rem;
  border-radius: 1.15rem;
  overflow: hidden;
}

.blog-post__hero img {
  display: block;
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
}

.blog-post__dek {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #4b5563;
}

.blog-prose {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1f2937;
}

.blog-prose > * + * { margin-top: 1rem; }

.blog-prose h2,
.blog-prose h3,
.blog-prose h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
  line-height: 1.25;
  margin-top: 1.75rem;
}

.blog-prose h2 { font-size: 1.4rem; }
.blog-prose h3 { font-size: 1.2rem; }

.blog-prose a { color: #c2410c; text-underline-offset: 0.12em; }

.blog-prose ul,
.blog-prose ol {
  padding-left: 1.25rem;
}

.blog-prose li + li { margin-top: 0.35rem; }

.blog-prose blockquote {
  margin: 1.25rem 0;
  padding: 0.35rem 0 0.35rem 1rem;
  border-left: 3px solid #fdba74;
  color: #4b5563;
  font-style: italic;
}

.blog-prose img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.9rem;
  margin: 1.25rem 0;
}

.blog-prose .blog-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.65rem;
  margin: 1.35rem 0;
}

.blog-prose .blog-gallery__item {
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.blog-prose .blog-gallery img {
  width: 100%;
  height: 8.5rem;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}

.blog-post__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1.75rem 0 0;
  padding: 0;
}

.blog-post__tag {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4b5563;
  background: #f3f4f6;
}

.blog-post__attorney {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid #fed7aa;
  background: #fff7ed;
}

.blog-post__attorney-label {
  margin: 0 0 0.25rem;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a3412;
}

.blog-post__attorney-link {
  font-weight: 700;
  color: #c2410c;
}

.blog-post__back {
  margin-top: 2rem;
}

.blog-post__back a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

.blog-post__back a:hover { text-decoration: underline; }

/* Phat Stack builder credit (killable via SHOW_BUILDER_CREDIT) */
.builder-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: #6b7280;
}
.builder-credit__label {
  color: #9ca3af;
}
.builder-credit__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: #0d9488;
  font-weight: 600;
}
.builder-credit__link:hover {
  color: #0f766e;
  text-decoration: underline;
}
.builder-credit__robot {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}
.builder-credit__domain {
  letter-spacing: 0.01em;
}
