:root {
  --bg: #080608;
  --bg-soft: #120a0d;
  --panel: rgba(20, 10, 12, 0.82);
  --panel-strong: rgba(30, 13, 17, 0.92);
  --panel-light: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 230, 224, 0.12);
  --line-strong: rgba(255, 230, 224, 0.22);
  --text: #fff6f2;
  --muted: #d1bcb8;
  --muted-strong: #f2d9d3;
  --accent: #f44656;
  --accent-soft: #ff7a85;
  --gold: #ffc66d;
  --success: #77e3aa;
  --warning: #ffd277;
  --danger: #ff8f8f;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(244, 70, 86, 0.24), transparent 26%),
    radial-gradient(circle at 18% 24%, rgba(255, 198, 109, 0.18), transparent 22%),
    radial-gradient(circle at bottom left, rgba(177, 22, 49, 0.25), transparent 28%),
    linear-gradient(180deg, #050305 0%, #090507 26%, #120609 100%);
  min-height: 100vh;
}

body.lp-public-page {
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  overscroll-behavior: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0, rgba(255, 255, 255, 0) 15%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 20%);
  mix-blend-mode: screen;
  opacity: 0.55;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.lp-shell {
  position: relative;
  overflow: hidden;
}

.lp-public-page .lp-shell {
  height: 100vh;
}

.lp-container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(24px);
  background: rgba(17, 12, 13, 0.92);
  border-bottom: 1px solid var(--line);
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.lp-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(255, 60, 82, 0.28));
}

.lp-brand-copy {
  min-width: 0;
}

.lp-brand-copy strong,
.lp-brand-copy span {
  display: block;
}

.lp-brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.08em;
}

.lp-brand-copy span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-link {
  color: var(--muted);
  font-size: 14px;
}

.lp-link:hover {
  color: var(--text);
}

.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #ff4b60 0%, #d42546 100%);
  color: white;
  box-shadow: 0 16px 48px rgba(236, 47, 73, 0.28);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.lp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 56px rgba(236, 47, 73, 0.32);
}

.lp-button--secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-strong);
  box-shadow: none;
}

.lp-button--ghost {
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
  color: var(--muted-strong);
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--warning);
  background: rgba(255, 198, 109, 0.08);
  border: 1px solid rgba(255, 198, 109, 0.18);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
}

.lp-section {
  padding: 36px 0;
}

.lp-hero {
  padding: 48px 0 26px;
}

.lp-public-page main {
  height: calc(100vh - 101px);
  overflow: hidden;
}

.lp-public-page .lp-section:not(.lp-hero) {
  display: none;
}

.lp-public-page .lp-hero {
  height: 100%;
  padding: 20px 0 0;
  display: flex;
  align-items: center;
}

.lp-public-page .lp-hero-grid {
  height: 100%;
  align-items: center;
}

.lp-public-page .lp-lead {
  font-size: 16px;
  line-height: 1.65;
  max-width: 820px;
}

.lp-public-page .lp-inline-list {
  margin-top: 18px;
}

.lp-public-page .lp-hero-actions,
.lp-public-page .lp-toolbar {
  margin-top: 18px;
}

.lp-public-page .lp-link {
  display: none;
}

.lp-public-page .lp-metric-grid {
  display: none;
}

.lp-hero-grid,
.lp-split-grid,
.lp-admin-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.lp-hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.lp-hero-copy h1,
.lp-section-head h2,
.lp-card h3,
.lp-card h4,
.lp-admin-panel h3,
.lp-admin-panel h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
}

.lp-hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.94;
  max-width: 11ch;
}

.lp-lead {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.lp-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.lp-hero-actions,
.lp-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.lp-metric-grid,
.lp-stat-strip,
.lp-city-grid,
.lp-group-grid,
.lp-events-grid {
  display: grid;
  gap: 16px;
}

.lp-metric-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.lp-card,
.lp-visual-panel,
.lp-admin-panel,
.lp-quote,
.lp-cta-band,
.lp-search-shell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.lp-card,
.lp-admin-panel,
.lp-quote {
  padding: 28px;
}

.lp-metric-card strong,
.lp-stat-card strong {
  display: block;
  font-size: 34px;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.lp-metric-card span,
.lp-stat-card span,
.lp-muted {
  color: var(--muted);
}

.lp-visual-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(14, 9, 10, 0.96) 0%, rgba(29, 10, 14, 0.92) 100%);
}

.lp-visual-panel::before {
  content: "";
  position: absolute;
  inset: auto -5% -25% auto;
  width: 68%;
  height: 68%;
  background: radial-gradient(circle, rgba(244, 70, 86, 0.26), transparent 70%);
  filter: blur(12px);
}

.lp-visual-stack {
  display: grid;
  gap: 18px;
  position: relative;
}

.lp-poster {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
}

.lp-poster img {
  width: 100%;
  aspect-ratio: 1280 / 629;
  object-fit: cover;
}

.lp-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.36) 100%);
  pointer-events: none;
}

