/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

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

:root {
  color-scheme: light;
  --lp-ink: #0f172a;
  --lp-ink-muted: #475569;
  --lp-bg: #f5f7fb;
  --lp-surface: #ffffff;
  --lp-surface-alt: #eef2f7;
  --lp-accent: #ff6b3d;
  --lp-accent-dark: #d5532b;
  --lp-navy: #0b1b3a;
  --lp-border: rgba(15, 23, 42, 0.12);
  --lp-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --lp-shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.08);
}

body {
  margin: 0;
  background: #fff;
  color: var(--lp-ink);
}

.admin {
  font-family: "Sora", sans-serif;
  background: #f5f7fb;
  color: #0f172a;
  min-height: 100vh;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.admin-header h1 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.admin-user {
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.95rem;
}

.admin-main {
  width: min(960px, 92vw);
  margin: 28px auto 48px;
  padding: 28px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
}

.admin-main h2,
.admin-main h3 {
  margin-top: 0;
}

.admin-flash {
  width: min(960px, 92vw);
  margin: 20px auto 0;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.admin-flash--notice {
  background: #e0f2fe;
  color: #0c4a6e;
}

.admin-flash--alert {
  background: #fee2e2;
  color: #7f1d1d;
}

.admin a {
  color: #0f172a;
  text-decoration: none;
}

.admin a:hover {
  text-decoration: underline;
}

.admin form {
  display: grid;
  gap: 12px;
}

.admin label {
  font-weight: 600;
}

.admin input,
.admin select,
.admin textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 10px;
  font-size: 1rem;
}

.admin input:focus,
.admin select:focus,
.admin textarea:focus {
  outline: 2px solid rgba(59, 130, 246, 0.35);
  outline-offset: 1px;
}

.admin button,
.admin input[type="submit"] {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.admin button:hover,
.admin input[type="submit"]:hover {
  background: #1e293b;
}

.admin table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.95rem;
}

.admin th,
.admin td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.lp {
  font-family: "Sora", sans-serif;
  line-height: 1.6;
  font-size: 17px;
  background: var(--lp-bg);
  min-height: 100vh;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lp h1,
.lp h2,
.lp h3 {
  font-family: "Fraunces", serif;
  line-height: 1.12;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.lp h1 {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
}

.lp h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.lp h3 {
  font-size: 1.35rem;
}

.lp p {
  margin: 0 0 1rem;
}

.lp a {
  color: inherit;
}

.lp-container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

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

.lp-hero {
  position: relative;
  padding: 110px 0 90px;
  background: radial-gradient(circle at 15% 20%, rgba(255, 107, 61, 0.15), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(11, 27, 58, 0.12), transparent 45%),
    linear-gradient(140deg, #fdfefe 0%, #f4f6fb 60%, #eef2f7 100%);
  overflow: hidden;
}

.lp-hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 61, 0.18), transparent 70%);
  pointer-events: none;
}

.lp-hero-inner {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.lp-hero-copy {
  animation: lp-rise 0.7s ease both;
  max-width: 560px;
}

.lp-hero-visual {
  animation: lp-rise 0.9s ease both;
  animation-delay: 0.08s;
}

.lp-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lp-accent-dark);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.lp-lead {
  font-size: 1.15rem;
  color: var(--lp-ink-muted);
}

.lp-hero-cta {
  margin-top: 26px;
}

.lp-hero-meta {
  font-size: 0.95rem;
  color: var(--lp-ink-muted);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 16px;
}

.lp-hero-card {
  position: relative;
  height: 170px;
  border-radius: 18px;
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: #0b1b3a;
  padding: 14px;
  background: #fff;
}

.lp-hero-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.lp-hero-card--self {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5ff 100%);
}

.lp-hero-card--model {
  background: linear-gradient(135deg, #fff8f3 0%, #ffe7dc 100%);
}

.lp-hero-card--reel {
  background: linear-gradient(135deg, #f6faff 0%, #dfe9ff 100%);
}

.lp-hero-card--ui {
  background: linear-gradient(135deg, #f8f9fb 0%, #e8edf7 100%);
}

.lp-hero-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--lp-ink-muted);
}

.lp-grid-three {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.lp-grid-two {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: start;
}

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

.lp-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--lp-shadow-soft);
  min-width: 0;
}

.lp-card--tall {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 107, 61, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.lp-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--lp-accent-dark);
  stroke-width: 1.6;
  fill: none;
}

.lp-section-head {
  max-width: 680px;
  margin-bottom: 34px;
}

.lp-section--steps {
  background: #ffffff;
}

.lp-steps {
  display: grid;
  gap: 28px;
}

.lp-step {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 26px;
  border-radius: 22px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

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

.lp-step-media {
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(130deg, rgba(11, 27, 58, 0.08), rgba(255, 107, 61, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--lp-navy);
}

.lp-disclaimer {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--lp-ink-muted);
}

.lp-mockup {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(11, 27, 58, 0.08), rgba(255, 107, 61, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--lp-navy);
}

.lp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.lp-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.lp-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lp-accent);
  font-weight: 700;
}

.lp-note {
  font-size: 0.9rem;
  color: var(--lp-ink-muted);
}

.lp-lead,
.lp-price-note,
.lp-section-head p {
  max-width: 640px;
}

.lp-section--faq details {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 12px;
  box-shadow: var(--lp-shadow-soft);
}

.lp-section--faq summary {
  cursor: pointer;
  font-weight: 600;
}

.lp-section--faq summary::marker {
  color: var(--lp-accent);
}

.lp-section--proof {
  background: #f0f3f9;
}

.lp-proof-tile {
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 40px 16px;
  text-align: center;
  font-weight: 600;
  color: var(--lp-navy);
  box-shadow: var(--lp-shadow-soft);
}

.lp-proof-tile--lifestyle {
  background: linear-gradient(140deg, #ffffff 0%, #f2f6ff 100%);
}

.lp-proof-tile--self {
  background: linear-gradient(140deg, #fff8f3 0%, #ffe1d5 100%);
}

.lp-proof-tile--reel {
  background: linear-gradient(140deg, #f4f8ff 0%, #dbe7ff 100%);
}

.lp-proof-tile--business {
  background: linear-gradient(140deg, #f6f7fb 0%, #e6ebf5 100%);
}

.lp-section--cta {
  background: var(--lp-navy);
  color: #f8fafc;
}

.lp-section--cta .lp-list li::before {
  color: #ffb09a;
}

.lp-section--cta .lp-list li {
  color: rgba(248, 250, 252, 0.9);
}

.lp-section--cta .lp-hero-meta {
  color: rgba(248, 250, 252, 0.78);
}

.lp-cta-inner {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: start;
}

.lp-cta-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--lp-shadow);
}

.lp-price {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lp-price-note {
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.82);
}

.lp-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.lp-demo-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.lp-demo-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff8ef;
}

.lp-demo-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.lp-demo-meta,
.lp-demo-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.lp-demo-title {
  font-weight: 600;
}

.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 1.08rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--lp-accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 107, 61, 0.35);
}

.lp-button:hover {
  transform: translateY(-1px);
}

