/*
  Lionare 2026. All rights reserved.
  Logo, brand, agents, mascots and other visual elements.
*/
:root {
  --pro-bg: #051a1b;
  --pro-ink: #ecf6f4;
  --pro-muted: rgba(236, 246, 244, 0.55);
  --pro-gold: #d9bd76;
  --pro-gold-soft: #f0dfa8;
  --pro-line: rgba(124, 203, 194, 0.22);
  --pro-panel: rgba(8, 36, 38, 0.72);
  --pro-font-display: "Cormorant Garamond", Georgia, serif;
  --pro-font-kicker: "Cinzel", Georgia, serif;
  --pro-font-sans: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body.pro-site {
  color: var(--pro-ink);
  font-family: var(--pro-font-sans);
  background: #000;
}

body.pro-site--landing {
  background: #000;
}

.pro-landing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 36px max(22px, calc((100% - 1120px) / 2)) 56px;
  min-height: calc(100vh - 120px);
}

.pro-mosaic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #000;
}

.pro-mosaic-bg__pic,
.pro-mosaic-bg__img {
  display: block;
  width: 100%;
  height: 100%;
}

.pro-mosaic-bg__img {
  object-fit: cover;
  object-position: center center;
  opacity: 0.78;
  filter: saturate(0.92) contrast(1.05);
}

.pro-mosaic-bg__fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 82% 8%, rgba(217, 189, 118, 0.14), transparent 62%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.48) 38%,
      rgba(0, 0, 0, 0.32) 62%,
      rgba(0, 0, 0, 0.58) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.22) 35%,
      rgba(0, 0, 0, 0.68) 100%
    );
}

.pro-landing > *:not(.pro-mosaic-bg) {
  position: relative;
  z-index: 1;
}

body.pro-site--landing .pro-header {
  background: #000;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.pro-site--landing .pro-hero-copy {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

a {
  color: var(--pro-gold-soft);
  text-decoration: none;
}

.pro-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 40;
  background: #000;
}

.pro-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pro-ink);
  text-decoration: none;
}

.pro-header__mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: none;
}

.pro-header__word {
  height: 32px;
  width: auto;
  object-fit: contain;
  flex: none;
}

.pro-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 2px solid rgb(217 189 118);
  background: rgb(0 0 0 / 14%);
  color: #cedc01;
  font-family: system-ui;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.pro-ribbon--hero {
  padding: 6px 12px;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
}

.pro-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pro-lang {
  display: inline-flex;
  gap: 4px;
  border: 1px solid var(--pro-line);
  border-radius: 999px;
  padding: 2px;
}

.pro-lang button {
  border: 0;
  background: transparent;
  color: var(--pro-muted);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 9px;
  border-radius: 999px;
  cursor: pointer;
}

.pro-lang button.is-active {
  background: rgba(217, 189, 118, 0.18);
  color: var(--pro-gold-soft);
}

.pro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
}

.pro-btn[hidden] {
  display: none !important;
}

.pro-btn--gold {
  background: var(--pro-gold);
  color: #1a1408;
}

.pro-btn--line {
  background: transparent;
  border-color: var(--pro-line);
  color: var(--pro-ink);
}

.pro-btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--pro-muted);
}

.pro-btn--icon {
  min-width: 40px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 1rem;
}

.pro-btn--icon .fa-heart,
.pro-btn--fav .pro-icon-heart {
  color: #cedc00;
  display: block;
}

.pro-icon-heart {
  width: 1em;
  height: 1em;
  flex: none;
}

.pro-landing-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
  min-width: 0;
}

.pro-hero-copy {
  max-width: none;
}

.pro-hero-brand {
  --brand-h: clamp(40px, 7vw, 64px);
  display: inline-flex;
  align-items: center;
  gap: calc(var(--brand-h) * 0.28);
  margin: 0 0 16px;
  filter: drop-shadow(0 8px 24px rgba(4, 16, 17, 0.45));
}

.pro-hero-brand__mark,
.pro-hero-brand__word {
  display: block;
  height: var(--brand-h);
  width: auto;
  object-fit: contain;
}

.pro-hero-brand__mark {
  width: var(--brand-h);
  flex: none;
  aspect-ratio: 1;
}

.pro-free-badge {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(217, 189, 118, 0.35);
  background: rgba(217, 189, 118, 0.12);
  color: #cedc00;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pro-hero-copy h1 {
  margin: 0 0 14px;
  font-family: var(--pro-font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.pro-hero-copy h1 em {
  font-style: italic;
  color: var(--pro-gold-soft);
}

.pro-hero-copy p {
  margin: 0 0 12px;
  color: var(--pro-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.pro-hero-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pro-hero-points li {
  color: var(--pro-ink);
  font-size: 0.95rem;
  padding-left: 18px;
  position: relative;
}

.pro-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pro-gold);
}

.pro-demo-wrap {
  display: flex;
  justify-content: center;
  align-self: center;
}

.pro-demo-wrap {
  display: flex;
  justify-content: center;
  align-self: center;
}

.pro-signup-login {
  margin: 28px 0 0;
  text-align: center;
  font-size: 0.86rem;
}

.pro-signup-submit {
  width: 100%;
  min-height: 46px;
}

.pro-footer-mini {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px 28px;
  color: var(--pro-muted);
  font-size: 0.86rem;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pro-auth,
.pro-app {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 22px 48px;
}

.pro-card {
  background: var(--pro-panel);
  border: 1px solid var(--pro-line);
  border-radius: 18px;
  padding: 22px;
}

.pro-card h1 {
  margin: 0 0 8px;
  font-family: var(--pro-font-display);
  font-size: 2rem;
  font-weight: 500;
}

.pro-card .pro-lead {
  margin: 0 0 18px;
  color: var(--pro-muted);
}

.pro-field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.pro-field span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pro-muted);
}

.pro-field input,
.pro-field textarea,
.pro-field select {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--pro-line);
  background: rgba(3, 16, 17, 0.65);
  color: var(--pro-ink);
  font: inherit;
}

.pro-error {
  display: none;
  margin: 0 0 12px;
  color: #ffb4a8;
  font-size: 0.9rem;
}

.pro-error.is-visible {
  display: block;
}

.pro-section {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--pro-line);
}

.pro-section h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.pro-colors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.pro-color {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
}

.pro-color.is-active {
  border-color: #1a1408;
  box-shadow: 0 0 0 2px var(--pro-gold);
}

.pro-nav-app {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.pro-fav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}

.pro-fav-card {
  background: var(--pro-panel);
  border: 1px solid var(--pro-line);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  color: inherit;
}

.pro-fav-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #0a2426;
}

.pro-fav-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
}

.pro-fav-card span {
  display: block;
  color: var(--pro-muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

.pro-promo {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(217, 189, 118, 0.28);
  background: rgba(217, 189, 118, 0.08);
}

.pro-promo strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pro-gold-soft);
}

@media (max-width: 900px) {
  .pro-landing {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pro-landing-left {
    max-width: none;
  }

  .pro-demo-wrap {
    order: 2;
  }

  .pro-header {
    flex-wrap: wrap;
  }

  /* Mobile header: gold mark + PRO ribbon only */
  .pro-header__word {
    display: none !important;
  }
}
