/* LexCaptur landing — tema Editorial (sépia) */
:root {
  --ed-paper: #faf7f2;
  --ed-paper-bright: #fffdfb;
  --ed-paper-muted: #f3ece4;
  --ed-ink: #45403a;
  --ed-ink-soft: #5e5750;
  --ed-sepia: #a8927d;
  --ed-sepia-deep: #6b5a48;
  --ed-sepia-mid: #b8a594;
  --ed-brass: #d4c4ad;
  --ed-brass-soft: rgba(212, 196, 173, 0.42);
  --ed-line: #ebe3d8;
  --ed-line-strong: #ddd2c4;
  --ed-muted: #8f857a;
  --ed-muted-light: #a9a095;
  --ed-pastel-red-bg: #fff5f5;
  --ed-pastel-red-border: #ffdede;
  --ed-pastel-red-text: #9a4545;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  background: var(--ed-paper);
  color: var(--ed-ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.lp {
  position: relative;
  overflow-x: clip;
  background: var(--ed-paper);
  color: var(--ed-ink);
}

.lp-container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Aurora suave sépia */
.lp-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.45;
}

.lp-aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: lp-orb-drift 18s ease-in-out infinite alternate;
}

.lp-aurora-orb--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(196, 168, 130, 0.55) 0%, transparent 70%);
  opacity: 0.5;
}

.lp-aurora-orb--2 {
  width: 440px;
  height: 440px;
  top: 10%;
  right: -100px;
  background: radial-gradient(circle, rgba(168, 146, 125, 0.35) 0%, transparent 70%);
  opacity: 0.35;
  animation-delay: -6s;
}

.lp-aurora-orb--3 {
  display: none;
}

.lp-aurora-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 146, 125, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 146, 125, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
}

@keyframes lp-orb-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--ed-line);
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(12px);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ed-ink);
}

.lexcaptur-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--ed-line);
  background: var(--ed-paper-muted);
  box-shadow: 0 1px 2px rgba(69, 64, 58, 0.06);
}

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

.lexcaptur-mark--xs { width: 16px; height: 16px; }
.lexcaptur-mark--sm { width: 28px; height: 28px; }

.lexcaptur-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.lexcaptur-logo-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ed-ink);
}

.lexcaptur-logo-wordmark--footer {
  font-size: 1rem;
}

.lp-nav {
  display: flex;
  gap: 1.35rem;
}

.lp-nav a {
  color: var(--ed-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

.lp-nav a:hover {
  color: var(--ed-sepia);
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.lp-btn--primary {
  color: var(--ed-paper-bright);
  background: var(--ed-sepia);
  border-color: var(--ed-sepia-mid);
  box-shadow: none;
}

.lp-btn--primary:hover {
  background: var(--ed-sepia-mid);
  border-color: var(--ed-sepia);
}

.lp-btn--ghost {
  color: var(--ed-sepia);
  background: transparent;
  border: 1px solid var(--ed-line-strong);
}

.lp-btn--ghost:hover {
  background: var(--ed-paper-muted);
  color: var(--ed-sepia-deep);
  border-color: var(--ed-brass);
}

.lp-btn--lg {
  padding: 0.72rem 1.25rem;
  font-size: 0.95rem;
}

.lp-hero {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 3.5rem;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: center;
}

.lp-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ed-sepia);
  background: var(--ed-paper-muted);
  border: 1px solid var(--ed-line);
}

.lp-hero-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--ed-ink);
}

.lp-hero-sub {
  margin: 0 0 1.15rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ed-muted);
}

.lp-channel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.2rem;
}

.lp-channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ed-sepia);
  background: var(--ed-paper-bright);
  border: 1px solid var(--ed-line);
}

.lp-channel-pill svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin-top: 1.35rem;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

.lp-trust-row span {
  color: var(--ed-muted);
}

.lp-trust-row span::before {
  content: none;
  margin: 0;
}

.lp-trust-row span + span::before {
  content: "·";
  margin-inline: 0.65rem;
  color: var(--ed-brass);
}

/* Preview — mock em papel quente */
.lp-preview {
  position: relative;
}

.lp-preview-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at center, rgba(168, 146, 125, 0.18), transparent 70%);
  filter: blur(24px);
  z-index: 0;
}

.lp-preview-window {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ed-line);
  background: var(--ed-paper-bright);
  box-shadow: 0 20px 50px rgba(28, 24, 20, 0.12);
}