.lp-button--primary {
  background: var(--lp-navy);
  box-shadow: 0 16px 30px rgba(11, 27, 58, 0.32);
  font-size: 1.12rem;
}

.lp-button--dark {
  background: #ffb48c;
  color: #1f2937;
}

.lp-button--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff8ef;
}

.lp-cta-form {
  margin: 0 0 12px;
}

.lp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
}

.lp-sticky.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lp-sticky-link {
  background: var(--lp-navy);
  color: #f8fafc;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--lp-shadow);
  white-space: normal;
  text-align: center;
  max-width: min(92vw, 520px);
}

.lp-sticky-form {
  margin: 0;
}

.lp-footer {
  padding: 50px 0 80px;
  background: #e8edf5;
}

.lp-footer-inner {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  align-items: start;
}

.lp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-footer-links a[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

.lp-footer-title {
  font-weight: 600;
}

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

.lp-button:focus-visible,
.lp-sticky-link:focus-visible,
.lp-section--faq summary:focus-visible {
  outline: 2px solid var(--lp-accent);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .lp-section {
    padding: 50px 0;
  }

  .lp-hero {
    padding: 60px 0 50px;
  }

  .lp h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .lp h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .lp-hero-inner {
    grid-template-columns: 1fr;
  }

  .lp-hero-visual {
    order: -1;
  }

  .lp-hero-card {
    height: 110px;
  }

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

  .lp-button {
    width: 100%;
  }

  .lp-sticky-link {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

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

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

@media (min-width: 721px) {
  .lp-grid-three {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .lp-step {
    grid-template-columns: 1fr 1fr;
  }

  .lp-cta-inner {
    grid-template-columns: 1fr 1fr;
  }

  .lp-footer-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 900px) {
  .lp-sticky-link {
    font-size: 1.05rem;
    padding: 14px 24px;
    max-width: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-button,
  .lp-sticky {
    transition: none;
  }

  .lp-hero-copy,
  .lp-hero-visual {
    animation: none;
  }
}

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


/* ==========================================================================
   LP2 — Midnight Editorial Landing Page
   Fonts: Instrument Serif (display) + Outfit (body)
   Palette: Charcoal / Violet / Electric Lime
   ========================================================================== */

.lp2 {
  --lp2-bg: #0B0B10;
  --lp2-bg-light: #F5F2EB;
  --lp2-surface: #161620;
  --lp2-surface-elevated: #1E1E2A;
  --lp2-surface-border: rgba(255, 255, 255, 0.07);
  --lp2-text: #EAEAE6;
  --lp2-text-muted: #8A8A92;
  --lp2-text-dark: #1A1A1F;
  --lp2-text-dark-muted: #6E6E76;
  --lp2-accent: #CCFF00;
  --lp2-accent-dim: rgba(204, 255, 0, 0.10);
  --lp2-accent-glow: rgba(204, 255, 0, 0.25);
  --lp2-violet: #7C3AED;
  --lp2-violet-dim: rgba(124, 58, 237, 0.12);
  --lp2-radius: 14px;
  --lp2-radius-lg: 22px;

  font-family: "Outfit", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--lp2-text);
  background: var(--lp2-bg);
  min-height: 100vh;
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

.lp2 h1,
.lp2 h2,
.lp2 h3 {
  font-family: "Instrument Serif", serif;
  line-height: 1.1;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.lp2 h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
.lp2 h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
.lp2 h3 { font-size: 1.35rem; font-family: "Outfit", sans-serif; font-weight: 600; }

.lp2 h1 em,
.lp2 h2 em {
  font-style: italic;
  color: var(--lp2-accent);
}

.lp2 p { margin: 0 0 1rem; }
.lp2 a { color: inherit; }

/* Accent topline */
.lp2-topline {
  height: 3px;
  background: linear-gradient(90deg, var(--lp2-violet), var(--lp2-accent));
}

/* Container */
.lp2-container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

/* Sections */
.lp2-section {
  padding: 90px 0;
  position: relative;
}

.lp2-section--dark {
  background: var(--lp2-surface);
  color: var(--lp2-text);
}

.lp2-section--light {
  background: var(--lp2-bg-light);
  color: var(--lp2-text-dark);
}

.lp2-section--light .lp2-text-muted,
.lp2-section--light p {
  color: var(--lp2-text-dark-muted);
}

.lp2-section--light h2,
.lp2-section--light h3 {
  color: var(--lp2-text-dark);
}

.lp2-section--light h2 em {
  color: var(--lp2-violet);
}

.lp2-section-head {
  max-width: 680px;
  margin-bottom: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Label / kicker */
.lp2-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lp2-accent);
  margin-bottom: 12px;
  padding: 4px 12px;
  border: 1px solid var(--lp2-accent-dim);
  border-radius: 999px;
  background: var(--lp2-accent-dim);
}

.lp2-section--light .lp2-label {
  color: var(--lp2-violet);
  border-color: var(--lp2-violet-dim);
  background: var(--lp2-violet-dim);
}

/* Badge */
.lp2-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp2-accent);
  background: var(--lp2-accent-dim);
  border: 1px solid rgba(204, 255, 0, 0.18);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  animation: lp2-fade-in 0.6s ease both;
}

/* ---- HERO ---- */
.lp2-hero {
  position: relative;
  padding: 100px 0 80px;
  background: var(--lp2-bg);
  overflow: hidden;
  text-align: center;
}

.lp2-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.lp2-hero-blob--violet {
  width: 500px;
  height: 500px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 70%);
  animation: lp2-float 8s ease-in-out infinite alternate;
}

.lp2-hero-blob--lime {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.12), transparent 70%);
  animation: lp2-float 10s ease-in-out infinite alternate-reverse;
}

.lp2-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp2-hero-title {
  max-width: 820px;
  margin: 0 auto 20px;
  animation: lp2-rise 0.7s ease both;
}

.lp2-hero-sub {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  color: var(--lp2-text-muted);
  animation: lp2-rise 0.7s ease both 0.1s;
}

/* Pills */
.lp2-hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  animation: lp2-rise 0.7s ease both 0.15s;
}

.lp2-pill {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--lp2-text-muted);
  padding: 6px 14px;
  border: 1px solid var(--lp2-surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

/* Hero CTA */
.lp2-hero-cta {
  margin-bottom: 48px;
  animation: lp2-rise 0.7s ease both 0.2s;
}

/* Hero visual grid */
.lp2-hero-visual {
  max-width: 640px;
  margin: 0 auto;
  animation: lp2-rise 0.8s ease both 0.3s;
}

.lp2-hero-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.lp2-hero-grid::-webkit-scrollbar {
  display: none;
}

.lp2-hero-card {
  position: relative;
  flex: 0 0 260px;
  height: 160px;
  border-radius: var(--lp2-radius);
  background: var(--lp2-surface);
  border: 1px solid var(--lp2-surface-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  text-align: center;
  overflow: hidden;
  scroll-snap-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.lp2-hero-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-3px);
}

.lp2-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.08), rgba(204, 255, 0, 0.04));
  pointer-events: none;
}

.lp2-hero-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--lp2-accent);
  background: var(--lp2-accent-dim);
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.08em;
}

.lp2-hero-card-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp2-text);
}

