.page-landing {
  --lp-bg: #07080d;
  --lp-bg-elevated: #0f1118;
  --lp-surface: rgba(255, 255, 255, 0.04);
  --lp-surface-strong: rgba(255, 255, 255, 0.07);
  --lp-border: rgba(255, 255, 255, 0.1);
  --lp-border-soft: rgba(255, 255, 255, 0.06);
  --lp-text: #f4f4f5;
  --lp-muted: #a1a1aa;
  --lp-accent: #34d399;
  --lp-accent-soft: rgba(52, 211, 153, 0.14);
  --lp-accent-glow: rgba(52, 211, 153, 0.35);
  --lp-violet: #818cf8;
  --lp-violet-soft: rgba(129, 140, 248, 0.12);
  --lp-radius: 16px;
  --lp-radius-lg: 24px;
  --lp-container: min(100% - 40px, 1160px);
  --lp-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --lp-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  color: var(--lp-text);
  background: var(--lp-bg);
  font-family: var(--lp-font);
  scroll-behavior: smooth;
}

.page-landing .topbar {
  background: rgba(7, 8, 13, 0.82);
  border-bottom-color: var(--lp-border-soft);
}

.page-landing .brand,
.page-landing .nav a,
.page-landing .nav-toggle {
  color: var(--lp-text);
}

.page-landing .nav-toggle {
  background: var(--lp-surface);
  border-color: var(--lp-border);
}

.page-landing .nav-toggle__bar {
  background: var(--lp-text);
}

.page-landing .nav {
  background: var(--lp-bg-elevated);
  border-bottom-color: var(--lp-border-soft);
}

@media (min-width: 640px) {
  .page-landing .nav {
    background: transparent;
  }
}

.page-landing .nav a {
  color: var(--lp-muted);
}

.page-landing .nav a:hover {
  background: var(--lp-surface);
  color: var(--lp-text);
}

.page-landing .nav a.btn {
  background: linear-gradient(135deg, #34d399 0%, #22c55e 100%);
  color: #052e16;
  border: 0;
}

.page-landing .nav a.btn:hover:not(.is-busy) {
  background: linear-gradient(135deg, #4ade80 0%, #34d399 100%);
  color: #052e16;
}

.page-landing .lang-picker__trigger {
  background: var(--lp-surface);
  border-color: var(--lp-border);
  color: var(--lp-text);
}

.page-landing .lang-picker .period-picker__menu {
  background: var(--lp-bg-elevated);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

.page-landing .lang-picker .period-picker__menu [role="option"] {
  color: var(--lp-text);
}

.page-landing .lang-picker .period-picker__menu [role="option"]:hover {
  background: var(--lp-surface);
  color: var(--lp-text);
}

.page-landing .footer {
  border-top-color: var(--lp-border-soft);
  color: var(--lp-muted);
}

.page-landing .footer a {
  color: var(--lp-muted);
}

.page-landing .footer a:hover {
  color: var(--lp-text);
}

.page-landing .landing {
  padding: 0;
  overflow-x: clip;
}

.page-landing .messages {
  width: var(--lp-container);
  margin: 16px auto 0;
  padding-inline: 20px;
}

.page-landing .message {
  border-color: var(--lp-border);
  background: var(--lp-surface-strong);
  color: var(--lp-text);
}

.page-landing a {
  color: var(--lp-text);
}

.page-landing .cookie-notice a {
  color: var(--primary);
  text-decoration-color: rgba(22, 101, 52, 0.4);
}

.page-landing .cookie-notice a:hover {
  color: var(--primary-hover);
  text-decoration-color: var(--primary-hover);
}

/* Shared landing layout */
.lp-wrap {
  width: var(--lp-container);
  margin-inline: auto;
  padding-inline: 20px;
}

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

.lp-section--tight {
  padding: 56px 0;
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  color: var(--lp-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.lp-kicker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-accent);
  box-shadow: 0 0 12px var(--lp-accent-glow);
}

.lp-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lp-title--section {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 18ch;
}

.lp-lead {
  margin: 18px 0 0;
  max-width: 56ch;
  color: var(--lp-muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
}

.lp-lead--center {
  margin-inline: auto;
  text-align: center;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-btn:hover {
  text-decoration: none;
}

.lp-btn--primary {
  background: linear-gradient(135deg, #34d399 0%, #22c55e 100%);
  color: #052e16;
  box-shadow: 0 8px 32px var(--lp-accent-glow);
}

.lp-btn--primary:hover {
  color: #052e16;
  transform: translateY(-1px);
  box-shadow: 0 12px 40px var(--lp-accent-glow);
}

.lp-btn--ghost {
  background: var(--lp-surface);
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}

.lp-btn--ghost:hover {
  background: var(--lp-surface-strong);
  color: var(--lp-text);
  transform: translateY(-1px);
}

/* Hero */
.lp-hero {
  position: relative;
  padding: 48px 0 72px;
}

.lp-hero__bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lp-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: lp-float 14s ease-in-out infinite;
}

.lp-hero__orb--1 {
  top: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.35) 0%, transparent 70%);
}

.lp-hero__orb--2 {
  top: 40px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.28) 0%, transparent 70%);
  animation-delay: -4s;
}

.lp-hero__grid {
  position: relative;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 100%);
  opacity: 0.5;
}

