/* ================================================================
   LeaveTrack Homepage — Design System
   All rules scoped under .lt-hp to avoid Tailwind conflicts
   ================================================================ */

.lt-hp {
  --green-900: #0a3a25;
  --green-800: #0f5132;
  --green-700: #136b40;
  --green-600: #1a8553;
  --green-500: #2aa06a;
  --mint-200:  #c8edd5;
  --mint-100:  #e1f3e8;
  --mint-50:   #f1f8f3;
  --ink:       #0e1411;
  --ink-2:     #1d2421;
  --slate-700: #3d4642;
  --slate-500: #6b7068;
  --slate-400: #8a8f88;
  --slate-300: #b6bab3;
  --slate-200: #d9dbd4;
  --slate-100: #ececea;
  --paper:     #faf9f5;
  --paper-2:   #f5f3ec;
  --display:   "Fraunces", "Times New Roman", serif;
  --sans:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:      "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --gutter:    32px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow-2:  0 4px 12px rgba(14,20,17,0.06), 0 2px 4px rgba(14,20,17,0.04);
  --shadow-3:  0 24px 60px -20px rgba(14,20,17,0.18), 0 8px 24px -8px rgba(14,20,17,0.08);
  --shadow-product: 0 40px 90px -30px rgba(10,58,37,0.35), 0 12px 32px -10px rgba(14,20,17,0.18);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.lt-hp *, .lt-hp *::before, .lt-hp *::after { box-sizing: border-box; }
.lt-hp a { color: inherit; text-decoration: none; }
.lt-hp button { font-family: inherit; cursor: pointer; border: none; }
.lt-hp img { max-width: 100%; display: block; }
.lt-hp h1, .lt-hp h2, .lt-hp h3, .lt-hp h4 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }
.lt-hp p { margin: 0; }
.lt-hp ul { margin: 0; padding: 0; list-style: none; }
.lt-hp ::selection { background: var(--green-800); color: #fff; }

/* ---- container ---- */
.lt-hp .lt-c {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 640px) { .lt-hp .lt-c { --gutter: 20px; } }

/* ---- typography ---- */
.lt-hp .eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.lt-hp .eyebrow.dark { color: var(--mint-200); }

.lt-hp .h-display-xl {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}
.lt-hp .h-display-xl em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  color: var(--green-800);
}
.lt-hp .h-display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 72;
}
.lt-hp .h-display em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 72;
}
.lt-hp .h-section {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 72;
}
.lt-hp .lede { font-size: 19px; line-height: 1.55; color: var(--slate-700); max-width: 56ch; }

/* ---- buttons ---- */
.lt-hp .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.lt-hp .btn:active { transform: translateY(1px); }
.lt-hp .btn-primary {
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(15,81,50,0.55);
}
.lt-hp .btn-primary:hover { background: var(--green-700); }
.lt-hp .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--slate-200);
}
.lt-hp .btn-ghost:hover { background: rgba(14,20,17,0.04); }
.lt-hp .btn-ondark {
  background: #fff;
  color: var(--green-900);
  border-color: transparent;
}
.lt-hp .btn-ondark:hover { background: var(--mint-100); }
.lt-hp .btn-arrow {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.lt-hp .btn:hover .btn-arrow { transform: translateX(3px); }

/* ---- chip / badge ---- */
.lt-hp .chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mint-100);
  color: var(--green-800);
  border: 1px solid rgba(15,81,50,0.12);
  font-size: 13px;
  font-weight: 500;
}
.lt-hp .chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 4px rgba(26,133,83,0.18);
}

