/* =================================================================
   LANDING PAGE — WriteUpCafe
   Scoped styles for the public landing page (non-logged-in users).
   All classes prefixed with `lp-` to avoid collisions with app.css.
   ================================================================= */

/* ─── TOKENS ─── */
.lp-page {
  --lp-cream:       #F7F3ED;
  --lp-cream-mid:   #F3EDE2;
  --lp-cream-deep:  #EDE4D6;
  --lp-espresso:    #2C1F14;
  --lp-espresso-2:  #1E0F05;
  --lp-copper:      #C4622D;
  --lp-copper-l:    #D07838;
  --lp-copper-xl:   #D98B58;
  --lp-copper-pale: #F2E2D0;
  --lp-amber:       #E8A042;
  --lp-sage:        #5C7A5C;
  --lp-ink:         #1A1612;
  --lp-ink-2:       #3A2415;
  --lp-ink-3:       #6B4E38;
  --lp-mist:        #E8E2D9;
  --lp-warm-white:  #FDFAF6;
}

.lp-page {
  background: var(--lp-cream);
  color: var(--lp-ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ─── SUBTLE PAPER TEXTURE ─── */
.lp-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
}

/* ─── LOGO BASE (mirrors app.css for standalone loading) ─── */
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: -0.5px;
  line-height: 1;
}
.site-logo:hover,
.site-logo:focus { text-decoration: none; }
.site-logo em { font-style: italic; }
.site-logo--light    { color: #1a1a2e; }
.site-logo--light em { color: #d4a853; }

/* ─── NAV ─── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(247, 243, 237, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,22,18,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}

.lp-nav.lp-nav--scrolled {
  background: rgba(247, 243, 237, 0.95);
  box-shadow: 0 2px 20px rgba(26,22,18,0.06);
}

/* Landing logo override */
.lp-nav .site-logo {
  font-size: 1.7rem;
  color: #1a1a2e;
}
.lp-nav .site-logo em {
  color: var(--lp-copper);
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.lp-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-ink);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lp-nav-links a:hover,
.lp-nav-links a:focus-visible { opacity: 1; }

.lp-nav-cta {
  background: var(--lp-espresso);
  color: var(--lp-cream) !important;
  opacity: 1 !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.lp-nav-cta:hover {
  background: var(--lp-copper) !important;
  box-shadow: 0 4px 16px rgba(196,98,45,0.25) !important;
}

.lp-nav-login {
  opacity: 0.9 !important;
  font-weight: 600 !important;
}

/* ─── HAMBURGER ─── */
.lp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}
.lp-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lp-espresso);
  border-radius: 2px;
  transition: all 0.3s;
}
.lp-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-hamburger.open span:nth-child(2) { opacity: 0; }
.lp-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lp-mobile-menu {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: rgba(247,243,237,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-mist);
  padding: 24px 24px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.25s ease;
}
.lp-mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.lp-mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--lp-ink);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--lp-mist);
  opacity: 0.8;
}
.lp-mobile-menu a:last-child {
  border-bottom: none;
  background: var(--lp-espresso);
  color: var(--lp-cream) !important;
  opacity: 1;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 8px;
}

/* ─── HERO ─── */
.lp-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

/* warm gradient orb */
.lp-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196,98,45,0.1) 0%, rgba(232,160,66,0.06) 40%, transparent 70%);
  pointer-events: none;
  animation: lpOrbDrift 12s ease-in-out infinite alternate;
}
@keyframes lpOrbDrift {
  from { transform: translateY(-50%) translate(0, 0); }
  to   { transform: translateY(-50%) translate(-30px, 20px); }
}

.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lp-copper);
  background: rgba(196,98,45,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  animation: lpFadeUp 0.8s ease both;
}

.lp-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--lp-copper);
  border-radius: 50%;
  animation: lpPulse 2s infinite;
}

@keyframes lpPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.lp-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--lp-espresso);
  margin-bottom: 24px;
  animation: lpFadeUp 0.8s 0.1s ease both;
}

.lp-hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--lp-copper), var(--lp-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lp-ink);
  opacity: 0.65;
  max-width: 480px;
  margin-bottom: 44px;
  animation: lpFadeUp 0.8s 0.2s ease both;
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: lpFadeUp 0.8s 0.3s ease both;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lp-espresso);
  color: var(--lp-cream);
  padding: 16px 32px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
  border: 2px solid var(--lp-espresso);
}
.lp-btn-primary:hover {
  background: var(--lp-copper);
  border-color: var(--lp-copper);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196,98,45,0.3);
}
.lp-btn-primary:focus-visible {
  outline: 2px solid var(--lp-copper);
  outline-offset: 2px;
}

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-espresso);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--lp-copper);
  padding-bottom: 2px;
  transition: gap 0.25s cubic-bezier(.34,1.56,.64,1), color 0.2s;
}
.lp-btn-secondary:hover { gap: 14px; color: var(--lp-copper); }

