/* Devitc Landing — World-class enterprise SaaS
   Cormorant Garamond (display) · Barlow Condensed (label) · Inter (UI) · DM Mono (data)
   Inspired by: Stripe · Linear · Vercel · Notion */

/* ── Devitc animated mark (shared with shell.css) ──────────── */
@keyframes devitc-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes devitc-pulse {
  0%, 100% { opacity: .75; }
  50%       { opacity: 1; }
}
.devitc-mark-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: devitc-spin 3s linear infinite;
}
.devitc-mark-glow {
  animation: devitc-pulse 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .devitc-mark-ring, .devitc-mark-glow { animation: none; }
}

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Dark (hero, metrics, manifesto) */
  --lp-dark:        #06070D;
  --lp-dark-2:      #0C0D18;
  --lp-dark-border: rgba(255,255,255,.07);
  --lp-dark-text:   rgba(230,226,214,.92);
  --lp-dark-muted:  rgba(230,226,214,.42);
  --lp-dark-card:   rgba(255,255,255,.04);

  /* Light (content sections) */
  --bg:       #F9F8F5;
  --surface:  #FFFFFF;
  --ink:      #0C1020;
  --ink-2:    #1E2D4A;
  --gold:     #C9A84C;
  --gold-dim: rgba(201,168,76,.10);
  --gold-glow:rgba(201,168,76,.20);
  --muted:    #64748B;
  --subtle:   #9DAAB6;
  --rule:     #E6E2D8;
  --radius:   4px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-label:   'Barlow Condensed', sans-serif;
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --ease:     cubic-bezier(.4,0,.2,1);
}

/* ── Reset / Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── Scroll progress ─────────────────────────────────────────── */
#lp-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
}

.landing-body {
  font-family: var(--font-ui);
  background: var(--lp-dark);
  color: var(--lp-dark-text);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Navbar ──────────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: 64px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background .38s cubic-bezier(.4,0,.2,1),
    border-color .38s cubic-bezier(.4,0,.2,1),
    height .32s cubic-bezier(.4,0,.2,1),
    box-shadow .38s cubic-bezier(.4,0,.2,1);
}

/* ── Scrolled: dark glass — on-brand, funciona sobre qualquer secção ── */
.lp-nav--scrolled {
  height: 56px;
  background: rgba(6,7,13,0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 1px 0 rgba(255,255,255,0.03), 0 8px 32px rgba(0,0,0,0.28);
}

/* Logo — sempre claro (fundo sempre escuro) */
.lp-logo { color: rgba(230,226,214,.95); }
.lp-logo-sub { color: var(--gold); }

/* Links — estado transparente (hero) */
.lp-nav-link { color: rgba(230,226,214,.44); }
.lp-nav-link:hover { color: rgba(230,226,214,.95); }

/* Links — estado scrolled (dark glass) */
.lp-nav--scrolled .lp-nav-link { color: rgba(230,226,214,.58); }
.lp-nav--scrolled .lp-nav-link:hover { color: rgba(230,226,214,.95); }
.lp-nav--scrolled .lp-nav-link--active { color: var(--gold) !important; }
.lp-nav--scrolled .lp-nav-link--ghost { color: rgba(230,226,214,.38); }
.lp-nav--scrolled .lp-nav-link--ghost:hover { color: rgba(230,226,214,.82); }
.lp-nav--scrolled .lp-burger { border-color: rgba(255,255,255,.14); color: rgba(230,226,214,.7); }
.lp-nav--scrolled .lp-burger:hover { background: rgba(255,255,255,.06); }

.lp-logo {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  transition: opacity .2s var(--ease);
}
.lp-logo:hover { opacity: .82; }
.lp-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--lp-dark-text);
  line-height: 1;
  letter-spacing: -.01em;
}

.lp-logo-sub {
  font-family: var(--font-label);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  font-style: normal;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp-nav-link {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(230,226,214,.52);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color .22s cubic-bezier(.4,0,.2,1);
}

.lp-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .22s var(--ease);
}

.lp-nav-link:hover { color: var(--lp-dark-text); text-decoration: none; }
.lp-nav-link:hover::after { transform: scaleX(1); transform-origin: left center; }

.lp-nav-link--active { color: var(--gold) !important; }
.lp-nav-link--active::after { transform: scaleX(1); transform-origin: left center; background: var(--gold); }

.lp-nav-link--ghost {
  color: var(--lp-dark-muted);
  transition: color .18s var(--ease);
}
.lp-nav-link--ghost::after { display: none; }
.lp-nav-link--ghost:hover { color: var(--lp-dark-text); text-decoration: none; }

.lp-btn-nav {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #0C1020;
  background: linear-gradient(135deg, #D4AC52 0%, #B8943A 100%);
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 2px 10px rgba(201,168,76,.22);
  transition:
    transform .2s cubic-bezier(.4,0,.2,1),
    box-shadow .2s cubic-bezier(.4,0,.2,1),
    filter .2s cubic-bezier(.4,0,.2,1);
}
.lp-btn-nav:hover {
  color: #0C1020;
  text-decoration: none;
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 6px 24px rgba(201,168,76,.32);
}

/* ── Hero ────────────────────────────────────────────────────── */
.lp-hero {
  min-height: 100dvh;
  padding: 120px 48px 80px;
  background:
    radial-gradient(ellipse 100% 55% at 50% -5%, rgba(201,168,76,.09) 0%, transparent 65%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--lp-dark);
  background-size: auto, 72px 72px, 72px 72px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: .25;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.lp-hero-content { padding-right: 24px; }

.lp-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
  flex-shrink: 0;
  animation: lp-pulse 2s infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--gold-glow); }
  50% { opacity: .7; box-shadow: 0 0 16px rgba(201,168,76,.4); }
}

.lp-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7.5vw, 112px);
  font-weight: 300;
  font-style: italic;
  line-height: .93;
  letter-spacing: -.03em;
  color: var(--lp-dark-text);
  margin-bottom: 32px;
}