/* ---- avatar ---- */
.lt-hp .av {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #2aa06a, #0f5132);
  font-size: 9px; color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  flex-shrink: 0;
}
.lt-hp .av.b { background: linear-gradient(135deg, #c9a86a, #7a5e2c); }
.lt-hp .av.c { background: linear-gradient(135deg, #6a9bc9, #2c4f7a); }
.lt-hp .av.d { background: linear-gradient(135deg, #c96a7d, #7a2c3f); }
.lt-hp .av.e { background: linear-gradient(135deg, #8e6ac9, #422c7a); }
.lt-hp .av.lg { width: 36px; height: 36px; font-size: 12px; }

/* ---- reveal animations ---- */
.lt-hp .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.lt-hp .reveal.in { opacity: 1; transform: none; }

/* ---- section padding ---- */
.lt-hp section { position: relative; }

/* ================================================================
   HERO
   ================================================================ */
.lt-hp .hero {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
  background: var(--paper);
}
.lt-hp .hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 460px at 18% 10%, rgba(42,160,106,0.12), transparent 60%),
    radial-gradient(720px 360px at 90% 20%, rgba(15,81,50,0.08), transparent 65%);
}
.lt-hp .hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 920px) { .lt-hp .hero-grid { grid-template-columns: 1fr; gap: 36px; } }

.lt-hp .hero-copy { max-width: 560px; }
.lt-hp .hero-copy h1 { margin-top: 18px; }
.lt-hp .hero-copy .lede { margin-top: 22px; }
.lt-hp .hero-actions {
  margin-top: 32px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.lt-hp .hero-meta {
  margin-top: 14px;
  font-size: 13px; color: var(--slate-500);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.lt-hp .hero-meta .sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--slate-400); display: inline-block;
}

/* hero product frame */
.lt-hp .hero-stage { position: relative; padding: 20px 0 0 0; }
.lt-hp .hero-frame {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-product);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.lt-hp .hero-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent 30%);
  pointer-events: none; z-index: 2;
}

/* animated mini-calendar */
.lt-hp .cal {
  height: 100%;
  display: grid;
  grid-template-columns: 180px 1fr;
}
.lt-hp .cal-side {
  background: var(--green-900);
  color: #fff;
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 14px;
  z-index: 1;
}
.lt-hp .ws-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 10px;
  width: max-content;
}
.lt-hp .ws-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); }
.lt-hp .ws-title {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 36;
}
.lt-hp .ws-team { display: flex; flex-direction: column; gap: 4px; }
.lt-hp .ws-team .ws-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  padding: 4px 6px; border-radius: 6px;
}
.lt-hp .ws-team .ws-row.active { background: rgba(255,255,255,0.08); color: #fff; }

.lt-hp .cal-main { display: flex; flex-direction: column; background: #fff; }
.lt-hp .cal-toolbar {
  height: 36px;
  border-bottom: 1px solid var(--slate-200);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px;
  font-size: 11px; color: var(--slate-700);
  flex-shrink: 0;
}
.lt-hp .cal-toolbar .month {
  font-family: var(--display);
  font-size: 13px; color: var(--ink); letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 24;
}
.lt-hp .cal-toolbar .seg {
  display: inline-flex; border: 1px solid var(--slate-200); border-radius: 5px; overflow: hidden;
}
.lt-hp .cal-toolbar .seg span { padding: 3px 7px; font-size: 10px; }
.lt-hp .cal-toolbar .seg span.on { background: var(--ink); color: #fff; }

.lt-hp .cal-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 52px repeat(5, 1fr);
  grid-template-rows: 22px repeat(5, 1fr);
  font-size: 9px; color: var(--slate-500);
  overflow: hidden;
}
.lt-hp .cal-head {
  border-bottom: 1px solid var(--slate-200);
  border-right: 1px solid var(--slate-200);
  display: flex; align-items: center; justify-content: center;
  background: #fff; font-weight: 500; color: var(--slate-700);
}
.lt-hp .cal-head:last-child { border-right: 0; }
.lt-hp .cal-name {
  border-right: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-100);
  padding: 6px;
  background: #fff;
  display: flex; align-items: center; gap: 5px;
  color: var(--ink); font-size: 10px; font-weight: 450;
}
.lt-hp .cal-name .av { width: 16px; height: 16px; font-size: 7px; }
.lt-hp .cal-cell {
  border-right: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  position: relative;
  background: #fff;
}
.lt-hp .cal-cell:last-child { border-right: 0; }

/* leave blocks */
.lt-hp .leave {
  position: absolute;
  top: 5px; left: 3px;
  height: calc(100% - 10px);
  border-radius: 3px;
  background: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 8px; font-weight: 500; letter-spacing: 0.02em;
  opacity: 0; transform: scaleX(0.3); transform-origin: left center;
  transition: opacity .5s ease, transform .55s cubic-bezier(.2,.8,.2,1);
  z-index: 1;
}
.lt-hp .leave.tinted { background: var(--mint-200); color: var(--green-900); }
.lt-hp .leave.outlined {
  background: rgba(15,81,50,0.08);
  border: 1px dashed var(--green-700);
  color: var(--green-800);
}
.lt-hp .leave.in { opacity: 1; transform: scaleX(1); }

/* email popup overlay on calendar */
.lt-hp .cal-pop {
  position: absolute;
  right: 12px; top: 50px;
  width: 200px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  box-shadow: var(--shadow-3);
  padding: 10px 12px;
  font-size: 11px;
  z-index: 5;
  opacity: 0; transform: translateY(8px) scale(.96);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
.lt-hp .cal-pop.in { opacity: 1; transform: none; }
.lt-hp .cal-pop .pop-from {
  display: flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink);
}
.lt-hp .cal-pop .pop-from .av { width: 18px; height: 18px; font-size: 7px; }
.lt-hp .cal-pop .pop-sub { color: var(--slate-500); margin-top: 5px; line-height: 1.4; font-size: 10px; }
.lt-hp .cal-pop .pop-actions { margin-top: 8px; display: flex; gap: 5px; }
.lt-hp .cal-pop .pop-actions button {
  flex: 1; padding: 5px 7px; font-size: 10px;
  border-radius: 5px; border: 1px solid var(--slate-200);
  background: #fff; color: var(--ink); font-weight: 500; cursor: pointer;
}
.lt-hp .cal-pop .pop-actions .approve {
  background: var(--green-800); color: #fff; border-color: var(--green-800);
}

/* live widget */
.lt-hp .live-widget {
  position: absolute;
  bottom: -32px; right: -24px;
  width: 260px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  box-shadow: var(--shadow-3);
  padding: 14px;
  font-size: 12px;
  z-index: 3;
}
.lt-hp .lw-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 13px;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 24;
}
.lt-hp .lw-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 10px; color: var(--green-700);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.lt-hp .lw-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-600);
  animation: lt-pulse 1.6s ease-out infinite;
}
@keyframes lt-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(42,160,106,0.6); }
  100% { box-shadow: 0 0 0 10px rgba(42,160,106,0); }
}
.lt-hp .lw-list { display: flex; flex-direction: column; gap: 6px; }
.lt-hp .lw-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px 0;
}
.lt-hp .lw-who { display: flex; align-items: center; gap: 7px; color: var(--ink); }
.lt-hp .lw-when { color: var(--slate-500); font-size: 11px; }
@media (max-width: 920px) { .lt-hp .live-widget { display: none; } }