.lp-poster-note {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.lp-mini-panel {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.lp-mini-panel strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-mini-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.lp-redirect-panel {
  margin-top: 22px;
  border-color: rgba(255, 198, 109, 0.26);
  background: linear-gradient(
    135deg,
    rgba(255, 198, 109, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
}

.lp-redirect-panel.is-urgent {
  border-color: rgba(244, 70, 86, 0.4);
  box-shadow: 0 16px 42px rgba(244, 70, 86, 0.16);
}

.lp-redirect-panel.is-paused {
  border-color: rgba(119, 227, 170, 0.3);
}

.lp-toolbar--compact {
  margin-top: 16px;
}

.lp-section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 20px;
}

.lp-section-head h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.96;
}

.lp-copy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.lp-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lp-seo-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(244, 70, 86, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(23, 11, 13, 0.96) 0%, rgba(15, 9, 10, 0.96) 100%);
}

.lp-seo-card .lp-pill {
  width: max-content;
}

.lp-seo-card h3 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 0.98;
}

.lp-seo-card p {
  font-size: 15px;
}

.lp-copy-grid p,
.lp-card p,
.lp-admin-panel p,
.lp-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.lp-quote {
  position: relative;
  border-color: rgba(255, 198, 109, 0.2);
}

.lp-quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 110px;
  line-height: 1;
  color: rgba(255, 198, 109, 0.08);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.lp-filter-row {
  display: grid;
  gap: 14px;
}

.lp-search-shell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  min-height: 58px;
}

.lp-search-shell input,
.lp-field input,
.lp-field textarea,
.lp-field select,
.lp-password {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.lp-search-shell input::placeholder,
.lp-field input::placeholder,
.lp-field textarea::placeholder {
  color: rgba(255, 246, 242, 0.4);
}

.lp-filter-set,
.lp-pill-stack,
.lp-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-filter-button,
.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.lp-filter-button.is-active,
.lp-tag--accent {
  border-color: rgba(244, 70, 86, 0.4);
  background: rgba(244, 70, 86, 0.14);
  color: white;
}

.lp-events-grid {
  grid-template-columns: repeat(3, 1fr);
}

.lp-event-card {
  display: grid;
  gap: 16px;
}

.lp-event-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.lp-event-card h3 {
  font-size: 34px;
  line-height: 0.98;
}

.lp-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp-pill--gold {
  background: rgba(255, 198, 109, 0.1);
  color: var(--gold);
  border: 1px solid rgba(255, 198, 109, 0.25);
}

.lp-pill--danger {
  background: rgba(255, 143, 143, 0.1);
  color: var(--danger);
  border: 1px solid rgba(255, 143, 143, 0.22);
}

.lp-pill--success {
  background: rgba(119, 227, 170, 0.1);
  color: var(--success);
  border: 1px solid rgba(119, 227, 170, 0.22);
}

.lp-city-grid,
.lp-group-grid {
  grid-template-columns: repeat(3, 1fr);
}

.lp-card h3 {
  font-size: 34px;
}

.lp-card h4 {
  font-size: 28px;
}

.lp-keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.lp-keyword {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.lp-faq {
  display: grid;
  gap: 12px;
}

.lp-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  background: var(--panel);
}

.lp-faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
  list-style: none;
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}

.lp-faq p {
  margin-top: 12px;
}

.lp-cta-band {
  display: grid;
  gap: 14px;
  padding: 28px;
  background:
    radial-gradient(circle at right, rgba(244, 70, 86, 0.18), transparent 30%),
    rgba(20, 10, 12, 0.92);
}

.lp-cta-band h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.96;
}

.lp-footer {
  padding: 20px 0 40px;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 22px;
}

.lp-footer p,
.lp-footer a {
  color: var(--muted);
  line-height: 1.75;
}

.lp-admin-shell {
  padding: 30px 0 56px;
}

.lp-admin-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.lp-admin-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.lp-admin-stage {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.lp-admin-analytics-stack {
  display: grid;
  gap: 24px;
}

.lp-admin-intro .lp-section-head {
  max-width: none;
  margin-bottom: 20px;
}

.lp-keyword-panel {
  display: grid;
  gap: 18px;
}

.lp-keyword-panel .lp-tag-editor {
  max-height: 220px;
  overflow: auto;
  padding-right: 6px;
}

.lp-keyword-panel .lp-table-like {
  display: grid;
  gap: 10px;
}

.lp-admin-analytics-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.lp-api-panel {
  display: grid;
  gap: 14px;
}

.lp-admin-intro h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.92;
}

.lp-admin-panel .lp-section-head h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}

.lp-admin-stack {
  display: grid;
  gap: 18px;
}

.lp-stat-strip {
  grid-template-columns: repeat(4, 1fr);
}

.lp-stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.lp-status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.lp-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.lp-status-pill strong {
  font-size: 13px;
  font-family: inherit;
}

.lp-admin-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 18px;
}

.lp-list {
  display: grid;
  gap: 10px;
  max-height: 920px;
  overflow: auto;
  padding-right: 4px;
}

.lp-list-item {
  width: 100%;
  text-align: left;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
}

.lp-list-item.is-selected {
  border-color: rgba(244, 70, 86, 0.4);
  background: rgba(244, 70, 86, 0.12);
}