.lp-headline em {
  font-style: normal;
  color: var(--gold);
}

.lp-hero-p {
  font-size: 16px;
  font-weight: 300;
  color: var(--lp-dark-muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 44px;
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-btn-primary {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0C1020;
  background: linear-gradient(135deg, #D4AC52 0%, #B8943A 100%);
  border: none;
  padding: 14px 30px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 0 0 1px rgba(201,168,76,.22),
    0 4px 24px rgba(201,168,76,.22);
  transition:
    transform .22s cubic-bezier(.4,0,.2,1),
    box-shadow .22s cubic-bezier(.4,0,.2,1),
    filter .22s cubic-bezier(.4,0,.2,1);
}
.lp-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.26) 50%, transparent 75%);
  transform: translateX(-140%);
  transition: transform .52s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.lp-btn-primary:hover {
  color: #0C1020 !important;
  text-decoration: none;
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 0 0 1px rgba(201,168,76,.32),
    0 10px 40px rgba(201,168,76,.32);
}
.lp-btn-primary:hover::before { transform: translateX(140%); }

.lp-btn-ghost {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--lp-dark-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .15s;
  background: none;
  border: none;
  cursor: pointer;
}
.lp-btn-ghost:hover { color: var(--lp-dark-text); text-decoration: none; }

/* ── Product Preview (hero right) ────────────────────────────── */
.lp-hero-preview {
  position: relative;
  padding-top: 28px;
  padding-bottom: 28px;
}

.lp-preview {
  background: #0C0E1C;
  border: 1px solid rgba(201,168,76,.14);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 40px 80px rgba(0,0,0,.60),
    0 0 120px rgba(201,168,76,.04);
  font-family: var(--font-ui);
  animation: lp-float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

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

.lp-pv-topbar {
  background: #0A0C17;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-pv-dots { display: flex; gap: 5px; }
.lp-pv-dot-w { width: 9px; height: 9px; border-radius: 50%; }
.lp-pv-dot-w:nth-child(1) { background: #FF5F57; }
.lp-pv-dot-w:nth-child(2) { background: #FFBD2E; }
.lp-pv-dot-w:nth-child(3) { background: #28C840; }

.lp-pv-brand {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  color: rgba(230,226,214,.9);
  margin-left: 6px;
}

.lp-pv-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.lp-pv-icon-btn {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
}

.lp-pv-avatar {
  width: 22px; height: 22px;
  border-radius: 5px;
  background: linear-gradient(145deg, #D4A849, #9A6820);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #0C1020;
}

.lp-pv-body { padding: 14px; }

.lp-pv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.lp-pv-stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 5px;
  padding: 8px 10px;
}

.lp-pv-stat-v {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: rgba(230,226,214,.95);
  line-height: 1;
  letter-spacing: -.02em;
}

.lp-pv-stat-l {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(230,226,214,.35);
  margin-top: 4px;
}

.lp-pv-chart {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}

.lp-pv-chart-title {
  font-size: 9px;
  font-weight: 500;
  color: rgba(230,226,214,.40);
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.lp-pv-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 52px;
}

.lp-pv-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(201,168,76,.18);
  height: var(--h, 50%);
  transition: background .2s;
}

.lp-pv-bar--active {
  background: rgba(201,168,76,.55);
}

.lp-pv-table { display: flex; flex-direction: column; gap: 0; }

.lp-pv-trow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 11px;
}
.lp-pv-trow:last-child { border-bottom: none; }

.lp-pv-tdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-pv-tdot--green { background: #10B981; }
.lp-pv-tdot--gold  { background: var(--gold); }
.lp-pv-tdot--blue  { background: #60A5FA; }

.lp-pv-tname {
  color: rgba(230,226,214,.70);
  font-size: 11px;
  flex: 1;
}

.lp-pv-tval {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: rgba(230,226,214,.85);
  letter-spacing: .02em;
}

/* Badges floating near preview */
.lp-preview-badge {
  position: absolute;
  background: rgba(14,15,28,.90);
  border: 1px solid rgba(201,168,76,.20);
  backdrop-filter: blur(16px);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 12px;
  color: rgba(230,226,214,.85);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  z-index: 3;
}

.lp-preview-badge-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-preview-badge--tl {
  top: -18px;
  left: -28px;
}

.lp-preview-badge--br {
  bottom: -18px;
  right: -24px;
}

/* ── Gold divider ────────────────────────────────────────────── */
.lp-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold) 75%, transparent 100%);
  opacity: .20;
  margin: 0;
}

/* ── Social Proof strip ──────────────────────────────────────── */
.lp-social {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.lp-social-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--subtle);
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-social-sep {
  width: 1px;
  height: 20px;
  background: var(--rule);
  flex-shrink: 0;
}

.lp-social-names {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.lp-social-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .01em;
  white-space: nowrap;
}

/* ── Section wrapper (light) ─────────────────────────────────── */
.lp-section {
  background: var(--bg);
  padding: 112px 48px;
}

.lp-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.lp-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}

.lp-section-eye {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-section-eye::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.lp-section-h {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.lp-section-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  align-self: end;
}

/* ── Bento Features Grid ─────────────────────────────────────── */
.lp-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.lp-bcard {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  position: relative;
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}

.lp-bcard:hover {
  box-shadow: 0 8px 32px rgba(12,16,32,.08), 0 2px 8px rgba(12,16,32,.04);
  transform: translateY(-2px);
}

.lp-bcard::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .2s;
  border-radius: 0 2px 2px 0;
}

.lp-bcard:hover::before { opacity: 1; }

.lp-bcard--wide { grid-column: span 7; }
.lp-bcard--narrow { grid-column: span 5; }
.lp-bcard--half { grid-column: span 6; }

.lp-bcard-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.lp-bcard-icon svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-bcard-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.lp-bcard-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

/* Mini POS preview in card */
.lp-bcard-preview {
  margin-top: 24px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 5px;
  padding: 12px;
}

.lp-mini-receipt { display: flex; flex-direction: column; gap: 0; }

.lp-mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
}
.lp-mini-row:last-child { border-bottom: none; }
.lp-mini-row span:first-child { color: var(--muted); }
.lp-mini-row span:last-child { font-family: var(--font-mono); font-size: 10px; color: var(--ink); font-weight: 500; }

.lp-mini-row--total span:first-child { font-weight: 600; color: var(--ink); }
.lp-mini-row--total span:last-child { color: var(--gold); }

.lp-mini-pay {
  margin-top: 10px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.18);
  border-radius: 3px;
  padding: 6px 10px;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #059669;
  text-align: center;
}

