/* Burmese font: Pyidaungsu. Uses a locally-installed copy first (common on
   Myanmar devices); if the official web-font files are dropped into
   public/fonts/pyidaungsu/ they are served to every visitor. Falls back to
   Noto Sans Myanmar (loaded via bunny.net) when neither is available. */
@font-face {
  font-family: 'Pyidaungsu';
  src: local('Pyidaungsu'), local('Pyidaungsu Regular'),
       url('/fonts/pyidaungsu/Pyidaungsu-Regular.woff2') format('woff2'),
       url('/fonts/pyidaungsu/Pyidaungsu-Regular.ttf') format('truetype');
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: 'Pyidaungsu';
  src: local('Pyidaungsu Bold'), local('Pyidaungsu'),
       url('/fonts/pyidaungsu/Pyidaungsu-Bold.woff2') format('woff2'),
       url('/fonts/pyidaungsu/Pyidaungsu-Bold.ttf') format('truetype');
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --brand: #298045;
  --brand-dark: #1f6536;
  --brand-soft: #eaf5ee;
  --ink: #15201a;
  --muted: #5b6661;
  --line: rgba(0, 0, 0, 0.08);
  --bg: #ffffff;
  --bg-alt: #f6f8f6;
  --radius: 16px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Pyidaungsu', 'Noto Sans Myanmar', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 760px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.brand__logo { height: 38px; width: auto; object-fit: contain; display: block; }
.site-footer .brand__logo { height: 34px; }
.brand__name { font-size: 18px; letter-spacing: -0.01em; }
.nav {
  display: flex;
  gap: 22px;
  margin-left: 24px;
  font-weight: 500;
  color: var(--muted);
}
.nav a:hover { color: var(--ink); }
.lang-switch {
  margin-left: auto;
  display: inline-flex;
  gap: 4px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch__item {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.lang-switch__item.is-active {
  background: var(--brand);
  color: #fff;
}
/* Mobile/tablet nav toggle (hamburger) — hidden on desktop, shown ≤1024px */
.site-header__burger { display: none; }
.nav__heading, .nav__groups { display: none; }
.nav-compact { display: none; }
/* Scoped so it outranks `.btn { display:inline-flex }` and stays hidden on desktop */
.nav .nav__cta { display: none; }

/* Hero */
.hero { padding: 72px 0 56px; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__title {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 46ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__art img { margin-left: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.05s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); }
.btn--ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { background: var(--bg-alt); }

/* Sections */
.section__title {
  font-size: clamp(24px, 3.5vw, 34px);
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 36px;
}

.features { padding: 56px 0; background: var(--bg-alt); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 14px;
}
.card__title { font-size: 18px; margin: 0 0 8px; }
.card__body { color: var(--muted); margin: 0; }

/* How it works */
.how { padding: 64px 0; }
.how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.how__step { display: flex; gap: 14px; align-items: flex-start; }
.how__num {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.how__step-title { margin: 4px 0 6px; font-size: 17px; }
.how__step-body { margin: 0; color: var(--muted); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 44px 0 0; background: var(--bg-alt); }
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.site-footer__tagline { color: var(--muted); margin: 12px 0 0; max-width: 32ch; }
.site-footer__social { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.site-footer__social a { display: inline-flex; }
.site-footer__social svg { width: 26px; height: 26px; display: block; border-radius: 7px;
  transition: transform 0.15s ease, opacity 0.15s ease; opacity: 0.92; }
.site-footer__social a:hover svg { transform: translateY(-2px); opacity: 1; }
.site-footer__heading {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 12px;
}
.site-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer__links a { color: var(--ink); }
.site-footer__links a:hover { color: var(--brand); }
.site-footer__bottom { border-top: 1px solid var(--line); padding: 18px 0; }
.site-footer__rights { color: var(--muted); font-size: 13px; margin: 0; }

/* Article / legal & support pages */
.page { padding: 56px 0 72px; }
.page__title { font-size: clamp(26px, 4vw, 38px); letter-spacing: -0.02em; margin: 0 0 8px; }
.page__meta { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
.prose { color: var(--ink); }
.prose__lead { font-size: 18px; color: var(--muted); margin: 0 0 28px; }
.prose h2 { font-size: 20px; letter-spacing: -0.01em; margin: 28px 0 8px; }
.prose p { margin: 0 0 14px; max-width: 70ch; }
.prose ul { margin: 0 0 14px; padding-left: 20px; }

/* FAQ */
.faq { margin-top: 24px; display: grid; gap: 10px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 4px 16px;
}
.faq__q {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: '+'; color: var(--brand); font-size: 20px; line-height: 1; }
.faq__item[open] .faq__q::after { content: '−'; }
.faq__a { color: var(--muted); padding: 0 0 16px; max-width: 70ch; }

/* Contact */
.contact-list {
  margin: 28px 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.contact-list__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.contact-list__row:last-child { border-bottom: 0; }
.contact-list dt { color: var(--muted); font-weight: 600; margin: 0; }
.contact-list dd { margin: 0; }
.contact-list a { color: var(--brand); font-weight: 600; }
.contact-note { color: var(--muted); font-size: 14px; }

/* ===================== Contact page (matches design mockup) ===================== */
/* Green hero — stadium floodlight glow + Bagan pagoda skyline, curved bottom */
.cc-hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 76px 0 104px; color: #fff;
  background: radial-gradient(125% 95% at 72% -25%, #37ac68 0%, #1f8049 38%, #0b4023 100%);
}
.cc-hero__glow {
  position: absolute; z-index: 0; top: -190px; right: 14%;
  width: 540px; height: 540px; pointer-events: none; filter: blur(6px);
  background: radial-gradient(circle, rgba(225,255,236,0.9), rgba(150,238,184,0.28) 36%, transparent 64%);
}
.cc-hero__pagoda {
  position: absolute; z-index: 0; right: 0; bottom: 30px;
  width: min(560px, 58%); height: auto; pointer-events: none; opacity: 0.7;
}
.cc-hero__inner { position: relative; z-index: 1; }
.cc-hero__title {
  margin: 0 0 12px; font-weight: 800; line-height: 1.04; letter-spacing: -0.02em;
  font-size: clamp(36px, 6vw, 62px); text-shadow: 0 6px 30px rgba(0,0,0,0.3);
}
.cc-hero__subtitle { margin: 0; max-width: 54ch; font-size: clamp(15px, 2vw, 19px); color: rgba(255,255,255,0.92); }
.cc-hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; width: 100%; height: 90px; display: block; }

/* Centred column — cards sit a little wider than the standard narrow column */
.cc-wrap { max-width: 940px; padding-bottom: 84px; }

/* Info card — overlaps the hero */
.cc-card {
  position: relative; z-index: 2; margin-top: -58px; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 40px 80px -48px rgba(0,0,0,0.4);
}
.cc-card__row {
  display: grid; grid-template-columns: auto 190px 1fr; align-items: center; gap: 18px;
  padding: 17px 28px; border-bottom: 1px solid var(--line);
}
.cc-card__row:last-child { border-bottom: 0; }
.cc-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--brand-soft); color: var(--brand);
}
.cc-card__icon svg { width: 22px; height: 22px; }
.cc-card__label { color: var(--ink); font-weight: 700; }
.cc-card__value { color: var(--ink); }
.cc-card__value a { color: var(--brand); font-weight: 700; text-decoration: none; }
.cc-card__value a:hover { text-decoration: underline; }
.cc-card__map { display: inline-block; margin-left: 10px; font-size: 13px; }

/* Note */
.cc-note { display: flex; align-items: flex-start; gap: 10px; margin: 22px 6px 6px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.cc-note__icon { flex: none; color: var(--brand); }
.cc-note__icon svg { width: 18px; height: 18px; }

/* Form card — field-image aside + icon inputs */
.cc-form-card {
  margin: 26px 0 0; display: grid; grid-template-columns: 320px 1fr; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 30px 70px -50px rgba(0,0,0,0.35);
}
.cc-form__aside {
  position: relative; overflow: hidden; padding: 36px 30px;
  background: linear-gradient(165deg, #eef9f2 0%, #d9f0e1 58%, #cdebd7 100%);
}
.cc-form__aside::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -14px; height: 200px; pointer-events: none;
  background: url('/landing/3dfield.png') center bottom / 150% auto no-repeat; opacity: 0.16;
}
.cc-form__art { position: relative; display: flex; align-items: flex-start; margin-bottom: 22px; }
.cc-form__bubble {
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  width: 66px; height: 66px; border-radius: 22px 22px 22px 6px; background: var(--brand);
  box-shadow: 0 16px 28px -14px rgba(41,128,69,0.7);
}
.cc-form__bubble svg { width: 32px; height: 32px; }
.cc-form__mail {
  display: inline-flex; align-items: center; justify-content: center; color: var(--brand);
  width: 52px; height: 52px; margin: 20px 0 0 -12px; border-radius: 14px; background: #fff;
  border: 1px solid var(--line); box-shadow: 0 12px 22px -16px rgba(0,0,0,0.4);
}
.cc-form__mail svg { width: 26px; height: 26px; }
.cc-form__heading { position: relative; margin: 0 0 10px; font-size: 22px; font-weight: 800; color: var(--brand-dark); }
.cc-form__intro { position: relative; margin: 0; font-size: 14px; line-height: 1.7; color: #3c5a49; }

.cc-form__main { padding: 34px 32px; }
.cc-alert {
  margin: 0 0 20px; padding: 14px 16px; border-radius: 12px; font-size: 14px;
  color: var(--brand-dark); background: var(--brand-soft); border: 1px solid rgba(41,128,69,0.25);
}
.cc-form { display: grid; gap: 18px; }
.cc-field { display: grid; gap: 7px; }
.cc-field label { font-weight: 700; font-size: 14px; color: var(--ink); }
.cc-field__optional { color: var(--muted); font-weight: 400; font-size: 13px; }
.cc-input {
  display: flex; align-items: center; gap: 10px; padding: 0 14px;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.cc-input--area { align-items: flex-start; padding-top: 12px; }
.cc-input__icon { display: inline-flex; flex: none; color: var(--muted); }
.cc-input__icon svg { width: 20px; height: 20px; }
.cc-input input, .cc-input textarea {
  flex: 1; width: 100%; border: 0; outline: none; background: transparent;
  font: inherit; color: var(--ink); padding: 13px 0;
}
.cc-input textarea { resize: vertical; min-height: 122px; line-height: 1.6; }
.cc-input input::placeholder, .cc-input textarea::placeholder { color: #9aa6a0; }
.cc-input:focus-within { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px var(--brand-soft); }
.cc-input:focus-within .cc-input__icon { color: var(--brand); }
.cc-input.is-invalid { border-color: #d23f3f; }
.cc-field__error { color: #d23f3f; font-size: 13px; }

/* Honeypot — visually removed but still in the DOM for bots to fill. */
.cc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cc-submit { display: inline-flex; align-items: center; gap: 9px; justify-self: start; border-radius: 999px; padding: 13px 28px; }
.cc-submit__icon { display: inline-flex; }
.cc-submit__icon svg { width: 18px; height: 18px; }

/* Alternate channels */
.cc-channels { margin: 46px 0 0; text-align: center; }
.cc-channels__badge {
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
  width: 52px; height: 52px; border-radius: 50%; background: var(--brand-soft); color: var(--brand);
}
.cc-channels__badge svg { width: 26px; height: 26px; }
.cc-channels__heading { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.cc-channels__intro { margin: 0 auto 24px; max-width: 56ch; color: var(--muted); font-size: 14px; }
.cc-channels__list {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr); text-align: left;
}
.cc-channel {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; text-decoration: none;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 18px 40px -34px rgba(0,0,0,0.5);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.cc-channel:hover { transform: translateY(-2px); border-color: rgba(41,128,69,0.35); box-shadow: 0 24px 46px -30px rgba(0,0,0,0.45); }
.cc-channel__logo { flex: none; display: inline-flex; }
.cc-channel__logo svg { width: 34px; height: 34px; }
.cc-channel__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.cc-channel__label { font-weight: 800; color: var(--ink); }
.cc-channel__value { font-size: 13px; color: var(--brand); word-break: break-all; }
.cc-channel__go {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: var(--brand-soft); color: var(--brand);
}
.cc-channel__go svg { width: 18px; height: 18px; }

@media (max-width: 760px) {
  .cc-card__row { grid-template-columns: auto 1fr; gap: 3px 14px; padding: 15px 18px; }
  .cc-card__icon { grid-row: span 2; }
  .cc-card__label { align-self: end; }
  .cc-card__value { align-self: start; }
  .cc-form-card { grid-template-columns: 1fr; }
  .cc-form__main { padding: 26px 20px; }
  .cc-channels__list { grid-template-columns: 1fr; }
}

/* Help hub */
.help-grid {
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.help-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
  transition: border-color 0.15s ease;
}
.help-card:hover { border-color: var(--brand); }
.help-card__title { margin: 0 0 6px; font-size: 17px; }
.help-card__body { margin: 0; color: var(--muted); }
.help-cta {
  margin-top: 12px;
  text-align: center;
  background: var(--brand-soft);
  border-radius: var(--radius);
  padding: 32px 20px;
}
.help-cta__title { margin: 0 0 6px; }
.help-cta__body { margin: 0 0 18px; color: var(--muted); }

/* Responsive */
/* ≤1024 (tablet + mobile): collapse the full nav into the hamburger sheet.
   On tablet a few primary links stay inline via .nav-compact; phones (≤640)
   hide those too, leaving the toggle only. */
@media (max-width: 1024px) {
  /* Drop the blur: backdrop-filter makes .site-header a containing block for
     the position:fixed menu sheet, which would collapse it to the bar height. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255, 255, 255, 0.96); }
  .site-header__inner { position: relative; }
  .site-header__burger {
    order: 5; display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 40px; padding: 0 10px; cursor: pointer;
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
  }
  .site-header__burger span {
    display: block; width: 100%; height: 2px; background: var(--ink); border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .site-header__cta { display: none; }

  /* Compact inline nav — quick links beside the brand on tablet. */
  .nav-compact { display: inline-flex; align-items: center; gap: 22px; margin-left: 26px;
    font-weight: 500; font-size: 15px; }
  .nav-compact a { color: var(--muted); white-space: nowrap; }
  .nav-compact a:hover { color: var(--ink); }

  /* Full nav becomes a sheet that flows out of the bar (the complete menu). */
  .nav {
    display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; z-index: 20;
    flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    padding: 6px 20px calc(28px + env(safe-area-inset-bottom, 0px));
    background: #fff; border-top: 1px solid var(--line);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  #nav-toggle:checked ~ .nav { display: flex; }
  .site-header:has(#nav-toggle:checked) { background: #fff; }

  .nav__heading {
    display: block; margin: 16px 0 2px; font-size: 12px; font-weight: 800;
    letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted);
  }
  .nav > .nav__heading:first-child { margin-top: 6px; }

  .nav > a:not(.nav__cta) {
    padding: 12px 0; color: var(--ink); font-weight: 600; font-size: 16px;
  }
  .nav > a:not(.nav__cta):hover { color: var(--brand); }

  .nav__groups { display: flex; flex-direction: column; }
  .nav__group {
    display: flex; flex-direction: column;
    margin-top: 10px; padding-top: 2px; border-top: 1px solid var(--line);
  }
  .nav__group a { padding: 11px 0; color: var(--muted); font-weight: 500; font-size: 15px; }
  .nav__group a:hover { color: var(--brand); }

  .nav .nav__cta {
    display: block; margin-top: 22px; padding: 14px; border-radius: 12px;
    text-align: center; color: #fff; font-size: 16px;
  }
  .nav .nav__cta:hover { background: var(--brand-dark); }

  /* Bars morph into an X when open */
  #nav-toggle:checked ~ .site-header__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #nav-toggle:checked ~ .site-header__burger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .site-header__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .hero__art img { margin: 0 auto; max-width: 360px; }
  .features__grid, .how__steps { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .help-grid { grid-template-columns: 1fr; }
  .contact-list__row { grid-template-columns: 1fr; gap: 4px; }
}

/* =====================================================================
   MARKETING LANDING (lp-*) — light-brand reskin of the Kwin Chain mockup
   ===================================================================== */
:root {
  --accent: #e07b1a;
  --accent-soft: #fcefe0;
  --brand-rgb: 41, 128, 69;
}

.lp-brand { color: var(--brand); }
.lp-accent { color: var(--accent); }
.lp-muted { color: var(--muted); }
.lp-sm { font-size: 13px; }
.lp-xs { font-size: 11px; }
.lp-center { text-align: center; align-items: center; }
.lp-left { text-align: left; }
.lp-self-start { align-self: flex-start; }

/* Shared section heads + badges */
.lp-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.lp-head__title { font-size: clamp(24px, 3.6vw, 36px); letter-spacing: -0.02em; margin: 14px 0 12px; }
.lp-head__sub { color: var(--muted); margin: 0; font-size: 15px; }
.lp-preview__cta { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 24px; }
.lp-preview__cta-hint { font-size: 13px; }
.lp-badge {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brand); background: var(--brand-soft);
  padding: 6px 12px; border-radius: 999px;
}
.lp-badge--accent { color: var(--accent); background: var(--accent-soft); }
.lp-badge--dot::before {
  content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand); margin-right: 8px; vertical-align: middle; animation: lpPulse 1.6s infinite;
}
.lp-subhead { text-align: center; font-size: 13px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand); margin: 8px 0 28px; }
.lp-subhead--accent { color: var(--accent); margin-top: 56px; }

/* Button extensions */
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { filter: brightness(0.95); }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 34px; font-size: 16px; }
.site-header__cta { margin-left: 14px; padding: 9px 16px; font-size: 14px; border-radius: 10px; }
@media (max-width: 640px) { .site-header__cta, .nav-compact { display: none; } }

.lp-tag {
  display: inline-flex; align-items: center; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; padding: 3px 8px; border-radius: 6px;
  background: var(--bg-alt); color: var(--muted); border: 1px solid var(--line);
}
.lp-tag--brand { background: var(--brand); color: #fff; border-color: transparent; }
.lp-tag--brand-soft { background: var(--brand-soft); color: var(--brand); border-color: transparent; }
.lp-tag--accent { background: var(--accent); color: #fff; border-color: transparent; }
.lp-tag--outline { background: transparent; color: var(--brand); border-color: var(--brand); }

/* macOS-style window controls, top-left of the dashboard window (in the sidebar) */
.lp-dots { display: inline-flex; gap: 7px; padding: 2px 4px 14px; }
.lp-dots i { width: 11px; height: 11px; border-radius: 50%; background: #d7dbd9; }
.lp-dots i:nth-child(1) { background: #ff5f57; }
.lp-dots i:nth-child(2) { background: #febc2e; }
.lp-dots i:nth-child(3) { background: #28c840; }
.lp-ping { display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand); margin-right: 6px; animation: lpPing 1.4s infinite; }
.lp-ping--red { background: #e53935; }

/* ── HERO ── */
.lp-hero {
  position: relative; overflow: hidden; display: flex; align-items: center; min-height: 820px; padding: 64px 0;
  background:
    radial-gradient(900px 460px at 82% -6%, rgba(var(--brand-rgb), 0.12), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f2faf5 100%);
}
.lp-hero__glow {
  position: absolute; z-index: 0; right: -4%; top: 4%; width: 640px; height: 640px; pointer-events: none;
  filter: blur(10px); background: radial-gradient(circle, rgba(var(--brand-rgb), 0.16), transparent 62%);
}
/* Laptop+phone: anchored to the RIGHT of the (capped, centred) inner so text and
   laptop stay together on very wide screens. Sized as a share of the inner, so it
   scales without ever leaving a big gap. Tilted in 3D; left edge fades so the
   heading/buttons read as floating above it. */
.lp-hero__art {
  position: absolute; z-index: 1; top: 50%; right: 0; width: 58%; max-width: 1180px;
  transform: translateY(-50%); pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 30%);
  mask-image: linear-gradient(to right, transparent 0, #000 30%);
}
.lp-hero__shot {
  display: block; width: 100%; height: auto;
  transform: perspective(2400px) rotateY(-13deg) rotateX(3deg);
  transform-origin: left center;
  filter: drop-shadow(0 42px 60px rgba(0, 0, 0, 0.22));
}
/* Inner is capped + centred: on huge screens the text and laptop stay together
   (no drifting apart); on normal screens it's effectively full-bleed with a
   fluid left offset so the copy sits well left. */
.lp-hero__inner { position: relative; z-index: 2; width: 100%; max-width: 1640px; margin: 0 auto;
  padding-left: clamp(24px, 5vw, 96px); padding-right: clamp(24px, 4vw, 72px); }
.lp-hero__copy { max-width: 560px; }
.lp-hero__title { font-size: clamp(32px, 4.8vw, 54px); line-height: 1.06; letter-spacing: -0.02em; margin: 18px 0 18px; }
.lp-hero__accent { position: relative; color: var(--brand); }
.lp-hero__accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -0.1em; height: 0.24em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 16'%3E%3Cpath d='M3 11 C50 3 150 3 197 10' fill='none' stroke='%23298045' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.lp-hero__subtitle { font-size: 17px; color: var(--muted); margin: 0 0 28px; max-width: 46ch; line-height: 1.6; }
.lp-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.lp-hero__btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; font-size: 15px; border-radius: 12px; }
.lp-hero__arrow { width: 18px; height: 18px; }
.lp-hero__play { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px;
  border-radius: 50%; background: var(--brand); color: #fff; }
.lp-hero__play svg { width: 11px; height: 11px; margin-left: 1px; }

.lp-trust { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 26px;
  font-size: 14px; font-weight: 600; color: var(--ink); }
.lp-trust li { display: inline-flex; align-items: center; gap: 9px; }
.lp-trust__check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px;
  border-radius: 50%; background: var(--brand-soft); color: var(--brand); }
.lp-trust__check svg { width: 13px; height: 13px; }

/* ── WORKFLOW (animated) ── */
.lp-flow { padding: 72px 0; background: var(--bg-alt); }
.lp-flow__grid { display: grid; grid-template-columns: 5fr 7fr; gap: 28px; align-items: stretch; }
.lp-flow__timeline { position: relative; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.lp-flow__track { position: absolute; left: 21px; top: 22px; bottom: 22px; width: 2px; background: var(--line); }
.lp-flow__progress { position: absolute; left: 21px; top: 22px; width: 2px; height: 0; background: var(--brand);
  box-shadow: 0 0 10px rgba(var(--brand-rgb), 0.6); transition: height 0.6s ease; }
.lp-flow__ball { position: absolute; left: 0; top: 12px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; z-index: 3;
  transition: top 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s ease;
  filter: drop-shadow(0 0 6px rgba(var(--brand-rgb), 0.6)); }
.lp-step { position: relative; display: block; width: 100%; text-align: left; background: transparent;
  border: 0; padding: 0; cursor: pointer; font: inherit; }
.lp-step__node { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 18px;
  background: #fff; border: 1px solid var(--line); z-index: 2; transition: all 0.25s ease; }
.lp-step__body { display: block; position: relative; margin-left: 62px; padding: 14px 16px; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; transition: all 0.3s ease; }
.lp-step__title { display: block; font-weight: 700; font-size: 14px; }
.lp-step__desc { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.lp-step__bar { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--brand); }
.lp-step.is-active .lp-step__node { background: var(--brand-soft); color: var(--brand);
  border-color: rgba(var(--brand-rgb), 0.4);
  font-size: 0; /* hide the emoji so the travelling ball replaces it exactly */
  animation: lpStepGlow 1.5s ease-in-out infinite; } /* glow once the ball lands so progress is obvious */
@keyframes lpStepGlow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.10), 0 0 9px 1px rgba(var(--brand-rgb), 0.35); }
  50% { box-shadow: 0 0 0 7px rgba(var(--brand-rgb), 0.16), 0 0 20px 5px rgba(var(--brand-rgb), 0.65); }
}
.lp-step.is-active .lp-step__body { border-color: var(--brand); background: var(--brand-soft); }
.lp-step.is-active.is-playing .lp-step__bar { width: 100%; transition: width 4s linear; }

/* iPhone 17 (Space Black) device mockup — no outer browser card */
.lp-sim { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lp-phone { position: relative; flex: 1 1 auto; min-height: 0; align-self: center;
  aspect-ratio: 9 / 17.5; max-height: 680px; min-width: 290px; padding: 12px;
  background: linear-gradient(155deg, #38383c, #050506 62%); border-radius: 50px;
  box-shadow: 0 44px 90px -34px rgba(0,0,0,0.6), inset 0 0 0 2px rgba(255,255,255,0.07), inset 0 0 0 7px #000; }
.lp-phone__island { position: absolute; top: 21px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 25px; background: #000; border-radius: 14px; z-index: 6; }
.lp-phone__screen { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column;
  background: #fff; border-radius: 39px; overflow: hidden; }
.lp-phone__statusbar { display: flex; align-items: center; justify-content: space-between;
  padding: 13px 26px 6px; color: #111; flex: none; }
.lp-phone__time { font-size: 13px; font-weight: 700; letter-spacing: 0.02em; }
.lp-phone__meta { display: inline-flex; align-items: center; gap: 6px; }
.lp-phone__meta svg { height: 11px; width: auto; fill: currentColor; display: block; }
.lp-phone__batt { position: relative; width: 23px; height: 11px; border: 1px solid rgba(0,0,0,0.35);
  border-radius: 3px; display: inline-block; }
.lp-phone__batt::after { content: ''; position: absolute; right: -3px; top: 3.5px; width: 2px; height: 4px;
  background: rgba(0,0,0,0.35); border-radius: 0 1px 1px 0; }
.lp-phone__batt i { position: absolute; inset: 1.5px; width: 72%; background: #111; border-radius: 1.5px; }
/* Dynamic-island notification — drops in below the island and auto-retracts each step.
   Mobile-only: on desktop the step text already sits in the timeline rail (see @media 980). */
.lp-phone__alert { display: none; position: absolute; top: 44px; left: 10px; right: 10px; z-index: 7;
  align-items: flex-start; gap: 10px; padding: 11px 13px; text-align: left;
  background: rgba(255,255,255,0.94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: 22px; box-shadow: 0 20px 44px -14px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(-22px) scale(0.92); transform-origin: 50% -16px; pointer-events: none;
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1); }
.lp-phone__alert.is-shown { opacity: 1; transform: translateY(0) scale(1); }
.lp-phone__alert-icon { flex: none; width: 32px; height: 32px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 16px; line-height: 1;
  background: var(--brand-soft); }
.lp-phone__alert-body { display: block; min-width: 0; }
.lp-phone__alert-body strong { display: block; font-size: 13px; font-weight: 800; color: #0b1f14; line-height: 1.25; }
.lp-phone__alert-body span { display: block; margin-top: 2px; font-size: 11.5px; line-height: 1.35; color: #4a5a50; }
/* Panels go full-bleed inside the phone screen (no card frame → reads as a native app) */
.lp-phone__screen .lp-card { border: 0; border-radius: 0; box-shadow: none; }
.lp-sim__bar { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.lp-sim__screen { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }
.lp-sim__status { margin-left: auto; font-size: 9px; letter-spacing: 0.1em; padding: 3px 8px; border-radius: 6px;
  background: var(--brand-soft); color: var(--brand); font-weight: 700; }
.lp-sim__status.is-paused { background: var(--bg-alt); color: var(--muted); }
.lp-sim__viewport { position: relative; flex: 1 1 auto; min-height: 0; display: flex; align-items: stretch; justify-content: center; }
.lp-sim__controls { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex: none; width: 100%; }
.lp-sim__controls .lp-sim__status { margin-left: 0; }
.lp-ctrl { display: inline-flex; align-items: center; gap: 7px; font: inherit; font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 9px; background: #fff; border: 1px solid var(--line); cursor: pointer; }
.lp-ctrl:hover { background: var(--bg-alt); }
.lp-ctrl__ico { flex: none; font-size: 9px; line-height: 1; }
.lp-ctrl__ico::before { content: '\23F8'; } /* pause glyph while playing */
.lp-ctrl.is-paused .lp-ctrl__ico::before { content: '\25B6'; } /* play glyph while paused */

.lp-panel { position: absolute; inset: 0; display: flex; align-items: stretch; justify-content: center;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease; }
.lp-panel.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.lp-card { width: 100%; max-width: none; display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 12px 30px -20px rgba(0,0,0,0.4); }
.lp-card--pad { padding: 20px; display: flex; flex-direction: column; gap: 12px; min-height: 270px; flex: 1; }
.lp-panel__title { margin: 0; font-size: 15px; }
.lp-eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.lp-card__bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px;
  background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.lp-card__bar--plain { background: transparent; padding: 0 0 8px; }
.lp-card__brand { font-size: 12px; font-weight: 700; }
.lp-card__body { padding: 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; justify-content: space-between; }
.lp-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.lp-slot { position: relative; text-align: center; padding: 9px 0; border-radius: 8px; font-size: 13px;
  border: 1px solid var(--line); }
.lp-slot.is-off { color: #b8bfbb; background: var(--bg-alt); }
.lp-slot.is-on { color: var(--brand); font-weight: 800; border-color: var(--brand); background: var(--brand-soft); }
.lp-ripple { position: absolute; inset: 0; border-radius: 8px; background: rgba(var(--brand-rgb), 0.3); animation: lpRipple 1.4s ease-out infinite; }
.lp-rowbox { display: flex; justify-content: space-between; gap: 8px; background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; font-size: 13px; }
.lp-rowbox small { display: block; font-size: 9px; text-transform: uppercase; color: var(--muted); }
.lp-right { text-align: right; }
.lp-btn { text-align: center; padding: 11px; border-radius: 9px; background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.lp-check { width: 56px; height: 56px; margin: 0 auto; border-radius: 50%; color: var(--brand);
  background: var(--brand-soft); display: flex; align-items: center; justify-content: center; }
.lp-check svg { width: 30px; height: 30px; }
.lp-panel.is-active .lp-check__path { stroke-dasharray: 100; stroke-dashoffset: 100; animation: lpDraw 0.8s cubic-bezier(0.16,1,0.3,1) forwards; }
.lp-receipt { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px; padding: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; display: grid; gap: 7px; }
.lp-receipt div { display: flex; justify-content: space-between; }
.lp-receipt span { color: var(--muted); }
.lp-receipt--wide { margin-top: 14px; }
.lp-notify { display: flex; gap: 12px; align-items: flex-start; background: var(--bg-alt);
  border-left: 4px solid var(--brand); border-radius: 8px; padding: 14px; margin: auto 0;
  transform: translateX(-26px); opacity: 0; transition: all 0.7s cubic-bezier(0.175,0.885,0.32,1.275); }
.lp-notify.is-shown { transform: translateX(0); opacity: 1; }
.lp-notify__icon { font-size: 18px; }
.lp-notify strong { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; }
.lp-notify p { margin: 4px 0 0; font-size: 11px; }
.lp-foot { text-align: center; font-size: 10px; color: var(--muted); background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 8px; padding: 9px; }
.lp-foot--brand { color: var(--brand); background: var(--brand-soft); border-color: transparent; font-weight: 700;
  font-family: ui-monospace, monospace; letter-spacing: 0.06em; }
.lp-matrix { display: grid; gap: 7px; margin: auto 0; }
.lp-matrix__head, .lp-matrix__row { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 6px; align-items: center; }
.lp-matrix__head { font-size: 8px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted);
  text-align: center; font-family: ui-monospace, monospace; }
.lp-matrix__name { font-size: 11px; font-weight: 700; color: var(--muted); }
.lp-matrix__row.is-dim { opacity: 0.5; }
.lp-cell { height: 32px; border-radius: 7px; border: 1px solid var(--line); background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: var(--muted);
  transition: all 0.5s ease; }
.lp-cell.is-empty { color: transparent; }
.lp-cell.is-reserved { background: var(--brand-soft); color: var(--brand); border-color: rgba(var(--brand-rgb), 0.3); }
.lp-cell.is-booked { background: rgba(var(--brand-rgb), 0.2); color: var(--brand); border-color: var(--brand);
  box-shadow: 0 0 8px rgba(var(--brand-rgb), 0.5); transform: scale(1.04); }
.lp-qrwrap { position: relative; display: flex; flex-direction: column; gap: 16px; align-items: center; justify-content: center; margin: auto 0; }
.lp-laser { position: absolute; left: 50%; transform: translateX(-50%); width: 150px; height: 2px; background: var(--brand);
  box-shadow: 0 0 12px rgba(var(--brand-rgb), 0.8); display: none; z-index: 4; }
.lp-laser.is-on { display: block; animation: lpLaser 2.2s ease-in-out infinite; }
.lp-qr { width: 150px; height: 150px; padding: 9px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 8px 20px -12px rgba(0,0,0,0.4); }
.lp-qr svg { width: 100%; height: 100%; fill: var(--ink); }
.lp-qrinfo { display: flex; flex-direction: column; gap: 5px; font-size: 11px; text-align: center; align-items: center; }
.lp-qrinfo small { font-size: 9px; color: var(--muted); }
.lp-qrinfo .lp-tag { align-self: center; }
.lp-qrinfo .lp-tag.is-valid { background: var(--brand-soft); color: var(--brand); border-color: transparent; animation: lpSpring 0.5s cubic-bezier(0.34,1.56,0.64,1); }
.lp-qrmsg { text-align: center; padding: 9px; border-radius: 8px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; background: var(--bg-alt); border: 1px solid var(--line); color: var(--muted); transition: all 0.4s ease; }
.lp-qrmsg.is-done { background: var(--brand); color: #fff; border-color: transparent; box-shadow: 0 0 10px rgba(var(--brand-rgb), 0.5); }
.lp-goal { position: relative; width: 150px; height: 76px; margin: 12px auto 0; border: 2px solid #cdd2cf;
  border-bottom: 0; border-radius: 8px 8px 0 0; overflow: hidden; }
.lp-goal.is-impact { animation: lpShake 0.4s ease-in-out; }
.lp-goal__ball { position: absolute; bottom: 6px; left: 40%; font-size: 24px; opacity: 0; }
.lp-panel.is-active .lp-goal__ball.is-roll { animation: lpRoll 0.9s cubic-bezier(0.175,0.885,0.32,1.1) forwards; }
.lp-status-badge { align-self: center; padding: 6px 18px; border-radius: 999px; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; background: var(--accent-soft); color: var(--accent); }
.lp-status-badge.is-finished { background: var(--bg-alt); color: var(--muted); }
.lp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; text-align: center; margin-top: auto; }
.lp-stats span { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 8px; padding: 9px; font-size: 11px; }
.lp-stats small { display: block; color: var(--muted); font-size: 9px; }
.lp-bars { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; height: 70px;
  padding: 0 22px; border-bottom: 1px solid var(--line); margin: auto 0; }
.lp-bars i { width: 26px; border-radius: 6px 6px 0 0; background: #d7dbd9; transition: height 1.1s cubic-bezier(0.175,0.885,0.32,1.2); }
.lp-bars__live { background: var(--brand); box-shadow: 0 0 10px rgba(var(--brand-rgb), 0.5); }
.lp-count { font-family: ui-monospace, monospace; font-size: 22px; font-weight: 800; transition: transform 0.3s ease; }
.lp-count.is-done { transform: scale(1.08); }

/* Panel 2 — digital QR pass delivered at confirmation (vertical: QR above ticket) */
.lp-pass { display: flex; flex-direction: column; gap: 14px; align-items: center; margin: auto 0; }
.lp-pass__qr { flex: none; width: 132px; height: 132px; padding: 8px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 8px 20px -12px rgba(0,0,0,0.4); }
.lp-pass__qr svg { width: 100%; height: 100%; fill: var(--ink); }
.lp-pass .lp-receipt { flex: none; width: 100%; }

/* Panel 4 — day/time grid mirroring the owner dashboard Calendar */
.lp-daygrid { margin: auto 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.lp-daygrid__head { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px;
  border-bottom: 1px solid var(--line); }
.lp-daygrid__head span:first-child { font-size: 11px; font-weight: 800; }
.lp-daygrid__head span:last-child { font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.lp-daygrid__body { display: flex; }
.lp-daygrid__axis { flex: none; width: 42px; border-right: 1px solid var(--line); }
.lp-daygrid__axis span { display: block; height: 46px; padding: 4px 6px; font-size: 8px; color: var(--muted);
  font-family: ui-monospace, monospace; }
.lp-daygrid__axis span + span { border-top: 1px solid var(--line); }
.lp-daygrid__col { flex: 1; }
.lp-daygrid__row { height: 46px; padding: 4px; }
.lp-daygrid__row + .lp-daygrid__row { border-top: 1px solid var(--line); }
.lp-evt { height: 100%; border-radius: 7px; border-left: 3px solid var(--brand); background: var(--brand-soft);
  color: var(--brand-dark); padding: 4px 8px; font-size: 9px; line-height: 1.3; overflow: hidden; }
.lp-evt b { display: block; font-weight: 700; }
.lp-evt span { display: block; font-weight: 600; }
.lp-slotcell { height: 100%; border: 1px dashed #cbd5d0; border-radius: 7px; display: flex; align-items: center;
  justify-content: center; color: var(--muted); font-size: 9px; font-weight: 600; transition: all 0.5s ease; }
.lp-slotcell.is-booked { display: block; border: 0; border-left: 3px solid var(--brand); background: var(--brand-soft);
  color: var(--brand-dark); padding: 4px 8px; text-align: left; box-shadow: 0 0 0 1px rgba(var(--brand-rgb), 0.3); }
.lp-slotcell.is-booked b { display: block; font-weight: 700; font-size: 9px; line-height: 1.3; }
.lp-slotcell.is-booked span { display: block; font-weight: 600; font-size: 9px; line-height: 1.3; }
.lp-slotcell.is-booked em { display: block; font-style: normal; opacity: 0.8; font-size: 8px; line-height: 1.3; }

/* ── BENEFITS — old vs new system matrix ── */
.lp-benefits { padding: 72px 0; }
.lp-matrix2 { position: relative; display: grid; grid-template-columns: 1fr 72px 1fr; max-width: 1040px; margin: 0 auto; align-items: stretch; }
.lp-sys { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 22px; }
.lp-sys--old { border-color: rgba(229, 57, 53, 0.25); background: linear-gradient(180deg, rgba(229, 57, 53, 0.04), #fff 55%); }
.lp-sys--new { border-color: rgba(var(--brand-rgb), 0.3); background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.05), #fff 55%); }
.lp-sys__head { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.lp-sys__avatar { position: relative; flex: none; width: 116px; height: 116px; display: flex; align-items: flex-end; justify-content: center; margin-top: -42px; }
.lp-sys__avatar-img { width: 100%; height: auto; display: block; }
.lp-sys__badge { position: absolute; right: 6px; bottom: 8px; width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; border: 2px solid #fff; }
.lp-sys__badge--x { background: #e53935; }
.lp-sys__badge--ok { background: var(--brand); }
.lp-sys__title { margin: 0; font-size: 17px; font-weight: 800; }
.lp-sys--old .lp-sys__title { color: #e53935; }
.lp-sys--new .lp-sys__title { color: var(--brand); }
.lp-sys__sub { margin: 2px 0 0; font-size: 12px; color: var(--muted); }
.lp-sys__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.lp-row { display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.lp-row__icon { flex: none; width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.lp-row__icon svg { width: 20px; height: 20px; }
.lp-sys--old .lp-row__icon { background: rgba(229, 57, 53, 0.1); color: #e53935; }
.lp-sys--new .lp-row__icon { background: rgba(var(--brand-rgb), 0.1); color: var(--brand); }
.lp-row__text { display: flex; flex-direction: column; gap: 1px; }
.lp-row__text strong { font-size: 13.5px; font-weight: 700; }
.lp-row__text small { font-size: 11.5px; color: var(--muted); line-height: 1.35; }
.lp-row__check { margin-left: auto; flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--brand);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; }

/* Mobile pain → solution paired cards (shown only ≤760px; see media query).
   Avatars are emoji placeholders (.lp-pcard__avatar) pending real character art. */
.lp-matrix-m { display: none; }
.lp-pair { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 6px; margin-top: 14px; }
.lp-pair:first-child { margin-top: 0; }
.lp-pcard { position: relative; overflow: hidden; border-radius: 18px; padding: 13px 13px 8px;
  display: flex; flex-direction: column; border: 1px solid var(--line); }
.lp-pcard--pain { border-color: rgba(229, 57, 53, 0.2); background: linear-gradient(158deg, rgba(229, 57, 53, 0.1), #fff 70%); }
.lp-pcard--sol { border-color: rgba(var(--brand-rgb), 0.25); background: linear-gradient(158deg, rgba(var(--brand-rgb), 0.12), #fff 70%); }
.lp-pcard__title { margin: 0; font-size: 15px; font-weight: 800; line-height: 1.2; }
.lp-pcard--pain .lp-pcard__title { color: #e53935; }
.lp-pcard--sol .lp-pcard__title { color: var(--brand-dark); }
.lp-pcard__avatar { display: block; width: 100%; height: auto; margin-top: auto; }
.lp-pair__arrow { align-self: center; width: 30px; height: 30px; border-radius: 50%; background: #fff;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.3); display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 15px; font-weight: 800; }

/* Transaction transitioning into Kwin Chain: flowing line + a live, pulsing arrow gateway */
.lp-flowlink { position: relative; display: flex; align-items: center; justify-content: center; }
.lp-flowlink__line { position: absolute; left: 6px; right: 6px; top: 50%; height: 2px; transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, rgba(var(--brand-rgb), 0.5) 0 7px, transparent 7px 14px);
  background-size: 14px 2px; animation: lpDash 0.45s linear infinite; }
.lp-flowlink__arrow { position: relative; z-index: 2; width: 44px; height: 44px; border-radius: 50%; background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.35); box-shadow: 0 6px 18px -8px rgba(0,0,0,0.3); color: var(--brand);
  font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.lp-flowlink__arrow b { display: block; animation: lpArrowNudge 1.3s ease-in-out infinite; }
.lp-flowlink__arrow::before, .lp-flowlink__arrow::after { content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--brand); opacity: 0; animation: lpGate 1.8s ease-out infinite; }
.lp-flowlink__arrow::after { animation-delay: 0.9s; }
@keyframes lpDash { to { background-position: 14px 0; } }
@keyframes lpArrowNudge { 0%, 100% { transform: translateX(-2px); } 50% { transform: translateX(3px); } }
@keyframes lpGate { 0% { transform: scale(1); opacity: 0.55; } 100% { transform: scale(1.85); opacity: 0; } }

/* Why field owners choose us */
.lp-why { text-align: center; margin: 56px 0 26px; }
.lp-why__title { display: inline-flex; align-items: center; justify-content: center; gap: 14px; margin: 0;
  font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.lp-why__title::before, .lp-why__title::after { content: ''; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }
.lp-why__sub { margin: 8px 0 0; font-size: 13px; color: var(--muted); }
.lp-reasons { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.lp-reason { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 16px; }
.lp-reason__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: 50%; background: rgba(var(--brand-rgb), 0.12); color: var(--brand); margin-bottom: 14px; }
.lp-reason__icon svg { width: 26px; height: 26px; }
.lp-reason h4 { margin: 0 0 6px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; }
.lp-reason p { margin: 0; font-size: 12px; color: var(--muted); }

/* ── DASHBOARD PREVIEW ── */
.lp-preview { padding: 72px 0; background: var(--bg-alt); }
/* Device wrapper is a no-op on desktop; becomes an iPhone frame on mobile (see @media 760) */
.lp-app-phone { position: relative; }
.lp-app-phone__island { display: none; }
/* Dashboard-style window with a left navigation sidebar (like the real app) */
.lp-app { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 185px 1fr; background: #fff;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 28px 70px -38px rgba(0,0,0,0.4); min-height: 510px; }
.lp-app__side { background: #0e1512; display: flex; flex-direction: column; padding: 18px 14px; }
.lp-app__brand { display: flex; align-items: center; gap: 10px; padding: 4px 8px 18px; }
.lp-app__logo { flex: none; width: 32px; height: 32px; border-radius: 9px; background: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.lp-app__brandtext { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.lp-app__brandtext strong { color: #fff; font-size: 13px; }
.lp-app__brandtext small { font-size: 10px; color: rgba(255,255,255,0.5); }
.lp-app__nav { display: flex; flex-direction: column; gap: 4px; }
.lp-app__navitem { display: flex; align-items: center; gap: 11px; width: 100%; text-align: left; font: inherit;
  font-size: 12.5px; font-weight: 600; cursor: pointer; color: rgba(255,255,255,0.62); background: transparent; border: 0;
  border-radius: 10px; padding: 10px 11px; transition: background 0.2s ease, color 0.2s ease; }
.lp-app__navitem:hover { background: rgba(255,255,255,0.06); color: #fff; }
.lp-app__navitem.is-active { background: var(--brand); color: #fff; }
.lp-app__navicon { display: inline-flex; flex: none; }
.lp-app__navicon svg { width: 17px; height: 17px; fill: currentColor; }
.lp-app__menu { display: none; } /* mobile-only screen switcher; see @media 760 */
.lp-app__profile { margin-top: auto; display: flex; align-items: center; gap: 10px; padding: 14px 8px 2px; border-top: 1px solid rgba(255,255,255,0.08); }
.lp-app__avatar { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; }
.lp-app__main { display: flex; flex-direction: column; min-width: 0; }
.lp-app__topbar { display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.lp-app__title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.lp-app__live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand); background: var(--brand-soft); padding: 4px 10px; border-radius: 999px; }
.lp-app__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: lpPulse 1.6s infinite; }
.lp-app__body { position: relative; flex: 1; padding: 22px; }
.lp-tabpanel { display: none; flex-direction: column; gap: 12px; }
.lp-tabpanel.is-active { display: flex; animation: lpFade 0.4s ease; }
.lp-tp-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.lp-tp-icon { font-size: 32px; }
.lp-book { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px;
  border: 1px solid var(--line); border-radius: 10px; font-size: 13px; }
.lp-book small { display: block; color: var(--muted); font-size: 11px; }
.lp-book--paid { background: var(--brand-soft); border-color: rgba(var(--brand-rgb), 0.3); }
.lp-book--pending { background: var(--accent-soft); border-color: rgba(224, 123, 26, 0.3); }
.lp-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 10px; padding: 16px; font-size: 12px; }
.lp-details small { display: block; color: var(--muted); }
.lp-chart { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; height: 180px; padding: 0 6px; }
.lp-chart__col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 6px; height: 100%; }
.lp-chart__col i { width: 100%; max-width: 30px; background: var(--brand); border-radius: 5px 5px 0 0; }
.lp-chart__col small { font-size: 9px; color: var(--muted); font-family: ui-monospace, monospace; }

/* ── FEATURES (green-top banner fading to light cards) ── */
.lp-features { position: relative; padding: 0 0 90px; background: var(--bg-alt); }
/* Full-bleed green stadium header — sizes to its own content (so the title never
   gets clipped when it wraps), with the football-stadium texture spanning the full
   width (visible LEFT & RIGHT of the title) and a curved bottom edge. */
.lp-features__hd { position: relative; overflow: hidden; padding: 80px 0 78px;
  border-bottom-left-radius: 50% 70px; border-bottom-right-radius: 50% 70px;
  background:
    linear-gradient(180deg, rgba(9, 55, 30, 0.84), rgba(11, 66, 36, 0.9) 55%, rgba(12, 74, 41, 0.96) 100%),
    url('/landing/american-football-stadium.webp') center 30% / cover no-repeat; }
.lp-features .lp-head { margin-bottom: 0; }
.lp-features .lp-feature-grid { margin-top: 40px; }
.lp-feat-divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; color: rgba(255,255,255,0.55); }
.lp-feat-divider i { display: block; width: 84px; height: 1px; background: rgba(255,255,255,0.32); }
.lp-feat-divider svg { width: 42px; height: 21px; }
.lp-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lp-feature { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px 22px 42px;
  box-shadow: 0 22px 44px -30px rgba(0,0,0,0.4); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.lp-feature:hover { transform: translateY(-3px); box-shadow: 0 28px 54px -28px rgba(0,0,0,0.45); }
.lp-feature__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 13px; background: var(--brand-soft); color: var(--brand); margin-bottom: 16px; }
.lp-feature__icon svg { width: 24px; height: 24px; fill: currentColor; }
.lp-feature h3 { margin: 0 0 8px; font-size: 16px; font-weight: 800; letter-spacing: 0; text-transform: none; }
.lp-feature p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }
.lp-feature__more { position: absolute; right: 18px; bottom: 16px; width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; background: var(--brand-soft); color: var(--brand); font-weight: 800; font-size: 14px; }
.lp-feat-cta { display: flex; align-items: center; gap: 16px; margin: 34px auto 0; max-width: 880px; background: #fff;
  border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; box-shadow: 0 18px 40px -30px rgba(0,0,0,0.3); }
.lp-feat-cta__icon { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 20px; }
.lp-feat-cta p { flex: 1; margin: 0; font-size: 14px; font-weight: 600; }
.lp-feat-cta .btn { flex: none; white-space: nowrap; }

/* ── PRICING ── */
/* Trusted Partners */
.lp-partners { padding: 72px 0; background: var(--bg); }

/* Shield pill badge above the heading */
.lp-badge--shield {
  display: inline-flex; align-items: center; gap: 7px;
  text-transform: none; letter-spacing: 0.04em;
}
.lp-badge--shield svg { flex: none; }

/* Laurel divider between heading and grid */
.lp-partners__divider {
  display: flex; align-items: center; gap: 18px;
  max-width: 720px; margin: 0 auto 40px;
}
.lp-partners__divider::before,
.lp-partners__divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41, 128, 69, 0.35));
}
.lp-partners__divider::after { transform: scaleX(-1); }
.lp-partners__divider span {
  flex: none; font-size: 15px; font-weight: 700; color: var(--brand); white-space: nowrap;
}
.lp-partners__divider span::before,
.lp-partners__divider span::after {
  content: '🌿'; margin: 0 10px; filter: grayscale(0.15);
}
.lp-partners__divider span::after { display: inline-block; transform: scaleX(-1); }

.lp-partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 22px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.lp-partner:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07); transform: translateY(-2px); border-color: var(--brand-soft); }
.lp-partner__tile {
  display: flex; align-items: center; justify-content: center;
  width: 110px; height: 110px;
  border-radius: 16px;
  background: var(--bg-alt);
}
.lp-partner__badge {
  width: 88px;
  height: 88px;
  object-fit: contain;
}
.lp-partner__name { font-size: 14px; font-weight: 700; color: var(--ink); text-align: center; }
.lp-partner__loc {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 600; color: var(--brand);
}
.lp-partner__loc::before { content: '📍'; font-size: 12px; }

/* Bottom trust + CTA banner */
.lp-partners__cta {
  display: flex; align-items: center; gap: 18px;
  margin: 44px auto 0; max-width: 1200px;
  background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 18px; padding: 20px 26px;
}
.lp-partners__cta-icon {
  flex: none; width: 48px; height: 48px; border-radius: 14px;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.lp-partners__cta-body { flex: 1; }
.lp-partners__cta-body strong { display: block; font-size: 18px; color: var(--ink); }
.lp-partners__cta-body p { margin: 4px 0 0; font-size: 14px; color: var(--muted); }
.lp-partners__cta .btn { flex: none; white-space: nowrap; }

.lp-pricing { padding: 72px 0; background: var(--bg-alt); }
.lp-early { display: inline-block; margin: 14px auto 0; background: var(--accent-soft); color: var(--accent);
  border: 1px solid rgba(224, 123, 26, 0.4); border-radius: 10px; padding: 10px 16px; font-size: 13px; font-weight: 700; }
.lp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; align-items: stretch; }
.lp-plans--2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; }
.lp-plans--1 { grid-template-columns: 1fr; max-width: 420px; }
.lp-plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; }
.lp-plan--featured { border: 2px solid var(--accent); }
.lp-plan__ribbon { position: absolute; top: -12px; right: 24px; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 12px; border-radius: 6px; }
.lp-plan__tier { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.lp-plan h3 { margin: 8px 0 14px; font-size: 20px; }
.lp-plan__price { padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.lp-plan__price strong { font-size: 26px; }
.lp-plan__price small { display: block; font-size: 10px; text-transform: uppercase; color: var(--muted); font-family: ui-monospace, monospace; }
.lp-plan__yearly { display: block; font-size: 11px; margin-top: 4px; }
.lp-plan__list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 11px; font-size: 13px; flex: 1; align-content: start; }
.lp-plan__list li { display: flex; gap: 9px; align-items: flex-start; }
.lp-plan__list li > span { color: var(--brand); font-weight: 800; }
.lp-plan__list li.is-off { opacity: 0.5; }
.lp-plan__list li.is-off > span { color: #e53935; }

/* ── FAQ (reuses .faq from base) ── */
.lp-faq-section { padding: 72px 0; }

/* ── MARKETPLACE (dark banner + field-finder phone) ── */
.lp-market { position: relative; padding: 80px 0 120px; overflow: hidden; color: #fff;
  background: radial-gradient(120% 100% at 78% -10%, #0f5a30, #0a3d22 72%); }
/* faint Bagan pagoda skyline filling the LEFT — mirrors the stadium on the
   right: full height, blended into the green, inner edge feathered out. */
.lp-market::before { content: ''; position: absolute; z-index: 0; left: 0; top: 0; width: 58%; height: 100%; pointer-events: none;
  background: url('/landing/pagoda-background.png') left bottom / cover no-repeat; opacity: 0.30;
  mix-blend-mode: luminosity;
  -webkit-mask-image: radial-gradient(125% 130% at 0% 55%, #000 28%, transparent 78%);
  mask-image: radial-gradient(125% 130% at 0% 55%, #000 28%, transparent 78%); }
/* stadium on the right, blended into the green (luminosity) with feathered edges */
.lp-market::after { content: ''; position: absolute; z-index: 0; right: 0; top: 0; width: 60%; height: 100%; pointer-events: none;
  background: url('/landing/american-football-stadium.webp') right center / cover no-repeat; opacity: 0.32;
  mix-blend-mode: luminosity;
  -webkit-mask-image: radial-gradient(125% 130% at 100% 45%, #000 28%, transparent 78%);
  mask-image: radial-gradient(125% 130% at 100% 45%, #000 28%, transparent 78%); }
/* decorative white dot grids, denser at the corner and fading inward */
.lp-market__dots { position: absolute; z-index: 0; width: 210px; height: 170px; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.55) 1.4px, transparent 1.6px);
  background-size: 20px 20px; }
.lp-market__dots--tl { top: 30px; left: 26px;
  -webkit-mask-image: radial-gradient(circle at top left, #000, transparent 76%);
  mask-image: radial-gradient(circle at top left, #000, transparent 76%); }
.lp-market__dots--br { right: 26px; bottom: 30px;
  -webkit-mask-image: radial-gradient(circle at bottom right, #000, transparent 76%);
  mask-image: radial-gradient(circle at bottom right, #000, transparent 76%); }
.lp-market__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.92fr 0.9fr; gap: 30px; align-items: center; }
.lp-badge--ghost { background: rgba(255,255,255,0.1); color: #d8f3e1; border: 1px solid rgba(255,255,255,0.2); }
.lp-market__title { margin: 16px 0 0; font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.12; color: #fff; }
.lp-market__accent { position: relative; color: #57cf83; white-space: nowrap; }
.lp-market__accent::after { content: ''; position: absolute; left: 0; right: 0; bottom: -0.16em; height: 0.3em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 16'%3E%3Cpath d='M3 11 C50 3 150 3 197 10' fill='none' stroke='%2357cf83' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%; }
.lp-market__body { margin: 18px 0 0; max-width: 430px; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.82); }
.lp-mk-shot { justify-self: center; width: 100%; max-width: 290px; height: auto; display: block;
  filter: drop-shadow(0 44px 70px rgba(0,0,0,0.55)); }
.lp-market__card { background: #fff; border-radius: 18px; padding: 32px 26px; text-align: center; box-shadow: 0 30px 60px -34px rgba(0,0,0,0.5); }
.lp-market__trophy { display: inline-flex; align-items: center; justify-content: center; width: 66px; height: 66px; border-radius: 50%; background: var(--brand-soft); font-size: 30px; margin-bottom: 16px; }
.lp-market__card h3 { margin: 0 0 10px; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--brand); line-height: 1.3; }
.lp-market__card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── FINAL CTA (white panel over the banner, with channel diagram) ── */
.lp-final { padding: 0 0 80px; }
.lp-cta { position: relative; z-index: 2; margin-top: -64px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px;
  align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 44px;
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.45); }
.lp-cta__title { margin: 0; font-size: clamp(24px, 3vw, 34px); font-weight: 800; line-height: 1.15; }
.lp-cta__body { margin: 16px 0 24px; max-width: 420px; font-size: 14px; color: var(--muted); line-height: 1.6; }
.lp-cta__note { display: flex; align-items: center; gap: 8px; margin: 18px 0 0; font-size: 12px; color: var(--muted); }
.lp-cta__shield { display: inline-flex; color: var(--brand); }
.lp-cta__shield svg { width: 18px; height: 18px; }
.lp-cta__diagram { position: relative; min-height: 330px; }
.lp-cta__links { position: absolute; inset: 10% 6%; width: 88%; height: 80%; z-index: 0; }
.lp-cta__links path { fill: none; stroke: rgba(var(--brand-rgb), 0.45); stroke-width: 1; stroke-dasharray: 3 3; }
.lp-cta__pitch { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 250px; height: auto; z-index: 1;
  display: block; filter: drop-shadow(0 18px 26px rgba(0,0,0,0.28)); }
.lp-cta__node { position: absolute; z-index: 2; display: flex; align-items: flex-start; gap: 9px; width: 190px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; box-shadow: 0 12px 26px -16px rgba(0,0,0,0.35); }
.lp-cta__node--tl { top: 4%; left: 0; }
.lp-cta__node--tr { top: 4%; right: 0; }
.lp-cta__node--bl { bottom: 4%; left: 0; }
.lp-cta__node--br { bottom: 4%; right: 0; }
.lp-cta__nicon { flex: none; width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; background: var(--brand-soft); color: var(--brand); }
.lp-cta__nicon svg { width: 18px; height: 18px; }
.lp-cta__nicon--tg { background: rgba(34,158,217,0.14); color: #229ED9; }
.lp-cta__nicon--fb { background: rgba(0,132,255,0.12); color: #0084FF; }
.lp-cta__ntext strong { display: block; font-size: 12.5px; font-weight: 700; }
.lp-cta__ntext small { display: block; margin-top: 1px; font-size: 11px; color: var(--muted); line-height: 1.35; }

/* ── Zebra: dark-green bands (Workflow / Preview / Pricing) ── */
.lp-flow, .lp-preview, .lp-pricing { background: radial-gradient(120% 100% at 78% -10%, #0f5a30, #0a3d22 72%); }
.lp-flow .lp-head__title, .lp-preview .lp-head__title, .lp-pricing .lp-head__title, .lp-features .lp-head__title { color: #fff; }
.lp-flow .lp-head__sub, .lp-preview .lp-head__sub { color: rgba(255,255,255,0.8); }
.lp-flow .lp-badge, .lp-preview .lp-badge, .lp-pricing .lp-badge, .lp-features .lp-badge {
  background: rgba(255,255,255,0.1); color: #d8f3e1; border: 1px solid rgba(255,255,255,0.22); }
.lp-preview__cta-hint { color: rgba(255,255,255,0.72); }
.lp-sim__controls .lp-muted { color: rgba(255,255,255,0.72); }
.lp-flow .lp-ctrl { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22); color: #fff; }
.lp-flow .lp-ctrl:hover { background: rgba(255,255,255,0.16); }
.lp-flow__track { background: rgba(255,255,255,0.16); }
/* rim-light so the near-black iPhone separates from the dark-green band */
.lp-phone { box-shadow: 0 44px 90px -34px rgba(0,0,0,0.7), inset 0 0 0 2px rgba(255,255,255,0.08), inset 0 0 0 7px #000, 0 0 0 1px rgba(255,255,255,0.18); }
.lp-preview .btn--primary { box-shadow: 0 12px 26px -12px rgba(0,0,0,0.55); }

/* ── keyframes ── */
@keyframes lpPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes lpPing { 0% { box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.5); } 70%,100% { box-shadow: 0 0 0 6px rgba(var(--brand-rgb), 0); } }
@keyframes lpRipple { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes lpDraw { to { stroke-dashoffset: 0; } }
@keyframes lpSpring { 0% { transform: scale(0.85); opacity: 0; } 70% { transform: scale(1.05); } 100% { transform: scale(1); opacity: 1; } }
@keyframes lpLaser { 0% { top: 8%; opacity: 0.3; } 50% { top: 86%; opacity: 1; } 100% { top: 8%; opacity: 0.3; } }
@keyframes lpRoll { 0% { transform: rotate(0) translateX(-40px); opacity: 0; } 40% { opacity: 1; } 100% { transform: rotate(360deg) translateX(0); opacity: 1; } }
@keyframes lpShake { 0%,100% { transform: translate(0,0); } 20%,60% { transform: translate(-4px,-2px); } 40%,80% { transform: translate(4px,2px); } }
@keyframes lpFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lpTapHint { 0%, 100% { transform: translateY(0) scale(1); } 42% { transform: translateY(-9px) scale(1.1); } 72% { transform: translateY(0) scale(0.94); } }

/* ── landing responsive ── */
@media (max-width: 980px) {
  .lp-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-reasons { grid-template-columns: repeat(2, 1fr); }
  .lp-market__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .lp-market__rule { margin-left: auto; margin-right: auto; }
  .lp-cta { grid-template-columns: 1fr; }
}
/* Benefits matrix: tablets/iPad use the mobile paired-card design (centred so the
   cards don't stretch on wider tablets). Desktop keeps the old-vs-new matrix. */
@media (max-width: 1024px) {
  .lp-matrix2 { display: none; }
  .lp-matrix-m { display: block; max-width: 620px; margin-left: auto; margin-right: auto; }
}
/* Hero stacks early (≤1180) so tablets aren't cramped by the overlap layout:
   copy on top, upright composite centred below — no bleed, tilt or edge fade. */
@media (max-width: 1180px) {
  .lp-partners__grid { grid-template-columns: repeat(4, 1fr); }
  .lp-hero { display: block; min-height: 0; padding: 48px 0 8px; }
  .lp-hero__inner { max-width: 720px; padding-left: clamp(24px, 5vw, 40px); padding-right: clamp(24px, 5vw, 40px); }
  .lp-hero__copy { max-width: none; }
  .lp-hero__art { position: static; transform: none; width: 100%; max-width: 600px; margin: 30px auto 0;
    -webkit-mask-image: none; mask-image: none; }
  .lp-hero__shot { transform: none; filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.16)); }
}
@media (max-width: 860px) {
  .lp-partners__grid { grid-template-columns: repeat(3, 1fr); }
  .lp-partners__cta { flex-direction: column; text-align: center; }
  .lp-partners__cta-body { text-align: center; }
  .lp-compare, .lp-plans { grid-template-columns: 1fr; }
  .lp-matrix2 { grid-template-columns: 1fr; }
  .lp-flowlink { height: 56px; transform: rotate(90deg); }
  .lp-feature-grid { grid-template-columns: 1fr 1fr; }
  .lp-details { grid-template-columns: 1fr; }
  /* CTA channel diagram → stacked grid (no absolute corners) */
  .lp-cta { margin-top: -40px; padding: 28px; }
  .lp-cta__diagram { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .lp-cta__links { display: none; }
  .lp-cta__pitch { position: static; transform: none; width: 180px; margin: 0 auto 10px; grid-column: 1 / -1; }
  .lp-cta__node { position: static; width: auto; }
}
@media (max-width: 760px) {
  /* Workflow goes icon-rail + phone side by side; the step text now lives in
     the phone's dynamic-island notification instead of beside each icon.
     (Tablets/iPad keep the desktop timeline; this kicks in for phones.) */
  .lp-flow__grid { grid-template-columns: 50px minmax(0, 1fr); gap: 14px; align-items: stretch; }
  .lp-flow__timeline { justify-content: space-between; gap: 0; }
  .lp-step { min-height: 44px; }
  .lp-step__body { display: none; }
  .lp-phone__alert { display: flex; top: 40px; }
  /* Reserve a band at the top of the screen so the dropped-in notification never
     covers the panel header/content below it. */
  .lp-panel { top: 110px; }
  .lp-phone { flex: none; width: 100%; max-width: none; min-width: 0; max-height: none; align-self: stretch; }
  /* Simulator controls: centred play/pause pill on its own row, status + step below */
  .lp-sim__controls { flex-wrap: wrap; justify-content: center; gap: 9px 12px; }
  .lp-sim__controls .lp-ctrl { order: -1; flex: 0 0 100%; max-width: 240px; margin: 0 auto;
    justify-content: center; padding: 11px 20px; border-radius: 999px; font-size: 13px; }
  .lp-sim__controls .lp-ctrl__ico { font-size: 11px; }

  /* Dashboard preview → iPhone 17 frame (same device as the workflow phone) +
     a screen-toggle dropdown instead of tabs (mirrors the real mobile dashboard). */
  .lp-app-phone { aspect-ratio: 9 / 17.5; max-width: 340px; margin: 0 auto; padding: 12px; border-radius: 50px;
    background: linear-gradient(155deg, #38383c, #050506 62%);
    box-shadow: 0 44px 90px -34px rgba(0,0,0,0.6), inset 0 0 0 2px rgba(255,255,255,0.07), inset 0 0 0 7px #000; }
  .lp-app-phone__island { display: block; position: absolute; top: 21px; left: 50%; transform: translateX(-50%);
    width: 86px; height: 25px; background: #000; border-radius: 14px; z-index: 40; }
  .lp-app { grid-template-columns: 1fr; grid-template-rows: auto 1fr; height: 100%; max-width: none; margin: 0;
    min-height: 0; border: 0; border-radius: 39px; box-shadow: none; }
  .lp-dots { display: none; }
  /* clear the dynamic island */
  .lp-app__side { flex-direction: row; align-items: center; gap: 10px; padding: 44px 13px 11px;
    position: relative; z-index: 6; }
  .lp-app__brand { padding: 0; flex: 0 0 auto; }
  .lp-app__brandtext { display: none; } /* logo stays; brand name still shows in the topbar strip */
  .lp-app__profile { display: none; }
  /* Screen switcher: a select-style pill that fills the bar */
  .lp-app__menu { position: relative; display: inline-flex; align-items: center; justify-content: space-between; gap: 8px;
    flex: 1 1 auto; margin-left: 4px; padding: 9px 12px; font: inherit; font-size: 12.5px; font-weight: 700;
    color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
    border-radius: 10px; cursor: pointer; }
  .lp-app__menu-chev { width: 16px; height: 16px; flex: none; transition: transform 0.25s ease; }
  .lp-app__side.is-open .lp-app__menu-chev { transform: rotate(180deg); }
  /* "tap here" hint — a finger that taps the switcher until it's first used */
  .lp-app__menu-hint { position: absolute; right: 8px; bottom: -16px; font-size: 22px; line-height: 1;
    pointer-events: none; transform-origin: 70% 0; animation: lpTapHint 1.4s ease-in-out infinite;
    filter: drop-shadow(0 3px 4px rgba(0,0,0,0.35)); }
  .lp-app__side.is-open .lp-app__menu-hint,
  .lp-app__menu.is-used .lp-app__menu-hint { display: none; }
  /* Nav collapses into a dropdown sheet under the switcher */
  .lp-app__nav { position: absolute; top: calc(100% - 2px); left: 13px; right: 13px; z-index: 30;
    flex-direction: column; gap: 4px; padding: 0 8px; background: #0e1512;
    border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
    box-shadow: 0 26px 54px -22px rgba(0,0,0,0.75);
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none; transform: translateY(-6px);
    transition: max-height 0.28s ease, padding 0.28s ease, opacity 0.2s ease, transform 0.28s ease; }
  .lp-app__side.is-open .lp-app__nav { max-height: 400px; padding: 8px; opacity: 1; pointer-events: auto;
    transform: translateY(0); }
  .lp-app__navitem { width: 100%; }
  .lp-app__body { padding: 16px; }
}
@media (max-width: 520px) {
  .lp-reasons, .lp-feature-grid { grid-template-columns: 1fr; }
  .lp-slots { grid-template-columns: repeat(3, 1fr); }
  .lp-feat-cta { flex-direction: column; text-align: center; }
  .lp-partners__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-partners__divider span { white-space: normal; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-flow__ball, .lp-flow__progress, .lp-step__bar, .lp-panel, .lp-phone__alert,
  .lp-step.is-active .lp-step__node, .lp-app__menu-hint,
  .lp-ripple, .lp-laser, .lp-goal__ball, .lp-check__path,
  .lp-slotcell, .lp-cell, .lp-flowlink__line, .lp-flowlink__arrow b,
  .lp-flowlink__arrow::before, .lp-flowlink__arrow::after { animation: none !important; transition: none !important; }
}

/* ── Demo video modal ── */
.lp-video[hidden] { display: none; }
.lp-video {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lp-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 14, 0.72);
  backdrop-filter: blur(4px);
  animation: lp-video-fade 0.2s ease;
}
.lp-video__dialog {
  position: relative;
  width: 100%;
  max-width: 880px;
  background: #000;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  animation: lp-video-pop 0.22s ease;
}
.lp-video__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lp-video__close:hover { background: #fff; }
.lp-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.lp-video__frame video,
.lp-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}
@keyframes lp-video-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lp-video-pop {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
body.lp-video-open { overflow: hidden; }
