/* ============================================================
   Claude · Landing
   Editorial dark warm. Serif italic accents. Calm, no slop.
   ============================================================ */

:root {
  --paper: #1c1b18;
  --paper-deep: #161513;
  --paper-soft: #211f1c;
  --line: rgba(250, 249, 245, 0.08);
  --line-strong: rgba(250, 249, 245, 0.15);
  --cream: #faf9f5;
  --cream-warm: #ece7d8;
  --cream-soft: #d8d0bf;
  --muted: #8b857a;
  --muted-deep: #6a655c;
  --accent: #c96442;
  --accent-warm: #d77756;
  --accent-soft: rgba(201, 100, 66, 0.10);
  --accent-glow: rgba(215, 119, 86, 0.20);
  --accent-ring: rgba(215, 119, 86, 0.30);

  --serif-display: "Instrument Serif", "Tiempos Headline", "Iowan Old Style", Georgia, serif;
  --serif-body: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0.32, 1);

  --container: 1180px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--cream);
  font-family: var(--serif-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 8%, rgba(215, 119, 86, 0.07), transparent 38%),
    radial-gradient(circle at 86% 84%, rgba(201, 100, 66, 0.04), transparent 42%),
    linear-gradient(180deg, #1d1c19 0%, #1a1916 50%, #161513 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============ HEADER ============ */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(28, 27, 24, 0.85) 0%, rgba(28, 27, 24, 0.55) 70%, transparent 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif-display);
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--cream);
  line-height: 1;
  transition: opacity 220ms var(--ease-out);
}
.lp-brand:hover { opacity: 0.78; }
.lp-brand-mark {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.lp-brand-name { font-weight: 400; }

.lp-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cream-soft);
}
.lp-nav a {
  transition: color 160ms var(--ease-out);
  letter-spacing: -0.003em;
}
.lp-nav a:hover { color: var(--cream); }
.lp-nav-cta {
  background: var(--cream);
  color: var(--paper) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 200ms var(--ease-out), transform 180ms var(--ease-soft);
}
.lp-nav-cta:hover { background: #fff; opacity: 1 !important; transform: translateY(-1px); }

@media (max-width: 720px) {
  .lp-nav a:not(.lp-nav-cta) { display: none; }
  .lp-header { padding: 18px 20px; }
}

/* ============ HERO ============ */
.lp-hero {
  position: relative;
  z-index: 2;
  min-height: 78vh;
  padding: clamp(40px, 9vh, 100px) clamp(20px, 5vw, 80px) 80px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  animation: rise 800ms var(--ease-out);
}

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

.lp-headline {
  font-family: var(--serif-display);
  font-size: clamp(56px, 10vw, 144px);
  line-height: 0.96;
  letter-spacing: -0.022em;
  font-weight: 400;
  color: var(--cream);
  margin: 0;
}
.lp-line {
  display: block;
}
.lp-headline em {
  font-style: italic;
  color: var(--cream);
}

.lp-subhead {
  max-width: 540px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--cream-soft);
  margin: 4px 0 0;
  font-family: var(--serif-body);
  font-weight: 400;
}

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

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  color: var(--paper);
  border: 0;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 200ms var(--ease-soft), background 160ms var(--ease-out), box-shadow 220ms var(--ease-out);
  box-shadow: 0 1px 0 rgba(0,0,0,0.18), 0 8px 24px rgba(0, 0, 0, 0.32);
}
.lp-btn-primary:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.18), 0 12px 30px rgba(215, 119, 86, 0.18);
}
.lp-btn-primary:active { transform: translateY(0); }
.lp-btn-primary svg { transition: transform 220ms var(--ease-soft); }
.lp-btn-primary:hover svg { transform: translateX(3px); }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  transition: border-color 180ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out);
}
.lp-btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(250, 249, 245, 0.04);
  color: var(--cream);
}

@media (max-width: 760px) {
  .lp-hero { min-height: 70vh; gap: 24px; }
}