.lp-list-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.lp-list-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.lp-score-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.lp-form-grid {
  display: grid;
  gap: 14px;
}

.lp-field {
  display: grid;
  gap: 8px;
}

.lp-field span {
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-field input,
.lp-field textarea,
.lp-field select,
.lp-password,
.lp-toolbar input {
  min-height: 52px;
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
}

.lp-field textarea {
  resize: vertical;
  min-height: 160px;
}

.lp-note,
.lp-warning {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  line-height: 1.7;
}

.lp-warning {
  border-color: rgba(255, 198, 109, 0.25);
  color: var(--warning);
}

.lp-preview {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.lp-preview strong {
  font-size: 14px;
  font-family: inherit;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-preview-title {
  color: #89b4ff;
  font-weight: 800;
}

.lp-preview-url {
  color: #77e3aa;
  font-size: 14px;
}

.lp-preview-description {
  color: var(--muted);
  line-height: 1.7;
}

.lp-readonly-box {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.lp-readonly-box span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-readonly-box strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.5;
  word-break: break-word;
}

.lp-tag-editor {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-tag-editor button {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(244, 70, 86, 0.22);
  background: rgba(244, 70, 86, 0.12);
  color: var(--text);
}

.lp-bar-list {
  display: grid;
  gap: 10px;
}

.lp-bar-row {
  display: grid;
  gap: 8px;
}

.lp-bar-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 14px;
}

.lp-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.lp-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
}

.lp-table-like {
  display: grid;
  gap: 10px;
}

.lp-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px 92px;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.lp-table-row strong,
.lp-table-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-table-row span {
  color: var(--muted);
  text-align: right;
}

.lp-table-row--two {
  grid-template-columns: minmax(0, 1fr) 120px;
  align-items: flex-start;
}

.lp-table-row--two strong {
  white-space: normal;
  line-height: 1.5;
}

.lp-table-row--action {
  grid-template-columns: minmax(0, 1fr) 130px;
}

.lp-table-row--action strong {
  white-space: normal;
  line-height: 1.5;
}

.lp-empty {
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.lp-hidden {
  display: none !important;
}

.lp-divider {
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: var(--line);
}

.lp-info-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.lp-info-box {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.lp-info-box strong {
  display: block;
  margin-bottom: 6px;
}

.lp-info-box p {
  margin: 0 0 12px;
}

.lp-info-box--wide {
  grid-column: 1 / -1;
}

.lp-scroll {
  max-height: 340px;
  overflow: auto;
  padding-right: 6px;
}

.lp-admin-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.lp-admin-topline h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.92;
}

.lp-admin-subline {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 920px;
}

.lp-period-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-toolbar--tight {
  margin-top: 0;
}

.lp-period-button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
}

.lp-period-button.is-active {
  border-color: rgba(244, 70, 86, 0.4);
  background: rgba(244, 70, 86, 0.14);
  color: white;
}

.lp-analytics-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.lp-admin-microcopy {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

@keyframes lp-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-animate {
  animation: lp-rise 0.5s ease both;
}

@media (max-width: 1080px) {
  .lp-hero-grid,
  .lp-copy-grid,
  .lp-seo-grid,
  .lp-admin-grid,
  .lp-admin-hero-grid,
  .lp-admin-analytics-head,
  .lp-admin-stage,
  .lp-admin-layout,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-events-grid,
  .lp-city-grid,
  .lp-group-grid,
  .lp-stat-strip,
  .lp-analytics-strip,
  .lp-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .lp-container {
    width: min(calc(100% - 20px), var(--container));
  }

  .lp-nav {
    align-items: flex-start;
  }

  .lp-nav-links {
    justify-content: flex-end;
  }

  .lp-brand-copy span,
  .lp-link {
    display: none;
  }

  .lp-brand img {
    width: 52px;
    height: 52px;
  }

  .lp-hero {
    padding-top: 34px;
  }

  .lp-hero-copy h1 {
    max-width: 100%;
  }

  .lp-metric-grid,
  .lp-events-grid,
  .lp-city-grid,
  .lp-group-grid,
  .lp-stat-strip,
  .lp-analytics-strip,
  .lp-info-grid {
    grid-template-columns: 1fr;
  }

  .lp-table-row {
    grid-template-columns: minmax(0, 1fr) 70px 70px;
  }

  .lp-button,
  .lp-nav-links .lp-button {
    width: 100%;
  }

  .lp-poster-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-public-page .lp-nav-links .lp-link {
    display: none;
  }

  .lp-public-page main {
    height: calc(100vh - 86px);
  }

  .lp-public-page .lp-hero {
    padding-top: 10px;
  }

  .lp-public-page .lp-hero-grid {
    gap: 14px;
  }

  .lp-public-page .lp-visual-panel {
    display: none;
  }

  .lp-public-page .lp-inline-list {
    display: none;
  }

  .lp-public-page .lp-lead {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .lp-public-page .lp-hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(42px, 14vw, 58px);
    line-height: 0.92;
  }

  .lp-public-page .lp-redirect-panel {
    margin-top: 14px;
  }
}