/* ================================================================
   TRUST BAR
   ================================================================ */
.lt-hp .trust {
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 26px 0;
  background: var(--paper);
}
.lt-hp .trust-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 32px;
}
.lt-hp .trust-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.lt-hp .trust-logos {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  opacity: 0.65;
  filter: grayscale(1) contrast(0.7);
}
.lt-hp .trust-logos img { height: 36px; width: auto; object-fit: contain; }
@media (max-width: 720px) { .lt-hp .trust-inner { grid-template-columns: 1fr; } }

/* ================================================================
   PROBLEM
   ================================================================ */
.lt-hp .problem {
  padding: 120px 0;
  background: var(--paper);
}
.lt-hp .problem-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}
.lt-hp .problem-eyebrow { padding-top: 14px; }
.lt-hp .problem h2 {
  font-family: var(--display);
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 400;
  max-width: 22ch;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 72;
}
.lt-hp .problem-body {
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--slate-700);
  display: flex; flex-direction: column; gap: 18px;
}
.lt-hp .problem-body strong { color: var(--ink); font-weight: 500; }
.lt-hp .problem-pull {
  margin-top: 34px;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--green-800);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 36;
  border-top: 1px solid var(--slate-200);
  padding-top: 28px;
  max-width: 28ch;
}
@media (max-width: 820px) { .lt-hp .problem-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.lt-hp .how {
  padding: 120px 0;
  background: var(--ink);
  color: #fff;
}
.lt-hp .how-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 52px;
}
.lt-hp .how h2 { color: #fff; max-width: 16ch; }
.lt-hp .how-sub { color: rgba(255,255,255,0.6); max-width: 38ch; font-size: 16px; }

.lt-hp .how-stage {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 900px) { .lt-hp .how-stage { grid-template-columns: 1fr; } }

.lt-hp .how-steps { display: flex; flex-direction: column; gap: 8px; }
.lt-hp .how-step {
  padding: 20px 20px 18px;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: background .2s ease, border-color .2s ease;
}
.lt-hp .how-step:hover { background: rgba(255,255,255,0.04); }
.lt-hp .how-step.active {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
}
.lt-hp .step-num {
  font-family: var(--display);
  font-size: 12px; color: var(--mint-200); letter-spacing: 0.05em; font-weight: 500;
}
.lt-hp .step-title {
  font-family: var(--display);
  font-size: 21px; margin-top: 5px; letter-spacing: -0.01em;
  color: #fff; font-weight: 400;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 36;
}
.lt-hp .step-desc {
  font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 7px; line-height: 1.5;
}
.lt-hp .step-progress {
  height: 2px; margin-top: 12px;
  background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
}
.lt-hp .step-progress-bar {
  display: block; height: 100%; width: 0%;
  background: var(--mint-200);
  transition: width .12s linear;
}

/* canvas wrapper (maintains grid cell while inner canvases swap) */
.lt-hp .how-canvas-wrap {
  position: relative;
  min-height: 440px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(800px 380px at 80% -10%, rgba(42,160,106,0.18), transparent 60%),
    #14201b;
  border: 1px solid rgba(255,255,255,0.07);
}
.lt-hp .how-canvas {
  position: absolute; inset: 0; overflow: hidden;
}

/* setup canvas */
.lt-hp .setup {
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  height: 100%;
}
.lt-hp .setup-hd {
  display: flex; align-items: center; justify-content: space-between;
}
.lt-hp .setup-label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.lt-hp .setup-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); color: var(--mint-200);
  border-radius: 999px; padding: 4px 10px; font-size: 11px;
}
.lt-hp .setup-chip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--mint-200); }
.lt-hp .setup-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.lt-hp .setup-person {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  font-size: 12px; color: rgba(255,255,255,0.9);
  opacity: 0; transform: translateY(5px);
  transition: opacity .35s ease, transform .35s ease;
}
.lt-hp .setup-person.in { opacity: 1; transform: none; }
.lt-hp .setup-person small { display: block; color: rgba(255,255,255,0.5); font-size: 10px; }