/* Mini chart preview in card */
.lp-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
  margin-top: 24px;
}

.lp-mini-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(201,168,76,.20);
  height: var(--h, 50%);
  transition: background .2s;
}

.lp-mini-bar--active { background: rgba(201,168,76,.65); }

/* Mini feature badges (for CRM) */
.lp-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.lp-mini-tag {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid var(--rule);
  color: var(--muted);
  background: var(--bg);
}

.lp-mini-tag--active {
  border-color: rgba(201,168,76,.25);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ── Metrics Strip (dark) ────────────────────────────────────── */
.lp-metrics {
  background: var(--lp-dark);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 80px 48px;
}

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

.lp-metric {
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,.07);
  text-align: center;
}

.lp-metric:first-child { padding-left: 0; }
.lp-metric:last-child  { border-right: none; padding-right: 0; }

.lp-metric-num {
  font-family: var(--font-mono);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: var(--lp-dark-text);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.lp-metric-num em {
  font-style: normal;
  color: var(--gold);
}

.lp-metric-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lp-dark-muted);
}

/* ── Editorial Features ──────────────────────────────────────── */
.lp-features {
  padding: 112px 48px;
  background: var(--bg);
}

.lp-features-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.lp-feature-row {
  display: grid;
  grid-template-columns: 72px 280px 1fr;
  gap: 0 48px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
  transition: background .15s;
}

.lp-feature-row:first-child { border-top: 1px solid var(--rule); }

.lp-feature-row:hover .lp-feature-index { color: var(--gold); }
.lp-feature-row:hover .lp-feature-title { transform: translateX(6px); color: var(--ink-2); }

.lp-feature-index {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--subtle);
  letter-spacing: .05em;
  padding-top: 5px;
  transition: color .15s;
}

.lp-feature-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.01em;
  transition: color .2s var(--ease), transform .25s var(--ease);
}

.lp-feature-body {
  font-size: 14px;
  font-weight: 400;
  color: #3D4A5A;
  line-height: 1.75;
}

/* ── Manifesto (dark) ────────────────────────────────────────── */
.lp-manifesto {
  background: var(--lp-dark-2);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.lp-manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,.05) 0%, transparent 70%);
  pointer-events: none;
}

.lp-manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.lp-manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: rgba(230,226,214,.88);
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-bottom: 36px;
}

.lp-manifesto-attr {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Final CTA ───────────────────────────────────────────────── */
.lp-cta {
  padding: 128px 48px;
  background: var(--bg);
  text-align: center;
}

.lp-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.lp-cta-eye {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lp-cta-eye::before, .lp-cta-eye::after {
  content: '';
  flex: 0 0 20px;
  height: 1px;
  background: var(--gold);
}

.lp-cta-h {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.lp-cta-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 44px;
}

.lp-btn-cta {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #0C1020;
  background: linear-gradient(135deg, #D4AC52 0%, #B8943A 100%);
  border: none;
  padding: 17px 44px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 0 0 1px rgba(201,168,76,.22),
    0 6px 32px rgba(201,168,76,.24);
  transition:
    transform .22s cubic-bezier(.4,0,.2,1),
    box-shadow .22s cubic-bezier(.4,0,.2,1),
    filter .22s cubic-bezier(.4,0,.2,1);
}
.lp-btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.26) 50%, transparent 75%);
  transform: translateX(-140%);
  transition: transform .52s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.lp-btn-cta:hover {
  color: #0C1020;
  text-decoration: none;
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 0 0 1px rgba(201,168,76,.32),
    0 12px 48px rgba(201,168,76,.32);
}
.lp-btn-cta:hover::before { transform: translateX(140%); }

.lp-cta-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--subtle);
  margin-top: 16px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.lp-footer {
  background: var(--lp-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-footer-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 600;
  color: var(--lp-dark-text);
  text-decoration: none;
  letter-spacing: -.01em;
}

.lp-footer-links { display: flex; gap: 28px; }

.lp-footer-link {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--lp-dark-muted);
  text-decoration: none;
  transition: color .15s;
}

.lp-footer-link:hover { color: var(--lp-dark-text); }

.lp-footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(230,226,214,.22);
}

/* ── Modal ───────────────────────────────────────────────────── */
.lp-modal-input {
  width: 100%;
  border: 1px solid #DDD8CC;
  border-radius: 5px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-ui);
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}

.lp-modal-input:focus {
  border-color: rgba(201,168,76,.6);
  box-shadow: 0 0 0 3px rgba(201,168,76,.10);
}

.lp-modal-label {
  display: block;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

/* ── Login Split Panel ───────────────────────────────────────── */
.lp-login-split {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 2fr 3fr;
}

/* Left: brand panel */
.lp-login-left {
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(201,168,76,.08) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--lp-dark);
  background-size: auto, 64px 64px, 64px 64px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.lp-login-left::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,168,76,.3) 30%, rgba(201,168,76,.3) 70%, transparent 100%);
}

.lp-login-brand {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.lp-login-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-login-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--lp-dark-text);
  letter-spacing: -.01em;
  line-height: 1;
}