.lp-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--lp-mist);
  animation: lpFadeUp 0.8s 0.4s ease both;
}

.lp-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--lp-espresso), var(--lp-copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.lp-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--lp-ink);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ─── HERO VISUAL ─── */
.lp-hero-visual {
  position: relative;
  animation: lpFadeIn 1s 0.3s ease both;
}

.lp-hero-card-main {
  background: var(--lp-warm-white);
  border: 1px solid rgba(26,22,18,0.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(26,22,18,0.08), 0 0 0 1px rgba(255,255,255,0.6) inset;
  position: relative;
  z-index: 2;
  animation: lpFloat 6s ease-in-out infinite;
}
@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.lp-card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-copper);
  background: rgba(196,98,45,0.08);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.lp-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-espresso);
  line-height: 1.3;
  margin-bottom: 12px;
}

.lp-card-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-ink);
  opacity: 0.6;
  margin-bottom: 20px;
}

.lp-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-amber), var(--lp-copper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.lp-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.lp-card-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-espresso);
}
.lp-card-author-date {
  font-size: 12px;
  color: var(--lp-ink);
  opacity: 0.4;
}

.lp-card-reads {
  margin-left: auto;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--lp-sage);
  font-weight: 500;
}

.lp-hero-card-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--lp-espresso);
  color: var(--lp-cream);
  border-radius: 14px;
  padding: 20px 24px;
  z-index: 3;
  box-shadow: 0 12px 40px rgba(26,22,18,0.25);
  min-width: 180px;
  animation: lpFloat 6s 1s ease-in-out infinite;
}

.lp-float-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--lp-amber), var(--lp-copper-xl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.lp-float-label {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 2px;
}

.lp-hero-card-side {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--lp-sage);
  color: white;
  border-radius: 10px;
  padding: 14px 18px;
  z-index: 3;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(92,122,92,0.3);
  animation: lpFloat 6s 2s ease-in-out infinite;
}

/* ─── SECTION SHARED ─── */
.lp-section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-copper);
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(196,98,45,0.07);
  border-radius: 20px;
}

.lp-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--lp-espresso);
  margin-bottom: 20px;
}

.lp-section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--lp-ink);
  opacity: 0.6;
  max-width: 520px;
}

/* ─── MARQUEE STRIP ─── */
.lp-marquee {
  background: var(--lp-espresso);
  padding: 14px 0;
  overflow: hidden;
  display: flex;
  gap: 0;
  position: relative;
}
/* Edge fades for seamless scroll */
.lp-marquee::before,
.lp-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.lp-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--lp-espresso), transparent);
}
.lp-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--lp-espresso), transparent);
}

.lp-marquee-track {
  display: flex;
  gap: 0;
  animation: lpMarquee 30s linear infinite;
  white-space: nowrap;
}

.lp-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lp-amber);
  opacity: 0.8;
}

.lp-marquee-dot {
  width: 4px; height: 4px;
  background: var(--lp-copper);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes lpMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── TWO PATHS ─── */
.lp-two-paths {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--lp-cream);
  max-width: 1300px;
  margin: 0 auto;
}

.lp-path-card {
  background: var(--lp-warm-white);
  padding: 56px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(26,22,18,0.06);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s;
}
.lp-path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26,22,18,0.08);
}

.lp-path-card::before {
  content: attr(data-num);
  position: absolute;
  top: -20px;
  right: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 140px;
  font-weight: 900;
  color: var(--lp-ink);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
}

.lp-path-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.lp-path-icon svg { width: 24px; height: 24px; }

.lp-path-icon.writer  { background: rgba(196,98,45,0.1); color: var(--lp-copper); }
.lp-path-icon.blogger { background: rgba(92,122,92,0.1); color: var(--lp-sage); }

.lp-path-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--lp-espresso);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.lp-path-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--lp-ink);
  opacity: 0.65;
  margin-bottom: 32px;
}

.lp-path-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.lp-path-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--lp-ink);
  line-height: 1.5;
}

.lp-path-features li::before {
  content: '';
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(196,98,45,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C4622D' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.lp-path-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
}

.lp-path-link.writer-link {
  background: var(--lp-espresso);
  color: var(--lp-cream);
}
.lp-path-link.writer-link:hover {
  background: var(--lp-copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,98,45,0.25);
}

.lp-path-link.blogger-link {
  background: var(--lp-sage);
  color: white;
}
.lp-path-link.blogger-link:hover {
  background: #4a6b4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,122,92,0.25);
}

/* ─── FEATURES ─── */
.lp-features {
  padding: 110px 60px;
  background: var(--lp-cream);
}

.lp-features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-feature-item {
  background: var(--lp-warm-white);
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid rgba(26,22,18,0.05);
  transition: all 0.35s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  overflow: hidden;
}
.lp-feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26,22,18,0.1);
  border-color: rgba(196,98,45,0.15);
}
.lp-feature-item:hover .lp-feature-icon { transform: scale(1.1); }
.lp-feature-item:hover .lp-feature-name { color: var(--lp-copper); }

