/* Landing — Microsoft To Do inspired · Enterprise light theme */

:root {
  --lp-accent: #1c2e1e;
  --lp-accent-soft: #f1f3f1;
  --lp-muted: #5a635a;
  --lp-border: #e8ebe8;
  --lp-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --lp-nav-h: 72px;
}

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

.lp-root { scroll-behavior: smooth; }

.lp-body,
.landing {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  color: #171717;
}

.landing ::selection {
  background: rgba(28, 46, 30, 0.15);
  color: #171717;
}

.relative { position: relative; }
.bg-white { background-color: #fff; }
.text-neutral-900 { color: #171717; }
.text-black { color: #000; }
.font-sans { font-family: Inter, system-ui, sans-serif; }
.overflow-x-hidden { overflow-x: hidden; }
.antialiased { -webkit-font-smoothing: antialiased; }
.select-none { user-select: none; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.tracking-tight { letter-spacing: -0.025em; }
.leading-\[1\.08\] { line-height: 1.08; }
.leading-relaxed { line-height: 1.625; }
.max-w-2xl { max-width: 42rem; }
.font-normal { font-weight: 400; }
.hidden { display: none !important; }

.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-5xl { font-size: 3rem; }
.text-\[\#5A635A\] { color: #5a635a; }

@media (min-width: 768px) {
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-xl { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
  .lg\:text-\[76px\] { font-size: 76px; }
}

/* Blink cursor */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.animate-blink {
  animation: blink 1s step-end infinite;
}

/* Fade up */
@keyframes lp-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-fade-up {
  animation: lp-fade-up 0.9s var(--lp-ease) both;
}

.lp-fade-up--delay-1 { animation-delay: 0.12s; }
.lp-fade-up--delay-2 { animation-delay: 0.24s; }
.lp-fade-up--delay-3 { animation-delay: 0.36s; }
.lp-fade-up--delay-4 { animation-delay: 0.48s; }

/* Grid background */
.landing-grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(28, 46, 30, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 46, 30, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 0%, transparent 72%);
  animation: lp-grid-drift 24s linear infinite;
}

@keyframes lp-grid-drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 48px 48px, 48px 48px; }
}

.landing-grid-scan {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(28, 46, 30, 0.03) 48%,
    rgba(28, 46, 30, 0.06) 50%,
    rgba(28, 46, 30, 0.03) 52%,
    transparent 100%
  );
  background-size: 100% 200%;
  animation: lp-scan 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  mask-image: radial-gradient(ellipse 70% 50% at 70% 30%, #000 0%, transparent 70%);
  opacity: 0.7;
}

@keyframes lp-scan {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}

/* Navbar */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--lp-nav-h);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--lp-ease), box-shadow 0.35s var(--lp-ease);
}

.landing-nav.is-scrolled {
  border-color: var(--lp-border);
  box-shadow: 0 4px 24px rgba(28, 46, 30, 0.04);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
}

.landing-brand-name {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.landing-brand-name sup {
  font-size: 0.55em;
  font-weight: 500;
}

.landing-asterisk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--lp-accent);
  animation: lp-asterisk-spin 8s linear infinite;
}

@keyframes lp-asterisk-spin {
  to { transform: rotate(360deg); }
}

.landing-nav-desktop {
  display: none;
  gap: 2rem;
}

.landing-nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lp-muted);
  text-decoration: none;
  transition: color 0.25s var(--lp-ease);
}

.landing-nav-desktop a:hover {
  color: var(--lp-accent);
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.landing-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: var(--lp-accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s var(--lp-ease), box-shadow 0.3s var(--lp-ease);
}

.landing-btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(28, 46, 30, 0.18);
}

.landing-nav-cta-desktop { display: none; }

.landing-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--lp-border);
  border-radius: 0.5rem;
  background: #fff;
  cursor: pointer;
  transition: background 0.25s var(--lp-ease);
}

.landing-menu-btn:hover { background: var(--lp-accent-soft); }

.landing-menu-btn__bar {
  display: block;
  width: 1.125rem;
  height: 2px;
  margin: 0 auto;
  background: var(--lp-accent);
  border-radius: 1px;
  transition: transform 0.35s var(--lp-ease), opacity 0.35s var(--lp-ease);
}

.landing-menu-btn[aria-expanded="true"] .landing-menu-btn__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.landing-menu-btn[aria-expanded="true"] .landing-menu-btn__bar:nth-child(2) {
  opacity: 0;
}