.lp-login-brand-sub {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
  font-style: normal;
}

.lp-login-left-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0;
}

.lp-login-tagline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--lp-dark-text);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.lp-login-tagline em {
  font-style: normal;
  color: var(--gold);
}

.lp-login-tagline-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(230,226,214,.60);
  line-height: 1.70;
  max-width: 340px;
}

.lp-login-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-login-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(230,226,214,.70);
  letter-spacing: .01em;
}

.lp-login-trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Right: form panel */
.lp-login-right {
  background: #FAFAF8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 72px;
}

.lp-login-form-wrap {
  width: 100%;
  max-width: 400px;
}

.lp-login-h {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 8px;
  line-height: 1.05;
}

.lp-login-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.55;
}

.lp-login-group { margin-bottom: 20px; }

.lp-login-label {
  display: block;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #6B7A8D;
  margin-bottom: 8px;
}

.lp-login-input {
  width: 100%;
  border: 1px solid #DDD8CC;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-ui);
  font-weight: 300;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  min-height: 44px;
}

.lp-login-input:focus {
  border-color: var(--gold);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(201,168,76,.10);
}

.lp-pw-wrap {
  position: relative;
}

.lp-pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--subtle);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color .15s;
}

.lp-pw-toggle:hover { color: var(--muted); }

.lp-login-btn {
  width: 100%;
  background: linear-gradient(135deg, #D4AC52 0%, #B8943A 100%);
  color: #0C0D18;
  border: none;
  padding: 14px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 8px;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 0 0 1px rgba(201,168,76,.22),
    0 4px 20px rgba(201,168,76,.18);
  transition: transform .22s cubic-bezier(.4,0,.2,1), box-shadow .22s, filter .22s;
}

.lp-login-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.28) 50%, transparent 75%);
  transform: translateX(-140%);
  transition: transform .52s cubic-bezier(.4,0,.2,1);
}

.lp-login-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 0 0 1px rgba(201,168,76,.32),
    0 10px 36px rgba(201,168,76,.28);
}

.lp-login-btn:hover::before { transform: translateX(140%); }

.lp-login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 11px;
  color: var(--subtle);
}

.lp-login-divider::before, .lp-login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.lp-login-note {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 20px;
}

.lp-login-note a { color: #B8943A; text-decoration: none; font-weight: 500; }
.lp-login-note a:hover { color: #D4AC52; text-decoration: underline; }

.lp-login-back {
  position: absolute;
  top: 32px;
  left: 56px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-label);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .18s;
  z-index: 2;
}

.lp-login-back:hover { color: var(--ink); }

/* ── Scroll animations ───────────────────────────────────────── */
.lp-anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}

.lp-anim--delay-1 { transition-delay: .08s; }
.lp-anim--delay-2 { transition-delay: .16s; }
.lp-anim--delay-3 { transition-delay: .24s; }
.lp-anim--delay-4 { transition-delay: .32s; }

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

/* ── Hero entrance sequence ──────────────────────────────────── */
.lp-hero-enter {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.lp-hero-enter.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .lp-anim { opacity: 1; transform: none; transition: none; }
  .lp-hero-enter { opacity: 1; transform: none; transition: none; }
  .lp-login-left.lp-animate { opacity: 1; transform: none; }
  .lp-login-form-wrap.lp-animate > * { opacity: 1; transform: none; transition: none; }
  #lp-page-out { display: none; }
  @keyframes lp-float { from, to { transform: none; } }
  @keyframes lp-pulse { from, to { opacity: 1; } }
}

/* ── Hamburger / Mobile nav ──────────────────────────────────── */
.lp-burger {
  display: none;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--lp-dark-text);
  padding: 0;
  flex-shrink: 0;
  transition: border-color .15s, background .15s;
}

.lp-burger:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.24); }

.lp-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 290;
  background: var(--lp-dark);
  display: flex;
  flex-direction: column;
  padding: 84px 28px 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease);
}

.lp-mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.lp-mobile-link {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: rgba(230,226,214,.68);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  letter-spacing: -.02em;
  line-height: 1;
  display: block;
  transition: color .15s;
}

.lp-mobile-link:hover,
.lp-mobile-link:focus { color: var(--gold); text-decoration: none; }

.lp-mobile-link--cta {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: none;
  margin-top: 36px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-mobile-link--cta:hover { color: #B8963E; text-decoration: none; }

/* ── Custom Demo Overlay ─────────────────────────────────────── */
.lp-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4,5,18,.82);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease);
}

.lp-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.lp-panel {
  background: #0F121E;
  border: none;
  border-radius: 10px;
  width: 100%;
  max-width: 560px;
  max-height: 92dvh;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.14),
    0 0 0 1px rgba(201,168,76,.06),
    0 40px 100px rgba(4,5,16,.80),
    0 16px 48px rgba(4,5,16,.40);
  transform: translateY(40px) scale(.86);
  opacity: 0;
  transition: transform .46s cubic-bezier(.34,1.52,.64,1), opacity .30s var(--ease);
}

.lp-overlay.is-open .lp-panel { transform: translateY(0) scale(1); opacity: 1; }

/* Closing: faster, snappier exit */
.lp-overlay.is-closing {
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease);
}
.lp-overlay.is-closing .lp-panel {
  transform: translateY(18px) scale(.92);
  opacity: 0;
  transition: transform .20s var(--ease), opacity .18s var(--ease);
}

.lp-panel-head {
  background: var(--surface);
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.lp-panel-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1;
}

.lp-panel-sub { font-size: 13px; font-weight: 300; color: var(--muted); margin-top: 6px; line-height: 1.5; }

.lp-panel-close {
  width: 32px; height: 32px;
  flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 50%;
  outline: none;
  background: none; cursor: pointer; color: var(--subtle);
  transition: color .15s, background .15s;
}

.lp-panel-close:hover { background: rgba(12,16,32,.07); color: var(--ink); }

