/* =========================================================
   SVO Landing — clone visual of UI UX Pro Max
   https://ui-ux-pro-max-skill.nextlevelbuilder.io
   Dark glass + blue/orange ambience + gradient title
   ========================================================= */

:root {
  --pm-bg: #0a0e27;
  --pm-bg-deep: #050714;
  --pm-surface: rgba(22, 28, 52, 0.55);
  --pm-surface-strong: rgba(30, 36, 64, 0.72);
  --pm-border: rgba(255, 255, 255, 0.1);
  --pm-border-soft: rgba(255, 255, 255, 0.06);
  --pm-text: #f8fafc;
  --pm-muted: #94a3b8;
  --pm-dim: #64748b;
  --pm-blue: #3b82f6;
  --pm-blue-bright: #60a5fa;
  --pm-orange: #f97316;
  --pm-purple: #a855f7;
  --pm-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.theme-liquid,
body.theme-liquid[data-page="dashboard"] {
  color: var(--pm-text) !important;
  background: var(--pm-bg) !important;
  font-family: "DM Sans", Inter, system-ui, sans-serif;
  min-height: 100vh;
}

body.theme-liquid::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 18% 42%, rgba(37, 99, 235, 0.38), transparent 60%),
    radial-gradient(ellipse 50% 45% at 82% 48%, rgba(234, 88, 12, 0.28), transparent 58%),
    radial-gradient(ellipse 40% 35% at 50% 0%, rgba(99, 102, 241, 0.12), transparent 55%),
    linear-gradient(180deg, #0a0e27 0%, #070b1f 50%, #050714 100%);
}

body.theme-liquid::after {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 48%, rgba(59, 130, 246, 0.22), transparent 32%),
    radial-gradient(circle at 78% 52%, rgba(249, 115, 22, 0.16), transparent 30%);
  filter: blur(40px);
  animation: pmDrift 16s ease-in-out infinite alternate;
}

/* Cursor particle field (antigravity-style) */
.svo-cursor-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}
body.theme-liquid .app-shell {
  position: relative;
  z-index: 1;
}
body.theme-liquid .svo-we-are {
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .svo-cursor-field { display: none !important; }
}

body.theme-liquid .app-shell,
body.theme-liquid .main-area {
  background: transparent !important;
  min-width: 0;
  color: var(--pm-text);
}
body.theme-liquid .sidebar { display: none !important; }
body.theme-liquid .page-heading { display: none !important; }
body.theme-liquid .page-content {
  padding: 0 !important;
  max-width: none !important;
  overflow: visible;
}

/* —— Logo mark: text on solid rounded square —— */
.svo-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  color: #fff;
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: #3b82f6;
  border: 0;
  box-shadow: none;
  user-select: none;
}
.svo-mark-sm { width: 36px; height: 36px; font-size: 12px; border-radius: 50%; }
.svo-wordmark,
.svo-wordmark b { display: none !important; }

/* —— Floating pill nav (Pro Max placement) —— */
body.theme-liquid .landing-nav {
  position: sticky;
  top: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  min-height: 60px;
  margin: 20px auto 0;
  padding: 8px 12px 8px 12px;
  border-radius: 999px;
  background: rgba(15, 20, 40, 0.62) !important;
  border: 1px solid var(--pm-border) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  box-sizing: border-box;
}
body.theme-liquid .nav-left-access { margin: 0; }
body.theme-liquid .logo-secret,
body.theme-liquid .landing-secret,
body.theme-liquid .pm-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 14px 4px 4px;
  border: 0 !important;
  border-radius: 999px;
  color: var(--pm-text) !important;
  background: transparent !important;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  cursor: pointer;
  font-family: "Space Grotesk", "DM Sans", sans-serif;
}
body.theme-liquid .pm-brand-text {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
body.theme-liquid .logo-secret:hover,
body.theme-liquid .pm-brand:hover {
  background: rgba(255, 255, 255, 0.04) !important;
}
body.theme-liquid .landing-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}
body.theme-liquid .landing-links button {
  border: 0;
  background: transparent;
  color: var(--pm-muted) !important;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
body.theme-liquid .landing-links button:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}
body.theme-liquid .landing-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
body.theme-liquid .landing-login {
  border: 0;
  background: transparent;
  color: var(--pm-muted) !important;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 10px;
}
body.theme-liquid .landing-primary,
body.theme-liquid .lg-btn-dark,
body.theme-liquid .pm-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0 !important;
  border-radius: 12px !important;
  padding: 12px 20px !important;
  color: #fff !important;
  background: var(--pm-blue) !important;
  font-weight: 700 !important;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35) !important;
  transition: transform 0.25s var(--pm-ease), box-shadow 0.25s var(--pm-ease), background 0.2s;
}
body.theme-liquid .landing-primary:hover,
body.theme-liquid .lg-btn-dark:hover,
body.theme-liquid .pm-btn-primary:hover {
  background: #2563eb !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.45) !important;
}
body.theme-liquid .landing-outline,
body.theme-liquid .lg-btn-glass,
body.theme-liquid .pm-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--pm-border) !important;
  border-radius: 12px !important;
  padding: 12px 20px !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.04) !important;
  font-weight: 700 !important;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 0.25s var(--pm-ease), background 0.2s;
}
body.theme-liquid .pm-btn-ghost:hover,
body.theme-liquid .lg-btn-glass:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-1px);
}
body.theme-liquid .landing-brand-right,
body.theme-liquid .sync-status { display: none !important; }

