@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,600;0,700;0,800;1,700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=JetBrains+Mono:wght@400;600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f4f8fb;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --text: #0f2235;
  --muted: #5c6d7f;
  --line: rgba(15, 34, 53, 0.1);
  --accent: #1c9b90;
  --accent-2: #245ecf;
  --accent-soft: rgba(28, 155, 144, 0.11);
  --shadow: 0 20px 60px rgba(20, 41, 61, 0.08);
  --radius: 24px;
  --radius-sm: 12px;
  --mint: #eaf8f5;
  --blue: #edf4ff;
  --lilac: #f3effd;
  --sand: #fbf4e8;
  --amber: #f0a447;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; max-width: 100%; background: var(--bg); color: var(--text); font-family: "Manrope", "Segoe UI", sans-serif; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
body {
  background:
    radial-gradient(circle at top left, rgba(28, 155, 144, 0.12), transparent 24%),
    radial-gradient(circle at top center, rgba(36, 94, 207, 0.06), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, #edf3f8 100%);
}

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: min(1540px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.landing-page {
  width: min(1520px, 100%);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(28, 155, 144, 0.18);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.brand-mark::before {
  width: 20px;
  height: 20px;
  left: -2px;
  top: 3px;
  transform: rotate(-36deg);
  opacity: 0.95;
}

.brand-mark::after {
  width: 16px;
  height: 16px;
  right: 4px;
  bottom: 4px;
  opacity: 0.92;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.active-tab {
  background: rgba(13, 127, 115, 0.12) !important;
  border-color: rgba(13, 127, 115, 0.24) !important;
  color: var(--accent);
}

.primary-mini {
  border-radius: 999px;
  background: var(--text) !important;
  color: white !important;
  border-color: var(--text) !important;
}

.nav a, .ghost-btn, .primary-btn, .secondary-btn, .chip, .pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
  color: var(--text);
  padding: 11px 18px;
}

.primary-btn {
  background: linear-gradient(135deg, #0d2947, #0f2235);
  color: white;
  border: none;
  box-shadow: 0 14px 30px rgba(15, 34, 53, 0.16);
}

.secondary-btn {
  background: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  padding: 8px 24px 18px;
  align-items: stretch;
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  border-radius: 28px;
}

.hero-main {
  padding: 40px 40px 44px;
  min-height: 596px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 650;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
  max-width: 10.6ch;
}

.hero p {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-note {
  align-self: flex-start;
  padding: 18px 18px;
  border-radius: 20px;
  border: 1px solid rgba(28, 155, 144, 0.16);
  background: linear-gradient(180deg, #eef9f7, #edf7f5);
  color: var(--text);
  font-weight: 700;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  max-width: 320px;
  line-height: 1.3;
}

.hero-note span,
.hero-note div span {
  display: block;
  font-weight: 500;
  color: var(--muted);
}

.note-svg,
.pill-icon,
.feature-svg,
.proof-svg,
.round-svg,
.receipt-icon,
.link-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.note-svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 9px 13px;
  background: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.app-mockup {
  padding: 0;
  overflow: hidden;
}

.mockup-shell {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  min-height: 590px;
}

.mockup-sidebar {
  padding: 22px 18px;
  background: linear-gradient(180deg, #f7fbfb 0%, #f2f6f8 100%);
  border-right: 1px solid rgba(18, 32, 42, 0.08);
  display: grid;
  align-content: start;
  gap: 10px;
}

.mockup-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 8px;
}

.brand-mark.small {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  box-shadow: none;
}

.mockup-nav {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mockup-nav.active {
  background: white;
  color: var(--text);
  font-weight: 650;
}

.mockup-main {
  padding: 16px 16px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfc 100%);
}

.mockup-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mockup-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.mockup-user {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mockup-card {
  min-height: 68px;
  padding: 12px 14px;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border: 1px solid var(--line);
}

.mockup-card .label {
  font-size: 0.9rem;
  color: var(--muted);
}

.mockup-status {
  font-weight: 700;
  font-size: 0.95rem;
}

.mockup-card.mint { background: var(--mint); }
.mockup-card.blue { background: var(--blue); }
.mockup-card.lilac { background: var(--lilac); }
.mockup-card.sand { background: var(--sand); }

.mockup-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.78fr);
  gap: 12px;
}

.mockup-footer {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mockup-foot-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 13px 12px;
  display: grid;
  gap: 6px;
  position: relative;
}

.mockup-foot-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.mockup-foot-item strong {
  font-size: 0.95rem;
  line-height: 1.4;
  max-width: calc(100% - 38px);
}

.mockup-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  padding: 14px 16px;
  min-width: 0;
}

.mockup-panel.wide {
  min-height: 250px;
}

.mockup-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  table-layout: fixed;
}

.mockup-table th {
  text-align: left;
  padding: 0 0 10px;
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8ea0b2;
  font-weight: 700;
}

.mockup-table th:last-child {
  text-align: right;
}

.mockup-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(18, 32, 42, 0.08);
  font-size: 0.9rem;
}

.mockup-table td:nth-child(2) {
  color: var(--muted);
  width: 102px;
  text-align: right;
}

.mockup-table td:first-child,
.mockup-table th:first-child {
  width: 64%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-link {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 650;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.receipt-drop {
  margin-top: 12px;
  min-height: 92px;
  border-radius: 16px;
  border: 1px dashed rgba(15, 34, 53, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 12px;
  gap: 10px;
}

.receipt-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fcfdfd;
  font-size: 0.88rem;
  align-items: center;
}

.receipt-item span {
  min-width: 0;
  font-size: 0.84rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.receipt-item em {
  color: var(--muted);
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-right: 8px;
  vertical-align: middle;
}

.status-dot.mint { background: var(--accent); }
.status-dot.blue { background: #62a0ff; }
.status-dot.amber { background: var(--amber); }

.round-icon,
.proof-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(15, 34, 53, 0.06);
}

.round-icon {
  position: absolute;
  right: 12px;
  top: 18px;
}

.proof-badge {
  flex: 0 0 auto;
}

.round-icon.mint,
.proof-badge.mint { background: var(--mint); color: var(--accent); }
.round-icon.blue,
.proof-badge.blue { background: var(--blue); color: var(--accent-2); }
.round-icon.lilac,
.proof-badge.lilac { background: var(--lilac); color: #7654bb; }
.round-icon.sand,
.proof-badge.sand { background: var(--sand); color: #9e6b1f; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 24px 10px;
}

.proof-item {
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(18, 32, 42, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section {
  padding: 0 24px 28px;
}

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

.feature {
  padding: 22px 20px;
}

.feature h3 {
  margin: 12px 0 6px;
  font-size: 1.2rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.feature-icon.mint { background: var(--mint); color: var(--accent); }
.feature-icon.blue { background: var(--blue); color: var(--accent-2); }
.feature-icon.lilac { background: var(--lilac); color: #7654bb; }
.feature-icon.sand { background: var(--sand); color: #9e6b1f; }

.feature p, .small {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.mockup-nav-icon {
  width: 16px;
  height: 16px;
}

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

.step {
  padding: 18px;
}

.step .num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.section-anchor {
  height: 1px;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-intro {
  margin: 0 0 18px;
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.workflow-band,
.pricing-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 24px;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.workflow-step h3 {
  margin: 0 0 4px;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.auth-card {
  width: min(560px, 100%);
  padding: 32px;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.field input, .field select, .field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: white;
  padding: 14px 16px;
}

.dashboard {
  display: grid;
  gap: 18px;
  padding: 0 28px 28px;
  min-width: 0;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.dashboard-head > * {
  min-width: 0;
}

.dashboard-head > .panel {
  min-width: min(280px, 100%) !important;
  max-width: 100%;
}

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

.stat {
  padding: 18px;
}

.stat .value {
  font-size: 1.9rem;
  font-weight: 800;
  margin-top: 10px;
}

.workspace {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.table-card, .side-card {
  padding: 18px;
  min-width: 0;
}

.table-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.table-wrap {
  overflow: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  max-width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th, td {
  text-align: left;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(18, 32, 42, 0.08);
  vertical-align: top;
}

th {
  position: sticky;
  top: 0;
  background: #f9fbfc;
  z-index: 1;
  font-size: 0.92rem;
  color: var(--muted);
}

tr.clickable:hover td {
  background: rgba(13, 127, 115, 0.05);
  cursor: pointer;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 14px;
}

.pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.side-card {
  position: sticky;
  top: 20px;
}

.drawer-section {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(13, 127, 115, 0.1);
  color: var(--accent);
}

.status.warn {
  background: rgba(194, 129, 0, 0.12);
  color: #9b6700;
}

.drawer-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.muted {
  color: var(--muted);
}

.hidden {
  display: none !important;
}

@media (max-width: 1120px) {
  .hero, .workspace, .summary-grid, .section-grid, .workflow, .proof-strip, .workflow-band, .mockup-grid, .mockup-cards, .mockup-footer {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .mockup-shell {
    grid-template-columns: 1fr;
  }
  .mockup-sidebar {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(18, 32, 42, 0.08);
  }
}

@media (max-width: 1480px) {
  .mockup-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .shell,
  .landing-page {
    width: 100%;
  }
  .topbar, .hero, .section, .dashboard {
    padding-left: 16px;
    padding-right: 16px;
  }
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    width: 100%;
  }
  .summary-grid, .section-grid, .workflow, .split {
    grid-template-columns: 1fr;
  }
  .hero-main {
    padding: 24px;
  }
  .workspace {
    grid-template-columns: 1fr;
  }
  .dashboard-head > .panel {
    min-width: 0 !important;
    width: 100%;
  }
  .proof-strip, .workflow-band, .mockup-cards, .mockup-grid, .mockup-footer {
    grid-template-columns: 1fr;
  }
  .mockup-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-note {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   LP v2 — Landing page redesign. All classes prefixed lp-
   ═══════════════════════════════════════════════════════════ */

.lp {
  --lp-bg: #F8FAFB;
  --lp-ink: #0D1F35;
  --lp-muted: #5E7291;
  --lp-faint: #94A3B8;
  --lp-grn: #009E72;
  --lp-grn-s: #E5F8F2;
  --lp-blu: #0066D9;
  --lp-blu-s: #EBF3FF;
  --lp-amb: #D97706;
  --lp-border: #E4EAF0;
  --lp-card: #FFFFFF;
  --lp-dark: #0D1F35;
  --lp-dark-bd: rgba(255,255,255,0.08);

  font-family: 'DM Sans', 'Manrope', system-ui, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-ink);
  min-height: 100vh;
}

.lp-wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* NAV */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,250,251,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border);
}
.lp-nav-inner {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--lp-ink);
  text-decoration: none;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.02em;
}
.lp-brand-light { color: rgba(255,255,255,0.88); }
.lp-brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.lp-brand-name { font-family: 'DM Sans', sans-serif; font-weight: 700; letter-spacing: -0.02em; }

.lp-nav-links {
  flex: 1;
  display: flex;
  gap: 2px;
}
.lp-nav-links a {
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--lp-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.12s, background 0.12s;
}
.lp-nav-links a:hover { color: var(--lp-ink); background: rgba(13,31,53,0.05); }

.lp-nav-ctas { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* BUTTONS */
.lp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 10px;
  background: var(--lp-ink);
  color: white;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.12s, transform 0.1s;
  white-space: nowrap;
}
.lp-cta-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.lp-cta-lg  { padding: 13px 26px; font-size: 1rem; border-radius: 12px; }
.lp-cta-wht { background: white; color: var(--lp-ink); }

.lp-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 10px;
  background: transparent;
  color: var(--lp-ink);
  font-weight: 500;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  border: 1px solid var(--lp-border);
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s;
  white-space: nowrap;
}
.lp-ghost:hover { background: rgba(13,31,53,0.05); }
.lp-ghost-lg  { padding: 13px 26px; font-size: 1rem; border-radius: 12px; }
.lp-ghost-wht { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.lp-ghost-wht:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.34); }

/* HERO */
.lp-hero { padding: 80px 0 72px; }
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.lp-hero-text { display: flex; flex-direction: column; }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-grn);
  margin-bottom: 20px;
}
.lp-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lp-grn);
  display: inline-block;
}

.lp-h1 {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: clamp(2.4rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--lp-ink);
  margin: 0 0 22px;
}
.lp-h1 em {
  font-style: normal;
  color: var(--lp-grn);
}

.lp-lead {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--lp-muted);
  margin: 0 0 32px;
  max-width: 44ch;
}

.lp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 26px;
}

.lp-hero-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.lp-hero-pills span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--lp-border);
  font-size: 0.8rem;
  color: var(--lp-muted);
  font-weight: 500;
}

/* HERO MOCKUP */
.lp-hero-mockup { display: flex; }
.lp-mockup {
  width: 100%;
  background: var(--lp-dark);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    inset 0 2px 0 1px rgba(255,255,255,0.06),
    0 32px 80px rgba(13,31,53,0.24),
    0 0 0 1px rgba(13,31,53,0.14);
}
.lp-mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--lp-dark-bd);
}
.lp-mockup-period {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.86);
  font-weight: 600;
}
.lp-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,158,114,0.14);
  border: 1px solid rgba(0,158,114,0.28);
  font-size: 0.75rem;
  font-weight: 600;
  color: #4DD4A8;
}
.lp-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4DD4A8;
  display: inline-block;
  animation: lp-pulse 1.8s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.32; }
}