.landing-menu-btn[aria-expanded="true"] .landing-menu-btn__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.landing-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--lp-ease), visibility 0.4s var(--lp-ease);
}

.landing-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.landing-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transform: translateY(16px);
  transition: transform 0.4s var(--lp-ease);
}

.landing-mobile-menu.is-open .landing-mobile-menu__nav {
  transform: translateY(0);
}

.landing-mobile-menu__nav a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--lp-accent);
  text-decoration: none;
}

/* Hero */
.landing-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding:
    calc(var(--lp-nav-h) + 2rem)
    clamp(1.25rem, 4vw, 2.5rem)
    3.5rem;
}

.landing-hero__headline-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .landing-hero__headline-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    grid-template-rows: auto 1fr;
    column-gap: clamp(1.5rem, 3vw, 3rem);
    row-gap: 0;
  }

  .landing-hero__title {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    align-items: center;
    align-self: stretch;
    margin: 0;
    min-height: 0;
  }

  .landing-hero__preview {
    display: contents;
  }

  .landing-hero__browser-bar {
    grid-column: 2;
    grid-row: 1;
    border-radius: 14px 14px 0 0;
    border: 1px solid var(--lp-border);
    border-bottom: none;
    background: #f8faf8;
  }

  .landing-hero__browser-body {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 16 / 10;
    border-radius: 0 0 14px 14px;
    border: 1px solid var(--lp-border);
    border-top: none;
    box-shadow: 0 20px 60px rgba(28, 46, 30, 0.1);
  }
}

.landing-hero__content {
  max-width: 40rem;
}

.landing-hero__preview {
  width: 100%;
  min-width: 0;
}

.landing-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

@media (min-width: 900px) {
  .landing-hero__meta {
    margin-top: 0.5rem;
    margin-left: calc(100% * 1.05 / 2.05 + clamp(1.5rem, 3vw, 3rem));
  }
}

@media (max-width: 899px) {
  .landing-hero__preview {
    border-radius: 14px;
    border: 1px solid var(--lp-border);
    box-shadow: 0 20px 60px rgba(28, 46, 30, 0.1);
    overflow: hidden;
  }

  .landing-hero__browser-body {
    aspect-ratio: 16 / 10;
  }
}

.landing-hero__browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.65rem 1rem;
  background: #f8faf8;
  border-bottom: 1px solid var(--lp-border);
}

.landing-hero__browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.landing-hero__browser-bar span:nth-child(1) { background: #f4b8b8; }
.landing-hero__browser-bar span:nth-child(2) { background: #f4dfa0; }
.landing-hero__browser-bar span:nth-child(3) { background: #a8d5a8; }

.landing-hero__browser-url {
  flex: 1;
  margin-left: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--lp-border);
  font-size: 0.6875rem;
  color: var(--lp-muted);
  text-align: center;
}

.landing-hero__browser-body {
  background: #f3f2f1;
  overflow: hidden;
}

.landing-hero__browser-body img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #f3f2f1;
  transition: opacity 0.35s var(--lp-ease);
}

.landing-hero__preview.is-switching .landing-hero__browser-body img {
  opacity: 0.7;
}

.landing-hero__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--lp-muted);
}

.landing-hero__meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6b9b6e;
  animation: lp-live-pulse 1.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes lp-live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107, 155, 110, 0.45); }
  50% { box-shadow: 0 0 0 5px rgba(107, 155, 110, 0); }
}

.landing-hero__eyebrow {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lp-muted);
}

.landing-hero__eyebrow a {
  color: var(--lp-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 46, 30, 0.2);
}

.landing-hero__eyebrow a:hover {
  border-color: var(--lp-accent);
}

.landing-hero__title {
  margin: 0;
  min-height: 2.2em;
}

.landing-typewriter-cursor {
  color: var(--lp-accent);
  font-weight: 300;
  margin-inline-start: 2px;
}

.landing-hero__desc {
  margin: 0 0 2rem;
}

/* Pills */
.landing-pills {
  margin-bottom: 2rem;
}

.landing-pills__title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-accent);
}

.landing-pills__subtitle {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--lp-muted);
}

.landing-pills__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.landing-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--lp-accent-soft);
  background: #fff;
  color: var(--lp-accent);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s var(--lp-ease), color 0.25s var(--lp-ease), box-shadow 0.25s var(--lp-ease), border-color 0.25s var(--lp-ease);
}