/* ============ SECTION HEAD ============ */
.lp-section-head {
  max-width: var(--container);
  margin: 0 auto 44px;
  padding: 0 clamp(20px, 5vw, 80px);
}
.lp-section-head--center { text-align: center; }
.lp-section-title {
  font-family: var(--serif-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.018em;
  font-weight: 400;
  color: var(--cream);
  margin: 0;
}
.lp-section-title em { font-style: italic; }
.lp-section-title--alt { font-size: clamp(40px, 5.5vw, 76px); line-height: 0.94; }
.lp-section-sub {
  font-family: var(--serif-body);
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin: 18px auto 0;
  line-height: 1.55;
}

/* ============ CAPACIDADES ============ */
.lp-capabilities {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vh, 110px) 0 60px;
}
.lp-cap-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lp-cap-card {
  padding: 28px 26px 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(250, 249, 245, 0.025), rgba(250, 249, 245, 0.005));
  border: 1px solid var(--line);
  transition: border-color 240ms var(--ease-out), transform 240ms var(--ease-out), background 240ms var(--ease-out);
}
.lp-cap-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(250, 249, 245, 0.04), rgba(250, 249, 245, 0.012));
}
.lp-cap-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-warm);
  margin-bottom: 22px;
  opacity: 0.95;
}
.lp-cap-card h3 {
  font-family: var(--serif-display);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.lp-cap-card p {
  font-family: var(--serif-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 920px) { .lp-cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .lp-cap-grid { grid-template-columns: 1fr; } }

/* ============ SHOWCASE ============ */
.lp-showcase {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 10vh, 130px) 0 40px;
}
.lp-showcase-row {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 70px) clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.lp-showcase-row--reverse > .lp-showcase-copy { order: 2; }
.lp-showcase-row--reverse > .lp-mock { order: 1; }

.lp-showcase-copy h3 {
  font-family: var(--serif-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.08;
  color: var(--cream);
  margin: 0 0 14px;
}
.lp-showcase-copy p {
  font-family: var(--serif-body);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--cream-soft);
  margin: 0;
  max-width: 460px;
}

/* ----- Mocks ----- */
.lp-mock {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.lp-mock-chat {
  aspect-ratio: 1.05 / 1;
  background: #f4f1e9;
}
.lp-mock-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(29, 28, 26, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 28, 26, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.85;
}
.lp-mock-stack {
  position: absolute;
  inset: auto 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-mock-bubble {
  border-radius: 16px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.45;
  background: #fff;
  border: 1px solid rgba(29, 28, 26, 0.06);
}
.lp-mock-bubble--user {
  align-self: flex-end;
  max-width: 82%;
  background: #ece8de;
  color: #1d1c1a;
  font-weight: 500;
}
.lp-mock-bubble--ai {
  background: #fff;
  color: #1d1c1a;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px;
}
.lp-mock-ai-line {
  height: 9px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(201, 100, 66, 0.6), rgba(226, 164, 139, 0.6) 60%, transparent);
  background-size: 200% 100%;
  animation: shimmer 2.6s linear infinite;
  opacity: 0.42;
}
.lp-mock-ai-line:nth-child(2) { animation-delay: 200ms; opacity: 0.30; }
.lp-mock-ai-line--short { width: 50%; }
@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: -200% 0; }
}
.lp-mock-composer {
  background: #fff;
  border: 1px solid rgba(29, 28, 26, 0.10);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 13.5px;
  color: #6a6963;
  margin-top: 4px;
  box-shadow: 0 4px 14px rgba(60, 45, 20, 0.06);
}
.lp-mock-send {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.lp-mock-design {
  aspect-ratio: 1.05 / 1;
  background: #232320;
  display: flex;
  flex-direction: column;
}
.lp-mock-design-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #1c1c1a;
  border-bottom: 1px solid #34322f;
}
.lp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #46443f;
}
.lp-dot:nth-child(1) { background: #d77756; }
.lp-dot:nth-child(2) { background: #d8a547; }
.lp-dot:nth-child(3) { background: #6cb371; }
.lp-mock-design-canvas {
  flex: 1;
  background: #f5f2e8;
  background-image: linear-gradient(135deg, #f8f5ec 25%, #efebde 75%);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}
.lp-mock-design-block {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(29, 28, 26, 0.06);
}
.lp-mock-design-block--lg { height: 38%; }
.lp-mock-design-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  flex: 1;
}
.lp-mock-design-block--sm { height: 100%; min-height: 80px; }
.lp-mock-design-cursor {
  position: absolute;
  bottom: 30%;
  left: 38%;
  width: 12px;
  height: 12px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 3px rgba(201, 100, 66, 0.18);
  animation: cursor-float 4.2s ease-in-out infinite;
}
@keyframes cursor-float {
  0%, 100% { transform: rotate(-45deg) translate(0, 0); }
  50% { transform: rotate(-45deg) translate(20px, -12px); }
}

.lp-mock-projects {
  background: #1c1a18;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  aspect-ratio: 1.05 / 1;
  justify-content: center;
}
.lp-mock-project-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(250, 249, 245, 0.035);
  border: 1px solid var(--line);
  transition: transform 220ms var(--ease-soft), background 220ms var(--ease-out);
}
.lp-mock-project-card:hover {
  transform: translateX(4px);
  background: rgba(250, 249, 245, 0.05);
}
.lp-mock-project-card--highlight {
  background: linear-gradient(135deg, rgba(201, 100, 66, 0.10), rgba(201, 100, 66, 0.02));
  border-color: rgba(201, 100, 66, 0.22);
}
.lp-mock-project-icon {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(250, 249, 245, 0.06);
  color: var(--cream-soft);
}
.lp-mock-project-card--highlight .lp-mock-project-icon {
  color: var(--accent-warm);
  background: rgba(201, 100, 66, 0.12);
}
.lp-mock-project-meta { display: flex; flex-direction: column; gap: 3px; }
.lp-mock-project-meta strong {
  font-family: var(--serif-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.lp-mock-project-meta span {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 13.5px;
  color: var(--muted);
}

@media (max-width: 880px) {
  .lp-showcase-row, .lp-showcase-row--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .lp-showcase-row--reverse > .lp-showcase-copy { order: unset; }
  .lp-showcase-row--reverse > .lp-mock { order: unset; }
}

/* ============ LOGIN ============ */
.lp-login-section {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 10vh, 130px) clamp(20px, 5vw, 80px) clamp(60px, 8vh, 100px);
  max-width: var(--container);
  margin: 0 auto;
}
.lp-login-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.lp-login-aside { padding-right: 20px; }
.lp-login-aside .lp-section-title { margin-top: 8px; }
.lp-login-aside-text {
  font-family: var(--serif-body);
  font-size: 17.5px;
  color: var(--cream-soft);
  line-height: 1.55;
  margin: 24px 0 0;
  max-width: 420px;
}

.lp-login-card {
  background: linear-gradient(180deg, rgba(250, 249, 245, 0.04), rgba(250, 249, 245, 0.012));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 34px 30px 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lp-login-card-head { margin-bottom: 22px; }
.lp-login-card-head h3 {
  font-family: var(--serif-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.012em;
  margin: 0 0 6px;
  color: var(--cream);
}
.lp-login-card-head p {
  font-family: var(--serif-body);
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

.lp-login-form {
  display: grid;
  gap: 16px;
}
.lp-field { display: grid; gap: 7px; }
.lp-field span {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  padding-left: 2px;
}
.lp-field input {
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(250, 249, 245, 0.025);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 160ms var(--ease-out), background 160ms var(--ease-out), box-shadow 220ms var(--ease-out);
  outline: none;
}
.lp-field input::placeholder { color: var(--muted-deep); }
.lp-field input:hover { border-color: rgba(250, 249, 245, 0.22); }
.lp-field input:focus {
  border-color: var(--accent);
  background: rgba(201, 100, 66, 0.04);
  box-shadow: 0 0 0 3px var(--accent-ring);
}
.lp-field input:-webkit-autofill,
.lp-field input:-webkit-autofill:hover,
.lp-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--cream);
  caret-color: var(--cream);
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0 1000px var(--paper-soft) inset;
}

.lp-btn-submit {
  position: relative;
  justify-content: center;
  background: var(--cream);
  color: var(--paper);
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
}
.lp-btn-submit:hover {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.18), 0 12px 30px rgba(215, 119, 86, 0.18);
}
.lp-btn-submit .lp-btn-arrow { transition: transform 220ms var(--ease-soft); }
.lp-btn-submit:hover .lp-btn-arrow { transform: translateX(3px); }
.lp-btn-submit .lp-btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(28, 27, 24, 0.25);
  border-top-color: var(--paper);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.lp-btn-submit.is-loading {
  pointer-events: none;
  background: var(--cream-warm);
}
.lp-btn-submit.is-loading .lp-btn-label,
.lp-btn-submit.is-loading .lp-btn-arrow { display: none; }
.lp-btn-submit.is-loading .lp-btn-spinner { display: inline-block; }

.lp-login-error {
  margin-top: 4px;
  background: rgba(255, 99, 71, 0.10);
  color: #f3a899;
  padding: 11px 14px;
  border-radius: 12px;
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 13.5px;
  border: 1px solid rgba(255, 99, 71, 0.22);
}
.lp-login-error.hidden { display: none; }

@media (max-width: 880px) {
  .lp-login-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lp-login-aside { padding-right: 0; text-align: center; }
  .lp-login-aside-text { margin: 24px auto 0; }
}

/* ============ FOOTER ============ */
.lp-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 28px clamp(20px, 5vw, 80px);
  background: rgba(28, 27, 24, 0.6);
}
.lp-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--muted-deep);
  letter-spacing: 0.02em;
}
.lp-footer-left {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-footer-mark {
  color: var(--cream-soft);
  font-weight: 500;
}
.lp-footer-credit {
  font-family: var(--serif-body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0;
  line-height: 1.4;
}
.lp-footer-credit em {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 15px;
  color: var(--cream-soft);
  letter-spacing: -0.005em;
  margin: 0 1px;
}
.lp-footer-heart {
  color: var(--accent-warm);
  font-size: 13px;
  display: inline-block;
  transform: translateY(0.5px);
  animation: lp-heartbeat 3.6s var(--ease-out) infinite;
}
@keyframes lp-heartbeat {
  0%, 28%, 100% { transform: translateY(0.5px) scale(1); }
  10%   { transform: translateY(0.5px) scale(1.18); }
  20%   { transform: translateY(0.5px) scale(0.96); }
}
.lp-footer-links {
  display: inline-flex;
  gap: 22px;
  align-items: center;
}
.lp-footer-links a {
  color: var(--muted);
  font-size: 12.5px;
  text-decoration: none;
  transition: color 200ms var(--ease-out);
}
.lp-footer-links a:hover { color: var(--cream); }
@media (max-width: 720px) {
  .lp-footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .lp-footer-left { gap: 12px; }
}
@media (max-width: 540px) {
  .lp-footer-inner { align-items: center; text-align: center; }
  .lp-footer-left { justify-content: center; flex-direction: column; gap: 8px; }
  .lp-footer-credit { font-size: 12.5px; }
  .lp-footer-credit em { font-size: 14px; }
  .lp-footer-links { gap: 18px; flex-wrap: wrap; justify-content: center; }
}

/* ============ Reveal on scroll ============ */
.lp-reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.lp-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .lp-reveal { opacity: 1; transform: none; }
}