.lp-mockup-body { padding: 0 20px; }
.lp-tx-table { width: 100%; border-collapse: collapse; }
.lp-tx-table thead th {
  padding: 11px 0 9px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-align: left;
  border-bottom: 1px solid var(--lp-dark-bd);
  background: var(--lp-dark);
  position: static;
}
.lp-tx-table thead th.lp-r { text-align: right; }
.lp-tx-table tbody td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  vertical-align: middle;
  background: transparent;
}
.lp-tx-table tbody tr:last-child td { border-bottom: none; }

.lp-dim  { color: rgba(255,255,255,0.36) !important; }
.lp-dim2 { color: rgba(255,255,255,0.52) !important; }
.lp-r   { text-align: right; }

/* Animated transaction rows */
.lp-tx {
  opacity: 0;
  transform: translateY(5px);
  animation: lp-row-in 0.38s ease forwards;
}
.lp-tx-d1 { animation-delay: 0.25s; }
.lp-tx-d2 { animation-delay: 0.60s; }
.lp-tx-d3 { animation-delay: 0.95s; }
.lp-tx-d4 { animation-delay: 1.30s; }
.lp-tx-d5 { animation-delay: 1.65s; }
@keyframes lp-row-in {
  to { opacity: 1; transform: none; }
}

/* Category tags */
.lp-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  opacity: 0;
  animation: lp-tag-in 0.28s ease forwards;
}
.lp-tag-d1 { animation-delay: 0.56s; }
.lp-tag-d2 { animation-delay: 0.91s; }
.lp-tag-d3 { animation-delay: 1.26s; }
.lp-tag-d4 { animation-delay: 1.61s; }
.lp-tag-d5 { animation-delay: 1.96s; }
@keyframes lp-tag-in {
  from { opacity: 0; transform: translateX(4px); }
  to   { opacity: 1; transform: none; }
}
.lp-tag-grn { background: rgba(0,158,114,0.18); color: #4DD4A8; }
.lp-tag-blu { background: rgba(91,138,245,0.18); color: #8BB4FA; }
.lp-tag-lil { background: rgba(169,124,248,0.18); color: #C8A9FB; }
.lp-tag-and { background: rgba(245,166,35,0.18); color: #F5C662; }
.lp-tag-pnd {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.38);
  animation: lp-tag-in 0.28s ease forwards, lp-pend 1.6s 2.2s ease-in-out infinite;
}
@keyframes lp-pend {
  0%, 100% { opacity: 0.38; }
  50%       { opacity: 1; }
}

.lp-mockup-foot { display: flex; border-top: 1px solid var(--lp-dark-bd); }
.lp-mstat {
  flex: 1;
  padding: 13px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-right: 1px solid var(--lp-dark-bd);
}
.lp-mstat:last-child { border-right: none; }
.lp-mstat-label {
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.28);
}
.lp-mstat-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.86);
}
.lp-mstat-val.lp-grn { color: #4DD4A8; }
.lp-mstat-val.lp-amb { color: #F5C662; }

/* TRUST STRIP */
.lp-trust {
  background: white;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lp-trust-inner {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 4px;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--lp-muted);
  padding: 8px 16px;
}
.lp-ti-icon { width: 15px; height: 15px; color: var(--lp-grn); flex-shrink: 0; }

/* SECTION HEADINGS */
.lp-sec-head { margin-bottom: 48px; max-width: 640px; }
.lp-kicker {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lp-grn);
  margin-bottom: 14px;
}
.lp-h2 {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--lp-ink);
  margin: 0 0 14px;
}
.lp-sec-lead {
  font-size: 1.03rem;
  line-height: 1.68;
  color: var(--lp-muted);
  margin: 0;
  max-width: 56ch;
}
.lp-h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-ink);
  margin: 0 0 10px;
}