.lp-preview-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  background: var(--ed-paper);
  border-bottom: 1px solid var(--ed-line);
}

.lp-preview-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ed-line-strong);
}

.lp-preview-url {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--ed-muted);
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
  background: var(--ed-paper-muted);
}

.lp-preview-body {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 220px;
}

.lp-preview-sidebar {
  padding: 0.65rem 0.45rem;
  background: var(--ed-paper);
  border-right: 1px solid var(--ed-line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-preview-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lp-preview-nav span {
  height: 6px;
  border-radius: 999px;
  background: var(--ed-line);
}

.lp-preview-nav span.is-active {
  background: var(--ed-brass-soft);
  box-shadow: inset 0 0 0 1px var(--ed-line-strong);
}

.lp-preview-main {
  padding: 0.75rem 0.85rem;
  background: var(--ed-paper-bright);
}

.lp-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.lp-preview-header strong {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--ed-ink);
}

.lp-preview-pill--live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: var(--ed-pastel-red-bg);
  color: var(--ed-pastel-red-text);
  border: 1px solid var(--ed-pastel-red-border);
}

.lp-preview-live-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--ed-pastel-red-text);
  animation: lp-live-pulse 1.4s ease-in-out infinite;
}

@keyframes lp-live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.lp-preview-tabs {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}

.lp-preview-tabs span {
  font-size: 0.62rem;
  color: var(--ed-muted);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: var(--ed-paper);
}

.lp-preview-tabs span.is-active {
  color: var(--ed-sepia);
  background: var(--ed-brass-soft);
  font-weight: 600;
}

.lp-preview-pane {
  display: none;
}

.lp-preview-pane.is-active {
  display: block;
}

.lp-preview-lines p {
  margin: 0 0 0.45rem;
  font-size: 0.62rem;
  line-height: 1.45;
  color: var(--ed-muted);
}

.lp-preview-lines p.is-dim {
  color: var(--ed-muted-light);
}

.lp-preview-summary-pane p {
  margin: 0 0 0.45rem;
  font-size: 0.62rem;
  line-height: 1.45;
  color: var(--ed-muted);
}

.lp-preview-summary-pane ul {
  margin: 0;
  padding-left: 1rem;
}

.lp-preview-summary-pane li {
  font-size: 0.58rem;
  line-height: 1.4;
  color: var(--ed-muted);
  margin-bottom: 0.25rem;
}

.lp-preview-juris-pane {
  display: grid;
  gap: 0.55rem;
}

.lp-preview-juris-pane article {
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  background: var(--ed-brass-soft);
  border: 1px solid var(--ed-line-strong);
}

.lp-preview-juris-pane strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.58rem;
  color: var(--ed-sepia);
}

.lp-preview-juris-pane p {
  margin: 0;
  font-size: 0.56rem;
  line-height: 1.4;
  color: var(--ed-muted);
}

/* Secções */
.lp-section {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
  background: var(--ed-paper-bright);
  color: var(--ed-ink);
  border-top: 1px solid var(--ed-line);
}

.lp-section--soft {
  background: var(--ed-paper);
}

.lp-section--dark {
  background: var(--ed-paper-bright);
  color: var(--ed-ink);
}

.lp-section--statement {
  padding: 3.5rem 0;
}

.lp-section--quotes {
  background: var(--ed-paper-muted);
}

.lp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.lp-section-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ed-brass);
}

.lp-section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-weight: 600;
  color: var(--ed-ink);
}

.lp-section-head p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ed-muted);
}

.lp-statement {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.lp-statement h2 {
  margin: 0.5rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--ed-ink);
}

.lp-statement > p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ed-muted);
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-step {
  position: relative;
  padding: 1.5rem 1.35rem;
  border-radius: 6px;
  background: var(--ed-paper-bright);
  border: 1px solid var(--ed-line);
}

.lp-step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ed-line);
  opacity: 0.9;
}

.lp-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--ed-brass-soft);
  border: 1px solid var(--ed-line-strong);
  color: var(--ed-sepia-deep);
}

.lp-step h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ed-ink);
}

.lp-step p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ed-muted);
}