.lp-hero__inner {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 960px) {
  .lp-hero {
    padding: 72px 0 96px;
  }

  .lp-hero__inner {
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
  }
}

.lp-hero__copy {
  max-width: 560px;
}

.lp-hero__title {
  background: linear-gradient(180deg, #ffffff 0%, #d4d4d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero mockup — bento */
.lp-mockup {
  position: relative;
}

.lp-mockup__frame {
  position: relative;
  padding: 14px;
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  box-shadow: var(--lp-shadow);
  animation: lp-float 8s ease-in-out infinite;
}

.lp-mockup__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 0 4px;
}

.lp-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.lp-mockup__dot:first-child {
  background: #f87171;
}

.lp-mockup__dot:nth-child(2) {
  background: #fbbf24;
}

.lp-mockup__dot:nth-child(3) {
  background: #34d399;
}

.lp-mockup__main img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--lp-border-soft);
}

.lp-mockup__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.lp-mockup__tile {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--lp-border-soft);
  background: rgba(0, 0, 0, 0.25);
}

.lp-mockup__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-mockup__glow {
  pointer-events: none;
  position: absolute;
  inset: auto -10% -20%;
  height: 40%;
  background: radial-gradient(ellipse at center, var(--lp-accent-glow) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.6;
}

/* Trust bar */
.lp-trust {
  border-block: 1px solid var(--lp-border-soft);
  background: rgba(255, 255, 255, 0.02);
}

.lp-trust__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .lp-trust__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.lp-trust__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
}

/* Steps */
.lp-steps {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .lp-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.lp-step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: linear-gradient(160deg, var(--lp-surface-strong) 0%, var(--lp-surface) 100%);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lp-step:hover {
  border-color: rgba(52, 211, 153, 0.25);
  transform: translateY(-2px);
}

.lp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--lp-violet-soft);
  color: var(--lp-violet);
  font-size: 0.75rem;
  font-weight: 700;
}

.lp-step__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
}

.lp-step__title {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.lp-step__text {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* Analytics showcase */
.lp-analytics {
  position: relative;
}

.lp-analytics__header {
  margin-bottom: 40px;
  text-align: center;
}

.lp-analytics__header .lp-title {
  margin-inline: auto;
}

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

@media (min-width: 768px) {
  .lp-showcase {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(120px, auto);
    gap: 16px;
  }
}

.lp-shot {
  overflow: hidden;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--lp-bg-elevated);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.lp-shot:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
}

.lp-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-shot--hero {
  grid-column: span 12;
}

.lp-shot--wide {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .lp-shot--hero {
    grid-column: span 8;
    grid-row: span 2;
  }

  .lp-shot--side {
    grid-column: span 4;
  }

  .lp-shot--wide {
    grid-column: span 6;
  }

  .lp-shot--third {
    grid-column: span 4;
  }
}

.lp-shot__label {
  padding: 10px 14px;
  border-top: 1px solid var(--lp-border-soft);
  color: var(--lp-muted);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Benefits */
.lp-benefits {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .lp-benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.lp-benefit {
  padding: 32px 28px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
}

.lp-benefit__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--lp-accent-soft) 0%, var(--lp-violet-soft) 100%);
  color: var(--lp-accent);
}

.lp-benefit__title {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 600;
}

.lp-benefit__text {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Final CTA */
.lp-cta {
  position: relative;
  padding: 72px 0 96px;
}

.lp-cta__card {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 64px);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(52, 211, 153, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(129, 140, 248, 0.1) 0%, transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(16px);
  text-align: center;
}

.lp-cta__card .lp-title {
  margin-inline: auto;
  max-width: 20ch;
}

.lp-cta__card .lp-lead {
  margin-inline: auto;
}

.lp-cta__card .lp-actions {
  justify-content: center;
}

/* Scroll reveal */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero__orb,
  .lp-mockup__frame,
  .lp-reveal {
    animation: none;
    transition: none;
  }

  .lp-reveal {
    opacity: 1;
    transform: none;
  }
}