/* CARD */
.lp-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(13,31,53,0.04);
}

/* FEATURES */
.lp-features {
  padding: 88px 0 80px;
  scroll-margin-top: 60px;
}
.lp-feat-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: start;
}
.lp-feat-big {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lp-feat-big > p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--lp-muted);
  margin: 0;
}
.lp-feat-stack { display: flex; flex-direction: column; gap: 20px; }
.lp-feat-sm {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-feat-sm > p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--lp-muted);
  margin: 0;
}
.lp-feat-icon {
  width: 42px; height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.lp-fi-grn { background: var(--lp-grn-s); color: var(--lp-grn); }
.lp-fi-blu { background: var(--lp-blu-s); color: var(--lp-blu); }
.lp-fi-lil { background: #F0ECFF; color: #7B52DB; }
.lp-fi-svg { width: 19px; height: 19px; }

/* Category confidence bars */
.lp-cat-viz {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: var(--lp-bg);
  border-radius: 14px;
  border: 1px solid var(--lp-border);
}
.lp-cat-row {
  display: grid;
  grid-template-columns: 1fr minmax(72px, 110px) 34px;
  align-items: center;
  gap: 10px;
}
.lp-cat-name {
  font-size: 0.8rem;
  color: var(--lp-muted);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lp-cat-bar {
  height: 5px;
  background: var(--lp-border);
  border-radius: 999px;
  overflow: hidden;
}
.lp-cat-fill { height: 100%; border-radius: 999px; }
.lp-cat-pct { font-size: 0.72rem; font-weight: 600; color: var(--lp-faint); text-align: right; }

/* HOW IT WORKS */
.lp-how {
  background: white;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  scroll-margin-top: 60px;
}
.lp-how-inner { padding-top: 88px; padding-bottom: 88px; }
.lp-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  margin-top: 48px;
}
.lp-step {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.lp-step > p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--lp-muted);
  margin: 0;
}
.lp-step-num {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--lp-ink);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.lp-step-arr {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 4px;
  padding-top: 48px;
  color: var(--lp-faint);
}
.lp-arr-svg { width: 18px; height: 18px; }

/* PRICING */
.lp-pricing { padding: 88px 0; scroll-margin-top: 60px; }
.lp-price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.lp-pc {
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.lp-pc-dark {
  background: var(--lp-dark);
  border-color: transparent;
  box-shadow: 0 24px 64px rgba(13,31,53,0.22);
}
.lp-pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-grn);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.lp-pc-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-bottom: 12px;
}
.lp-pc-dark .lp-pc-tier { color: rgba(255,255,255,0.44); }
.lp-pc-price {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lp-ink);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.lp-pc-dark .lp-pc-price { color: white; }
.lp-pc-custom { font-size: 2.2rem !important; }
.lp-pc-cur { font-size: 1.3rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.lp-pc-per { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 400; color: var(--lp-muted); }
.lp-pc-dark .lp-pc-per { color: rgba(255,255,255,0.38); }
.lp-pc-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--lp-muted);
  margin: 0 0 22px;
}
.lp-pc-dark .lp-pc-desc { color: rgba(255,255,255,0.54); }
.lp-pc-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.lp-pc-feats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--lp-muted);
}
.lp-pc-dark .lp-pc-feats li { color: rgba(255,255,255,0.64); }
.lp-check-i { width: 15px; height: 15px; color: var(--lp-grn); flex-shrink: 0; }
.lp-pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: opacity 0.12s, transform 0.1s;
}
.lp-pc-btn:hover { opacity: 0.84; transform: translateY(-1px); }
.lp-pc-white   { background: white; color: var(--lp-dark); }
.lp-pc-outline { background: transparent; border: 1px solid var(--lp-border); color: var(--lp-ink); }

