.landing-mount {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
  color: #111827;
}

.landing-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 56px;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 48px;
  margin-bottom: 54px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
}

.landing-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.landing-brand-dot {
  color: #e8500a;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.landing-nav-links a,
.landing-link-button {
  border: 0;
  background: transparent;
  color: #4b5563;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.landing-nav-links a:hover,
.landing-link-button:hover {
  color: #111827;
}

.landing-nav-button {
  min-height: 34px;
  border: 1px solid #e8500a;
  border-radius: 8px;
  background: #e8500a;
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 14px;
  cursor: pointer;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 42px;
  min-height: 560px;
}

.landing-hero-centered {
  display: flex;
  flex-direction: column;
  min-height: 0;
  text-align: center;
}

.landing-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.landing-hero-centered .landing-hero-copy {
  align-items: center;
}

.landing-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: #faeeda;
  color: #b84008;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  padding: 6px 14px;
}

.landing-pill span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1d9e75;
}

.landing-kicker {
  color: #4f46e5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.landing-hero h1,
.landing-section-heading h2,
.landing-cta h2 {
  color: #111827;
  font-weight: 900;
  line-height: 1.04;
}

.landing-hero h1 {
  max-width: 760px;
  font-size: 54px;
}

.landing-subtitle {
  max-width: 660px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.65;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.landing-btn-primary {
  border: 1px solid #e8500a;
  background: #e8500a;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(232, 80, 10, 0.2);
}

.landing-btn-secondary {
  border: 1px solid #111827;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.14);
}

.landing-btn-ghost {
  border: 1px solid #d1d5db;
  background: rgba(255, 255, 255, 0.68);
  color: #111827;
}

.landing-hero-note {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.landing-preview {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.landing-preview-wide {
  width: min(100%, 860px);
  margin-top: 20px;
}

.landing-preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  background: #f8fafc;
}

.landing-preview-window {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.landing-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.landing-dot:nth-child(1) {
  background: #ef4444;
}

.landing-dot:nth-child(2) {
  background: #f59e0b;
}

.landing-dot:nth-child(3) {
  background: #22c55e;
}

.landing-preview-title {
  margin-left: 4px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.landing-preview-add {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.landing-board-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 12px;
  padding: 16px;
  overflow-x: auto;
}

.landing-list-preview {
  min-width: 150px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 8px;
  background: #f8fafc;
  padding: 10px;
}

.landing-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.landing-list-title span {
  min-width: 24px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #475569;
  font-size: 11px;
  line-height: 20px;
  text-align: center;
}

.landing-card-preview {
  min-height: 42px;
  margin-bottom: 8px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  background: #ffffff;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  padding: 10px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.landing-card-preview.is-pinned {
  border-color: rgba(245, 158, 11, 0.58);
  background: #fffbeb;
}

.landing-card-preview.is-active {
  border-color: rgba(232, 80, 10, 0.5);
  background: #fff7ed;
}

.landing-card-preview.is-good {
  border-color: rgba(29, 158, 117, 0.44);
  background: #ecfdf5;
}

.landing-card-preview.is-done {
  color: #64748b;
  text-decoration: line-through;
}

.landing-card-tag {
  display: inline-block;
  margin-top: 6px;
  border-radius: 999px;
  background: #eeedfe;
  color: #3c3489;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  padding: 4px 7px;
}

.landing-card-tag.is-warm {
  background: #faeeda;
  color: #633806;
}

.landing-card-tag.is-good {
  background: #e1f5ee;
  color: #085041;
}

.landing-proof-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 42px 0 6px;
}

.landing-proof-strip span {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.landing-section {
  padding: 76px 0 24px;
}

.landing-section-heading {
  max-width: 620px;
  margin-bottom: 24px;
}

.landing-section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.landing-section-heading p:not(.landing-kicker),
.landing-cta p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.landing-section-heading h2,
.landing-cta h2 {
  margin-top: 10px;
  font-size: 34px;
}

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.landing-feature-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-feature {
  min-height: 188px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 18px;
}

.landing-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #faeeda;
  color: #b84008;
  font-size: 12px;
  font-weight: 900;
}

.landing-feature h3 {
  margin-bottom: 8px;
  color: #111827;
  font-size: 16px;
  line-height: 1.25;
}

.landing-feature p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.landing-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin: 54px 0 6px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.landing-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 16px;
  text-align: center;
}

.landing-stats div + div {
  border-left: 1px solid rgba(148, 163, 184, 0.24);
}

.landing-stats strong {
  color: #e8500a;
  font-size: 32px;
  line-height: 1;
}

.landing-stats span {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.landing-quote-grid,
.landing-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.landing-quote,
.landing-plan {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.landing-quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 20px;
}

.landing-quote p {
  color: #4b5563;
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
}

.landing-quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.landing-quote-author > span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #faeeda;
  color: #633806;
  font-size: 11px;
  font-weight: 900;
}

.landing-quote-author strong,
.landing-quote-author small {
  display: block;
}

.landing-quote-author strong {
  color: #111827;
  font-size: 13px;
}

.landing-quote-author small {
  color: #64748b;
  font-size: 12px;
}

.landing-plan {
  position: relative;
  padding: 24px;
}

.landing-plan-featured {
  border: 2px solid #e8500a;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(232, 80, 10, 0.1);
}

.landing-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #e8500a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 14px;
  white-space: nowrap;
}

.landing-plan h3 {
  color: #4b5563;
  font-size: 14px;
  margin-bottom: 10px;
}

.landing-price {
  color: #111827;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.landing-price span {
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.landing-plan p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  margin-bottom: 16px;
}

.landing-plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.landing-plan li {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.35;
}

.landing-plan li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1d9e75;
  margin-right: 9px;
  transform: translateY(-1px);
}

.landing-plan-button {
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.landing-plan-button-outline {
  border: 1.5px solid #e8500a;
  background: transparent;
  color: #e8500a;
}

.landing-plan-button-fill {
  border: 1.5px solid #e8500a;
  background: #e8500a;
  color: #ffffff;
}

.landing-faq-section {
  padding-top: 58px;
}

.landing-faq {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}

.landing-faq-item {
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.landing-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  padding: 18px 0;
  text-align: left;
  cursor: pointer;
}

.landing-faq-question span {
  color: #e8500a;
  font-size: 18px;
  line-height: 1;
}

.landing-faq-answer {
  display: none;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
  padding: 0 28px 18px 0;
}

.landing-faq-item.open .landing-faq-answer {
  display: block;
}

.landing-faq-item.open .landing-faq-question span {
  transform: rotate(45deg);
}

.landing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.landing-cta-band {
  background: #111827;
  color: #ffffff;
}

.landing-cta-band h2,
.landing-cta-band .landing-kicker {
  color: #ffffff;
}

.landing-cta-band p {
  color: rgba(255, 255, 255, 0.7);
}

.landing-load-error {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-load-error-panel {
  max-width: 620px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  padding: 28px;
}

.landing-load-error-panel h1 {
  color: #111827;
  font-size: 34px;
  line-height: 1.08;
  margin: 10px 0 12px;
}

.landing-load-error-panel p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.landing-load-error-panel code {
  border-radius: 6px;
  background: #f1f5f9;
  color: #111827;
  font-family: var(--font-mono);
  font-size: 0.92em;
  padding: 2px 5px;
}

.landing-load-error-detail {
  margin-top: 14px;
  color: #b84008 !important;
}

.landing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 0;
  margin-top: 28px;
  color: #64748b;
  font-size: 13px;
}

.landing-footer div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.landing-footer a {
  color: #64748b;
  font-weight: 800;
  text-decoration: none;
}