.lp-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.lp-feature-icon svg { width: 22px; height: 22px; }

/* icon color variants */
.lp-feature-item:nth-child(1) .lp-feature-icon { background: rgba(196,98,45,0.1); color: var(--lp-copper); }
.lp-feature-item:nth-child(2) .lp-feature-icon { background: rgba(232,160,66,0.12); color: #C8841A; }
.lp-feature-item:nth-child(3) .lp-feature-icon { background: rgba(92,122,92,0.1); color: var(--lp-sage); }
.lp-feature-item:nth-child(4) .lp-feature-icon { background: rgba(58,138,130,0.1); color: #3A8A82; }
.lp-feature-item:nth-child(5) .lp-feature-icon { background: rgba(124,92,191,0.1); color: #7C5CBF; }
.lp-feature-item:nth-child(6) .lp-feature-icon { background: rgba(196,90,106,0.1); color: #C45A6A; }

.lp-feature-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-espresso);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.lp-feature-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--lp-ink);
  opacity: 0.6;
}

/* ─── SOCIAL PROOF ─── */
.lp-social-proof {
  padding: 110px 60px;
  background: var(--lp-espresso);
  overflow: hidden;
  position: relative;
}

.lp-social-proof::before {
  content: '\201C';
  position: absolute;
  top: -60px;
  left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 400px;
  color: white;
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
}

.lp-social-proof .lp-section-label {
  color: var(--lp-amber);
  background: rgba(232,160,66,0.1);
}
.lp-social-proof .lp-section-title { color: var(--lp-cream); }

.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.lp-testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), background 0.3s, border-color 0.3s;
}
.lp-testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
}

.lp-testimonial-stars {
  color: var(--lp-amber);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.lp-testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
  color: var(--lp-cream);
  opacity: 0.85;
  margin-bottom: 24px;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.lp-t-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-cream);
}

.lp-t-role {
  font-size: 12px;
  color: var(--lp-amber);
  opacity: 0.7;
  margin-top: 2px;
}

/* ─── TOPICS ─── */
.lp-topics {
  padding: 110px 60px;
  background: var(--lp-cream);
}

.lp-topics-header {
  text-align: center;
  margin-bottom: 60px;
}

.lp-topics-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto 48px;
}

.lp-topic-pill {
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--lp-mist);
  color: var(--lp-ink);
  background: var(--lp-warm-white);
  transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-topic-pill:hover {
  border-color: var(--lp-copper);
  background: var(--lp-copper);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(196,98,45,0.2);
}

.lp-topic-pill span {
  font-size: 12px;
  opacity: 0.5;
  font-family: 'DM Mono', monospace;
}

.lp-topics-cta {
  text-align: center;
}

/* ─── CTA STRIP ─── */
.lp-cta-strip {
  padding: 100px 60px;
  background: var(--lp-cream);
  border-top: 1px solid var(--lp-mist);
}

.lp-cta-inner {
  background: var(--lp-espresso);
  border-radius: 24px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: 120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,160,66,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: lpOrbDrift 10s ease-in-out infinite alternate;
}

.lp-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  color: var(--lp-cream);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.lp-cta-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--lp-amber), var(--lp-copper-xl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-cta-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--lp-cream);
  opacity: 0.55;
  max-width: 500px;
}

.lp-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.lp-cta-btn {
  padding: 15px 32px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
}

.lp-cta-btn-main {
  background: var(--lp-amber);
  color: var(--lp-espresso);
}
.lp-cta-btn-main:hover {
  background: #f0b050;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232,160,66,0.35);
}

.lp-cta-btn-outline {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--lp-cream);
}
.lp-cta-btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
.lp-footer {
  background: #120E0A;
  padding: 60px 60px 40px;
  color: var(--lp-cream);
}

.lp-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.lp-footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--lp-cream);
  margin-bottom: 16px;
}
.lp-footer-brand em {
  font-style: italic;
  color: var(--lp-copper);
}

.lp-footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: var(--lp-cream);
  opacity: 0.45;
}

.lp-footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lp-amber);
  margin-bottom: 20px;
  font-family: 'DM Mono', monospace;
}

.lp-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lp-footer-col a {
  font-size: 14px;
  color: var(--lp-cream);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s;
}
.lp-footer-col a:hover { opacity: 1; }

.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-footer-copy {
  font-size: 13px;
  color: var(--lp-cream);
  opacity: 0.3;
}