/* CTA BAND */
.lp-cta-band { background: var(--lp-dark); }
.lp-cta-inner {
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.lp-cta-title {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: white;
  margin: 0;
}
.lp-cta-sub {
  font-size: 1.03rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.54);
  max-width: 50ch;
  margin: 0;
}
.lp-cta-acts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* FOOTER */
.lp-footer {
  background: #172A45;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.lp-footer-inner {
  padding-top: 56px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}
.lp-footer-tagline { font-size: 0.86rem; color: rgba(255,255,255,0.32); margin: 10px 0 0; }
.lp-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-fcol { display: flex; flex-direction: column; gap: 10px; }
.lp-fcol-title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 4px;
}
.lp-fcol a { font-size: 0.86rem; color: rgba(255,255,255,0.54); text-decoration: none; transition: color 0.12s; }
.lp-fcol a:hover { color: white; }
.lp-footer-bottom {
  padding-top: 18px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.24);
}

/* Monospace utility */
.lp-mono { font-family: 'JetBrains Mono', 'Fira Code', monospace; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .lp-hero { padding: 52px 0 56px; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-nav-links { display: none; }
  .lp-feat-grid { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-step-arr { display: none; }
  .lp-price-row { grid-template-columns: 1fr; max-width: 480px; }
  .lp-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .lp-cat-row { grid-template-columns: 1fr 80px 32px; }
}
@media (max-width: 600px) {
  .lp-footer-links { grid-template-columns: repeat(2, 1fr); }
  .lp-hero-actions { flex-direction: column; align-items: flex-start; }
  .lp-cta-acts { flex-direction: column; align-items: center; }
  .lp-price-row { max-width: 100%; }
  .lp-trust-inner { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-tx, .lp-tag, .lp-live-dot, .lp-tag-pnd {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