/* email / demo canvas */
.lt-hp .demo {
  position: absolute; inset: 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.lt-hp .demo-single { grid-template-columns: 1fr; }
.lt-hp .demo-pane {
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
  display: flex; flex-direction: column;
}
.lt-hp .demo-head {
  height: 30px;
  border-bottom: 1px solid var(--slate-200);
  display: flex; align-items: center; gap: 5px;
  padding: 0 10px; flex-shrink: 0;
}
.lt-hp .demo-head .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--slate-200); }
.lt-hp .demo-head .dot.r { background: #ed6a5e; }
.lt-hp .demo-head .dot.y { background: #f3bf4a; }
.lt-hp .demo-head .dot.g { background: #61c554; }
.lt-hp .demo-head .dlabel {
  margin-left: 6px; font-family: var(--mono); font-size: 9px;
  color: var(--slate-500); letter-spacing: 0.06em; text-transform: uppercase;
}
.lt-hp .email-body { padding: 14px 16px; font-size: 12px; color: var(--ink); flex: 1; }
.lt-hp .email-field { display: flex; gap: 8px; padding: 3px 0; font-size: 11px; }
.lt-hp .email-field .lbl { color: var(--slate-500); width: 44px; }
.lt-hp .email-subject { margin: 10px 0 12px; font-size: 14px; font-weight: 500; letter-spacing: -0.005em; }
.lt-hp .email-msg { line-height: 1.55; color: var(--slate-700); font-size: 12px; }
.lt-hp .email-typed { white-space: pre-wrap; }
.lt-hp .email-caret {
  display: inline-block; width: 1px; height: 13px;
  background: var(--ink); vertical-align: -2px; margin-left: 1px;
  animation: lt-caret 1s steps(2) infinite;
}
@keyframes lt-caret { 50% { opacity: 0; } }

.lt-hp .demo-arrow {
  position: absolute;
  left: calc(50% - 15px); top: 50%;
  width: 30px; height: 30px;
  background: var(--mint-200); color: var(--green-900);
  border-radius: 50%;
  display: grid; place-items: center;
  transform: translateY(-50%);
  font-size: 13px; z-index: 3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  opacity: 0; transition: opacity .3s ease;
}
.lt-hp .demo-arrow.in { opacity: 1; }

.lt-hp .entry-body { padding: 14px 16px; font-size: 12px; flex: 1; display: flex; flex-direction: column; }
.lt-hp .entry-title { font-family: var(--display); font-size: 16px; margin-bottom: 7px; font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 24; }
.lt-hp .entry-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px dashed var(--slate-200); font-size: 12px;
}
.lt-hp .entry-row:last-of-type { border-bottom: 0; }
.lt-hp .entry-row .k { color: var(--slate-500); }
.lt-hp .entry-row .v { color: var(--ink); font-weight: 500; }
.lt-hp .entry-row .v.green { color: var(--green-700); }
.lt-hp .fade-row { opacity: 0; transform: translateY(4px); transition: opacity .35s ease, transform .35s ease; }
.lt-hp .fade-row.in { opacity: 1; transform: none; }
.lt-hp .entry-status {
  margin-top: auto; padding-top: 10px;
  display: flex; gap: 6px; align-items: center;
}
.lt-hp .status-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 9px; border-radius: 999px;
  background: var(--mint-100); color: var(--green-800);
  font-size: 10px; font-weight: 500;
}
.lt-hp .status-tick {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  display: grid; place-items: center; font-size: 8px;
}
.lt-hp .entry-cta { display: flex; gap: 7px; margin-top: 10px; }
.lt-hp .entry-cta button {
  flex: 1; padding: 7px 9px; font-size: 11px;
  border-radius: 7px; border: 1px solid var(--slate-200);
  background: #fff; color: var(--ink); font-weight: 500;
  transition: background .15s ease;
}
.lt-hp .entry-cta .approve-btn { background: var(--green-800); color: #fff; border-color: var(--green-800); }
.lt-hp .entry-cta .approve-btn.flash { background: var(--green-600); }

/* approve canvas request box */
.lt-hp .approve-req {
  background: var(--paper-2);
  border: 1px solid var(--slate-200);
  border-radius: 9px;
  padding: 12px; font-size: 12px; margin-top: 10px;
}
.lt-hp .approve-req-head { display: flex; justify-content: space-between; color: var(--slate-500); }
.lt-hp .approve-req-body { margin-top: 7px; color: var(--slate-700); line-height: 1.5; }

/* ================================================================
   BENTO — What you get
   ================================================================ */
.lt-hp .bento { padding: 120px 0; background: var(--paper); }
.lt-hp .bento-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 44px;
}
.lt-hp .bento h2 { max-width: 20ch; }
.lt-hp .bento h2 span { color: var(--slate-500); }

.lt-hp .bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.lt-hp .tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 20px;
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .25s ease;
}
.lt-hp .tile:hover { border-color: var(--slate-300); }
.lt-hp .tile h3 { font-size: 16px; font-weight: 500; letter-spacing: -0.005em; color: var(--ink); margin: 0; }
.lt-hp .tile p { font-size: 13px; color: var(--slate-500); margin: 5px 0 0; line-height: 1.5; max-width: 38ch; }
.lt-hp .tile-visual { flex: 1; position: relative; margin-top: 12px; }
.lt-hp .tile.dark { background: var(--green-900); border-color: transparent; }
.lt-hp .tile.dark h3 { color: #fff; }
.lt-hp .tile.dark p  { color: rgba(255,255,255,0.7); }
.lt-hp .tile.span-3 { grid-column: span 3; }
.lt-hp .tile.span-2 { grid-column: span 2; }
.lt-hp .tile.span-4 { grid-column: span 4; }
.lt-hp .tile.row-2  { grid-row: span 2; }
@media (max-width: 980px) {
  .lt-hp .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .lt-hp .tile.span-3, .lt-hp .tile.span-2, .lt-hp .tile.span-4 { grid-column: span 2; }
  .lt-hp .tile.row-2 { grid-row: span 1; }
}

/* tile visuals */
.lt-hp .viz-who {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 5px; padding-top: 4px;
}
.lt-hp .viz-who .vw-week {
  display: grid; grid-template-columns: 56px repeat(5, 1fr); gap: 3px; font-size: 9px;
}
.lt-hp .vw-label { color: var(--slate-500); font-size: 10px; padding: 3px 0; }
.lt-hp .vw-d { background: var(--paper-2); border: 1px solid var(--slate-200); border-radius: 3px; height: 20px; }
.lt-hp .vw-d.off { background: var(--green-700); border-color: var(--green-700); }
.lt-hp .vw-d.tinted { background: var(--mint-200); border-color: var(--mint-200); }

.lt-hp .viz-balance { position: absolute; inset: 0; display: grid; place-items: center; }
.lt-hp .ring {
  position: relative;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: conic-gradient(var(--green-700) 0 70%, var(--paper-2) 70% 100%);
  display: grid; place-items: center;
}
.lt-hp .ring::before {
  content: "";
  position: absolute; inset: 11px;
  border-radius: 50%; background: #fff; border: 1px solid var(--slate-200);
}
.lt-hp .ring-num {
  position: relative;
  font-family: var(--display);
  font-size: 28px; letter-spacing: -0.02em; color: var(--ink);
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 36;
}
.lt-hp .ring-num small {
  display: block; font-family: var(--sans); font-size: 10px;
  color: var(--slate-500); letter-spacing: 0.04em; text-transform: uppercase; text-align: center;
}

.lt-hp .viz-world { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.lt-hp .globe {
  width: 110px; height: 110px;
  background: radial-gradient(circle at 30% 35%, rgba(255,255,255,0.05), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(42,160,106,0.5), rgba(15,81,50,0.0) 60%);
  border-radius: 50%; position: relative;
}
.lt-hp .globe-arc {
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
  transform: rotate(20deg) scaleY(0.45);
}
.lt-hp .globe-pin {
  position: absolute; width: 7px; height: 7px;
  background: var(--mint-200); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(200,237,213,0.18), 0 0 0 6px rgba(200,237,213,0.08);
}

.lt-hp .viz-flow { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 6px; font-size: 11px; }
.lt-hp .flow-req {
  background: #fff; border: 1px solid var(--slate-200); border-radius: 7px;
  padding: 7px 9px; display: flex; align-items: center; justify-content: space-between;
}
.lt-hp .flow-req .fn { display: flex; gap: 7px; align-items: center; }
.lt-hp .flow-req .fp { font-size: 9px; padding: 2px 6px; border-radius: 999px; background: var(--mint-100); color: var(--green-800); font-weight: 500; }
.lt-hp .flow-req.pending .fp { background: var(--paper-2); color: var(--slate-500); }

.lt-hp .viz-sync { position: absolute; inset: 0; display: flex; align-items: center; gap: 10px; justify-content: center; }
.lt-hp .sync-badge {
  width: 50px; height: 50px; background: #fff; border-radius: 12px;
  border: 1px solid var(--slate-200); display: grid; place-items: center;
  font-family: var(--display); font-size: 13px;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 24;
}
.lt-hp .sync-arrow {
  width: 16px; height: 2px; background: var(--slate-300); position: relative;
}
.lt-hp .sync-arrow::after {
  content: ""; position: absolute; right: -1px; top: -3px;
  border: 4px solid transparent; border-left-color: var(--slate-300);
}

.lt-hp .viz-report { position: absolute; inset: 0; display: flex; align-items: flex-end; gap: 5px; padding: 10px 0; }
.lt-hp .rep-bar { flex: 1; background: var(--mint-200); border-radius: 3px 3px 0 0; }
.lt-hp .rep-bar.dk { background: var(--green-700); }

/* ================================================================
   FIT — Who it's for
   ================================================================ */
.lt-hp .fit { padding: 120px 0; background: var(--paper-2); }
.lt-hp .fit-head { margin-bottom: 44px; }
.lt-hp .fit h2 { max-width: 22ch; margin-top: 14px; }
.lt-hp .fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 820px) { .lt-hp .fit-grid { grid-template-columns: 1fr; } }
.lt-hp .fit-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.lt-hp .fit-card.good {
  background: linear-gradient(180deg, var(--mint-100), #fff);
  border-color: rgba(15,81,50,0.18);
}
.lt-hp .fit-card h3 {
  font-family: var(--display);
  font-size: 22px; letter-spacing: -0.01em; font-weight: 400;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 36;
}
.lt-hp .fit-card ul { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.lt-hp .fit-card li {
  display: grid; grid-template-columns: 20px 1fr; gap: 10px;
  font-size: 15px; color: var(--slate-700); line-height: 1.5;
}
.lt-hp .fit-ic {
  width: 17px; height: 17px; border-radius: 50%;
  display: grid; place-items: center;
  margin-top: 2px; font-size: 10px; font-weight: 700; color: #fff;
}
.lt-hp .fit-card.good .fit-ic { background: var(--green-700); }
.lt-hp .fit-card.bad  .fit-ic { background: var(--slate-300); }
.lt-hp .fit-note { font-size: 13px; color: var(--slate-500); margin-top: 20px; line-height: 1.5; }

/* ================================================================
   PROOF — Testimonials
   ================================================================ */
.lt-hp .proof { padding: 120px 0; background: var(--paper); }
.lt-hp .proof-head { margin-bottom: 52px; max-width: 720px; }
.lt-hp .proof-head h2 { margin-top: 14px; }
.lt-hp .proof-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; }
@media (max-width: 980px) { .lt-hp .proof-grid { grid-template-columns: 1fr; } }
.lt-hp .quote {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
}
.lt-hp .quote.feature { background: var(--ink); border-color: transparent; }
.lt-hp .q-mark {
  font-family: var(--display);
  font-size: 60px; line-height: 0.7;
  color: var(--green-700); font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 72;
}
.lt-hp .quote.feature .q-mark { color: var(--mint-200); }
.lt-hp .q-text {
  font-family: var(--display);
  margin: 16px 0 0;
  font-size: 20px; line-height: 1.35; letter-spacing: -0.01em;
  color: var(--ink); font-weight: 400; flex: 1;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 36;
}
.lt-hp .quote.feature .q-text { color: #fff; font-size: 24px; }
.lt-hp .q-author {
  margin-top: 22px;
  display: flex; align-items: center; gap: 11px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-200);
}
.lt-hp .quote.feature .q-author { border-top-color: rgba(255,255,255,0.14); }
.lt-hp .q-name { font-size: 13px; font-weight: 500; color: var(--ink); }
.lt-hp .quote.feature .q-name { color: #fff; }
.lt-hp .q-role { font-size: 12px; color: var(--slate-500); }
.lt-hp .quote.feature .q-role { color: rgba(255,255,255,0.6); }

/* ================================================================
   PRICING
   ================================================================ */
.lt-hp .pricing {
  padding: 130px 0 110px;
  background:
    radial-gradient(900px 360px at 50% 0%, rgba(42,160,106,0.12), transparent 60%),
    var(--paper);
  text-align: center;
  position: relative;
}
.lt-hp .pricing h2 { margin: 20px auto 0; max-width: 18ch; }
.lt-hp .price-figure {
  margin: 50px 0 22px;
  display: inline-flex; align-items: flex-start; gap: 10px;
  font-family: var(--display);
  font-weight: 400; letter-spacing: -0.04em; line-height: 0.9;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}
.lt-hp .price-pound { font-size: clamp(72px, 11vw, 148px); color: var(--green-800); }
.lt-hp .price-num   { font-size: clamp(120px, 20vw, 260px); color: var(--green-800); }
.lt-hp .price-meta {
  font-family: var(--sans); font-size: 15px; letter-spacing: 0;
  color: var(--slate-500); text-align: left; padding-top: 28px;
  font-weight: 450; line-height: 1.45;
}
.lt-hp .price-meta strong { color: var(--ink); display: block; font-weight: 500; }

.lt-hp .price-points {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  font-size: 14px; color: var(--slate-700); margin-top: 22px;
}
.lt-hp .price-points span { display: inline-flex; align-items: center; gap: 7px; }
.lt-hp .p-tick {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  display: grid; place-items: center; font-size: 8px;
}

.lt-hp .pricing-cta { margin-top: 36px; }

.lt-hp .compare {
  margin-top: 72px;
  border-top: 1px solid var(--slate-200);
  padding-top: 28px;
  text-align: left;
}
.lt-hp .compare-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--slate-500);
  text-align: center; margin-bottom: 22px;
}
.lt-hp .compare-rows { max-width: 680px; margin: 0 auto; }
.lt-hp .compare-row {
  display: grid; grid-template-columns: 1.3fr 1fr;
  align-items: center; padding: 14px 0;
  border-bottom: 1px solid var(--slate-200); font-size: 14px;
}
.lt-hp .compare-row:last-child { border-bottom: 0; }
.lt-hp .c-name { color: var(--ink); font-weight: 500; }
.lt-hp .c-name.us { color: var(--green-800); }
.lt-hp .c-price { color: var(--slate-500); text-align: right; }
.lt-hp .c-price.us { color: var(--green-800); font-weight: 500; }

/* ================================================================
   RISK REVERSAL
   ================================================================ */
.lt-hp .risk {
  background: var(--mint-50);
  padding: 88px 0;
  border-top: 1px solid rgba(15,81,50,0.10);
}
.lt-hp .risk-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start;
}
@media (max-width: 820px) { .lt-hp .risk-grid { grid-template-columns: 1fr; gap: 28px; } }
.lt-hp .risk h2 { max-width: 18ch; margin-top: 14px; }
.lt-hp .risk-copy { color: var(--slate-700); font-size: 17px; line-height: 1.6; }
.lt-hp .risk-copy p + p { margin-top: 14px; }