body.theme-liquid .svo-menu-popover {
  display: none !important;
}
body.theme-liquid .svo-mark {
  border-radius: 50%;
}
body.theme-liquid .svo-mark-sm {
  border-radius: 50%;
}
body.theme-liquid .svo-we-are .svo-mark {
  border-radius: 50%;
}
body.theme-liquid .svo-menu-list .nav-item {
  color: #e2e8f0;
  border-radius: 12px;
}
body.theme-liquid .svo-menu-list .nav-item:hover {
  background: rgba(59, 130, 246, 0.12);
}

/* —— Hero (Pro Max layout) —— */
.lg-hero,
.pm-hero {
  position: relative;
  padding: clamp(56px, 9vw, 110px) 20px 48px;
  text-align: center;
}
.pm-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.pm-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  animation: pmRise 0.7s var(--pm-ease) both;
}
.pm-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(15, 20, 40, 0.55);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(14px);
}
.pm-badge .material-symbols-rounded {
  font-size: 15px;
  color: var(--pm-blue-bright);
}

.pm-title {
  margin: 8px 0 0;
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  animation: pmRise 0.8s 0.05s var(--pm-ease) both;
}
.pm-title .grad {
  display: block;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 42%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pm-title .plain {
  display: block;
  color: #fff;
  margin-top: 0.08em;
  font-size: 0.78em;
}

.pm-sub {
  max-width: 52ch;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: var(--pm-muted);
  animation: pmRise 0.8s 0.1s var(--pm-ease) both;
}

.pm-cli {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  min-width: min(420px, 92vw);
  justify-content: flex-start;
  padding: 12px 18px;
  border-radius: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13.5px;
  color: #e2e8f0;
  background: rgba(10, 14, 32, 0.75);
  border: 1px solid var(--pm-border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  animation: pmRise 0.8s 0.14s var(--pm-ease) both;
  white-space: nowrap;
}
.pm-cli .pm-cli-text { color: #fff; }
.pm-cli .pm-cli-cursor {
  display: inline-block;
  width: 8px;
  height: 1.05em;
  margin-left: 2px;
  background: #fff;
  vertical-align: -2px;
  animation: pmBlink 1s step-end infinite;
}
@keyframes pmBlink {
  50% { opacity: 0; }
}

/* Hostinger "We are" watermark → SVO */
#hlogo,
a[href*="hostinger.com"][class*="logo"],
div[id*="hostinger"],
div[class*="hostinger-logo"],
img[src*="hostinger"],
iframe[src*="hostinger"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.svo-we-are {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: rgba(15, 20, 40, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.svo-we-are .svo-mark { width: 28px; height: 28px; font-size: 10px; border-radius: 50%; }
.svo-we-are span em {
  font-style: normal;
  color: var(--pm-muted);
  font-weight: 500;
  margin-right: 4px;
}

.pm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
  animation: pmRise 0.8s 0.18s var(--pm-ease) both;
}

.pm-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: min(1000px, 100%);
  margin-top: 28px;
  animation: pmRise 0.9s 0.22s var(--pm-ease) both;
}
.pm-stat {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  padding: 22px 12px 18px;
  border-radius: 18px;
  background: rgba(18, 24, 48, 0.5);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s var(--pm-ease), border-color 0.3s, background 0.3s;
}
.pm-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(30, 40, 72, 0.58);
}
.pm-stat .material-symbols-rounded {
  color: var(--pm-blue-bright);
  font-size: 22px;
}
.pm-stat strong {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--pm-blue-bright);
}
.pm-stat span {
  font-size: 12px;
  font-weight: 500;
  color: var(--pm-muted);
}

/* —— Lower sections (dark glass) —— */
.lg-sheet,
.pm-sheet {
  width: min(1100px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 28px;
  background: rgba(16, 22, 46, 0.55);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.lg-sheet-intro,
.pm-sheet-intro {
  max-width: 48ch;
  margin: 0 auto 24px;
  text-align: center;
  color: var(--pm-muted);
  line-height: 1.55;
}

.lg-bento,
.pm-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.lg-card,
.pm-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  min-height: 130px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--pm-border-soft);
  transition: transform 0.3s var(--pm-ease), border-color 0.3s;
}
.lg-card:hover,
.pm-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.3);
}
.lg-card.wide,
.pm-card.wide { grid-column: span 6; }
.lg-card.tall,
.pm-card.tall { min-height: 200px; }
.lg-card strong,
.pm-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  color: var(--pm-blue-bright);
  margin-bottom: 6px;
}
.lg-card span,
.pm-card span { font-weight: 700; margin-bottom: 6px; color: #fff; }
.lg-card small,
.pm-card small { color: var(--pm-muted); line-height: 1.45; }

.lg-section,
.pm-section {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) 20px;
}
.lg-section-head,
.pm-section-head {
  max-width: 52ch;
  margin: 0 auto 28px;
  text-align: center;
}
.lg-section-head span,
.pm-section-head span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pm-blue-bright);
}
.lg-section-head h2,
.pm-section-head h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.04em;
  color: #fff;
}
.lg-section-head p,
.pm-section-head p { margin: 0; color: var(--pm-muted); }