.lp-panel-body { background: var(--surface); padding: 28px 36px; }

.lp-panel-foot {
  background: var(--surface);
  padding: 20px 36px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.lp-panel-note { font-size: 12px; font-weight: 300; color: var(--subtle); }

@media (max-width: 560px) {
  .lp-panel-head  { padding: 24px 22px 20px; }
  .lp-panel-body  { padding: 22px 22px; }
  .lp-panel-foot  { padding: 16px 22px 26px; }
  .lp-panel-title { font-size: 22px; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-hero-preview { display: none; }
  .lp-preview-badge { display: none; }
  .lp-section-head { grid-template-columns: 1fr; gap: 24px; }
  .lp-bento { grid-template-columns: repeat(2, 1fr); }
  .lp-bcard--wide, .lp-bcard--narrow, .lp-bcard--half { grid-column: span 1; }
  .lp-metrics-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-metric { border-right: none; padding: 0; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 48px; }
  .lp-metric:last-child { border-bottom: none; padding-bottom: 0; }
  .lp-feature-row { grid-template-columns: 56px 1fr; gap: 0 24px; }
  .lp-feature-body { grid-column: 2; margin-top: 8px; }
  .lp-login-split { grid-template-columns: 1fr; }
  .lp-login-left { display: none; }
  .lp-login-right { min-height: 100dvh; padding: 80px 32px 48px; }
  .lp-login-back { left: 32px; }
  .lp-login-form-wrap { max-width: 440px; }
}

@media (max-width: 768px) {
  .lp-nav { padding: 0 20px; height: 56px; }
  .lp-nav-links { display: none; }
  .lp-burger { display: flex; }
  .lp-hero { padding: 96px 20px 64px; }
  .lp-hero-actions { gap: 14px; }
  .lp-social { padding: 24px 20px; gap: 20px; flex-wrap: wrap; }
  .lp-social-names { flex-wrap: wrap; gap: 20px; }
  .lp-social-sep { display: none; }
  .lp-section { padding: 72px 20px; }
  .lp-features { padding: 72px 20px; }
  .lp-metrics { padding: 64px 20px; }
  .lp-manifesto { padding: 80px 20px; }
  .lp-cta { padding: 80px 20px; }
  .lp-footer { padding: 28px 20px; flex-direction: column; gap: 16px; text-align: center; }
  .lp-footer-links { justify-content: center; }
  .lp-bento { grid-template-columns: 1fr; }
  .lp-feature-title { font-size: 20px; }
}

/* ── Backward compat (old .l-* and .lp-login-wrap classes) ───── */
.lp-login-wrap { min-height: 100dvh; background: var(--bg); display: flex; align-items: center; justify-content: center; padding: 48px 16px; }
.lp-login-card { background: var(--surface); border: 1px solid var(--rule); border-top: 3px solid var(--gold); padding: 48px; width: 100%; max-width: 400px; border-radius: var(--radius); }
.lp-login-logo { font-family: var(--font-display); font-size: 20px; font-style: italic; font-weight: 600; color: var(--ink); text-decoration: none; display: block; margin-bottom: 36px; line-height: 1; }
.lp-login-logo-sub { display: block; font-family: var(--font-label); font-size: 9px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; font-style: normal; }
.l-login-body  { min-height: 100dvh; background: var(--bg); display: flex; align-items: center; justify-content: center; padding: 48px 16px; }
.l-login-card  { background: var(--surface); border: 1px solid var(--rule); border-top: 3px solid var(--gold); padding: 48px; width: 100%; max-width: 400px; }
.l-login-logo  { font-family: var(--font-display); font-size: 20px; font-style: italic; font-weight: 600; color: var(--ink); text-decoration: none; display: block; margin-bottom: 36px; line-height: 1; }
.l-logo-sub    { display: block; font-family: var(--font-label); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; font-style: normal; }
.l-login-h     { font-family: var(--font-display); font-size: 26px; font-weight: 400; font-style: italic; color: var(--ink); letter-spacing: -.01em; margin-bottom: 6px; }
.l-login-sub   { font-size: 13px; font-weight: 300; color: var(--muted); margin-bottom: 32px; }
.l-login-group { margin-bottom: 18px; }
.l-login-label { display: block; font-family: var(--font-label); font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.l-login-input { width: 100%; border: 1px solid var(--rule); border-radius: var(--radius); padding: 11px 14px; font-size: 14px; font-family: var(--font-ui); font-weight: 300; color: var(--ink); background: var(--bg); outline: none; transition: border-color .15s; }
.l-login-input:focus { border-color: var(--gold); background: var(--surface); }
.l-login-btn   { width: 100%; background: var(--ink); color: #fff; border: none; padding: 13px; font-family: var(--font-label); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; border-radius: var(--radius); cursor: pointer; margin-top: 8px; transition: opacity .15s; }
.l-login-btn:hover { opacity: .82; }
.l-login-note  { text-align: center; font-size: 12px; color: var(--muted); margin-top: 24px; }
.l-login-note a { color: var(--ink); text-decoration: none; }
.l-login-note a:hover { text-decoration: underline; }
.l-modal-input { width: 100%; border: 1px solid var(--rule); border-radius: var(--radius); padding: 11px 14px; font-size: 14px; font-family: var(--font-ui); color: var(--ink); background: var(--bg); outline: none; transition: border-color .15s; }
.l-modal-input:focus { border-color: var(--gold); background: var(--surface); }
.l-modal-label { display: block; font-family: var(--font-label); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.l-btn-primary { font-family: var(--font-label); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: var(--ink); border: none; padding: 14px 32px; border-radius: var(--radius); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: opacity .15s; }
.l-btn-primary:hover { opacity: .82; color: #fff !important; text-decoration: none; }

/* ── Page exit wipe ──────────────────────────────────────────── */
#lp-page-out {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--lp-dark);
  transform: translateY(-100%);
  pointer-events: none;
  will-change: transform;
}
#lp-page-out.is-active {
  pointer-events: all;
  transform: translateY(0);
  transition: transform .52s cubic-bezier(.76,0,.24,1);
}

/* ── Login page entrance ─────────────────────────────────────── */
.lp-login-left.lp-animate {
  opacity: 0;
  transform: translateX(-24px);
}
.lp-login-left.lp-enter {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .55s .08s cubic-bezier(.22,1,.36,1),
              transform .55s .08s cubic-bezier(.22,1,.36,1);
}

.lp-login-form-wrap.lp-animate > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .48s cubic-bezier(.22,1,.36,1),
              transform .48s cubic-bezier(.22,1,.36,1);
}
.lp-login-form-wrap.lp-enter > *:nth-child(1) { transition-delay: .08s; }
.lp-login-form-wrap.lp-enter > *:nth-child(2) { transition-delay: .16s; }
.lp-login-form-wrap.lp-enter > *:nth-child(3) { transition-delay: .24s; }
.lp-login-form-wrap.lp-enter > *:nth-child(4) { transition-delay: .32s; }
.lp-login-form-wrap.lp-enter > *:nth-child(5) { transition-delay: .40s; }
.lp-login-form-wrap.lp-enter > *:nth-child(6) { transition-delay: .46s; }
.lp-login-form-wrap.lp-enter > * { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   ENHANCED ANIMATIONS — World-class visual upgrade
   Inspired by 21st.dev aurora + marquee patterns
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero: animated aurora overlay ──────────────────────────── */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    100deg,
    rgba(201,168,76,.055) 10%,
    transparent            15%,
    rgba(201,168,76,.030) 20%,
    rgba(30,45,74,.060)   25%,
    rgba(201,168,76,.040) 30%
  );
  background-size: 300% 300%;
  animation: lp-aurora 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
  will-change: background-position;
}

@keyframes lp-aurora {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── Hero ambient glow orbs ──────────────────────────────────── */
.lp-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.lp-hero-orb--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(201,168,76,.09) 0%, transparent 70%);
  top: -140px; right: -80px;
  animation: lp-orb-1 16s ease-in-out infinite alternate;
}

.lp-hero-orb--2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
  bottom: 40px; left: 28%;
  animation: lp-orb-2 20s ease-in-out infinite alternate;
}