.landing-pill:hover {
  background: rgba(241, 243, 241, 0.55);
}

.landing-pill.is-active {
  background: var(--lp-accent);
  color: #fff;
  border-color: var(--lp-accent);
  box-shadow: 0 4px 14px rgba(28, 46, 30, 0.2);
}

.landing-pill__check {
  display: none;
  font-size: 0.75rem;
  font-weight: 700;
}

.landing-pill.is-active .landing-pill__check {
  display: inline;
}

/* Feedback */
.landing-feedback {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background: var(--lp-accent-soft);
  border: 1px solid var(--lp-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.landing-feedback__text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--lp-muted);
  flex: 1;
  min-width: 12rem;
}

.landing-feedback__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--lp-accent);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s var(--lp-ease);
}

.landing-feedback__btn:hover {
  transform: translateY(-1px);
}

/* Hero CTAs */
.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.landing-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: var(--lp-accent);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s var(--lp-ease), box-shadow 0.3s var(--lp-ease);
}

.landing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(28, 46, 30, 0.2);
}

.landing-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: #fff;
  color: var(--lp-accent);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s var(--lp-ease), border-color 0.25s var(--lp-ease);
}

.landing-btn-secondary:hover {
  background: var(--lp-accent-soft);
  border-color: rgba(28, 46, 30, 0.15);
}

.landing-trust {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--lp-muted);
}

/* Mockup */
.landing-mockup {
  position: relative;
  width: 100%;
  min-height: 420px;
}

@media (min-width: 900px) {
  .landing-mockup {
    position: absolute;
    right: clamp(1rem, 3vw, 2rem);
    top: 50%;
    transform: translateY(-50%) translate(var(--lp-parallax-x, 0px), var(--lp-parallax-y, 0px));
    width: 42%;
    max-width: 560px;
    min-height: 580px;
    z-index: 3;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(0.4deg); }
}