.lp-venues-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.lp-venue-card {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  column-gap: 0.85rem;
  row-gap: 0.3rem;
  padding: 1.1rem 1.15rem;
  border-radius: 8px;
  background: var(--ed-paper-bright);
  border: 1px solid var(--ed-line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-venue-card:hover {
  border-color: var(--ed-line-strong);
  box-shadow: 0 8px 22px rgba(69, 64, 58, 0.06);
}

.lp-venue-icon {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 8px;
  background: var(--ed-brass-soft);
  border: 1px solid var(--ed-line-strong);
  color: var(--ed-sepia-deep);
}

.lp-venue-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ed-ink);
}

.lp-venue-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ed-muted);
}

.lp-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.lp-feature-card {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  column-gap: 0.85rem;
  row-gap: 0.3rem;
  padding: 1.1rem 1.15rem;
  border-radius: 8px;
  background: var(--ed-paper-bright);
  border: 1px solid var(--ed-line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-feature-card:hover {
  border-color: var(--ed-line-strong);
  box-shadow: 0 8px 22px rgba(69, 64, 58, 0.06);
}

.lp-feature-icon {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: var(--ed-brass-soft);
  border: 1px solid var(--ed-line-strong);
  color: var(--ed-sepia-deep);
}

.lp-feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--ed-ink);
}

.lp-feature-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ed-muted);
}

.lp-contrast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lp-contrast-card {
  padding: 1.5rem 1.35rem;
  border-radius: 6px;
  border: 1px solid var(--ed-line);
}

.lp-contrast-card--muted {
  background: var(--ed-paper);
}

.lp-contrast-card--accent {
  background: var(--ed-paper-bright);
  border-color: var(--ed-line-strong);
  box-shadow: 0 8px 24px rgba(28, 24, 20, 0.06);
}

.lp-contrast-card h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ed-ink);
}

.lp-contrast-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.lp-contrast-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ed-muted);
}

.lp-contrast-card--muted li svg {
  color: var(--ed-muted-light);
}

.lp-contrast-card--accent li svg {
  color: var(--ed-sepia);
}

.lp-quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lp-quote-card {
  margin: 0;
  padding: 1.5rem 1.35rem;
  border-radius: 8px;
  background: var(--ed-paper-bright);
  border: 1px solid var(--ed-line);
}

.lp-quote-card p {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--ed-ink-soft);
}

.lp-quote-card footer {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ed-muted);
  font-style: normal;
}

.lp-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lp-security-card {
  padding: 1.5rem;
  border-radius: 6px;
  background: var(--ed-paper);
  border: 1px solid var(--ed-line);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-security-card:hover {
  background: var(--ed-paper-bright);
  border-color: var(--ed-line-strong);
  box-shadow: 0 6px 20px rgba(69, 64, 58, 0.05);
}

.lp-security-card svg {
  color: var(--ed-muted);
  margin-bottom: 0.85rem;
}

.lp-security-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ed-ink);
}

.lp-security-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ed-muted);
}

.lp-cta {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
  background: var(--ed-paper);
}

.lp-cta-inner {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--ed-line);
  background: var(--ed-paper-bright);
  box-shadow: 0 16px 48px rgba(28, 24, 20, 0.08);
}

.lp-cta-inner h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--ed-ink);
}

.lp-cta-inner p {
  margin: 0 auto 1.5rem;
  max-width: 520px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ed-muted);
}

.lp-cta-inner .lp-btn--primary {
  min-width: 12rem;
}

.lp-footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 1.5rem;
  background: var(--ed-paper-muted);
  border-top: 1px solid var(--ed-line);
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.lp-footer-brand p {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  color: var(--ed-muted);
  max-width: 260px;
}

.lp-footer h4 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ed-ink-soft);
}

.lp-footer p {
  margin: 0 0 0.3rem;
  font-size: 0.84rem;
  color: var(--ed-muted);
}

.lp-footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid var(--ed-line);
  font-size: 0.78rem;
  color: var(--ed-muted-light);
}

.is-hidden {
  display: none;
}

@media (min-width: 720px) {
  .lp-venues-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .lp-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1080px) {
  .lp-venues-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .lp-nav {
    display: none;
  }

  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-preview {
    max-width: 520px;
    margin: 0 auto;
  }

  .lp-steps,
  .lp-security-grid,
  .lp-footer-grid,
  .lp-contrast-grid,
  .lp-quotes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .lp-container {
    width: calc(100% - 1.5rem);
  }

  .lp-hero-actions {
    flex-direction: column;
  }

  .lp-hero-actions .lp-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-aurora-orb,
  .lp-preview-live-dot {
    animation: none;
  }
}
