html { scroll-behavior: smooth; }
#top, #problem, #security, #demo { scroll-margin-top: 80px; }

    /* ─── Reset & base (box-sizing + html/body margins via Tailwind preflight). */
    body {
      background: var(--stone-50);
      color: var(--stone-800);
      font-family: var(--body);
      -webkit-font-smoothing: antialiased;
      line-height: 1.5;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; }
    button { font-family: inherit; cursor: pointer; }

    .lp-skip {
      position: absolute; left: -9999px;
      background: #fff; padding: 8px 12px; border-radius: 8px;
      border: 1px solid var(--stone-200);
      font-size: 13px; font-weight: 600; color: var(--ink);
    }
    .lp-skip:focus { left: 12px; top: 12px; z-index: 100; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto !important; }
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
      }
    }

    a:focus-visible, button:focus-visible, input:focus-visible,
    label:focus-within input {
      outline: 2px solid var(--teal);
      outline-offset: 2px;
    }

    /* ─── Layout ───────────────────────────────────────────────────── */

    html { overflow-x: clip; }
    .lp-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding-inline: 28px;
      width: 100%;
    }

    /* ─── Header / nav ─────────────────────────────────────────────── */
    .lp-header {
      position: sticky; top: 0; z-index: 50;
      background: rgba(255,255,255,0.92);
      backdrop-filter: saturate(160%) blur(10px);
      -webkit-backdrop-filter: saturate(160%) blur(10px);
      border-bottom: 1px solid var(--stone-200);
    }
    .lp-header-inner {
      display: flex; align-items: center; gap: 24px;
      padding-block: 14px;
    }
    .lp-logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }

    .lp-logo img { height: 30px; }
    :where(.lp-logo, .si-logo, .pp-logo, .fp-logo, .sp-logo) img { height: 22px; width: auto; }
    .lp-nav { display: flex; gap: 22px; margin-left: 12px; }
    .lp-nav a {
      font-size: 13px; font-weight: 500; color: var(--stone-600);
      text-decoration: none; padding-block: 12px;
    }
    .lp-nav a:hover { color: var(--ink); }
    .lp-spacer { flex: 1; }
    .lp-owner-link {
      font-size: 13px; font-weight: 600; color: var(--stone-600);
      text-decoration: none;
      padding: 10px 14px; border-radius: 8px;
      display: inline-flex; align-items: center; gap: 7px;
    }
    .lp-owner-link:hover { color: var(--ink); }

    /* ─── Buttons ──────────────────────────────────────────────────── */
    .lp-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 26px;
      font-family: var(--body); font-size: 15px; font-weight: 600;
      border-radius: 12px; border: none;
      text-decoration: none; cursor: pointer;
      transition: transform 0.06s ease;
    }
    .lp-btn:active { transform: translateY(1px); }
    .lp-btn-primary {
      background: var(--teal); color: #fff;
      box-shadow: var(--shadow-cta);
    }
    .lp-btn-primary:hover { background: var(--teal-dark); }
    .lp-btn-sm { padding: 10px 18px; font-size: 13px; border-radius: 10px; }
    .lp-btn-full { width: 100%; justify-content: center; }
    .lp-btn-secondary {
      background: #fff; color: var(--teal);
      border: 1px solid var(--teal);
      box-shadow: none;
    }

    /* ─── Reusable atoms ───────────────────────────────────────────── */
    .lp-pill {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 5px 12px; border-radius: 999px;
      background: var(--teal-tint); border: 1px solid var(--teal-edge);
      color: var(--teal);
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
    }
    :where(.lp-eyebrow, .si-card-eyebrow) {
      font-size: 11px; font-weight: 700; color: var(--stone-500);
      letter-spacing: 0.08em; text-transform: uppercase;
    }
    :where(.lp-dot, .si-dot) {
      width: 6px; height: 6px; border-radius: 3px;
      background: var(--teal); display: inline-block; flex-shrink: 0;
    }
    .lp-dot-success { background: var(--success); }
    .lp-badge {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 2px 8px; border-radius: 999px;
      background: var(--stone-100); color: var(--stone-700);
      border: 1px solid var(--stone-200);
      font-size: 10px; font-weight: 600; letter-spacing: 0.02em;
      white-space: nowrap;
    }
    :where(.lp-badge-brand, .si-badge--brand) { background: var(--teal-tint); color: var(--teal-dark); border-color: var(--teal-edge); }
    .lp-badge-success { background: var(--success-bg);   color: var(--success);   border-color: var(--success-edge); }
    .lp-badge-info    { background: #F0F9FF;             color: #0369A1;          border-color: #BFDFF1; }

    /* ─── Hero ─────────────────────────────────────────────────────── */
    .lp-hero {
      padding: 96px 0 80px;
      background: var(--stone-50);
      border-bottom: 1px solid var(--stone-100);
    }
    .lp-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 64px; align-items: center;
    }
    .lp-h1 {
      font-family: var(--display);
      font-size: 76px; font-weight: 700; letter-spacing: -0.035em;
      line-height: 1.02; color: var(--ink);
      margin: 22px 0 0; text-wrap: pretty;
    }
    .lp-h1 .lp-teal { color: var(--teal); }
    .lp-lede {
      margin-top: 22px; font-size: 18px; line-height: 1.55;
      color: var(--stone-600); max-width: 460px; text-wrap: pretty;
    }
    .lp-hero-cta {
      margin-top: 32px;
      display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    }
    .lp-cta-note {
      font-size: 13px; color: var(--stone-500);
      display: inline-flex; align-items: center; gap: 6px;
    }
    .lp-trust-strip {
      margin-top: 44px; padding-top: 24px;
      border-top: 1px solid var(--stone-200);
      display: flex; gap: 36px; flex-wrap: wrap;
    }
    .lp-trust-value {
      font-family: var(--display); font-size: 15px; font-weight: 600;
      color: var(--ink); margin-top: 4px; letter-spacing: -0.01em;
    }
    .lp-hero-anchor {
      position: relative; min-width: 0; justify-self: end;
      overflow: clip;
    }

    .lp-hero-anchor > * { min-width: 0; }
    .lp-hero-anchor-card { min-width: 0; max-width: 100%; }
    .lp-hero-anchor-bg {
      position: absolute; inset: -32px -28px;
      background: radial-gradient(60% 60% at 70% 30%, var(--teal-tint-2) 0%, transparent 60%);
      z-index: 0;
    }
    .lp-hero-anchor-card {
      position: relative; z-index: 1;
    }
    .lp-hero-toast {
      position: absolute; right: -28px; bottom: -20px; z-index: 2;
    }

    /* ─── Card primitive (used by vignettes) ──────────────────────── */
    .lp-card {
      background: #fff; border-radius: 16px;
      border: 1px solid var(--stone-200);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      max-width: 100%;
    }

    /* ─── Today's schedule vignette ───────────────────────────────── */

    .lp-vignette { width: 400px; max-width: 100%; }
    :where(.lp-vignette-header, .si-card-header) {
      padding: 14px 16px 12px;
      border-bottom: 1px solid var(--stone-200);
      display: flex; align-items: baseline; justify-content: space-between;
    }
    :where(.lp-vignette-title, .si-card-title) {
      font-family: var(--display); font-size: 17px; font-weight: 700;
      color: var(--ink); margin-top: 2px; letter-spacing: -0.015em;
    }
    :where(.lp-schedule-row, .si-row) {
      display: grid; grid-template-columns: 52px 28px 1fr auto;
      gap: 12px; align-items: center;
      padding: 11px 14px;
      border-bottom: 1px solid var(--stone-100);
    }
    :where(.lp-schedule-row, .si-row):last-child { border-bottom: none; }
    :where(.lp-schedule-row--inroom, .si-row--inroom) { background: var(--teal-tint); }
    :where(.lp-schedule-time, .si-time) {
      font-family: ui-monospace, Menlo, monospace;
      font-size: 12px; font-weight: 600; color: var(--stone-700);
      font-variant-numeric: tabular-nums;
    }
    :where(.lp-avatar, .si-avatar) {
      width: 26px; height: 26px; border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      font-family: var(--display); font-weight: 700;
      color: var(--stone-700); font-size: 11px; flex-shrink: 0;
    }
    .lp-avatar--cat    { background: var(--avatar-cat-bg);    border: 1.5px solid var(--avatar-cat-edge); }
    .lp-avatar--dog    { background: var(--avatar-dog-bg);    border: 1.5px solid var(--avatar-dog-edge); }
    .lp-avatar--rabbit { background: var(--avatar-rabbit-bg); border: 1.5px solid var(--avatar-rabbit-edge); }
    .lp-schedule-meta {
      min-width: 0;
    }
    :where(.lp-schedule-name, .si-row-name) {
      font-size: 13px; font-weight: 600; color: var(--stone-800);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .lp-schedule-name .lp-muted { color: var(--stone-400); font-weight: 400; }
    :where(.lp-schedule-sub, .lp-toast-sub, .si-row-sub) {
      font-size: 11px; color: var(--stone-500); margin-top: 1px;
    }

    .lp-toast {
      width: 260px; max-width: 100%; padding: 14px 16px; border-radius: 14px;
      background: #fff; border: 1px solid var(--stone-200);
      box-shadow: var(--shadow-card);
      display: flex; align-items: center; gap: 12px;
    }
    .lp-toast-icon {
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--success-bg); color: var(--success);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .lp-toast-title { font-size: 13px; font-weight: 600; color: var(--stone-800); }

    /* ─── Owner band ──────────────────────────────────────────────── */
    .lp-owner-band {
      background: #fff;
      border-bottom: 1px solid var(--stone-100);
    }
    .lp-owner-band-inner {
      display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
      padding-block: 14px;
    }
    .lp-owner-band-text {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--stone-700);
    }
    .lp-owner-band-text strong { color: var(--ink); font-weight: 700; }
    .lp-owner-band-text .lp-muted { color: var(--stone-500); }
    .lp-paw {
      width: 28px; height: 28px; border-radius: 50%;
      background: #FBE3D8; border: 1.5px solid #E8B59A;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 14px;
    }
    .lp-owner-band-cta {
      font-size: 13px; font-weight: 600; color: var(--teal);
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 6px;
      margin-left: auto;
    }
    .lp-owner-band-cta:hover { color: var(--teal-dark); }

    /* ─── Section heads ──────────────────────────────────────────── */
    .lp-section { padding: 104px 0; }
    .lp-section--white { background: #fff; }
    .lp-section--stone { background: var(--stone-50);
      border-top: 1px solid var(--stone-100);
      border-bottom: 1px solid var(--stone-100); }
    .lp-section-head { max-width: 680px; margin-bottom: 56px; }
    .lp-h2 {
      font-family: var(--display); font-size: 48px; font-weight: 700;
      letter-spacing: -0.025em; line-height: 1.08; color: var(--ink);
      margin: 16px 0 0; text-wrap: pretty;
    }
    .lp-section-lede {
      margin-top: 16px; font-size: 17px; line-height: 1.6;
      color: var(--stone-600); max-width: 560px; text-wrap: pretty;
    }

    /* ─── Problem shifts ─────────────────────────────────────────── */
    .lp-shift-grid {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }
    .lp-shift-card {
      padding: 32px;
      background: var(--stone-50);
      border: 1px solid var(--stone-200);
      border-radius: 20px;
      display: flex; flex-direction: column;
    }
    .lp-shift-before-label {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 700; color: var(--stone-400);
      text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px;
    }
    .lp-shift-before-label::before {
      content: ''; width: 4px; height: 4px; border-radius: 2px;
      background: var(--stone-300);
    }
    .lp-shift-before {
      font-size: 13px; color: var(--stone-400); line-height: 1.5;
      margin-bottom: 18px;
    }
    .lp-shift-before-text {
      text-decoration: line-through;
      text-decoration-color: var(--stone-300);
      text-decoration-thickness: 1px;
    }
    .lp-h3 {
      font-family: var(--display); font-size: 26px; font-weight: 700;
      letter-spacing: -0.02em; line-height: 1.1; color: var(--ink);
      margin: 0 0 12px;
    }
    .lp-shift-body {
      font-size: 14px; line-height: 1.6; color: var(--stone-700);
      margin: 0; text-wrap: pretty;
    }
    .lp-shift-vignette {
      margin-top: 24px; padding-top: 24px;
      border-top: 1px solid var(--stone-200);
      display: flex; justify-content: center; align-items: flex-end;
      min-height: 240px;

      overflow: clip;
    }
    .lp-shift-vignette > * { transform: scale(0.85); transform-origin: center bottom; }

    @media (max-width: 1024px) {
      .lp-shift-vignette > * { transform: none; }
    }

    /* ─── Mini portal vignette (mobile phone shape) ──────────────── */
    .lp-phone {
      width: 220px; background: #fff; border-radius: 28px;
      border: 6px solid var(--stone-800); overflow: hidden;
      box-shadow: 0 16px 32px -8px rgba(15,23,42,0.20);
    }

    :where(.lp-phone-status, .pp-phone-status) {
      height: 22px; display: flex; align-items: center;
      justify-content: space-between; padding: 0 14px;
      font-size: 10px; font-weight: 700; color: var(--ink);
    }
    :where(.lp-phone-notch, .pp-phone-notch) { width: 40px; height: 12px; background: var(--stone-800); border-radius: 8px; }
    :where(.lp-phone-body, .pp-phone-body) { padding: 8px 14px 14px; }
    :where(.lp-phone-eyebrow, .pp-phone-eyebrow) {
      font-size: 10px; font-weight: 700; color: var(--teal);
      letter-spacing: 0.08em; text-transform: uppercase;
    }
    :where(.lp-phone-title, .pp-phone-title) {
      font-family: var(--display); font-size: 16px; font-weight: 700;
      color: var(--ink); margin-top: 4px; letter-spacing: -0.015em;
    }
    :where(.lp-phone-card, .pp-phone-card) {
      margin-top: 12px; padding: 12px;
      background: var(--teal-tint); border: 1px solid var(--teal-edge);
      border-radius: 12px;
    }
    :where(.lp-phone-row, .pp-phone-row) {
      display: flex; align-items: center; gap: 8px;
    }
    :where(.lp-phone-row-name, .pp-phone-row-name) { font-size: 11px; font-weight: 700; color: var(--ink); }
    :where(.lp-phone-row-sub, .pp-phone-row-sub) { font-size: 9px; color: var(--stone-500); }
    :where(.lp-phone-notice, .pp-phone-notice) {
      margin-top: 8px; padding: 10px;
      background: var(--stone-50); border: 1px solid var(--stone-100);
      border-radius: 10px;
      font-size: 10px; color: var(--stone-700); line-height: 1.4;
    }
    :where(.lp-phone-notice, .pp-phone-notice) strong { color: var(--ink); }

    /* ─── Stat pills vignette ────────────────────────────────────── */
    .lp-stats {
      width: 320px;
      max-width: 100%;
    }
    .lp-stats-grid {
      padding: 14px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    }
    .lp-stat {
      padding: 12px;
      background: var(--stone-50); border: 1px solid var(--stone-100);
      border-radius: 10px;
    }
    .lp-stat-label {
      font-size: 10px; font-weight: 700; color: var(--stone-500);
      text-transform: uppercase; letter-spacing: 0.08em;
    }
    .lp-stat-value {
      font-family: var(--display); font-size: 22px; font-weight: 700;
      color: var(--ink); margin-top: 4px;
      font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
    }
    .lp-stat-delta {
      font-size: 10px; color: var(--teal); font-weight: 600; margin-top: 2px;
    }
    .lp-card-eyebrow {
      padding: 10px 16px; border-bottom: 1px solid var(--stone-200);
      font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--teal);
      background: var(--stone-50);
      display: flex; align-items: center; gap: 8px;
    }

    /* ─── Security ──────────────────────────────────────────────── */
    .lp-security-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
      gap: 64px; align-items: start;
    }
    .lp-promise {
      margin-top: 28px; padding: 18px;
      background: #fff; border: 1px solid var(--stone-200);
      border-radius: 14px;
      font-size: 13px; line-height: 1.6; color: var(--stone-700);
    }
    .lp-promise-label {
      font-size: 11px; font-weight: 700; color: var(--teal);
      letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px;
    }
    .lp-pillars-grid {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .lp-pillar {
      padding: 24px; background: #fff;
      border: 1px solid var(--stone-200); border-radius: 16px;
    }
    .lp-pillar-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--teal-tint); color: var(--teal);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .lp-pillar-label {
      font-size: 10px; font-weight: 700; color: var(--stone-400);
      letter-spacing: 0.1em; text-transform: uppercase;
    }
    .lp-pillar-head {
      font-family: var(--display); font-size: 17px; font-weight: 700;
      color: var(--ink); margin-top: 4px; letter-spacing: -0.015em;
    }
    .lp-pillar-body {
      margin: 8px 0 0; font-size: 13px; line-height: 1.55; color: var(--stone-600);
      text-wrap: pretty;
    }

    /* ─── Demo form ─────────────────────────────────────────────── */
    .lp-demo-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 64px; align-items: start;
    }
    .lp-expect-list {
      margin: 28px 0 0; padding: 0; list-style: none;
      display: grid; gap: 12px;
    }
    .lp-expect-list li {
      display: flex; gap: 12px; align-items: flex-start;
      font-size: 14px; color: var(--stone-600);
    }
    .lp-expect-check {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--teal-tint); color: var(--teal);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .lp-expect-list strong {
      font-family: var(--display); font-weight: 700;
      font-size: 14px; color: var(--ink); margin-right: 6px;
    }
    .lp-form-card {
      padding: 32px;
      background: var(--stone-50); border: 1px solid var(--stone-200);
      border-radius: 20px;
      box-shadow: 0 12px 28px -10px rgba(15,23,42,0.10);
    }
    .lp-form-head {
      font-family: var(--display); font-size: 18px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.015em;
    }
    .lp-form-sub {
      font-size: 13px; color: var(--stone-500); margin: 4px 0 22px;
    }
    .lp-field { display: block; margin-bottom: 16px; cursor: text; }
    .lp-field > span:first-child {
      display: block; font-size: 12px; font-weight: 600;
      color: var(--stone-700); margin-bottom: 6px;
    }
    .lp-input {
      width: 100%; padding: 11px 13px;
      background: #fff; border: 1px solid var(--stone-300); border-radius: 10px;
      font-family: var(--body); font-size: 14px; color: var(--ink);
      outline: none;
    }
    .lp-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,124,107,0.18); }

    .lp-segmented {
      border: none; padding: 0; margin-bottom: 16px;
    }
    .lp-segmented legend {
      font-size: 12px; font-weight: 600; color: var(--stone-700);
      margin-bottom: 6px;
    }
    .lp-segmented-group {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
    }
    .lp-segmented-group input {
      position: absolute; opacity: 0; pointer-events: none;
    }
    .lp-segmented-group label {
      display: block; cursor: pointer;
    }
    .lp-segmented-group label > span {
      display: block; text-align: center;
      padding: 10px 6px;
      background: #fff;
      color: var(--stone-700);
      border: 1px solid var(--stone-300); border-radius: 8px;
      font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums;
    }
    .lp-segmented-group input:checked + span {
      background: var(--teal); color: #fff; border-color: var(--teal);
    }
    .lp-segmented-group input:focus-visible + span {
      outline: 2px solid var(--teal); outline-offset: 2px;
    }

    .lp-form-microcopy {
      margin: 12px 0 0; font-size: 11px; color: var(--stone-400);
      text-align: center; line-height: 1.5;
    }

    /* ─── Footer ────────────────────────────────────────────────── */
    .lp-footer {
      background: var(--stone-900); color: var(--stone-400);
      padding: 56px 0 32px;
    }
    .lp-footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
    }
    .lp-footer-logo { height: 20px; width: auto; }
    .lp-footer-slogan {
      margin-top: 18px; font-family: var(--display);
      font-size: 15px; font-weight: 700; color: #fff;
      letter-spacing: -0.01em; line-height: 1.2;
    }
    .lp-footer-tagline {
      margin-top: 8px; font-size: 13px; line-height: 1.6;
      color: var(--stone-400); max-width: 340px;
    }
    .lp-footer-contact {
      margin-top: 18px; font-size: 12px; color: var(--stone-500);
      line-height: 1.6;
    }
    .lp-footer-contact a { color: var(--stone-300); }
    .lp-footer-col h4 {
      font-size: 11px; font-weight: 700; color: #fff;
      letter-spacing: 0.1em; text-transform: uppercase;
      margin: 0 0 14px;
    }
    .lp-footer-col a {
      display: block; font-size: 13px; color: var(--stone-400);
      text-decoration: none; padding: 5px 0;
    }
    .lp-footer-col a:hover { color: var(--stone-300); }
    .lp-footer-rule {
      margin-top: 40px; padding-top: 20px;
      border-top: 1px solid var(--stone-800);
      font-size: 12px; color: var(--stone-500);
    }

    /* ─── Responsive ──────────────────────────────────────────────── */
    @media (max-width: 1024px) {

      .lp-hero-grid, .lp-security-grid, .lp-demo-grid {
        grid-template-columns: minmax(0, 1fr); gap: 48px;
      }
      .lp-shift-grid { grid-template-columns: minmax(0, 1fr); }

      .lp-shift-vignette > * { min-width: 0; max-width: 100%; }
      .lp-footer-grid { grid-template-columns: 1fr 1fr; }
      .lp-h1 { font-size: 56px; }
      .lp-h2 { font-size: 36px; }
      .lp-section { padding: 72px 0; }
      .lp-hero { padding: 64px 0 56px; }

      .lp-header-inner { gap: 12px; }
      .lp-header-inner .lp-btn-sm { padding: 8px 14px; white-space: nowrap; }
      .lp-owner-link { display: none; }
      .lp-nav { gap: 14px; margin-left: 4px; }
      .lp-nav a { font-size: 12px; white-space: nowrap; }
    }
    @media (max-width: 720px) {
      .lp-wrap { padding-inline: 24px; }
      .lp-nav { display: none; }

      .lp-header-inner { gap: 10px; }
      .lp-header-inner .lp-btn-sm { padding: 8px 12px; }
      .lp-hero-toast { display: none; }
      .lp-hero-anchor { justify-self: stretch; display: flex; justify-content: center; }
      .lp-pillars-grid { grid-template-columns: 1fr; }
      .lp-footer-grid { grid-template-columns: 1fr; }
      .lp-h1 { font-size: 44px; }
      .lp-shift-card { padding: 24px; }
      .lp-form-card { padding: 24px; }
      .lp-owner-band-cta { margin-left: 0; }
    }

    /* ─── Legal / about pages (lorem-ipsum placeholders) ──────────── */
    .lp-legal { max-width: 760px; }
    .lp-legal h2 {
      font-family: var(--display); font-size: 22px; font-weight: 700;
      letter-spacing: -0.02em; color: var(--ink); margin: 36px 0 12px;
    }
    .lp-legal p {
      font-size: 16px; line-height: 1.7; color: var(--stone-600);
      margin: 0 0 16px; max-width: 70ch;
    }