.lg-grid-4,
.pm-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lg-grid-3,
.pm-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lg-grid-2,
.pm-grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 14px; }

.lg-tile,
.pm-tile {
  padding: 22px;
  border-radius: 18px;
  background: rgba(18, 24, 48, 0.5);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(16px);
  transition: transform 0.3s var(--pm-ease), border-color 0.3s;
}
.lg-tile:hover,
.pm-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.35);
}
.lg-tile h3,
.pm-tile h3 {
  margin: 12px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-size: 1.1rem;
}
.lg-tile p,
.pm-tile p { margin: 0; color: var(--pm-muted); }
.lg-tile button,
.pm-tile button {
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--pm-blue-bright);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}
.lg-tile .material-symbols-rounded,
.pm-tile .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--pm-blue-bright);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.lg-feature-list,
.pm-feature-list { display: grid; gap: 10px; }
.lg-feature,
.pm-feature {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(18, 24, 48, 0.5);
  border: 1px solid var(--pm-border);
}
.lg-feature .material-symbols-rounded,
.pm-feature .material-symbols-rounded {
  color: var(--pm-blue-bright);
  font-size: 24px;
}
.lg-feature strong,
.pm-feature strong { display: block; margin-bottom: 4px; color: #fff; }
.lg-feature p,
.pm-feature p { margin: 0; color: var(--pm-muted); }

.lg-proj,
.pm-proj {
  padding: 22px;
  border-radius: 18px;
  background: rgba(18, 24, 48, 0.6);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(16px);
}
.lg-proj h3,
.pm-proj h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
}
.lg-proj p,
.pm-proj p { margin: 0 0 16px; color: var(--pm-muted); }
.lg-proj svg,
.pm-proj svg { width: 100%; height: auto; display: block; }