.lp-footer-legal {
  display: flex;
  gap: 24px;
}
.lp-footer-legal a {
  font-size: 13px;
  color: var(--lp-cream);
  opacity: 0.3;
  text-decoration: none;
  transition: opacity 0.2s;
}
.lp-footer-legal a:hover { opacity: 0.7; }

/* ─── ANIMATIONS ─── */
@keyframes lpFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lpFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.34,1.56,.64,1);
}

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

/* ─── RESPONSIVE: TABLET (768–1024px) ─── */
@media (max-width: 1024px) {
  .lp-nav { padding: 18px 32px; }

  .lp-hero {
    padding: 110px 32px 80px;
    gap: 40px;
  }

  .lp-hero-card-float { right: -10px; bottom: -10px; }
  .lp-hero-card-side  { right: -10px; top: -10px; }

  .lp-two-paths { padding: 80px 32px; }
  .lp-path-card { padding: 44px 36px; }

  .lp-features { padding: 80px 32px; }
  .lp-features-header { gap: 40px; }
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }

  .lp-social-proof { padding: 80px 32px; }
  .lp-testimonials-grid { gap: 16px; }

  .lp-topics { padding: 80px 32px; }

  .lp-cta-strip { padding: 80px 32px; }
  .lp-cta-inner { padding: 60px; gap: 40px; }

  .lp-footer { padding: 52px 32px 32px; }
  .lp-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ─── RESPONSIVE: MOBILE (up to 767px) ─── */
@media (max-width: 767px) {
  /* Nav */
  .lp-nav { padding: 16px 20px; }
  .lp-nav-links { display: none; }
  .lp-hamburger { display: flex; }

  /* Hero — single column */
  .lp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 20px 60px;
    gap: 48px;
    text-align: left;
  }
  .lp-hero::after { display: none; }

  .lp-hero-headline {
    font-size: clamp(36px, 9vw, 52px);
    letter-spacing: -1.5px;
  }

  .lp-hero-sub { font-size: 15px; max-width: 100%; }

  .lp-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .lp-btn-primary { width: 100%; justify-content: center; box-sizing: border-box; }

  .lp-hero-stats {
    gap: 0;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 28px;
  }
  .lp-hero-stats .lp-stat-item {
    flex: 0 0 50%;
    padding: 12px 0;
  }
  .lp-stat-num { font-size: 26px; }

  /* Hero visual — simplified */
  .lp-hero-visual { margin-bottom: 36px; }
  .lp-hero-card-main { animation: none; }
  .lp-hero-card-float {
    position: relative;
    bottom: auto; right: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: 10px;
    animation: none;
  }
  .lp-hero-card-side {
    position: relative;
    top: auto; right: auto;
    display: inline-flex;
    margin-bottom: 12px;
    border-radius: 8px;
    animation: none;
  }

  /* Marquee */
  .lp-marquee-item {
    font-size: 10px;
    padding: 0 20px;
    letter-spacing: 1.5px;
  }

  /* Two Paths */
  .lp-two-paths {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 16px;
  }
  .lp-path-card { padding: 40px 24px; }
  .lp-path-card::before { font-size: 90px; }
  .lp-path-title { font-size: 24px; }
  .lp-path-link { width: 100%; justify-content: center; box-sizing: border-box; }

  /* Features */
  .lp-features { padding: 64px 20px; }
  .lp-features-header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-feature-item { padding: 28px 24px; }
  .lp-section-title { letter-spacing: -1px; }

  /* Social Proof */
  .lp-social-proof { padding: 64px 20px; }
  .lp-testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-testimonial-card { padding: 24px; }
  .lp-social-proof .lp-section-title { max-width: 100% !important; }

  /* Topics */
  .lp-topics { padding: 64px 20px; }
  .lp-topics-header { margin-bottom: 36px; }
  .lp-topics-wrap { gap: 10px; }
  .lp-topic-pill { font-size: 13px; padding: 9px 16px; }

  /* CTA */
  .lp-cta-strip { padding: 48px 20px; }
  .lp-cta-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 36px;
    border-radius: 16px;
  }
  .lp-cta-inner::before { display: none; }
  .lp-cta-title { font-size: 30px; }
  .lp-cta-actions { flex-direction: column; min-width: auto; }
  .lp-cta-btn { text-align: center; }

  /* Footer */
  .lp-footer { padding: 48px 20px 28px; }
  .lp-footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .lp-footer-legal { gap: 16px; }

  /* Section shared */
  .lp-section-title { font-size: clamp(26px, 7vw, 38px); }
  .lp-section-sub { font-size: 15px; }
}

/* ─── SMALL MOBILE (up to 400px) ─── */
@media (max-width: 400px) {
  .lp-hero-headline { font-size: 32px; }
  .lp-hero-stats .lp-stat-item { flex: 0 0 100%; }
  .lp-stat-num { font-size: 24px; }
  .lp-cta-title { font-size: 26px; }
}