@keyframes lp-orb-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, 70px) scale(1.18); }
}

@keyframes lp-orb-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, -50px) scale(0.88); }
}

/* ── Hero preview: scan line ─────────────────────────────────── */
.lp-preview { position: relative; }

.lp-preview::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,.5) 50%, transparent 100%);
  top: 0;
  animation: lp-scan 5s linear infinite;
  pointer-events: none;
  z-index: 4;
}

@keyframes lp-scan {
  0%   { top: 0;    opacity: 0; }
  5%   {             opacity: .8; }
  95%  {             opacity: .8; }
  100% { top: 100%; opacity: 0; }
}

/* ── Hero preview: chart bars grow on load ───────────────────── */
.lp-pv-bar {
  transform-origin: bottom;
  animation: lp-bar-grow .65s cubic-bezier(.22,1,.36,1) backwards;
}

.lp-pv-bar:nth-child(1) { animation-delay: .45s; }
.lp-pv-bar:nth-child(2) { animation-delay: .55s; }
.lp-pv-bar:nth-child(3) { animation-delay: .65s; }
.lp-pv-bar:nth-child(4) { animation-delay: .75s; }
.lp-pv-bar:nth-child(5) { animation-delay: .85s; }
.lp-pv-bar:nth-child(6) { animation-delay: .95s; }
.lp-pv-bar:nth-child(7) { animation-delay: 1.05s; }

@keyframes lp-bar-grow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* ── Floating badges: entrance + hover ───────────────────────── */
.lp-preview-badge {
  animation: lp-badge-in .65s cubic-bezier(.22,1,.36,1) backwards;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.lp-preview-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 24px rgba(201,168,76,.18);
}

.lp-preview-badge--tl { animation-delay: .95s; }
.lp-preview-badge--br { animation-delay: 1.15s; }