.landing-mockup__float {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  animation: lp-float 6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered card entrance */
@keyframes lp-card-enter {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lp-card-enter {
  animation: lp-card-enter 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lp-card-enter--d1 { animation-delay: 0.15s; }
.lp-card-enter--d2 { animation-delay: 0.3s; }
.lp-card-enter--d3 { animation-delay: 0.45s; }
.lp-card-enter--d4 { animation-delay: 0.6s; }
.lp-card-enter--d5 { animation-delay: 0.75s; }

.mock-card.is-highlighted {
  border-color: rgba(28, 46, 30, 0.35);
  box-shadow: 0 20px 56px rgba(28, 46, 30, 0.16);
  z-index: 10 !important;
}

.mock-live-badge {
  position: absolute;
  top: -0.5rem;
  right: 12%;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--lp-accent);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(28, 46, 30, 0.25);
  z-index: 6;
}

.mock-live-badge__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6b9b6e;
  animation: lp-live-pulse 1.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.mock-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  box-shadow: 0 8px 32px rgba(28, 46, 30, 0.06);
  transition: box-shadow 0.35s var(--lp-ease), transform 0.35s var(--lp-ease), border-color 0.35s var(--lp-ease);
}

.mock-card:hover {
  box-shadow: 0 16px 48px rgba(28, 46, 30, 0.1);
}

.mock-card__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-accent);
  margin-bottom: 0.65rem;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mock-dot--sun { background: #ffc83d; }
.mock-dot--star { background: #e8a317; }
.mock-dot--list { background: #467599; }

.mock-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mock-task {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  color: var(--lp-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--lp-accent-soft);
}

.mock-task:last-child { border-bottom: none; }

.mock-task--done {
  text-decoration: line-through;
  opacity: 0.55;
}

.mock-check {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid #c8cec8;
  flex-shrink: 0;
}

.mock-task--done .mock-check {
  background: var(--lp-accent);
  border-color: var(--lp-accent);
}

.mock-card--myday {
  top: 4%; left: 0; width: 58%; z-index: 3;
  animation: lp-card-enter 0.85s cubic-bezier(0.16, 1, 0.3, 1) both, lp-card-bob 5s cubic-bezier(0.16, 1, 0.3, 1) 0.9s infinite;
}
.mock-card--important {
  top: 20%; right: 0; width: 52%; z-index: 4;
  animation: lp-card-enter 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both, lp-card-bob 5.5s cubic-bezier(0.16, 1, 0.3, 1) 1.05s infinite;
}
.mock-card--projects {
  top: 50%; left: 2%; width: 48%; z-index: 2;
  animation: lp-card-enter 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both, lp-card-bob 6s cubic-bezier(0.16, 1, 0.3, 1) 1.2s infinite;
}
.mock-card--kanban {
  bottom: 2%; right: 0; width: 62%; z-index: 5;
  animation: lp-card-enter 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both, lp-card-bob 5.2s cubic-bezier(0.16, 1, 0.3, 1) 1.35s infinite;
}
.mock-card--kpi {
  top: 6%; left: 36%; width: 54%; z-index: 1; padding: 0.75rem;
  animation: lp-card-enter 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both, lp-card-bob 6.5s cubic-bezier(0.16, 1, 0.3, 1) 1.5s infinite;
}

@keyframes lp-card-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.mock-card.is-highlighted {
  animation: none !important;
  transform: scale(1.03) translateY(-4px);
  border-color: rgba(28, 46, 30, 0.35);
  box-shadow: 0 20px 56px rgba(28, 46, 30, 0.16);
  z-index: 10 !important;
}

.mock-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.mock-tags span {
  font-size: 0.625rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
}

.mock-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.mock-col {
  background: var(--lp-accent-soft);
  border-radius: 6px;
  padding: 0.35rem;
  min-height: 52px;
}

.mock-col span {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--lp-muted);
  margin-bottom: 0.25rem;
}

.mock-col--active {
  background: rgba(28, 46, 30, 0.08);
}

.mock-chip {
  height: 6px;
  border-radius: 3px;
  background: #d8ded8;
  margin-bottom: 3px;
}

.mock-chip--accent { background: var(--lp-accent); opacity: 0.5; }
.mock-chip--done { background: #6b9b6e; opacity: 0.6; }

.mock-chip--pulse {
  animation: lp-chip-pulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes lp-chip-pulse {
  0%, 100% { opacity: 0.5; transform: scaleX(1); }
  50% { opacity: 0.9; transform: scaleX(1.08); }
}

.mock-task.is-checking .mock-check {
  animation: lp-check-pop 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  background: var(--lp-accent);
  border-color: var(--lp-accent);
}

@keyframes lp-check-pop {
  0% { transform: scale(0.6); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Stats marquee */
.landing-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--lp-border);
  background: linear-gradient(90deg, var(--lp-accent-soft) 0%, #fff 50%, var(--lp-accent-soft) 100%);
  padding: 0.875rem 0;
}

.landing-marquee__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: lp-marquee 28s linear infinite;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lp-muted);
  letter-spacing: 0.02em;
}

.landing-marquee__dot {
  color: rgba(28, 46, 30, 0.25);
}

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

/* Scroll reveal */
.lp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.landing-features-grid .lp-reveal:nth-child(2) { transition-delay: 0.1s; }
.landing-features-grid .lp-reveal:nth-child(3) { transition-delay: 0.2s; }
.landing-features-grid .lp-reveal:nth-child(4) { transition-delay: 0.3s; }

.mock-kpi-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.mock-kpi {
  display: flex;
  flex-direction: column;
}

.mock-kpi strong {
  font-size: 0.875rem;
  color: var(--lp-accent);
  line-height: 1.1;
}

.mock-kpi span {
  font-size: 0.5625rem;
  color: var(--lp-muted);
}

.mock-chart {
  height: 4px;
  background: var(--lp-accent-soft);
  border-radius: 2px;
  overflow: hidden;
}

.mock-chart span {
  display: block;
  height: 100%;
  background: var(--lp-accent);
  border-radius: 2px;
  opacity: 0.65;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Screenshot gallery */
.landing-gallery {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0;
  background: #fff;
  border-top: 1px solid var(--lp-border);
}

.landing-gallery__header {
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.landing-gallery__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.landing-gallery__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--lp-accent);
}

.landing-gallery__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

.landing-gallery__layout {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  gap: 1.25rem;
}

.landing-gallery__viewer {
  min-width: 0;
}

.landing-gallery__browser {
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  background: #fff;
  box-shadow: 0 12px 40px rgba(28, 46, 30, 0.07);
  overflow: hidden;
}

.landing-gallery__browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 0.875rem;
  background: #f8faf8;
  border-bottom: 1px solid var(--lp-border);
}

.landing-gallery__browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.landing-gallery__browser-bar span:nth-child(1) { background: #f4b8b8; }
.landing-gallery__browser-bar span:nth-child(2) { background: #f4dfa0; }
.landing-gallery__browser-bar span:nth-child(3) { background: #a8d5a8; }

.landing-gallery__browser-url {
  flex: 1;
  margin-left: 0.65rem;
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--lp-border);
  font-size: 0.6875rem;
  color: var(--lp-muted);
  text-align: center;
}

.landing-gallery__browser-body {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f3f2f1;
}

.landing-gallery__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.35s var(--lp-ease);
}

.landing-gallery__shot.is-active {
  opacity: 1;
}

.landing-gallery__caption {
  margin: 0.875rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--lp-muted);
}

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

@media (min-width: 640px) {
  .landing-gallery__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .landing-gallery__thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.landing-gallery__thumb {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.landing-gallery__thumb-frame {
  display: block;
  border-radius: 8px;
  border: 2px solid var(--lp-border);
  background: #f3f2f1;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  transition: border-color 0.25s var(--lp-ease), box-shadow 0.25s var(--lp-ease);
}

.landing-gallery__thumb-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.landing-gallery__thumb:hover .landing-gallery__thumb-frame {
  border-color: rgba(28, 46, 30, 0.25);
}

.landing-gallery__thumb.is-active .landing-gallery__thumb-frame {
  border-color: var(--lp-accent);
  box-shadow: 0 6px 20px rgba(28, 46, 30, 0.12);
}

.landing-gallery__thumb-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-muted);
  transition: color 0.25s var(--lp-ease);
}

.landing-gallery__thumb.is-active .landing-gallery__thumb-label {
  color: var(--lp-accent);
}

/* Sections */
.landing-section {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem clamp(1.25rem, 4vw, 2.5rem);
}

.landing-section--alt {
  max-width: none;
  width: 100%;
  background: var(--lp-accent-soft);
}

.landing-section--alt > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.landing-section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--lp-accent);
}