/* ================================================================
   FAQ
   ================================================================ */
.lt-hp .faq { padding: 120px 0; background: var(--paper); }
.lt-hp .faq-head { margin-bottom: 44px; }
.lt-hp .faq h2 { max-width: 20ch; margin-top: 14px; }
.lt-hp .faq-list { display: flex; flex-direction: column; }
.lt-hp .faq-item {
  border-top: 1px solid var(--slate-200);
  padding: 22px 0; cursor: pointer;
}
.lt-hp .faq-item:last-child { border-bottom: 1px solid var(--slate-200); }
.lt-hp .faq-qrow { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lt-hp .faq-q {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.01em; color: var(--ink); font-weight: 400;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 36;
}
.lt-hp .faq-toggle {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--paper-2);
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .2s ease, transform .25s ease;
  font-size: 16px; color: var(--slate-700);
}
.lt-hp .faq-item.open .faq-toggle { background: var(--green-800); color: #fff; transform: rotate(45deg); }
.lt-hp .faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease;
  opacity: 0;
  color: var(--slate-700); font-size: 16px; line-height: 1.6; max-width: 64ch;
}
.lt-hp .faq-item.open .faq-a { max-height: 300px; opacity: 1; margin-top: 12px; }

/* ================================================================
   FINAL CTA
   ================================================================ */
.lt-hp .final {
  padding: 130px 0 96px;
  background:
    radial-gradient(800px 380px at 80% 30%, rgba(42,160,106,0.18), transparent 60%),
    var(--green-900);
  color: #fff; position: relative; overflow: hidden;
}
.lt-hp .final::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.lt-hp .final-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px;
  align-items: flex-end; position: relative; z-index: 1;
}
@media (max-width: 820px) { .lt-hp .final-grid { grid-template-columns: 1fr; gap: 28px; } }
.lt-hp .final h2 {
  font-family: var(--display); font-size: clamp(44px, 5.5vw, 82px);
  line-height: 1.0; letter-spacing: -0.025em; color: #fff; font-weight: 400;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}
.lt-hp .final h2 em {
  font-style: italic; color: var(--mint-200);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.lt-hp .final-meta { display: flex; flex-direction: column; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.7); }
.lt-hp .final-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.lt-hp .final-pill {
  display: inline-flex; gap: 5px; align-items: center;
  padding: 6px 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; font-size: 12px; color: rgba(255,255,255,0.85);
}
.lt-hp .final-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 28px; }
.lt-hp .btn-outline-white {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.20);
}
.lt-hp .btn-outline-white:hover { background: rgba(255,255,255,0.06); }
