/* StoreNoc marketing (8081) — premium SaaS landing, mobile-first */
html:has(.land-shell) {
  width: 100%;
  overflow-x: clip;
  --land-max: 72rem;
}
/*
 * Mobile menu open: lock page scroll. overflow:hidden alone breaks position:sticky on the mast after
 * the user has scrolled (Safari/Chrome); index.html pairs this class with body { position:fixed; top:-scrollY }.
 */
html.land-scroll-lock {
  overflow: hidden;
  height: 100%;
}
body.land-scroll-lock {
  overflow: hidden;
  overscroll-behavior: none;
}
/* Keep sticky mast + fixed menu above page content while locked */
body.land-scroll-lock .land-mast {
  z-index: 3000;
}
.land-main,
.land-hero,
.land-mast {
  /* Inherit from shared.css :root + body.app--panel (--pp-*, --app-*) */
  --lp-fg: var(--app-text, #0f1419);
  --lp-mut: var(--app-muted, #5c6b7a);
  --lp-brd: var(--pp-edge, #dde1e8);
  --lp-pri: var(--app-primary, #0d9488);
  --lp-pri-h: var(--app-primary-hover, #0c7f75);
  --lp-elev: var(--app-surface, #fff);
  --lp-sh: var(--app-shadow, 0 1px 2px rgba(15, 20, 40, 0.045));
  --lp-sh2: var(--app-shadow-md, 0 4px 20px rgba(15, 20, 40, 0.055));
  --lp-r: var(--app-radius, 10px);
  /* Match panel list/header inset */
  --land-px: var(--app-panel-pad-x, clamp(16px, 2.5vw, 28px));
}

/* Guest body: same canvas as my.storenoc (body.app--panel) */
body.app.app--panel.app--guest-landing {
  background: var(--pp-canvas, #ebedf0) !important;
  --app-page: var(--pp-canvas, #ebedf0);
  color: var(--app-text, #0f1419);
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  /* clip: horizontal edge bleed without the scroll-container side-effects of overflow-x:hidden (which breaks position:sticky on the mast) */
  overflow-x: clip;
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.land-shell {
  background: transparent;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Do not create a containing block that traps sticky; page scrolls on the viewport */
  overflow: visible;
  overflow-x: clip;
}

.land-mast,
.land-main,
.land-foot {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* ——— Masthead (logo | nav | auth) ——— */
.land-mast {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2000;
  flex: 0 0 auto;
  align-self: flex-start;
  width: 100%;
  background: var(--app-surface, #fff);
  border-bottom: 1px solid var(--pp-edge, #dde1e8);
  padding: 0;
  /* Subtle edge so content reads clearly as it scrolls under the bar */
  box-shadow: 0 1px 0 rgba(15, 20, 40, 0.05);
  /* Match panel: no glass blur on top bar */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: box-shadow 0.2s ease;
  /* Set by JS when mobile menu opens — height of bar in px (avoids wrong offset after scroll + sticky) */
  --land-open-mast-h: 3.75rem;
}
.land-mast.land-mast--open {
  box-shadow: 0 8px 32px rgba(15, 20, 40, 0.12);
}
@supports (padding: max(0px)) {
  .land-mast {
    padding-left: max(0px, env(safe-area-inset-left, 0));
    padding-right: max(0px, env(safe-area-inset-right, 0));
  }
}
.land-mast__bar {
  position: relative;
  z-index: 1;
  overflow: visible;
  isolation: isolate;
}
.land-mast__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(8, 15, 28, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
  cursor: default;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s;
  visibility: hidden;
}
.land-mast--open .land-mast__backdrop {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.land-mast__inner {
  position: relative;
  z-index: 2;
  isolation: isolate;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0.6rem var(--land-px);
  display: grid;
  align-items: center;
  box-sizing: border-box;
  min-height: 3.25rem;
  gap: 0.5rem 0.75rem;
  background: var(--app-surface, #fff);
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr) auto;
}
.land-mast__toggle,
.land-mast__spacer {
  display: none;
  flex: 0 0 auto;
}
.land-mast__toggle {
  -webkit-tap-highlight-color: transparent;
  place-items: center;
  place-content: center;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.15rem 0 0;
  padding: 0;
  border: 0;
  border-radius: var(--app-radius-sm, 7px);
  color: var(--lp-fg);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.land-mast__toggle:hover {
  background: var(--app-elev, #f4f5f8);
  color: var(--app-text, #0f1419);
}
.land-mast__toggle:focus-visible {
  outline: 2px solid var(--lp-pri, #0d9488);
  outline-offset: 2px;
}
.land-mast__toggle-bars {
  position: relative;
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.2s ease, top 0.2s ease, background 0.2s ease;
  transform-origin: center;
}
.land-mast__toggle-bars::before,
.land-mast__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.15rem;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.22s ease, top 0.2s ease;
  transform-origin: center;
}
.land-mast__toggle-bars::before {
  top: -6px;
}
.land-mast__toggle-bars::after {
  top: 6px;
}
.land-mast--open .land-mast__toggle-bars {
  background: transparent;
}
.land-mast--open .land-mast__toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.land-mast--open .land-mast__toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}
.land-mast__spacer {
  width: 2.5rem;
  min-width: 2.5rem;
  min-height: 0;
  justify-self: end;
}
.land-mast__menu {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.4rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.land-mast--open .land-mast__menu {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.land-mast__menu-in {
  max-height: min(72vh, calc(100dvh - 4rem));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0.35rem var(--land-px) 0.85rem;
  padding: 0.55rem 0.35rem 0.6rem;
  background: var(--app-surface, #fff);
  border: 1px solid var(--lp-brd, #dde1e8);
  border-top: 3px solid var(--lp-pri, #0d9488);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 4px 6px rgba(15, 20, 40, 0.04), 0 18px 48px rgba(15, 20, 40, 0.12);
}
.land-mast__menu-label {
  margin: 0 0.5rem 0.45rem 0.65rem;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-mut, #5c6b7a);
}
.land-mast__menu-a {
  display: block;
  padding: 0.7rem 0.95rem;
  margin: 0.1rem 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-fg);
  text-decoration: none;
  border-radius: var(--app-radius-sm, 7px);
  transition: background 0.15s ease, color 0.15s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(13, 148, 136, 0.15);
}
.land-mast__menu-a:hover,
.land-mast__menu-a:focus-visible {
  color: var(--app-link, #0a756c);
  background: var(--app-primary-soft, rgba(13, 148, 136, 0.11));
  text-decoration: none;
}
/* Touch taps keep :focus without :focus-visible — avoid “last link looks selected” (often “Why us”) */
.land-mast__menu-a:focus {
  outline: none;
}
.land-mast__menu-a:focus:not(:focus-visible) {
  color: var(--lp-fg);
  background: transparent;
}
.land-mast__menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.55rem;
  padding: 0.75rem 0.35rem 0.25rem;
  border-top: 1px solid var(--lp-brd, #e4e8ef);
}
.land-mast__menu-si {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lp-mut, #5c6b7a);
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  border-radius: var(--app-radius-sm, 7px);
  transition: background 0.15s ease, color 0.15s ease;
}
.land-mast__menu-si:hover {
  color: var(--app-link, #0a756c);
  background: var(--app-elev, #f8f9fc);
  text-decoration: none;
}
.land-mast__menu-up {
  min-height: 2.5rem;
  width: 100%;
  text-align: center;
  font-weight: 600;
  border-radius: var(--app-radius-sm, 7px);
  background: var(--app-primary, #0d9488) !important;
  color: #fff !important;
  border: 1px solid color-mix(in srgb, #0b8076 80%, #000) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(8, 70, 60, 0.12);
}
.land-mast__menu-up:hover {
  background: var(--app-primary-hover, #0c7f75) !important;
  color: #fff !important;
  text-decoration: none;
}
@media (min-width: 901px) {
  .land-mast__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr) auto;
  }
  .land-mast__nav,
  .land-mast__auth {
    display: flex;
  }
  .land-mast__menu {
    display: none !important;
  }
  .land-mast.land-mast--open {
    box-shadow: none;
  }
}
@media (max-width: 900px) {
  /* After scrolling, sticky + scroll-lock can still hide the bar; pin mast to the viewport while open */
  .land-mast.land-mast--open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 5000;
  }
  .land-mast__inner {
    grid-template-columns: 2.5rem 1fr 2.5rem;
  }
  .land-mast__toggle,
  .land-mast__spacer {
    display: inline-flex;
  }
  .land-mast__brand {
    justify-self: center;
    min-width: 0;
  }
  .land-mast__inner .land-mast__nav,
  .land-mast__inner .land-mast__auth {
    display: none;
  }
  .land-mast--open .land-mast__menu {
    display: block;
  }
  /*
    Menu top = pixel bottom of .land-mast__inner (set via --land-open-mast-top) so it stays flush after page scroll.
  */
  .land-mast__menu {
    position: fixed;
    top: var(--land-open-mast-top, var(--land-open-mast-h, 3.75rem));
    left: 0;
    right: 0;
    z-index: 7;
    /* Avoid negative max-height if a CSS var is wrong */
    max-height: max(5rem, calc(100dvh - var(--land-open-mast-top, var(--land-open-mast-h, 3.75rem)) - 0.35rem));
  }
  .land-mast__menu-in {
    max-height: min(72vh, max(4rem, calc(100dvh - var(--land-open-mast-top, var(--land-open-mast-h, 3.75rem)) - 1.25rem)));
  }
  .land-mast__inner {
    z-index: 10;
    position: relative;
  }
  /* Dim only the page behind the drawer — full-screen inset:0 sat above the bar in mobile WebKit */
  .land-mast.land-mast--open .land-mast__backdrop {
    inset: unset;
    position: fixed;
    top: max(
      calc(env(safe-area-inset-top, 0px) + 3rem),
      var(--land-open-mast-top, var(--land-open-mast-h, 3.75rem))
    );
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .land-mast.land-mast--open .land-mast__inner {
    z-index: 50;
  }
  .land-mast.land-mast--open .land-mast__menu {
    z-index: 60;
  }
  .land-mast__backdrop {
    z-index: 1;
  }
}
.land-mast__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lp-fg);
  text-decoration: none;
}
.land-mast__brand,
.land-mast__brand:hover {
  text-decoration: none;
}
.land-mast__brand .app-logo,
.land-mast__brand .logo {
  font-size: 1.1rem;
}
.land-mast__brand .app-logo__img {
  max-height: 32px;
  width: auto;
}
.land-mast__nav {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.1rem 0.25rem;
}
.land-mast__a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--app-muted, #5c6b7a);
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.land-mast__a:hover {
  color: var(--app-link, #0a756c);
  background: var(--app-primary-soft, rgba(13, 148, 136, 0.11));
  text-decoration: none;
}
.land-mast__auth {
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem 0.55rem;
}
.land-mast__si {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--app-muted, #5c6b7a);
  text-decoration: none;
  padding: 0.45rem 0.6rem;
  border-radius: var(--app-radius-sm, 7px);
}
.land-mast__si:hover {
  color: var(--app-link, #0a756c);
  text-decoration: none;
  background: var(--app-elev, #f8f9fc);
}
.land-mast__up {
  min-height: 2.4rem;
  font-weight: 600;
  border-radius: var(--app-radius-sm, 7px);
  background: var(--app-primary, #0d9488) !important;
  color: #fff !important;
  border: 1px solid color-mix(in srgb, #0b8076 80%, #000) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(8, 70, 60, 0.15);
}
.land-mast__up:hover {
  background: var(--app-primary-hover, #0c7f75) !important;
  text-decoration: none;
  color: #fff !important;
  filter: none;
}

.land-main {
  flex: 1 1 auto;
  min-width: 0;
}
/* In-page nav + sticky header: target sections don’t sit under the bar */
.land-main [id] {
  scroll-margin-top: calc(4.25rem + env(safe-area-inset-top, 0));
}

/* ——— Hero ——— */
.land-hero {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2rem) var(--land-px) clamp(2rem, 4vw, 3rem);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background: var(--pp-canvas, #ebedf0);
  border-bottom: 1px solid var(--pp-edge, #dde1e8);
}
.land-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 70% 50% at 100% 0%, rgba(13, 148, 136, 0.07), transparent 50%);
}
.land-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.14fr);
  gap: clamp(1.35rem, 3vw, 2.75rem);
  align-items: center;
  max-width: min(100%, var(--land-max, 72rem));
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 900px) {
  .land-hero__grid {
    grid-template-columns: 1fr;
    align-items: stretch;
    max-width: none;
  }
}
.land-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 1.35rem + 1.4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.1;
  color: var(--lp-fg);
  font-family: "Instrument Sans", "DM Sans", system-ui, sans-serif;
  max-width: 20ch;
}
@media (max-width: 900px) {
  .land-hero h1 { max-width: none; }
}
.land-hero__grad {
  color: var(--app-primary, #0d9488);
  font-weight: 800;
}
.land-hero__lede {
  margin: 0 0 1.1rem;
  font-size: clamp(0.95rem, 0.88rem + 0.18vw, 1.05rem);
  line-height: 1.55;
  color: var(--lp-mut);
  max-width: 28rem;
}
.land-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1rem;
  align-items: center;
}
.land-hero__btnp {
  min-height: 2.6rem;
  padding: 0 1.25rem;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(8, 70, 60, 0.12);
  border-radius: var(--app-radius, 10px);
}
.land-hero__fine {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--app-muted, #5c6b7a);
  letter-spacing: 0.01em;
  max-width: 30rem;
}
.land-hero__copy {
  min-width: 0;
  position: relative;
}

/* Storefront mock */
.land-preview {
  margin: 0;
  min-width: 0;
}
.land-preview__shell {
  position: relative;
  border-radius: 12px;
  padding: 0;
  background: transparent;
  box-shadow: var(--app-shadow-md, 0 4px 20px rgba(15, 20, 40, 0.055));
  border: 1px solid var(--pp-edge, #dde1e8);
  overflow: hidden;
}
.land-preview__chips {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  margin: 0;
  padding: 0.2rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--app-muted, #5c6b7a);
  background: var(--app-elev, #f8f9fc);
  border: 1px solid var(--app-border, #e4e8ef);
  border-radius: 999px;
  z-index: 1;
}
.land-preview__inner {
  border-radius: 11px;
  overflow: hidden;
  background: var(--app-surface, #fff);
  border: none;
  box-shadow: none;
}
.land-preview__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.7rem 0.45rem 0.5rem;
  background: var(--app-elev, #f8f9fc);
  border-bottom: 1px solid var(--app-border, #e4e8ef);
}
.land-preview__brand {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--app-text, #0f1419);
  text-align: center;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.land-preview__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--app-muted, #5c6b7a);
  border-radius: 10px;
  flex-shrink: 0;
}
.land-preview__bar-actions {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-shrink: 0;
}
.land-preview__content {
  padding: 0.85rem 0.75rem 0.45rem;
}
.land-preview__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0 0 0.6rem 0.1rem;
}
.land-preview__h {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--app-text, #0f1419);
}
.land-preview__view-all {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--app-link, #0a756c);
  white-space: nowrap;
}
.land-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.land-preview__grid--catalog {
  align-items: stretch;
}
@media (max-width: 360px) {
  .land-preview__grid { grid-template-columns: 1fr; }
}
.land-pcard {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--app-surface, #fff);
  border-radius: 10px;
  border: 1px solid var(--app-border, #e4e8ef);
  box-shadow: var(--lp-sh);
  overflow: hidden;
  color: var(--app-text, #0f1419);
  transition: box-shadow 0.2s ease, border-color 0.2s;
  text-align: start;
}
@media (hover: hover) and (pointer: fine) {
  .land-pcard:hover {
    box-shadow: var(--app-shadow-md, 0 4px 20px rgba(15, 20, 40, 0.055));
    border-color: var(--app-border-strong, #cdd5e0);
  }
}
.land-pcard__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--pp-elev, #eef1f5);
  overflow: hidden;
}
.land-pcard__ph {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e4e9ef 0%, #f2f4f8 45%, #dce3ec 100%);
}
.land-pcard__ph--alt {
  background: linear-gradient(135deg, #d8f0ec 0%, #eef8f6 50%, #c5e8e2 100%);
}
.land-pcard__ph--mid {
  background: linear-gradient(135deg, #dde8f5 0%, #eef3fb 45%, #c9d8ee 100%);
}
.land-pcard__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.4) 48%, transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}
.land-pcard__body { padding: 0.55rem 0.65rem 0.6rem; }
.land-pcard__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--app-muted, #5c6b7a);
}
.land-pcard__title {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 420px) { .land-pcard__title { font-size: 0.78rem; } }
.land-pcard__excerpt {
  margin: 0 0 0.4rem;
  font-size: 0.62rem;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--app-muted, #5c6b7a);
}
.land-pcard__price {
  margin: 0 0 0.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--app-text, #0f1419);
}
.land-pcard__num { font-weight: 700; }
.land-pcard__footer {
  margin: 0.1rem 0 0;
  padding-top: 0.4rem;
  border-top: 1px solid var(--app-border, #e4e8ef);
}
.land-pcard__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--app-link, #0a756c);
  letter-spacing: 0.01em;
}
.land-pcard__cta-arr { font-weight: 700; opacity: 0.9; }
.land-preview__foot {
  margin: 0;
  padding: 0.5rem 0.75rem 0.7rem;
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--app-muted, #5c6b7a);
  text-align: center;
  background: var(--app-elev, #f8f9fc);
  border-top: 1px solid var(--app-border, #e4e8ef);
}

/* Hero store preview — larger device mock, 3-up catalog */
.land-preview--hero {
  margin: 0;
  min-width: 0;
  width: 100%;
}
@media (max-width: 900px) {
  .land-preview--hero {
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 36rem);
  }
}
@media (min-width: 901px) {
  .land-preview--hero {
    margin-left: auto;
    margin-right: 0;
    max-width: none;
  }
}
.land-preview__device {
  padding: 0.55rem;
  border-radius: 14px;
  background: linear-gradient(155deg, #eceef3 0%, #dadfe8 55%, #cfd5e0 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 12px 28px rgba(15, 20, 40, 0.08),
    0 2px 6px rgba(15, 20, 40, 0.04);
}
.land-preview__shell--hero {
  border-radius: 10px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--pp-edge, #dde1e8) 85%, #8899aa);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}
.land-preview--hero .land-preview__inner {
  border-radius: 0;
}
.land-preview__bar--hero {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.45rem;
  padding: 0.45rem 0.65rem 0.45rem 0.55rem;
  background: linear-gradient(180deg, #fafbfc 0%, #eef1f5 100%);
  border-bottom: 1px solid var(--app-border, #e4e8ef);
}
.land-preview__win-dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.land-preview__win-d {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd;
  flex-shrink: 0;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.1) inset;
}
.land-preview__win-dots .land-preview__win-d:nth-child(1) {
  background: #ff5f57;
}
.land-preview__win-dots .land-preview__win-d:nth-child(2) {
  background: #febc2e;
}
.land-preview__win-dots .land-preview__win-d:nth-child(3) {
  background: #28c840;
}
.land-preview__bar--hero .land-preview__brand {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--app-text, #0f1419);
}
.land-preview__win-sp {
  width: 2.75rem;
  flex-shrink: 0;
}
.land-preview__content--hero {
  padding: 0.85rem 0.75rem 0.95rem;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}
.land-preview__store-label {
  margin: 0 0 0.55rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--app-muted, #5c6b7a);
}
.land-preview__grid--hero {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
@media (max-width: 380px) {
  .land-preview__grid--hero {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.land-pcard--hero {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--app-border, #e4e8ef);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 20, 40, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .land-pcard--hero:hover {
    border-color: color-mix(in srgb, var(--app-primary, #0d9488) 35%, var(--app-border, #e4e8ef));
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.08);
  }
}
.land-pcard--hero .land-pcard__media--hero {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--pp-elev, #eef1f5);
  overflow: hidden;
}
.land-pcard--hero .land-pcard__shine {
  pointer-events: none;
}
.land-pcard--hero .land-pcard__body--hero {
  padding: 0.55rem 0.55rem 0.58rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.land-pcard--hero .land-pcard__title--hero {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--app-text, #0f1419);
  line-height: 1.2;
}
.land-pcard--hero .land-pcard__price--hero {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--app-primary, #0d9488);
}

/* ——— Sections ——— */
.land-section,
.land-section--tight {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) var(--land-px);
  max-width: none;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.land-section--tight { padding-top: 2.25rem; }
/* Align main sections to one readable column width */
.land-main > section.land-section,
.land-section--alt .land-section {
  max-width: var(--land-max, 72rem);
  margin-left: auto;
  margin-right: auto;
}
.land-section h2,
.land-section--tight h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.28rem, 0.9rem + 0.6vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--app-text, #0f1419);
  font-family: "Instrument Sans", "DM Sans", system-ui, sans-serif;
  text-align: center;
}
.land-section--tight h2 { text-align: start; }
#why-us .land-why__h { text-align: start; }
.land-section__sub {
  margin: 0 0 1.75rem;
  color: var(--app-muted, #5c6b7a);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 46rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works .land-section__sub,
#how-it-works h2,
#apis .land-section__sub,
#apis h2,
#pricing h2,
#pricing .land-section__sub,
#why-us .land-section__sub,
#why-us h2,
#why-us .land-why__lede {
  text-align: start;
  margin-left: 0;
  margin-right: 0;
}

.land-section--alt {
  background: var(--pp-elev, #f4f5f7);
  border-top: 1px solid var(--pp-edge, #dde1e8);
  border-bottom: 1px solid var(--pp-edge, #dde1e8);
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
  width: 100%;
}
.land-section--alt .land-section { padding: 0 var(--land-px); }
.land-kf {
  background: var(--app-surface, #fff);
  border-top: 1px solid var(--pp-edge, #dde1e8);
  border-bottom: 1px solid var(--pp-edge, #dde1e8);
}
.land-kf .land-section--tight { max-width: none; width: 100%; }

.land-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem 1.25rem;
}
@media (max-width: 880px) {
  .land-grid3 { grid-template-columns: 1fr; }
}
.land-card {
  background: var(--app-surface, #fff);
  border: 1px solid var(--pp-edge, #dde1e8);
  border-radius: var(--app-radius, 12px);
  padding: 1.25rem 1.2rem 1.3rem;
  box-shadow: var(--app-shadow, 0 1px 2px rgba(15, 20, 40, 0.045));
  transition: box-shadow 0.2s, border-color 0.2s;
}
.land-card--lift:hover {
  box-shadow: var(--app-shadow-md, 0 4px 20px rgba(15, 20, 40, 0.055));
  border-color: var(--app-border-strong, #cdd5e0);
}
.land-card__ic {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--app-primary, #0d9488);
  background: var(--app-primary-soft, rgba(13, 148, 136, 0.11));
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, #0d9488 20%, #dde1e8);
  margin-bottom: 0.9rem;
}
.land-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--app-text, #0f1419);
}
.land-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--app-muted, #5c6b7a);
}

.land-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 0.5rem;
}
@media (max-width: 700px) {
  .land-grid2 { grid-template-columns: 1fr; }
}
.land-brick {
  background: var(--app-surface, #fff);
  border: 1px solid var(--pp-edge, #dde1e8);
  border-radius: 12px;
  padding: 1.25rem 1.3rem;
  box-shadow: var(--app-shadow, 0 1px 2px rgba(15, 20, 40, 0.045));
}
.land-brick h3 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--app-text, #0f1419);
}
.land-brick p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--app-muted, #5c6b7a);
}

.land-kf__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem 1rem;
}
@media (max-width: 800px) {
  .land-kf__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .land-kf__grid { grid-template-columns: 1fr; }
}
.land-kf__item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--app-text, #0f1419);
  background: var(--app-surface, #fff);
  border: 1px solid var(--pp-edge, #dde1e8);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}
.land-kf__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--app-primary, #0d9488);
  margin-top: 0.35rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--app-primary-soft, rgba(13, 148, 136, 0.2));
}

.land-sec__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
@media (max-width: 800px) {
  .land-sec__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .land-sec__grid { grid-template-columns: 1fr; }
}
.land-sec__item {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--app-text, #0f1419);
  background: var(--app-surface, #fff);
  border: 1px solid var(--pp-edge, #dde1e8);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  position: relative;
  padding-left: 1.5rem;
}
.land-sec__item::before {
  content: "✓";
  position: absolute;
  left: 0.55rem;
  top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ok, #059669);
}
.land-sec__grid--tight {
  gap: 0.65rem;
}

.land-why {
  background: var(--pp-elev, #f4f5f7);
  color: var(--app-text, #0f1419);
  border-top: 1px solid var(--pp-edge, #dde1e8);
  /* Do not add horizontal padding here — .land-why__inner (land-section) applies var(--land-px) once */
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}
.land-why__inner {
  max-width: min(100%, var(--land-max, 72rem));
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}
.land-why__h {
  text-align: center;
  color: var(--app-text, #0f1419);
  font-size: clamp(1.28rem, 0.9rem + 0.6vw, 1.6rem);
  margin: 0 0 0.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: "Instrument Sans", "DM Sans", system-ui, sans-serif;
  line-height: 1.15;
}
.land-why__lede {
  max-width: min(100%, 60rem);
  margin-bottom: 1.5rem;
}
.land-why__lede strong { color: var(--app-text, #0f1419); }
.land-why__cards {
  margin: 0 0 0.5rem;
}
.land-why__trust {
  margin-top: 1.75rem;
  padding: 1.2rem 1.15rem 1.3rem;
  background: var(--app-surface, #fff);
  border: 1px solid var(--pp-edge, #dde1e8);
  border-radius: 12px;
  box-shadow: var(--lp-sh);
  box-sizing: border-box;
}
.land-why__trust .land-why__subh {
  margin: 0 0 0.4rem;
}
.land-why__trust .land-why__trust-lede {
  margin: 0 0 1.05rem;
}
.land-why__subh {
  font-size: clamp(1.05rem, 0.92rem + 0.35vw, 1.2rem);
  font-weight: 800;
  text-align: start;
  color: var(--app-text, #0f1419);
  font-family: "Instrument Sans", "DM Sans", system-ui, sans-serif;
  letter-spacing: -0.02em;
}
.land-why__trust-lede {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--app-muted, #5c6b7a);
  margin: 0 0 0.9rem;
}
.land-why--us .land-sec__grid {
  margin-bottom: 0;
}

.land-foot {
  position: relative;
  margin-top: auto;
  padding: 0 var(--land-px);
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0));
  background: var(--pp-canvas, #ebedf0);
  border-top: 1px solid var(--pp-edge, #dde1e8);
  width: 100%;
  box-sizing: border-box;
}
.land-foot::before {
  content: "";
  display: block;
  height: 2px;
  margin: 0 calc(-1 * var(--land-px));
  margin-bottom: 0;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--app-primary, #0d9488) 65%, transparent),
    color-mix(in srgb, var(--app-primary, #0d9488) 35%, transparent)
  );
}
.land-foot__inner {
  max-width: min(100%, var(--land-max, 72rem));
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  padding: 1.15rem 0 1.35rem;
}
@media (min-width: 560px) {
  .land-foot__inner {
    justify-content: space-between;
  }
}
.land-foot__meta {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--app-muted, #5c6b7a);
  text-align: center;
  max-width: 100%;
}
@media (min-width: 560px) {
  .land-foot__meta {
    text-align: start;
  }
}
.land-foot__copy {
  font-weight: 600;
  color: var(--app-text, #0f1419);
  letter-spacing: -0.01em;
}
.land-foot__dot {
  padding: 0 0.2rem;
  font-weight: 500;
  opacity: 0.55;
  user-select: none;
}
.land-foot__tag {
  font-weight: 400;
}
.land-foot__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.38rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--app-link, #0a756c);
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--app-primary, #0d9488) 28%, var(--pp-edge, #dde1e8));
  background: var(--app-surface, #fff);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
@media (max-width: 559px) {
  .land-foot__meta {
    width: 100%;
  }
  .land-foot__cta {
    width: min(100%, 16rem);
  }
}
.land-foot__cta:hover {
  background: color-mix(in srgb, var(--app-primary-soft, rgba(13, 148, 136, 0.11)) 70%, #fff);
  border-color: color-mix(in srgb, var(--app-primary, #0d9488) 45%, var(--pp-edge, #dde1e8));
  color: var(--app-primary-hover, #0c7f75);
  text-decoration: none;
}
.land-foot__cta:focus-visible {
  outline: 2px solid var(--app-primary, #0d9488);
  outline-offset: 2px;
}

.land-pricing-wrap {
  border: 1px solid var(--pp-edge, #dde1e8);
  border-radius: 10px;
  overflow: auto;
  background: var(--app-surface, #fff);
  margin-top: 0.5rem;
  box-shadow: var(--app-shadow-md, 0 4px 20px rgba(15, 20, 40, 0.055));
}
.land-pricing {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.land-pricing th,
.land-pricing td {
  border-bottom: 1px solid var(--app-border, #e4e8ef);
  padding: 0.7rem 1rem;
  text-align: left;
}
.land-pricing thead th {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--app-muted, #5c6b7a);
  background: var(--pp-elev, #f4f5f7);
  font-weight: 700;
}
.land-pricing .num {
  text-align: right;
  font-weight: 800;
  color: var(--app-primary, #0d9488);
  font-variant-numeric: tabular-nums;
}
.land-pricing-add {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--app-muted, #5c6b7a);
  max-width: 40rem;
}
.land-pricing-add__k {
  font-weight: 700;
  color: var(--app-text, #0f1419);
  white-space: nowrap;
}
.land-pricing-add strong { color: var(--app-text, #0f1419); font-weight: 700; }

.land-cta {
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(2.75rem, 5vw, 4rem) var(--land-px);
  background: var(--app-primary, #0d9488);
  background-image: linear-gradient(180deg, var(--app-primary, #0d9488) 0%, var(--app-primary-hover, #0c7f75) 100%);
  border-top: 1px solid color-mix(in srgb, #000 12%, #0b8076);
  color: #fff;
}
.land-cta h2 {
  font-size: clamp(1.25rem, 1.1rem + 0.4vw, 1.5rem);
  margin: 0 auto 0.5rem;
  max-width: min(36rem, 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: "Instrument Sans", "DM Sans", system-ui, sans-serif;
}
.land-cta p:not(.land-cta__row) {
  margin: 0.4rem auto 0;
  color: color-mix(in srgb, #fff 80%, #000);
  font-size: 0.9rem;
  max-width: min(36rem, 100%);
}
.land-cta__row {
  margin: 1.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
}
.land-cta__primary {
  min-height: 2.6rem;
  padding: 0 1.35rem;
  color: #0a756c !important;
  font-weight: 600;
  background: #fff !important;
  border: 1px solid #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 6px rgba(0, 50, 45, 0.2);
  border-radius: 10px;
}
.land-cta__primary:hover {
  color: #085e56 !important;
  background: #f8fffe !important;
  text-decoration: none !important;
  filter: none;
}
.land-cta__ghost {
  min-height: 2.6rem;
  padding: 0 1.1rem;
  background: transparent !important;
  color: #fff !important;
  border: 1px solid color-mix(in srgb, #fff 50%, #0a756c) !important;
  font-weight: 600;
  border-radius: 10px;
}
.land-cta__ghost:hover {
  background: color-mix(in srgb, #fff 10%, #0a756c) !important;
  text-decoration: none !important;
  color: #fff !important;
}

/* Marketing buttons: match panel primary (storenoc-marketing + .btn) */
.land-hero .sn-landing__btn-primary {
  background: var(--app-primary, #0d9488) !important;
  color: #fff !important;
  border: 1px solid var(--app-primary-hover, #0c7f75) !important;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(5, 60, 50, 0.12);
}
.land-hero .sn-landing__btn-primary:hover {
  background: var(--app-primary-hover, #0c7f75) !important;
  color: #fff !important;
}
.land-hero .sn-landing__btn-secondary {
  border: 1px solid var(--app-border-strong, #cdd5e0) !important;
  color: var(--app-text, #0f1419) !important;
  background: var(--app-surface, #fff) !important;
  border-radius: 10px;
  min-height: 2.75rem;
}
.land-hero .sn-landing__btn-secondary:hover {
  background: var(--app-elev, #f8f9fc) !important;
  text-decoration: none !important;
  color: var(--app-text, #0f1419) !important;
}