.landing-section__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--lp-muted);
}

.landing-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .landing-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.landing-feature-card {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  background: #fff;
  transition: transform 0.35s var(--lp-ease), box-shadow 0.35s var(--lp-ease);
}

.landing-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 46, 30, 0.06);
}

.landing-feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-accent);
}

.landing-feature-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--lp-muted);
  line-height: 1.65;
}

.landing-section__intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.landing-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 900px) {
  .landing-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.landing-benefits-grid .lp-reveal:nth-child(2) { transition-delay: 0.1s; }
.landing-benefits-grid .lp-reveal:nth-child(3) { transition-delay: 0.2s; }

.landing-benefit-card {
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  background: #fff;
  transition: transform 0.35s var(--lp-ease), box-shadow 0.35s var(--lp-ease);
}

.landing-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 46, 30, 0.08);
}

.landing-benefit-card__icon {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lp-muted);
}

.landing-benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lp-accent);
}

.landing-benefit-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

.landing-cta {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--lp-accent);
  color: #fff;
}

.landing-cta__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.landing-cta__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.landing-cta__lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.landing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.landing-cta .landing-btn-primary {
  background: #fff;
  color: var(--lp-accent);
}

.landing-cta .landing-btn-primary:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.landing-btn-secondary--on-dark {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

.landing-btn-secondary--on-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Footer */
.landing-footer {
  position: relative;
  z-index: 1;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem) 3rem;
  border-top: 1px solid var(--lp-border);
  text-align: center;
}

.landing-footer p {
  margin: 0.25rem 0;
  font-size: 0.8125rem;
  color: var(--lp-muted);
}

.landing-footer a {
  color: var(--lp-accent);
  text-decoration: none;
}

.landing-footer a:hover {
  text-decoration: underline;
}

@media (min-width: 900px) {
  .landing-nav-desktop { display: flex; }
  .landing-nav-cta-desktop { display: inline-flex; }
  .landing-menu-btn { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-fade-up,
  .landing-asterisk,
  .animate-blink,
  .landing-grid-bg,
  .landing-grid-scan,
  .landing-marquee__track,
  .landing-hero__meta-dot {
    animation: none !important;
  }

  .lp-fade-up {
    opacity: 1;
    transform: none;
  }

  .lp-reveal {
    opacity: 1;
    transform: none;
  }
}