@keyframes lp-badge-in {
  from { opacity: 0; transform: translateY(18px) scale(.88); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Social proof: infinite marquee ──────────────────────────── */
.lp-marquee-wrap {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.lp-marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: lp-marquee 32s linear infinite;
}

.lp-marquee-track:hover { animation-play-state: paused; }

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

.lp-social-dot {
  color: var(--rule);
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Bento cards: mouse-tracking radial glow ─────────────────── */
.lp-bcard {
  --card-glow-x: 50%;
  --card-glow-y: 50%;
}

.lp-bcard::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(
    280px circle at var(--card-glow-x) var(--card-glow-y),
    rgba(201,168,76,.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  z-index: 0;
}

.lp-bcard:hover::after { opacity: 1; }

.lp-bcard:hover {
  border-color: rgba(201,168,76,.24);
  box-shadow:
    0 0 0 1px rgba(201,168,76,.10),
    0 16px 48px rgba(12,16,32,.10),
    0 2px 8px rgba(12,16,32,.05);
}

.lp-bcard > * { position: relative; z-index: 1; }

/* ── Metrics: ambient glow + number reveal ───────────────────── */
.lp-metrics { position: relative; overflow: hidden; }

.lp-metrics::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 75% at 50% 50%, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
  animation: lp-metric-bg 6s ease-in-out infinite alternate;
}

@keyframes lp-metric-bg {
  from { opacity: .4; transform: scale(1); }
  to   { opacity: 1;  transform: scale(1.1); }
}

.lp-metric.lp-visible .lp-metric-num em {
  text-shadow: 0 0 40px rgba(201,168,76,.55), 0 0 80px rgba(201,168,76,.20);
}

/* ── Feature rows: animated left accent ──────────────────────── */
.lp-feature-row { position: relative; }

.lp-feature-row::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.lp-feature-row:hover::before { transform: scaleY(1); }

/* ── Manifesto: decorative quote mark ────────────────────────── */
.lp-manifesto-inner { position: relative; }

.lp-manifesto-inner::before {
  content: '\201C';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 220px;
  font-weight: 300;
  color: rgba(201,168,76,.07);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ── CTA section: ambient pulse ──────────────────────────────── */
.lp-cta { position: relative; overflow: hidden; }

.lp-cta::before {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.055) 0%, transparent 70%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: lp-cta-pulse 7s ease-in-out infinite alternate;
}

@keyframes lp-cta-pulse {
  from { transform: translate(-50%, -50%) scale(1);    opacity: .4; }
  to   { transform: translate(-50%, -50%) scale(1.35); opacity: 1; }
}

/* ── Reduced motion: disable all new animations ──────────────── */
@media (prefers-reduced-motion: reduce) {
  .lp-hero::before,
  .lp-hero-orb,
  .lp-preview::before,
  .lp-pv-bar,
  .lp-preview-badge,
  .lp-marquee-track,
  .lp-metrics::before,
  .lp-cta::before { animation: none !important; }
  .lp-bcard::after,
  .lp-feature-row::before,
  .lp-manifesto-inner::before { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* Compact height + shadow when scrolled */
/* Nav transitions defined at base — no override needed */

/* Demo button shimmer */
.lp-btn-nav {
  position: relative;
  overflow: hidden;
}

.lp-btn-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255,255,255,.28) 50%,
    transparent 75%
  );
  transform: translateX(-140%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

.lp-btn-nav:hover::before { transform: translateX(140%); }

/* Mobile nav — staggered slide-in per link */
.lp-mobile-nav.is-open .lp-mobile-link {
  animation: lp-mobile-link-in .38s cubic-bezier(.22,1,.36,1) backwards;
}

.lp-mobile-nav.is-open .lp-mobile-link:nth-child(1) { animation-delay: .06s; }
.lp-mobile-nav.is-open .lp-mobile-link:nth-child(2) { animation-delay: .12s; }
.lp-mobile-nav.is-open .lp-mobile-link:nth-child(3) { animation-delay: .18s; }
.lp-mobile-nav.is-open .lp-mobile-link:nth-child(4) { animation-delay: .24s; }
.lp-mobile-nav.is-open .lp-mobile-link:nth-child(5) { animation-delay: .30s; }

@keyframes lp-mobile-link-in {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Page-out wipe — gold leading-edge line */
#lp-page-out::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
  opacity: .7;
}

/* ═══════════════════════════════════════════════════════════════
   LOGIN PAGE ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* Left panel: aurora overlay */
.lp-login-left {
  overflow: hidden;
}

.lp-login-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    105deg,
    rgba(201,168,76,.045) 10%,
    transparent             15%,
    rgba(201,168,76,.025)  20%,
    rgba(30,45,74,.055)    25%,
    rgba(201,168,76,.035)  30%
  );
  background-size: 300% 300%;
  animation: lp-aurora 26s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/* Left panel: ambient orbs */
.lp-login-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.lp-login-orb--1 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, rgba(201,168,76,.04) 50%, transparent 70%);
  top: -120px; right: -140px;
  animation: lp-orb-1 18s ease-in-out infinite alternate;
}

.lp-login-orb--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(37,99,235,.08) 0%, transparent 70%);
  bottom: 60px; left: -80px;
  animation: lp-orb-2 22s ease-in-out infinite alternate;
}

/* Keep all left panel children above orbs/aurora */
.lp-login-left > *:not(.lp-login-orb) { position: relative; z-index: 1; }

/* Trust dots — reuse existing pulse, stagger per item */
.lp-login-trust-item:nth-child(1) .lp-login-trust-dot { animation-delay: 0s; }
.lp-login-trust-item:nth-child(2) .lp-login-trust-dot { animation-delay: .5s; }
.lp-login-trust-item:nth-child(3) .lp-login-trust-dot { animation-delay: 1s; }

/* Login brand — gentle float */
.lp-login-brand {
  transition: opacity .2s;
}
.lp-login-brand:hover { opacity: .75; }

/* Form panel — subtle inner glow on right side */
.lp-login-right::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.04) 0%, transparent 70%);
  pointer-events: none;
  animation: lp-cta-pulse 8s ease-in-out infinite alternate;
}

.lp-login-right { position: relative; overflow: hidden; }

/* Input: enhanced focus glow */
.lp-login-input:focus {
  box-shadow: 0 0 0 3px rgba(201,168,76,.12),
              0 0 24px rgba(201,168,76,.07);
}

/* Submit button: shimmer + gold gradient defined in base .lp-login-btn */

/* Back link — arrow slides left on hover */
.lp-login-back svg {
  transition: transform .22s var(--ease);
}
.lp-login-back:hover svg { transform: translateX(-3px); }

/* Login page reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lp-login-left::before,
  .lp-login-orb,
  .lp-login-right::before { animation: none !important; }
  .lp-login-btn::before,
  .lp-btn-nav::before,
  .lp-btn-primary::before,
  .lp-btn-cta::before { display: none; }
  .lp-mobile-nav.is-open .lp-mobile-link { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   FUNCIONALIDADES — dark bento premium
   ═══════════════════════════════════════════════════════════════ */

.lp-section--dark {
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.045) 1px, transparent 0),
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(201,168,76,.07) 0%, transparent 60%),
    var(--lp-dark);
  background-size: 28px 28px, auto, auto;
}

.lp-section--dark .lp-section-head {
  border-bottom-color: var(--lp-dark-border);
}

.lp-section--dark .lp-section-h {
  color: var(--lp-dark-text);
}

.lp-section--dark .lp-section-desc {
  color: var(--lp-dark-muted);
}