.lg-cta,
.pm-cta {
  width: min(1100px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: clamp(40px, 6vw, 64px);
  border-radius: 28px;
  text-align: center;
  background: rgba(16, 22, 46, 0.6);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.lg-cta > span,
.pm-cta > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pm-blue-bright);
}
.lg-cta h2,
.pm-cta h2 {
  margin: 10px auto 22px;
  max-width: 18ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.04em;
  color: #fff;
}
.lg-cta .actions,
.pm-cta .actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lg-section-head-wide {
  max-width: 62ch;
}
.lg-feature-rich {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.lg-feature-card {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(18, 24, 48, 0.5);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(16px);
}
.lg-feature-card .material-symbols-rounded {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--pm-blue-bright);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.lg-feature-card strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
}
.lg-feature-card p {
  margin: 0 0 10px;
  color: var(--pm-muted);
  line-height: 1.45;
}
.lg-grid-business {
  grid-template-columns: 1fr 1fr;
}
.lg-tile-rich .lg-include-label,
.lg-price-card .lg-include-label,
.lg-feature-card .lg-include-label {
  margin: 14px 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pm-blue-bright);
}
.lg-include {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.lg-include li {
  position: relative;
  padding-left: 16px;
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.92rem;
  line-height: 1.4;
}
.lg-include li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pm-blue-bright);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.lg-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1100px, 100%);
  margin: 0 auto;
}
.lg-price-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 22px;
  background: rgba(18, 24, 48, 0.55);
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(18px);
}
.lg-price-card-featured {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.18);
  background: rgba(24, 36, 72, 0.72);
}
.lg-price-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pm-blue-bright);
}
.lg-price-card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-size: 1.35rem;
}
.lg-price-card > p {
  margin: 0;
  color: var(--pm-muted);
  line-height: 1.45;
}
.lg-price-card .pm-btn-primary,
.lg-price-card .pm-btn-ghost {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
.lg-price-card .lg-include {
  margin-bottom: 18px;
}
.lg-price-note {
  width: min(1100px, 100%);
  margin: 22px auto 0;
  padding: 22px 24px;
  border-radius: 18px;
  text-align: center;
  background: rgba(16, 22, 46, 0.45);
  border: 1px solid var(--pm-border);
}
.lg-price-note p {
  margin: 0 0 16px;
  color: var(--pm-muted);
}
.lg-price-note .actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.lg-blog-card .lg-blog-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pm-blue-bright);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.lg-footer,
.pm-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 56px 20px 72px;
  color: var(--pm-muted);
}
.lg-footer strong,
.pm-footer strong { color: #fff; font-size: 1.15rem; }
.lg-footer span,
.pm-footer span { display: block; color: #fff; font-weight: 700; margin-bottom: 8px; }
.lg-footer a,
.pm-footer a { color: var(--pm-muted); text-decoration: none; }
.lg-footer a:hover,
.pm-footer a:hover { color: var(--pm-blue-bright); }

.lg-reveal,
.pm-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--pm-ease), transform 0.7s var(--pm-ease);
}
.lg-reveal.is-in,
.pm-reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes pmRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes pmDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-1.5%, 1%, 0) scale(1.04); }
}

@media (max-width: 980px) {
  body.theme-liquid .landing-links { display: none; }
  .pm-stats { grid-template-columns: repeat(3, 1fr); }
  .lg-bento .lg-card,
  .lg-bento .lg-card.wide,
  .pm-bento .pm-card,
  .pm-bento .pm-card.wide { grid-column: span 6; }
  .lg-grid-4,
  .lg-grid-3,
  .lg-grid-2,
  .pm-grid-4,
  .pm-grid-3,
  .pm-grid-2,
  .lg-feature-rich,
  .lg-grid-business,
  .lg-price-grid,
  .lg-footer,
  .pm-footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body.theme-liquid .landing-nav {
    top: 12px;
    width: calc(100% - 24px);
    margin: 12px auto 0;
    padding: 8px;
    border-radius: 22px;
  }
  body.theme-liquid .landing-login { display: none; }
  .pm-stats { grid-template-columns: repeat(2, 1fr); }
  .lg-bento .lg-card,
  .lg-bento .lg-card.wide,
  .pm-bento .pm-card,
  .pm-bento .pm-card.wide,
  .lg-grid-4,
  .lg-grid-3,
  .lg-grid-2,
  .pm-grid-4,
  .pm-grid-3,
  .pm-grid-2,
  .lg-feature-rich,
  .lg-grid-business,
  .lg-price-grid,
  .lg-footer,
  .pm-footer { grid-template-columns: 1fr; }
  .lg-bento .lg-card,
  .pm-bento .pm-card { grid-column: span 12; }
}