/* ---- BUTTONS ---- */
.lp2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.lp2-button:hover {
  transform: translateY(-2px);
}

.lp2-button--accent {
  background: var(--lp2-accent);
  color: #0B0B10;
  box-shadow: 0 0 0 0 var(--lp2-accent-glow), 0 12px 32px rgba(204, 255, 0, 0.2);
}

.lp2-button--accent:hover {
  box-shadow: 0 0 40px var(--lp2-accent-glow), 0 16px 40px rgba(204, 255, 0, 0.3);
}

.lp2-button--lg {
  padding: 18px 36px;
  font-size: 1.15rem;
}

.lp2-cta-form {
  margin: 0 0 12px;
  display: inline-block;
}

/* ---- CARDS (dla kogo) ---- */
.lp2-cards-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.lp2-card {
  position: relative;
  background: #fff;
  border-radius: var(--lp2-radius-lg);
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.lp2-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: var(--lp2-radius-lg) 0 0 var(--lp2-radius-lg);
  background: linear-gradient(180deg, var(--lp2-violet), var(--lp2-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lp2-card:hover::before {
  opacity: 1;
}

.lp2-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lp2-violet-dim);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.lp2-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--lp2-violet);
}

.lp2-card h3 {
  color: var(--lp2-text-dark);
}

.lp2-card p {
  color: var(--lp2-text-dark-muted);
  margin-bottom: 0;
}

/* ---- STEPS ---- */
.lp2-steps {
  display: grid;
  gap: 24px;
}

.lp2-step {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  padding: 28px;
  border-radius: var(--lp2-radius-lg);
  border: 1px solid var(--lp2-surface-border);
  background: var(--lp2-surface-elevated);
  position: relative;
  overflow: hidden;
}

.lp2-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(204, 255, 0, 0.2), transparent);
}

.lp2-step-num {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(135deg, var(--lp2-violet), var(--lp2-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.lp2-step-media {
  height: 200px;
  border-radius: var(--lp2-radius);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(204, 255, 0, 0.06));
  border: 1px solid var(--lp2-surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--lp2-text-muted);
}

.lp2-step-body {
  min-width: 0;
}

.lp2-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.lp2-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.lp2-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp2-accent);
}

.lp2-steps-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- FEATURES (co dostajesz) ---- */
.lp2-features-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: start;
}

.lp2-features-mockup {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp2-mockup {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: var(--lp2-radius-lg);
  background: linear-gradient(150deg, var(--lp2-violet-dim), rgba(204, 255, 0, 0.08));
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--lp2-text-dark-muted);
}

.lp2-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.lp2-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  line-height: 1.55;
}

.lp2-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lp2-violet-dim);
  color: var(--lp2-violet);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.lp2-section--light .lp2-checklist li span:last-child {
  color: var(--lp2-text-dark);
}

.lp2-note {
  font-size: 0.9rem;
  color: var(--lp2-text-dark-muted);
  font-weight: 500;
}

/* ---- FAQ ---- */
.lp2-faq {
  max-width: 720px;
  margin: 0 auto;
}

.lp2-faq-item {
  border: 1px solid var(--lp2-surface-border);
  border-radius: var(--lp2-radius);
  margin-bottom: 10px;
  background: var(--lp2-surface-elevated);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.lp2-faq-item[open] {
  border-color: rgba(124, 58, 237, 0.3);
}

.lp2-faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  color: var(--lp2-text);
}

.lp2-faq-item summary::-webkit-details-marker { display: none; }
.lp2-faq-item summary::marker { display: none; content: ""; }

.lp2-faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--lp2-surface-border);
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}

.lp2-faq-toggle::before,
.lp2-faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--lp2-text-muted);
  border-radius: 1px;
}

.lp2-faq-toggle::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.lp2-faq-toggle::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lp2-faq-item[open] .lp2-faq-toggle {
  background: var(--lp2-accent-dim);
  border-color: rgba(204, 255, 0, 0.2);
}

.lp2-faq-item[open] .lp2-faq-toggle::before {
  background: var(--lp2-accent);
}

.lp2-faq-item[open] .lp2-faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.lp2-faq-item p {
  padding: 0 22px 18px;
  margin: 0;
  color: var(--lp2-text-muted);
  line-height: 1.7;
}