/* Dark bento cards */
.lp-section--dark .lp-bcard {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}

.lp-section--dark .lp-bcard::before {
  background: linear-gradient(180deg, var(--gold), rgba(201,168,76,.3));
}

.lp-section--dark .lp-bcard:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(201,168,76,.28);
  box-shadow:
    0 0 0 1px rgba(201,168,76,.12),
    0 20px 60px rgba(0,0,0,.4),
    0 0 80px rgba(201,168,76,.04);
  transform: translateY(-3px);
}

.lp-section--dark .lp-bcard::after {
  background: radial-gradient(
    300px circle at var(--card-glow-x) var(--card-glow-y),
    rgba(201,168,76,.10) 0%,
    transparent 70%
  );
}

.lp-section--dark .lp-bcard-title {
  color: var(--lp-dark-text);
}

.lp-section--dark .lp-bcard-body {
  color: var(--lp-dark-muted);
}

/* Dark bcard preview (POS receipt) */
.lp-section--dark .lp-bcard-preview {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.07);
}

.lp-section--dark .lp-mini-row {
  border-bottom-color: rgba(255,255,255,.07);
}

.lp-section--dark .lp-mini-row span:first-child {
  color: var(--lp-dark-muted);
}

.lp-section--dark .lp-mini-row span:last-child {
  color: var(--lp-dark-text);
}

.lp-section--dark .lp-mini-row--total span:first-child {
  color: var(--lp-dark-text);
  font-weight: 600;
}

/* Dark tags (CRM/Inventory) */
.lp-section--dark .lp-mini-tags {
  margin-top: 20px;
}

.lp-section--dark .lp-mini-tag {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
  color: var(--lp-dark-muted);
}

.lp-section--dark .lp-mini-tag--active {
  background: var(--gold-dim);
  border-color: rgba(201,168,76,.28);
  color: var(--gold);
}

/* Dark mini chart (Analytics card) */
.lp-section--dark .lp-mini-bar {
  background: rgba(201,168,76,.22);
}

.lp-section--dark .lp-mini-bar--active {
  background: rgba(201,168,76,.70);
}

/* Icon container — stronger on dark */
.lp-section--dark .lp-bcard-icon {
  background: rgba(201,168,76,.12);
  border-color: rgba(201,168,76,.22);
  box-shadow: 0 0 20px rgba(201,168,76,.08);
}

/* ═══════════════════════════════════════════════════════════════
   MÓDULOS — fix bar overlapping lp-feature-index
   ═══════════════════════════════════════════════════════════════ */

/* Remove the old left bar that overlaps the 01/02 index */
.lp-feature-row::before { display: none; }

/* Replace with animated gold underline that sweeps right on hover */
.lp-feature-row::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.25) 100%);
  transition: width .45s cubic-bezier(.22,1,.36,1);
}

.lp-feature-row:hover::after { width: 100%; }

/* Make the index number highlight gold on hover (instead of bar) */
.lp-feature-row:hover .lp-feature-index {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201,168,76,.4);
}

/* ═══════════════════════════════════════════════════════════════
   MODAL DE DEMONSTRAÇÃO — dark hero band
   ═══════════════════════════════════════════════════════════════ */

/* Dark hero band at top of modal */
.lp-panel-hero {
  background:
    radial-gradient(ellipse 90% 130% at 100% -5%, rgba(201,168,76,.22) 0%, transparent 52%),
    radial-gradient(ellipse 60% 70% at 0% 110%, rgba(37,99,235,.09) 0%, transparent 55%),
    linear-gradient(155deg, #151929 0%, #0E121E 55%, #0B0E1A 100%);
  padding: 32px 40px 38px;
  position: relative;
  overflow: hidden;
}

/* Animated aurora shimmer */
.lp-panel-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    100deg,
    rgba(201,168,76,.06) 10%, transparent 16%,
    rgba(201,168,76,.03) 22%, rgba(37,60,120,.06) 28%,
    rgba(201,168,76,.04) 34%
  );
  background-size: 280% 280%;
  animation: lp-aurora 22s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Bottom separator — stronger gold line */
.lp-panel-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,.50) 25%, rgba(201,168,76,.50) 75%, transparent 100%);
}

.lp-panel-hero-brand {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: .01em;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-panel-hero-brand-sub {
  font-family: var(--font-label);
  font-size: 8px;
  font-style: normal;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(201,168,76,.55);
}

.lp-panel-hero-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--lp-dark-text);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.lp-panel-hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--lp-dark-muted);
  line-height: 1.65;
  max-width: 380px;
  position: relative;
  z-index: 1;
}

/* Close button — dark variant */
.lp-panel-close--dark {
  position: absolute;
  top: 16px; right: 16px;
  border: none;
  color: rgba(230,226,214,.40);
  background: transparent;
  z-index: 2;
}

.lp-panel-close--dark:hover {
  background: rgba(255,255,255,.08);
  color: rgba(230,226,214,.90);
}

/* Form body */
.lp-panel-body {
  background: var(--surface);
  padding: 28px 40px 0;
}

/* Form grid: Nome + Email side by side */
.lp-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Modal inputs: slightly taller + better focus */
.lp-modal-input {
  min-height: 44px;
}

.lp-modal-input:focus {
  box-shadow: 0 0 0 3px rgba(201,168,76,.12),
              0 0 20px rgba(201,168,76,.06);
}

/* Panel footer */
.lp-panel-foot {
  background: var(--surface);
  padding: 16px 40px 32px;
}

/* Panel submit button — inherits shimmer from base .lp-btn-primary */

/* Modal reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lp-panel-hero::before { animation: none; }
}

@media (max-width: 600px) {
  .lp-panel-hero  { padding: 24px 24px 28px; }
  .lp-panel-body  { padding: 24px 24px 0; }
  .lp-panel-foot  { padding: 16px 24px 28px; }
  .lp-form-row-2  { grid-template-columns: 1fr; }
}