/* ---- PROOF ---- */
.lp2-proof-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lp2-proof-tile {
  position: relative;
  height: 200px;
  border-radius: var(--lp2-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.lp2-proof-tile:hover {
  transform: scale(1.03);
}

.lp2-proof-tile--a { background: linear-gradient(160deg, #F0ECFF 0%, #DDD6FE 100%); }
.lp2-proof-tile--b { background: linear-gradient(160deg, #ECFDF5 0%, #BBF7D0 100%); }
.lp2-proof-tile--c { background: linear-gradient(160deg, #F5F0FF 0%, #C4B5FD 100%); }
.lp2-proof-tile--d { background: linear-gradient(160deg, #FFFBEB 0%, #FDE68A 100%); }

.lp2-proof-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp2-text-dark);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3px 10px;
  border-radius: 6px;
}

.lp2-proof-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lp2-text-dark);
}

/* ---- FINAL CTA ---- */
.lp2-section--cta {
  background: linear-gradient(160deg, #0B0B10 0%, #1A0E33 50%, #0B0B10 100%);
  color: var(--lp2-text);
  overflow: hidden;
  position: relative;
}

.lp2-cta-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 65%);
  pointer-events: none;
  filter: blur(60px);
}

.lp2-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}

.lp2-cta-copy h2 {
  color: var(--lp2-text);
}

.lp2-checklist--on-dark .lp2-check {
  background: var(--lp2-accent-dim);
  color: var(--lp2-accent);
}

.lp2-checklist--on-dark li span:last-child {
  color: rgba(234, 234, 230, 0.85);
}

.lp2-cta-pricing {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp2-surface-border);
  border-radius: var(--lp2-radius-lg);
  padding: 32px;
  text-align: center;
}

.lp2-price-anchors {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.lp2-price-anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.lp2-price-anchor-label {
  font-size: 0.8rem;
  color: var(--lp2-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp2-price-anchor-value {
  font-size: 1rem;
  color: var(--lp2-text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 100, 100, 0.5);
}

.lp2-price-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lp2-surface-border), transparent);
  margin: 20px 0;
}

.lp2-price-main {
  margin-bottom: 16px;
}

.lp2-price-main-label {
  display: block;
  font-size: 0.85rem;
  color: var(--lp2-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 4px;
}

.lp2-price-main-value {
  display: block;
  font-family: "Instrument Serif", serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--lp2-text);
}

.lp2-price-note {
  font-size: 0.92rem;
  color: var(--lp2-text-muted);
  max-width: 400px;
  margin: 0 auto 20px;
}

.lp2-cta-meta {
  font-size: 0.85rem;
  color: var(--lp2-text-muted);
  margin-bottom: 0;
}

/* ---- FOOTER ---- */
.lp2-footer {
  padding: 50px 0 90px;
  background: var(--lp2-bg);
  border-top: 1px solid var(--lp2-surface-border);
}

.lp2-footer-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}

.lp2-footer-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.lp2-footer p {
  color: var(--lp2-text-muted);
  margin-bottom: 0;
}

.lp2-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp2-footer-links a {
  color: var(--lp2-text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.lp2-footer-links a:hover {
  color: var(--lp2-accent);
}

.lp2-footer-links a[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

/* ---- STICKY CTA ---- */
.lp2-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 50;
}

.lp2-sticky.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lp2-sticky-btn {
  background: var(--lp2-accent);
  color: #0B0B10;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 0 30px var(--lp2-accent-glow), 0 8px 24px rgba(0, 0, 0, 0.4);
  white-space: normal;
  text-align: center;
  max-width: min(90vw, 480px);
  transition: transform 0.2s ease;
}

.lp2-sticky-btn:hover {
  transform: translateY(-2px);
}

.lp2-sticky-form {
  margin: 0;
}

/* ---- FOCUS STATES ---- */
.lp2-button:focus-visible,
.lp2-sticky-btn:focus-visible,
.lp2-faq-item summary:focus-visible {
  outline: 2px solid var(--lp2-accent);
  outline-offset: 2px;
}

/* ---- ANIMATIONS ---- */
@keyframes lp2-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lp2-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lp2-float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -15px) scale(1.08); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 720px) {
  .lp2-hero {
    padding: 70px 0 50px;
  }

  .lp2-hero-visual {
    order: -1;
    margin-bottom: 28px;
  }

  .lp2-section {
    padding: 56px 0;
  }

  .lp2 h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .lp2 h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .lp2-hero-card {
    flex: 0 0 72%;
    height: 140px;
  }

  .lp2-button {
    width: 100%;
  }

  .lp2-cta-form {
    display: block;
  }

  .lp2-proof-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .lp2-proof-tile {
    height: 150px;
    padding: 14px;
  }

  .lp2-step-num {
    font-size: 2.5rem;
  }

  .lp2-price-anchors {
    flex-direction: column;
    gap: 10px;
  }

  .lp2-price-main-value {
    font-size: 2.5rem;
  }

  .lp2-footer {
    padding: 40px 0 80px;
  }

  .lp2-sticky-btn {
    font-size: 0.88rem;
    padding: 10px 18px;
  }

  .lp2-hero-blob--violet {
    width: 300px;
    height: 300px;
  }

  .lp2-hero-blob--lime {
    width: 250px;
    height: 250px;
  }
}

@media (min-width: 721px) {
  .lp2-cards-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp2-step {
    grid-template-columns: auto 1fr 1.2fr;
    align-items: center;
  }

  .lp2-step-num {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    justify-self: center;
  }

  .lp2-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp2-proof-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .lp2-cta-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .lp2-footer-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 900px) {
  .lp2-hero {
    padding: 120px 0 100px;
  }

  .lp2-sticky-btn {
    font-size: 1rem;
    padding: 14px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp2-button,
  .lp2-sticky,
  .lp2-card,
  .lp2-proof-tile,
  .lp2-faq-toggle,
  .lp2-faq-toggle::after,
  .lp2-hero-card {
    transition: none;
  }

  .lp2-hero-title,
  .lp2-hero-sub,
  .lp2-hero-pills,
  .lp2-hero-cta,
  .lp2-hero-visual,
  .lp2-badge {
    animation: none;
  }

  .lp2-hero-blob--violet,
  .lp2-hero-blob--lime {
    animation: none;
  }
}


/* ==========================================================================
   LP3 — Prism Forge: AI Content Guru Brand Landing Page
   Fonts: Space Grotesk (display) + Inter (body)
   Palette: Pure Black / Lime Green #7EC308 / Amber #E5A012
   Brand: aicontent.guru — dark-first, tech-premium, 3D prism energy
   ========================================================================== */

.lp3 {
  --lp3-black: #000000;
  --lp3-surface: #171717;
  --lp3-surface-elevated: #0A0A0A;
  --lp3-border: #262626;
  --lp3-border-subtle: rgba(255, 255, 255, 0.06);

  --lp3-text: #FFFFFF;
  --lp3-text-secondary: #D1D5DB;
  --lp3-text-muted: #6B7280;

  --lp3-primary: #7EC308;              /* primary-500  — CTA, links, key UI */
  --lp3-primary-hover: #66A007;        /* primary-600  — hover states */
  --lp3-primary-dim: #192802;          /* primary-950  — §6.4 badge/tag bg dark */
  --lp3-primary-glow: rgba(126, 195, 8, 0.25);
  --lp3-primary-bright: #B8E44C;       /* primary-300  — badge/label text dark */
  --lp3-primary-deep: #3D5F04;         /* primary-800  — logo shadow */

  --lp3-accent: #E5A012;               /* accent-500   — wordmark, urgency */
  --lp3-accent-hover: #C4880F;         /* accent-600   — hover */
  --lp3-accent-dim: #382604;           /* accent-950   — amber badge bg dark */
  --lp3-accent-glow: rgba(229, 160, 18, 0.20);

  --lp3-radius: 8px;
  --lp3-radius-lg: 12px;
  --lp3-radius-xl: 16px;
  --lp3-radius-full: 9999px;

  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--lp3-text);
  background: var(--lp3-black);
  min-height: 100vh;
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

.lp3 h1,
.lp3 h2,
.lp3 h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 1.2;
  margin: 0 0 0.6rem;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.lp3 h1 { font-size: clamp(2.4rem, 5vw, 3rem); font-weight: 700; color: var(--lp3-text); }
.lp3 h2 { font-size: clamp(1.8rem, 3.5vw, 2.25rem); font-weight: 700; color: var(--lp3-primary); }
.lp3 h3 { font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; color: var(--lp3-accent); }
.lp3 p { margin: 0 0 1rem; }
.lp3 a { color: inherit; }
.lp3 a:not([class]) { color: var(--lp3-primary); }
.lp3 strong { font-weight: 600; }

/* Highlighted text */
.lp3-hl {
  color: var(--lp3-primary);
}
.lp3-hl--amber {
  color: var(--lp3-accent);
}

/* Container */
.lp3-wrap {
  width: min(72rem, 90vw);
  margin: 0 auto;
}

/* ---- BADGE ---- */
.lp3-badge {
  display: inline-block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp3-primary-bright);
  background: var(--lp3-primary-dim);
  border: 1px solid #2B4303;
  padding: 4px 12px;
  border-radius: var(--lp3-radius-full);
  margin-bottom: 20px;
  animation: lp3-fade 0.4s ease both;
}

/* ---- LABEL ---- */
.lp3-label {
  display: inline-block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lp3-primary-bright);
  background: var(--lp3-primary-dim);
  padding: 4px 12px;
  border-radius: var(--lp3-radius-full);
  margin-bottom: 12px;
}

.lp3-label--amber {
  color: var(--lp3-accent);
  background: var(--lp3-accent-dim);
}

/* ---- SECTIONS ---- */
.lp3-section {
  padding: 96px 0;
  position: relative;
  background: var(--lp3-black);
}

/* ---- LIGHT SECTION — brand guide light mode (§3.7, §6.3, §10) ---- */
.lp3-section--light {
  background: #F6F7FB;                          /* neutral-50 */
  color: #000000;                               /* CRITICAL: override inherited #FFF from .lp3 */

  /* Surfaces & borders — §3.7 Card (light mode) */
  --lp3-surface: #FFFFFF;
  --lp3-surface-elevated: #F6F7FB;
  --lp3-border: #E5E7EB;                        /* neutral-200 */
  --lp3-border-subtle: rgba(0, 0, 0, 0.06);

  /* Text — §3.7, §4.3 */
  --lp3-text: #000000;                          /* headings */
  --lp3-text-secondary: #404040;                /* neutral-600 — body, card body */
  --lp3-text-muted: #6B7280;                    /* neutral-500 — captions, placeholders */

  /* Primary — §3.6: lime on white FAILS contrast, use dark variants for text */
  --lp3-primary-dim: #F5FCE8;                   /* primary-50  — badge/icon bg */
  --lp3-primary-bright: #2B4303;                /* primary-900 — badge/label text */
  --lp3-primary-deep: #F5FCE8;                  /* primary-50 */
  --lp3-primary-glow: rgba(43, 67, 3, 0.08);

  /* Accent — §3.6: amber on white FAILS contrast, use dark variants */
  --lp3-accent-dim: #FEF6E6;                    /* accent-50 */
  --lp3-accent-glow: rgba(127, 88, 9, 0.08);
}

/* --- Heading colors — §3.7, §4.3: H2 primary-900, H3 accent-800 on light bg --- */
.lp3-section--light h1 { color: #000000; }
.lp3-section--light h2 { color: #2B4303; }
.lp3-section--light h3 { color: #7F5809; }

/* --- Text colors — §3.6, §4.3: primary-900 / accent-800 on light bg --- */
.lp3-section--light .lp3-hl { color: #2B4303; }
.lp3-section--light .lp3-hl--amber { color: #7F5809; }
.lp3-section--light .lp3-label { color: #2B4303; background: #F5FCE8; }
.lp3-section--light .lp3-label--amber { color: #7F5809; background: #FEF6E6; }

/* --- Cards — §6.3 Card (light mode): shadow-sm default, shadow-md hover --- */
.lp3-section--light .lp3-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.lp3-section--light .lp3-card:hover {
  border-color: rgba(43, 67, 3, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}

/* --- Icons — §7.1: light bg default neutral-600, active primary-900 --- */
.lp3-section--light .lp3-card-icon svg { stroke: #2B4303; }
.lp3-section--light .lp3-check { color: #2B4303; background: #F5FCE8; }

/* --- Steps --- */
.lp3-section--light .lp3-step {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.lp3-section--light .lp3-step-num {
  background: linear-gradient(135deg, #7F5809 0%, #2B4303 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.lp3-section--light .lp3-step::before {
  background: linear-gradient(90deg, #C4880F, #66A007, transparent);
}
.lp3-section--light .lp3-step-body p,
.lp3-section--light .lp3-step-body {
  color: #404040;
}

/* --- Creators section --- */
.lp3-section--light .lp3-creators-text p { color: #404040; }
.lp3-section--light .lp3-creators-text strong { color: #000000; }
.lp3-section--light .lp3-creators-stat {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.lp3-section--light .lp3-creators-stat-value { color: #2B4303; }
.lp3-section--light .lp3-creators-stat-label { color: #6B7280; }
.lp3-section--light .lp3-creators-stat:hover {
  border-color: rgba(43, 67, 3, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* --- FAQ — §6.3 applies to any card-like element --- */
.lp3-section--light .lp3-faq-item {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.lp3-section--light .lp3-faq-item summary { color: #000000; }
.lp3-section--light .lp3-faq-item p { color: #404040; }
.lp3-section--light .lp3-faq-item[open] { border-color: rgba(43, 67, 3, 0.2); }
.lp3-section--light .lp3-faq-item[open] .lp3-faq-icon {
  background: #F5FCE8;
  border-color: rgba(43, 67, 3, 0.2);
}
.lp3-section--light .lp3-faq-item[open] .lp3-faq-icon::before { background: #2B4303; }
.lp3-section--light .lp3-faq-icon::before,
.lp3-section--light .lp3-faq-icon::after { background: #404040; }

/* --- Links — §3.7: primary-900 on light bg --- */
.lp3-section--light a:not([class]) { color: #2B4303; }

/* --- Bold text — §4.3: on light bg headings #000, highlights primary-900 --- */
.lp3-section--light strong { color: #000000; }

/* --- Lists — bullet & text colors --- */
.lp3-section--light .lp3-list li { color: #404040; }
.lp3-section--light .lp3-list li::before { background: #2B4303; }
.lp3-section--light .lp3-checklist li { color: #404040; }

/* --- Section head & footer text --- */
.lp3-section--light .lp3-section-head p { color: #404040; }
.lp3-section--light .lp3-section-footer { color: #404040; }
.lp3-section--light .lp3-note { color: #6B7280; }

/* --- Buttons — §6.1: primary button same on both themes, just softer shadow --- */
.lp3-section--light .lp3-btn--primary {
  box-shadow: 0 4px 16px rgba(126, 195, 8, 0.2);
}
.lp3-section--light .lp3-btn--primary:hover {
  box-shadow: 0 8px 24px rgba(126, 195, 8, 0.3);
}
.lp3-section--light .lp3-btn-old { color: #000000; }

/* --- Focus states — §10.1: 2px solid primary-900 on light bg --- */
.lp3-section--light .lp3-btn:focus-visible,
.lp3-section--light .lp3-faq-item summary:focus-visible {
  outline-color: #2B4303;
}

/* --- Price / CTA label --- */
.lp3-section--light .lp3-price-main-label { color: #2B4303; }
.lp3-section--light .lp3-price-old { color: #6B7280; }
.lp3-section--light .lp3-price-note { color: #404040; }
.lp3-section--light .lp3-cta-meta { color: #6B7280; }
.lp3-section--light .lp3-countdown-label { color: #6B7280; }
.lp3-section--light .lp3-countdown-sep { color: #6B7280; }

/* --- Proof tiles hover --- */
.lp3-section--light .lp3-proof-tile:hover {
  border-color: rgba(43, 67, 3, 0.2);
}

/* --- CTA section on light bg — override hardcoded dark backgrounds --- */
.lp3-section--light.lp3-section--cta {
  background: #F6F7FB;
}
.lp3-section--light .lp3-cta-glow {
  background: radial-gradient(ellipse at center, rgba(126, 195, 8, 0.06) 0%, transparent 65%);
}
.lp3-section--light .lp3-cta-pricing {
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.lp3-section--light .lp3-countdown-block {
  background: #F6F7FB;
  border-color: #E5E7EB;
  color: #000000;
}
.lp3-section--light .lp3-countdown-block small { color: #6B7280; }
.lp3-section--light .lp3-price-divider {
  background: linear-gradient(90deg, transparent, #E5E7EB, transparent);
}

.lp3-section-head {
  margin-bottom: 48px;
}

.lp3-section-head p {
  color: var(--lp3-text-secondary);
}

/* ---- HERO ---- */
.lp3-hero {
  position: relative;
  padding: 120px 0 96px;
  background: var(--lp3-black);
  overflow: hidden;
  text-align: center;
}

/* 3D Prism decorative elements — faceted triangular shapes */
.lp3-hero-prism {
  position: absolute;
  pointer-events: none;
}

.lp3-hero-prism--1 {
  width: 380px;
  height: 380px;
  top: -60px;
  left: -80px;
  background: conic-gradient(from 120deg at 40% 40%, rgba(126, 195, 8, 0.06), rgba(61, 95, 4, 0.12), rgba(126, 195, 8, 0.03), transparent);
  clip-path: polygon(50% 0%, 100% 86%, 0% 86%);
  animation: lp3-drift 12s ease-in-out infinite alternate;
}

.lp3-hero-prism--2 {
  width: 240px;
  height: 240px;
  top: 40%;
  right: -40px;
  background: conic-gradient(from 200deg at 50% 50%, rgba(229, 160, 18, 0.08), rgba(126, 195, 8, 0.04), transparent);
  clip-path: polygon(50% 0%, 100% 86%, 0% 86%);
  transform: rotate(25deg);
  animation: lp3-drift 16s ease-in-out infinite alternate-reverse;
}

.lp3-hero-prism--3 {
  width: 160px;
  height: 160px;
  bottom: 10%;
  left: 10%;
  background: conic-gradient(from 60deg at 50% 50%, rgba(184, 228, 76, 0.06), rgba(229, 160, 18, 0.04), transparent);
  clip-path: polygon(50% 0%, 100% 86%, 0% 86%);
  transform: rotate(-15deg);
  animation: lp3-drift 10s ease-in-out infinite alternate;
}

/* Central lime glow */
.lp3-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(126, 195, 8, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lp3-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp3-hero-title {
  max-width: 780px;
  margin: 0 auto 20px;
  animation: lp3-rise 0.4s ease both;
}

.lp3-hero-sub {
  max-width: 620px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
  color: var(--lp3-text-secondary);
  animation: lp3-rise 0.4s ease both 0.08s;
}

/* Pills */
.lp3-hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  animation: lp3-rise 0.4s ease both 0.14s;
}

.lp3-pill {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--lp3-text-muted);
  padding: 6px 14px;
  border: 1px solid var(--lp3-border);
  border-radius: var(--lp3-radius-full);
}

/* Hero CTA */
.lp3-hero-cta {
  margin-bottom: 48px;
  animation: lp3-rise 0.4s ease both 0.2s;
}

/* Hero showcase cards */
.lp3-hero-showcase {
  max-width: 680px;
  margin: 0 auto;
  animation: lp3-rise 0.4s ease both 0.3s;
}

.lp3-hero-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 16px;
}

.lp3-hero-grid::-webkit-scrollbar {
  display: none;
}

.lp3-hero-card {
  position: relative;
  flex: 0 0 280px;
  height: 340px;
  border-radius: var(--lp3-radius-lg);
  background: var(--lp3-surface);
  border: 1px solid var(--lp3-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  text-align: center;
  overflow: hidden;
  scroll-snap-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.lp3-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(126, 195, 8, 0.04), rgba(229, 160, 18, 0.02));
  pointer-events: none;
}

.lp3-hero-card--img {
  background-size: cover;
  background-position: center center;
}

.lp3-hero-card--img::before {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.lp3-hero-card--img .lp3-hero-card-label {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.lp3-hero-card:hover {
  border-color: rgba(126, 195, 8, 0.3);
  box-shadow: 0 0 24px rgba(126, 195, 8, 0.15);
  transform: translateY(-2px);
}

.lp3-hero-card-num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--lp3-primary);
  background: var(--lp3-primary-dim);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.lp3-hero-card-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lp3-text-secondary);
}

/* ---- BUTTONS ---- */
.lp3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--lp3-radius-lg);
  border: none;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 250ms ease;
}

.lp3-btn--primary {
  background: var(--lp3-primary);
  color: #000000;
  box-shadow: 0 0 0 0 var(--lp3-primary-glow), 0 8px 24px rgba(126, 195, 8, 0.15);
}

.lp3-btn--primary:hover {
  background: var(--lp3-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 32px var(--lp3-primary-glow), 0 12px 32px rgba(126, 195, 8, 0.25);
}

.lp3-btn-old {
  opacity: 0.55;
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 2px;
}

.lp3-btn--lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.lp3-cta-form {
  margin: 0 0 12px;
  display: inline-block;
}

/* ---- CARDS (dla kogo) ---- */
.lp3-cards-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.lp3-card {
  background: var(--lp3-surface);
  border: 1px solid var(--lp3-border);
  border-radius: var(--lp3-radius-lg);
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lp3-card:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 195, 8, 0.25);
  box-shadow: 0 0 24px rgba(126, 195, 8, 0.15);  /* §5.5 shadow-glow-primary */
}

.lp3-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--lp3-radius);
  background: var(--lp3-primary-dim);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.lp3-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--lp3-primary);
}

.lp3-card h3 {
  margin-bottom: 8px;
}

.lp3-card p {
  color: var(--lp3-text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ---- STEPS ---- */
.lp3-steps {
  display: grid;
  gap: 20px;
}

.lp3-step {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  padding: 24px;
  border-radius: var(--lp3-radius-lg);
  border: 1px solid var(--lp3-border);
  background: var(--lp3-surface);
  position: relative;
  overflow: hidden;
}

/* Amber top accent line on steps */
.lp3-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lp3-accent), var(--lp3-primary), transparent);
}

.lp3-step-num {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--lp3-accent) 0%, var(--lp3-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.lp3-step-media {
  border-radius: var(--lp3-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp3-step-media--img {
  background-size: cover;
  background-position: center;
  color: transparent;
}

.lp3-step-photo {
  max-height: 450px;
  width: auto;
  max-width: 100%;
  border-radius: var(--lp3-radius);
  display: block;
  margin: 0 auto;
  cursor: zoom-in;
}

.lp3-step-body {
  min-width: 0;
}

.lp3-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.lp3-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--lp3-text-secondary);
  font-size: 0.95rem;
}

.lp3-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp3-primary);
}

.lp3-steps-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- FEATURES (co dostajesz) ---- */
.lp3-features {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: start;
}

.lp3-features-mockup {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp3-mockup {
  width: 100%;
  min-height: 380px;
  border-radius: var(--lp3-radius-xl);
  background: linear-gradient(135deg, var(--lp3-primary-deep) 0%, rgba(126, 195, 8, 0.08) 100%);
  border: 1px solid var(--lp3-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lp3-mockup--img {
  background-size: cover;
  background-position: center;
}

.lp3-mockup:has(.lp3-mockup-photo) {
  min-height: auto;
  background: none;
  border: none;
}

.lp3-mockup-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--lp3-radius-xl);
  cursor: zoom-in;
}

.lp3-mockup-inner {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lp3-text-muted);
}

/* Checklist */
.lp3-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.lp3-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  line-height: 1.5;
  color: var(--lp3-text-secondary);
}

.lp3-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lp3-primary-dim);
  color: var(--lp3-primary);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.lp3-check svg {
  width: 14px;
  height: 14px;
}

.lp3-checklist--on-dark .lp3-check {
  background: var(--lp3-primary-dim);
  color: var(--lp3-primary-bright);
}

.lp3-checklist--on-dark li {
  color: rgba(255, 255, 255, 0.85);
}

.lp3-note {
  font-size: 0.875rem;
  color: var(--lp3-text-muted);
  font-weight: 500;
}

.lp3-section-footer {
  margin-top: 40px;
  text-align: center;
  color: var(--lp3-text-secondary);
  font-weight: 500;
}

/* ---- FAQ ---- */
.lp3-faq {
  max-width: none;
}

.lp3-faq-item {
  border: 1px solid var(--lp3-border);
  border-radius: var(--lp3-radius-lg);
  margin-bottom: 8px;
  background: var(--lp3-surface);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.lp3-faq-item[open] {
  border-color: rgba(126, 195, 8, 0.3);
  box-shadow: 0 0 16px rgba(126, 195, 8, 0.1);
}

.lp3-faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  color: var(--lp3-text);
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.lp3-faq-item summary::-webkit-details-marker { display: none; }
.lp3-faq-item summary::marker { display: none; content: ""; }

.lp3-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--lp3-border);
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.lp3-faq-icon::before,
.lp3-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--lp3-text-muted);
  border-radius: 1px;
}

.lp3-faq-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.lp3-faq-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lp3-faq-item[open] .lp3-faq-icon {
  background: var(--lp3-primary-dim);
  border-color: rgba(126, 195, 8, 0.2);
}

.lp3-faq-item[open] .lp3-faq-icon::before {
  background: var(--lp3-primary);
}

.lp3-faq-item[open] .lp3-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.lp3-faq-item p {
  padding: 0 20px 16px;
  margin: 0;
  color: var(--lp3-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ---- PROOF GRID ---- */
.lp3-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lp3-proof-tile {
  position: relative;
  aspect-ratio: 2/3;
  height: auto;
  border-radius: var(--lp3-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--lp3-border);
  background: var(--lp3-surface);
  cursor: zoom-in;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.lp3-proof-tile--img {
  background-size: cover;
  background-position: center center;
}

.lp3-proof-tile--img .lp3-proof-label {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.lp3-proof-tile:hover {
  transform: scale(1.02);
  border-color: rgba(126, 195, 8, 0.25);
  box-shadow: 0 0 24px rgba(126, 195, 8, 0.15);
}

/* Gradient overlays per tile */
.lp3-proof-tile--a::before,
.lp3-proof-tile--b::before,
.lp3-proof-tile--c::before,
.lp3-proof-tile--d::before,
.lp3-proof-tile--e::before,
.lp3-proof-tile--f::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}

.lp3-proof-tile--a::before { background: linear-gradient(135deg, rgba(126, 195, 8, 0.08), transparent); }
.lp3-proof-tile--b::before { background: linear-gradient(135deg, rgba(229, 160, 18, 0.08), transparent); }
.lp3-proof-tile--c::before { background: linear-gradient(135deg, rgba(184, 228, 76, 0.06), rgba(126, 195, 8, 0.04)); }
.lp3-proof-tile--d::before { background: linear-gradient(135deg, rgba(229, 160, 18, 0.06), rgba(126, 195, 8, 0.03)); }
.lp3-proof-tile--e::before { background: linear-gradient(135deg, rgba(126, 195, 8, 0.06), transparent); }
.lp3-proof-tile--f::before { background: linear-gradient(135deg, rgba(184, 228, 76, 0.08), rgba(229, 160, 18, 0.03)); }

.lp3-proof-tile--img::before {
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
  opacity: 1;
}

.lp3-proof-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp3-primary-bright);
  background: var(--lp3-primary-dim);
  padding: 2px 8px;
  border-radius: 4px;
}

.lp3-proof-label {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--lp3-text-secondary);
}

/* ---- FINAL CTA ---- */
.lp3-section--cta {
  background: var(--lp3-black);
  overflow: hidden;
  position: relative;
}

.lp3-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(126, 195, 8, 0.06) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(40px);
}

.lp3-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}

.lp3-cta-pricing {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp3-border);
  border-radius: var(--lp3-radius-xl);
  padding: 32px;
  text-align: center;
}

.lp3-price-anchors {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.lp3-price-anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.lp3-price-anchor-label {
  font-size: 0.8rem;
  color: var(--lp3-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.lp3-price-anchor-value {
  font-size: 1rem;
  color: var(--lp3-text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.5);
}

.lp3-price-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lp3-border), transparent);
  margin: 20px 0;
}

.lp3-price-main {
  margin-bottom: 16px;
}

.lp3-price-main-label {
  display: block;
  font-size: 0.8rem;
  color: var(--lp3-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 8px;
}

.lp3-price-main-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.lp3-price-old {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--lp3-text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.6);
  text-decoration-thickness: 2px;
}

.lp3-price-main-value {
  display: block;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--lp3-text);
}

.lp3-countdown {
  margin: 20px 0 0;
}

.lp3-countdown-label {
  display: block;
  font-size: 0.8rem;
  color: var(--lp3-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 10px;
}

.lp3-countdown-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.lp3-countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--lp3-border);
  border-radius: 8px;
  padding: 8px 14px;
  min-width: 56px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp3-text);
  line-height: 1;
}

.lp3-countdown-block small {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--lp3-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.lp3-countdown-sep {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lp3-text-muted);
  padding: 0 2px;
}

.lp3-price-note {
  font-size: 0.9rem;
  color: var(--lp3-text-secondary);
  max-width: 480px;
  margin: 0 auto 20px;
  text-align: center;
  padding: 0 16px;
}

.lp3-cta-meta {
  font-size: 0.85rem;
  color: var(--lp3-text-muted);
  margin-bottom: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 16px;
}

/* ---- CENTERED SECTION HEAD ---- */
.lp3-section-head--center {
  text-align: center;
  max-width: none;
}

.lp3-section-head--center h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.lp3-section-head--center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---- CREATORS / TRUST ---- */
.lp3-creators-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.lp3-creators-text p {
  color: var(--lp3-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

.lp3-creators-text p:last-child {
  margin-bottom: 0;
}

.lp3-creators-text strong {
  color: var(--lp3-text);
}

.lp3-creators-photos {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.lp3-creators-photo {
  width: 120px;
  height: 160px;
  border-radius: var(--lp3-radius-lg);
  background-size: cover;
  background-position: center top;
  border: 1px solid var(--lp3-border);
  cursor: zoom-in;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.lp3-creators-photo:hover {
  transform: scale(1.05);
  border-color: rgba(126, 195, 8, 0.3);
}

.lp3-creators-stats {
  display: grid;
  gap: 12px;
}

.lp3-creators-stat {
  background: var(--lp3-surface);
  border: 1px solid var(--lp3-border);
  border-radius: var(--lp3-radius-lg);
  padding: 24px;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.lp3-creators-stat:hover {
  border-color: rgba(126, 195, 8, 0.25);
  box-shadow: 0 0 24px rgba(126, 195, 8, 0.15);
  transform: translateY(-2px);
}

.lp3-creators-stat-value {
  display: block;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--lp3-primary);
  margin-bottom: 6px;
}

.lp3-creators-stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--lp3-text-muted);
  line-height: 1.4;
}

/* ---- TESTIMONIALS ---- */
.lp3-testimonials {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.lp3-testimonial {
  background: var(--lp3-surface);
  border: 1px solid var(--lp3-border);
  border-radius: var(--lp3-radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.lp3-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lp3-primary), var(--lp3-accent), transparent);
}

.lp3-testimonial:hover {
  border-color: rgba(126, 195, 8, 0.25);
  box-shadow: 0 0 24px rgba(126, 195, 8, 0.15);
  transform: translateY(-3px);
}

.lp3-testimonial-stars {
  color: var(--lp3-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.lp3-testimonial-text {
  color: var(--lp3-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 16px;
}

.lp3-testimonial-text strong {
  color: var(--lp3-primary-bright);
}

.lp3-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp3-testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lp3-text);
}

.lp3-testimonial-role {
  font-size: 0.8rem;
  color: var(--lp3-text-muted);
}

/* ---- FOOTER ---- */
.lp3-footer {
  padding: 48px 0 96px;
  background: var(--lp3-black);
  border-top: 1px solid var(--lp3-border);
}

.lp3-footer-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}

.lp3-footer-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.lp3-footer p {
  color: var(--lp3-text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.lp3-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp3-footer-links a {
  color: var(--lp3-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.lp3-footer-links a:hover {
  color: var(--lp3-primary);
}

.lp3-footer-links a[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

/* ---- STICKY CTA ---- */
.lp3-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 50;
}

.lp3-sticky.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lp3-sticky-btn {
  background: var(--lp3-primary);
  color: #000000;
  padding: 12px 24px;
  border-radius: var(--lp3-radius-lg);
  border: none;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 0 24px var(--lp3-primary-glow), 0 8px 24px rgba(0, 0, 0, 0.5);
  white-space: normal;
  text-align: center;
  max-width: min(90vw, 480px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.lp3-sticky-btn:hover {
  background: var(--lp3-primary-hover);
  transform: translateY(-2px);
}

.lp3-sticky-form {
  margin: 0;
}

/* ---- FOCUS STATES (brand: 2px solid #7EC308, offset 2px) ---- */
.lp3-btn:focus-visible,
.lp3-sticky-btn:focus-visible,
.lp3-faq-item summary:focus-visible {
  outline: 2px solid var(--lp3-primary);
  outline-offset: 2px;
}

/* ---- ANIMATIONS ---- */
@keyframes lp3-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lp3-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lp3-drift {
  from { transform: translate(0, 0) rotate(var(--r, 0deg)); }
  to { transform: translate(12px, -10px) rotate(var(--r, 0deg)); }
}

/* ---- LIGHTBOX ---- */
.lp3-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp3-lightbox[hidden] {
  display: none;
}

.lp3-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lp3-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp3-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--lp3-radius-lg, 12px);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lp3-lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lp3-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 720px) {
  .lp3-hero {
    padding: 48px 0 32px;
  }

  .lp3-hero-sub {
    font-size: 0.92rem;
  }

  .lp3-hero-card {
    flex: 0 0 75%;
    height: 280px;
  }

  .lp3-hero-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    align-self: stretch;
    justify-content: flex-start;
    -webkit-mask-image: linear-gradient(to right, black 0, black calc(100% - 40px), transparent 100%);
    mask-image: linear-gradient(to right, black 0, black calc(100% - 40px), transparent 100%);
  }

  .lp3-hero-pills::-webkit-scrollbar {
    display: none;
  }

  .lp3-pill {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .lp3-hero-cta {
    margin-bottom: 16px;
  }

  .lp3-section {
    padding: 56px 0;
  }

  .lp3 h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .lp3 h2 {
    font-size: clamp(1.5rem, 5.5vw, 1.8rem);
  }

  .lp3 h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  .lp3-btn {
    width: 100%;
  }

  .lp3-cta-form {
    display: block;
  }

  .lp3-step-num {
    font-size: 2rem;
  }

  .lp3-price-anchors {
    flex-direction: column;
    gap: 10px;
  }

  .lp3-price-main-value {
    font-size: 2.4rem;
  }

  .lp3-price-old {
    font-size: 1.3rem;
  }

  .lp3-countdown-block {
    padding: 6px 10px;
    min-width: 48px;
    font-size: 1.2rem;
  }

  .lp3-proof-grid {
    gap: 8px;
  }

  .lp3-proof-tile {
    padding: 12px;
  }

  .lp3-footer {
    padding: 40px 0 80px;
  }

  .lp3-sticky-btn {
    font-size: 0.88rem;
    padding: 10px 18px;
  }

  .lp3-hero-prism--1 {
    width: 240px;
    height: 240px;
  }

  .lp3-hero-prism--2 {
    width: 160px;
    height: 160px;
  }

  .lp3-hero-prism--3 {
    width: 100px;
    height: 100px;
  }

  .lp3-section-head {
    margin-bottom: 32px;
  }
}

/* Phone-only: reorder showcase above CTA, size cards for portrait */
@media (max-width: 480px) {
  .lp3-hero {
    padding: 36px 0 24px;
  }

  .lp3-badge {
    margin-bottom: 8px;
  }

  .lp3-hero-title {
    margin-bottom: 10px;
  }

  .lp3-hero-sub {
    margin-bottom: 10px;
    order: 3;
  }

  .lp3-hero-showcase {
    order: 2;
    align-self: stretch;
    max-width: none;
    margin: 0 -5vw 10px;
  }

  .lp3-hero-grid {
    gap: 10px;
    padding: 0 5vw 6px;
  }

  .lp3-hero-card {
    flex: 0 0 55vw;
    height: 72vw;
    border-radius: 12px;
    scroll-snap-align: start;
  }

  .lp3-hero-pills {
    margin-bottom: 10px;
    order: 4;
  }

  .lp3-hero-cta {
    margin-bottom: 6px;
    order: 5;
  }
}

@media (min-width: 721px) {
  .lp3-cards-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp3-step {
    grid-template-columns: auto 1fr 1.4fr;
    align-items: center;
  }

  .lp3-step-num {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    justify-self: center;
  }

  .lp3-features {
    grid-template-columns: 1fr 1fr;
  }

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

  .lp3-cta-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .lp3-creators-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

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

  .lp3-footer-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 900px) {
  .lp3-hero {
    padding: 128px 0 104px;
  }

  .lp3-sticky-btn {
    font-size: 1rem;
    padding: 14px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp3-btn,
  .lp3-sticky,
  .lp3-card,
  .lp3-proof-tile,
  .lp3-faq-icon,
  .lp3-faq-icon::after,
  .lp3-hero-card {
    transition: none;
  }

  .lp3-hero-title,
  .lp3-hero-sub,
  .lp3-hero-pills,
  .lp3-hero-cta,
  .lp3-hero-showcase,
  .lp3-badge {
    animation: none;
  }

  .lp3-hero-prism--1,
  .lp3-hero-prism--2,
  .lp3-hero-prism--3 {
    animation: none;
  }

  .lp3-creators-stat,
  .lp3-testimonial {
    transition: none;
  }
}
