/* Source: web/ds/tokens/colors.css */
/* ============================================================================
   LIFTED — COLOR TOKENS
   One charged accent leads; deep ink neutrals carry the interface.
   Neutrals are shared across every Lifted product. The accent ramp is what
   changes per brand (Payments = green, Sign = blue, …) — see the [data-brand]
   theme scopes at the bottom of this file.
   ============================================================================ */
:root {
  /* ---- Neutrals: the ink spine (shared by all products) ---------------- */
  --void:        #05080E;  /* deepest background, page base on dark */
  --ink-900:     #0B1020;  /* primary dark surface */
  --ink-800:     #141D31;  /* raised card surface */
  --ink-700:     #202C46;  /* hairline borders, inputs, hover fills */
  --slate-600:   #2D3B5A;  /* strong border, disabled fill */
  --slate-500:   #4A5A78;  /* muted icon, tertiary text on dark */
  --slate-400:   #6B7C9C;  /* secondary text on dark */
  --mist-300:    #AEB8D0;  /* low-emphasis text on dark */
  --mist-200:    #CDD5E4;  /* light borders on light theme */
  --mist-100:    #EFF3F9;  /* lightest surface, text on dark */
  --white:       #FFFFFF;

  /* ---- Brand accent ramps (base values, referenced by themes) ---------- */
  /* Payments — electric green */
  --green-bright:#2BF5A6;
  --green:       #00E18C;
  --green-600:   #00B85C;
  --green-700:   #00A356;
  --green-800:   #007138;

  /* Sign — lift blue */
  --blue-bright: #5AA6FF;
  --blue:        #2E6BFF;
  --blue-600:    #1E6BFF;
  --blue-700:    #1E4FD6;
  --blue-800:    #143CA8;

  /* PoS — electric violet  (defined by this system; no brand book supplied) */
  --violet-bright:#9B7BFF;
  --violet:      #7A5CFF;
  --violet-600:  #5F3FEF;
  --violet-700:  #4A2FD0;
  --violet-800:  #34209C;

  /* Holdings — royal indigo (parent wordmark) */
  --indigo-bright:#5E7BFF;
  --indigo:      #2D4BD8;
  --indigo-600:  #243CB0;
  --indigo-700:  #1B2E8A;

  /* Gateway — signal orange (advanced routing between payment providers) */
  --orange-bright:#FFA94D;
  --orange:      #FF7A1A;
  --orange-600:  #ED5E00;
  --orange-700:  #C44A00;
  --orange-800:  #8F3500;

  /* Vending — pulse red (smart vending / unattended retail) */
  --red-bright:  #FF6B6B;
  --vred:        #F5333D;
  --vred-600:    #D81E2A;
  --vred-700:    #A8141F;
  --vred-800:    #730C14;

  /* ScreenCast — beam yellow (screen recording / broadcast) */
  --yellow-bright:#FFD84D;
  --yellow:      #FFC01E;
  --yellow-600: #E0A400;
  --yellow-700: #B07F00;
  --yellow-800: #6E4F00;

  --cyan:        #19C7F5;  /* shared accent cyan — links, info highlights */
  --teal:        #1AD4CF;  /* portal teal — second stop of the brand gradient */
  --cyan-bright: #5FD0FF;  /* portal cyan — link / highlight on glass */

  /* ---- Functional ------------------------------------------------------ */
  --success:     #00E18C;
  --warning:     #FFB920;
  --error:       #FF4D6A;
  --info:        #3B9EFF;

  /* ============================================================
     SEMANTIC ALIASES — author UIs against these, not raw values.
     Default brand = Payments (green). Override with [data-brand].
     ============================================================ */
  --brand:            var(--green);
  --brand-bright:     var(--green-bright);
  --brand-deep:       var(--green-600);
  --brand-darker:     var(--green-800);
  --brand-contrast:   var(--ink-900);     /* text/icon color on a solid brand fill */
  --brand-tint:       rgba(0,225,140,0.12);
  --brand-tint-strong:rgba(0,225,140,0.22);
  --brand-glow:       none; /* @kind shadow */  /* glow removed — professional, no neon */

  /* Brand gradient + glass (borrowed, cleaned up, from the live portal/signer).
     --brand-grad-to is overridden per brand scope; the gradients re-resolve. */
  --brand-grad-to:    var(--teal);
  --grad-brand:       linear-gradient(120deg, var(--brand), var(--brand-grad-to));
  --grad-word:        linear-gradient(102deg, var(--white) 2%, var(--brand) 48%, var(--brand-grad-to) 86%);
  --glass-surface:    color-mix(in srgb, var(--ink-800) 68%, transparent);
  --glass-border:     rgba(207,232,247,0.20);
  --glass-shadow:     0 1px 0 rgba(255,255,255,0.08) inset, 0 0 0 1px rgba(255,255,255,0.02) inset, 0 28px 74px -34px rgba(0,0,0,0.94);
  --glass-blur:       26px;
  /* Reusable frosted fill: top sheen + faint vertical body over the surface.
     Use as `background: var(--glass-fill)` on any tile for the Fortune-500 look. */
  --glass-sheen:      linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018) 34%, rgba(255,255,255,0) 60%); /* @kind other */
  --glass-fill:       linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018) 34%, transparent 60%), var(--glass-surface);
  --glass-hi:         rgba(255,255,255,0.10);  /* inner top highlight line */
  /* ambient page glow — auto-tints to the active brand */
  --ambient-glow:     color-mix(in srgb, var(--brand) 8%, transparent);
  --ambient-glow-2:   color-mix(in srgb, var(--brand-grad-to) 5%, transparent);

  /* Surfaces (dark theme is the primary product theme) */
  --bg-base:          var(--void);
  --bg-page:          var(--ink-900);
  --surface-card:     var(--ink-800);
  --surface-raised:   var(--ink-700);
  --surface-sunken:   var(--void);
  --surface-hover:    var(--ink-700);

  /* Text */
  --text-strong:      var(--mist-100);
  --text-body:        var(--mist-300);
  --text-muted:       var(--slate-400);
  --text-faint:       var(--slate-500);
  --text-on-brand:    var(--ink-900);

  /* Borders */
  --border-subtle:    rgba(174,184,208,0.10);
  --border-default:   rgba(174,184,208,0.16);
  --border-strong:    rgba(174,184,208,0.28);
  --border-brand:     var(--brand);

  /* Focus ring */
  --ring:             rgba(0,225,140,0.55);
}

/* ============================================================
   BRAND THEME SCOPES
   Wrap any subtree in data-brand="payments|sign|pos|holdings"
   (or set it on <html>) to retint the whole interface.
   ============================================================ */
[data-brand="payments"] {
  --brand: var(--green); --brand-bright: var(--green-bright); --brand-grad-to: var(--teal);
  --brand-deep: var(--green-600); --brand-darker: var(--green-800);
  --brand-tint: rgba(0,225,140,0.12); --brand-tint-strong: rgba(0,225,140,0.22);
  --brand-glow: none; /* @kind shadow */
  --brand-contrast: var(--ink-900); --text-on-brand: var(--ink-900);
  --ring: rgba(0,225,140,0.55);
}
[data-brand="sign"] {
  --brand: var(--blue); --brand-bright: var(--blue-bright); --brand-grad-to: var(--cyan);
  --brand-deep: var(--blue-700); --brand-darker: var(--blue-800);
  --brand-tint: rgba(46,107,255,0.14); --brand-tint-strong: rgba(46,107,255,0.26);
  --brand-glow: none; /* @kind shadow */
  --brand-contrast: var(--white); --text-on-brand: var(--white);
  --ring: rgba(46,107,255,0.60);
}
[data-brand="pos"] {
  --brand: var(--violet); --brand-bright: var(--violet-bright); --brand-grad-to: var(--violet-bright);
  --brand-deep: var(--violet-600); --brand-darker: var(--violet-800);
  --brand-tint: rgba(122,92,255,0.14); --brand-tint-strong: rgba(122,92,255,0.26);
  --brand-glow: none; /* @kind shadow */
  --brand-contrast: var(--white); --text-on-brand: var(--white);
  --ring: rgba(122,92,255,0.60);
}
[data-brand="holdings"] {
  --brand: var(--indigo); --brand-bright: var(--indigo-bright); --brand-grad-to: var(--cyan-bright);
  --brand-deep: var(--indigo-600); --brand-darker: var(--indigo-700);
  --brand-tint: rgba(45,75,216,0.14); --brand-tint-strong: rgba(45,75,216,0.26);
  --brand-glow: none; /* @kind shadow */
  --brand-contrast: var(--white); --text-on-brand: var(--white);
  --ring: rgba(45,75,216,0.60);
}
/* NOTE: the Launchpad Gateway VIEW (web/index.html .view-gateway) intentionally
   re-overrides --brand to VIOLET inline, to agree with the processor accent
   --ap-nmi (violet) used across Payments/Overview/Gateway for the NMI rail.
   That inline override is the source of truth for that view; this orange
   gateway brand stays for any other surface that opts into data-brand="gateway".
   Divergence is deliberate — do not "fix" the view to orange. */
[data-brand="gateway"] {
  --brand: var(--orange); --brand-bright: var(--orange-bright); --brand-grad-to: var(--orange-bright);
  --brand-deep: var(--orange-600); --brand-darker: var(--orange-800);
  --brand-tint: rgba(255,122,26,0.14); --brand-tint-strong: rgba(255,122,26,0.26);
  --brand-glow: none; /* @kind shadow */
  --brand-contrast: var(--ink-900); --text-on-brand: var(--ink-900);
  --ring: rgba(255,122,26,0.60);
}
[data-brand="vending"] {
  --brand: var(--vred); --brand-bright: var(--red-bright); --brand-grad-to: var(--red-bright);
  --brand-deep: var(--vred-600); --brand-darker: var(--vred-800);
  --brand-tint: rgba(245,51,61,0.14); --brand-tint-strong: rgba(245,51,61,0.26);
  --brand-glow: none; /* @kind shadow */
  --brand-contrast: var(--white); --text-on-brand: var(--white);
  --ring: rgba(245,51,61,0.60);
}
[data-brand="screencast"] {
  --brand: var(--yellow); --brand-bright: var(--yellow-bright); --brand-grad-to: var(--yellow-bright);
  --brand-deep: var(--yellow-600); --brand-darker: var(--yellow-800);
  --brand-tint: rgba(255,192,30,0.14); --brand-tint-strong: rgba(255,192,30,0.26);
  --brand-glow: none; /* @kind shadow */
  --brand-contrast: var(--ink-900); --text-on-brand: var(--ink-900);
  --ring: rgba(255,192,30,0.55);
}

/* ============================================================
   LIGHT THEME — set data-theme="light" on <html> (or any subtree).
   Originally for "on light" lockups, docs and email; the merchant
   portal (web/portal.html) is the first full app surface to ship a
   user-facing light/dark toggle on top of it.

   SCOPE — this block flips only the NEUTRAL SPINE (surfaces / text /
   borders). It deliberately leaves the *material* tokens dark-tuned:
   the glass tokens (--glass-*), the elevation shadows, the page
   backdrop glows, and the brand-on-white legibility (bright #00E18C
   fails AA as text/stroke on white). A surface that wants a real
   light design re-points those locally under its own
   [data-theme="light"] — see web/portal.html for the reference
   implementation (warm-white frosted glass, soft color-true shadows,
   --brand-deep for text/marks, solid green kept only for FILLS).

   NO-FLASH — resolve the theme pre-paint with a tiny inline <head>
   script (saved choice -> prefers-color-scheme -> dark) and persist
   to localStorage; update <meta name="theme-color"> live so installed
   PWA chrome matches. Everything stays token-driven, so both themes
   inherit automatically — no class/markup forks.
   ============================================================ */
[data-theme="light"] {
  --bg-base:        var(--mist-100);
  --bg-page:        var(--white);
  --surface-card:   var(--white);
  --surface-raised: var(--mist-100);
  --surface-sunken: var(--mist-100);
  --surface-hover:  var(--mist-100);
  --text-strong:    var(--ink-900);
  --text-body:      var(--ink-700);
  --text-muted:     var(--slate-500);
  --text-faint:     var(--slate-400);
  --border-subtle:  rgba(11,16,32,0.08);
  --border-default: rgba(11,16,32,0.14);
  --border-strong:  rgba(11,16,32,0.24);

  /* ---- state colors: the bright dark-mode values (#FFB920 amber, #FF4D6A rose)
          fail WCAG AA as TEXT on white, so deepen them for light mode. Kept at the
          DS layer so every light page inherits — previously each page re-patched
          these by hand (root cause of the incomplete light theme). Solid green
          FILLS keep #00E18C; green-as-text uses --green-ink. ------------------- */
  --warning:  #B7791F;   /* amber, ~4.6:1 on white */
  --error:    #C81E4E;   /* deep rose, ~5.1:1 on white */
  --amber:    #B7791F;   /* alias some pages reference */
  --red:      #C81E4E;
  --danger:   #C81E4E;
  --green-ink:#067A46;   /* readable green for text/marks on white (fills stay --green) */

  /* ---- glass: DS glass is a white sheen tuned for dark grounds; on white it must
          become a warm-white frosted plane, or cards read as flat grey blocks. --- */
  --glass-surface: color-mix(in srgb, #ffffff 74%, transparent);
  --glass-border:  rgba(11,16,32,0.10);
  --glass-hi:      rgba(255,255,255,0.85);
  --glass-shadow:  0 1px 0 rgba(255,255,255,0.9) inset,
                   0 0 0 1px rgba(11,16,32,0.04) inset,
                   0 18px 50px -28px rgba(16,24,40,0.22);
}

/* Source: web/ds/tokens/typography.css */
/* ============================================================================
   LIFTED — TYPOGRAPHY TOKENS
   Inter for everything UI + display. JetBrains Mono for amounts, hashes, IDs.
   Type scale from the brand book (Display 64 → Overline 11).
   ============================================================================ */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  --font-display: 'Sora', 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Weights */
  --fw-regular: 400; /* @kind font */
  --fw-medium:  500; /* @kind font */
  --fw-semibold:600; /* @kind font */
  --fw-bold:    700; /* @kind font */
  --fw-black:   800; /* @kind font */

  /* Type scale — size / line-height / tracking (from the brand book) */
  --fs-display:  64px;  --lh-display:  1.02; /* @kind other */  --ls-display:  -1.5px;
  --fs-headline: 40px;  --lh-headline: 1.08; /* @kind other */  --ls-headline: -1px;
  --fs-title:    28px;  --lh-title:    1.15; /* @kind other */  --ls-title:    -0.5px;
  --fs-subtitle: 20px;  --lh-subtitle: 1.35; /* @kind other */  --ls-subtitle: 0px;
  --fs-body:     16px;  --lh-body:     1.55; /* @kind other */  --ls-body:     0px;
  --fs-small:    14px;  --lh-small:    1.5; /* @kind other */   --ls-small:    0px;
  --fs-caption:  13px;  --lh-caption:  1.45; /* @kind other */  --ls-caption:  0px;
  --fs-overline: 11px;  --lh-overline: 1.2; /* @kind other */   --ls-overline: 3px;

  /* Metric steps — KPI/money numerals. Unified step so every numeric hero
     across views shares one scale (primary 26 / secondary peer 20). */
  --fs-metric:    26px; /* @kind other */
  --fs-metric-sm: 20px; /* @kind other */
}

/* Source: web/ds/tokens/spacing.css */
/* ============================================================================
   LIFTED — SPACING, RADIUS, SHADOW, MOTION TOKENS
   ============================================================================ */
:root {
  /* Spacing — 4px base grid */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radius — calm, lightly rounded. Cards use lg; pills use full. */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 999px;

  /* Elevation — soft, low-spread shadows on near-black surfaces.
     On dark theme depth comes from surface lightness + a 1px hairline more
     than from cast shadow, so shadows stay subtle. */
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.40);
  --shadow-md:  0 6px 18px rgba(0,0,0,0.45);
  --shadow-lg:  0 18px 48px rgba(0,0,0,0.55);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.60);
  /* Inset hairline that reads as a crisp top edge on raised surfaces */
  --shadow-edge: inset 0 1px 0 rgba(255,255,255,0.04);

  /* Motion — calm, premium, never frantic. */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast:   120ms; /* @kind other */
  --dur-base:   200ms; /* @kind other */
  --dur-slow:   320ms; /* @kind other */
  --dur-globe:  14s; /* @kind other */  /* one full globe revolution */

  /* Layout */
  --container:  1200px;
  --container-wide: 1440px;

  /* Blueprint grid — the Lifted backdrop texture (used behind heroes, covers,
     dark surfaces). Line color is faint by default; size sets the cell pitch. */
  --grid-line: rgba(174,184,208,0.06); /* @kind color */
  --grid-line-strong: rgba(174,184,208,0.10); /* @kind color */
  --grid-size: 28px;
  --grid-size-lg: 60px;
  /* Prebuilt grid images for the .lds-grid utilities (used, not overridden). */
  --grid-img:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px); /* @kind other */
  --grid-img-brand:
    linear-gradient(color-mix(in srgb, var(--brand) 16%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--brand) 16%, transparent) 1px, transparent 1px); /* @kind other */
  --grid-img-dots: radial-gradient(var(--grid-line-strong) 1px, transparent 1.4px); /* @kind other */
}

/* Source: web/ds/tokens/base.css */
/* ============================================================================
   LIFTED — BASE ELEMENT STYLES & TYPOGRAPHY UTILITIES
   Lightweight resets + named text styles that map to the type scale.
   ============================================================================ */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--brand-tint-strong); color: var(--text-strong); }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-bright); }

/* ---- Named text styles --------------------------------------------------- */
.t-display  { font-size: var(--fs-display);  line-height: var(--lh-display);  letter-spacing: var(--ls-display);  font-weight: var(--fw-bold); color: var(--text-strong); }
.t-headline { font-size: var(--fs-headline); line-height: var(--lh-headline); letter-spacing: var(--ls-headline); font-weight: var(--fw-bold); color: var(--text-strong); }
.t-title    { font-size: var(--fs-title);    line-height: var(--lh-title);    letter-spacing: var(--ls-title);    font-weight: var(--fw-semibold); color: var(--text-strong); }
.t-subtitle { font-size: var(--fs-subtitle); line-height: var(--lh-subtitle); letter-spacing: var(--ls-subtitle); font-weight: var(--fw-medium); color: var(--text-strong); }
.t-body     { font-size: var(--fs-body);     line-height: var(--lh-body);     color: var(--text-body); }
.t-small    { font-size: var(--fs-small);    line-height: var(--lh-small);    color: var(--text-body); }
.t-caption  { font-size: var(--fs-caption);  line-height: var(--lh-caption);  color: var(--text-muted); }
.t-overline { font-size: var(--fs-overline); line-height: var(--lh-overline); letter-spacing: var(--ls-overline); text-transform: uppercase; font-weight: var(--fw-bold); color: var(--brand); }
.t-mono     { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.t-amount   { font-family: var(--font-mono); font-weight: var(--fw-medium); color: var(--brand); font-variant-numeric: tabular-nums; letter-spacing: 0.5px; }

/* ---- The wireframe globe, animated ------------------------------------- */
@keyframes lifted-spin { to { transform: rotate(360deg); } }
@keyframes lifted-pulse { 0%,100% { opacity: .9; } 50% { opacity: 1; } }

/* Source: web/ds/tokens/effects.css */
/* ============================================================================
   LIFTED — EFFECTS & MATERIALS
   The "good parts" of the live portal/signer, cleaned up for readability:
   a calm ambient backdrop, a glass surface, and the gradient wordmark.
   Everything auto-tints to the active [data-brand] via --brand / --grad-*.
   Keep these restrained — depth and polish, never noise.
   ============================================================================ */

/* ---- Ambient page backdrop ------------------------------------------------
   Two soft brand-tinted radial glows + a faintly masked grid. Apply to a
   full-bleed page wrapper (position it; the layers sit behind via z-index). */
.lds-ambient {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(820px 480px at 84% -12%, var(--ambient-glow), transparent 60%),
    radial-gradient(720px 520px at 6% 108%, var(--ambient-glow-2), transparent 58%),
    var(--bg-page);
}
.lds-ambient::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(174,184,208,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,184,208,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at 50% -4%, #000, transparent 72%);
          mask-image: radial-gradient(circle at 50% -4%, #000, transparent 72%);
}

/* ---- Glass surface --------------------------------------------------------
   A readable frosted panel — opaque enough that text never dissolves, with a
   defined top sheen + a crisp inner highlight line for a Fortune-500 finish. */
.lds-glass {
  position: relative;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
          backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  box-shadow: var(--glass-shadow);
}
/* Crisp highlight along the very top edge — the "polished glass" tell. */
.lds-glass::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--glass-hi) 22%, var(--glass-hi) 78%, transparent);
  pointer-events: none;
}
/* Optional brand edge-light on the top hairline (calm, not glowing). */
.lds-glass--edge { position: relative; }
.lds-glass--edge::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--brand) 20%, var(--brand-grad-to) 80%, transparent);
  opacity: 0.4;
}

/* ---- Wordmark / display ---------------------------------------------------
   The lockup is TWO-TONE and locked to the globe: "Lifted" stays neutral (the
   opposite of the globe) and only the PRODUCT word carries the brand color,
   swapping in lockstep with the globe (green=Payments, blue=Sign, …).
   .lds-wordmark = the neutral "Lifted" lead; wrap the product word in
   .lds-grad-text for the brand gradient (or just color:var(--brand) for solid). */
.lds-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.lds-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

/* ---- Blueprint grid / texture --------------------------------------------
   The Lifted backdrop pattern. .lds-grid = ruled lines; .lds-grid-dots = dot
   matrix; add .lds-grid--brand to tint to the active accent; .lds-grid--fade
   vignettes it (use behind heroes/covers). Pair with .lds-ambient for glow.
   Grid images live at :root (--grid-img*) so --fade can repaint them on a
   masked ::after LAYER — the mask never touches content (headlines stay crisp). */
.lds-grid {
  background-image: var(--grid-img);
  background-size: var(--grid-size) var(--grid-size);
}
.lds-grid-lg { background-size: var(--grid-size-lg) var(--grid-size-lg); }
.lds-grid-dots {
  background-image: var(--grid-img-dots);
  background-size: var(--grid-size) var(--grid-size);
}
.lds-grid--brand { background-image: var(--grid-img-brand); }
/* Fade: move the grid onto a masked background layer so content stays unmasked. */
.lds-grid--fade {
  position: relative;
  background-image: none !important;
}
.lds-grid--fade::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: var(--grid-img);
  background-size: var(--grid-size) var(--grid-size);
  -webkit-mask-image: radial-gradient(120% 90% at 50% -10%, #000, transparent 75%);
          mask-image: radial-gradient(120% 90% at 50% -10%, #000, transparent 75%);
}
.lds-grid-lg.lds-grid--fade::after { background-size: var(--grid-size-lg) var(--grid-size-lg); }
.lds-grid--brand.lds-grid--fade::after { background-image: var(--grid-img-brand); }
.lds-grid--fade > * { position: relative; z-index: 1; }

/* ---- HUD corner-brackets — the Lifted signature framing -------------------
   Add .lds-hud to any element for four thin brand corner ticks (echoes the
   wireframe globe + the Button treatment). .lds-hud--2 = top-left + bottom-right
   only. Keep on hero/KPI/feature surfaces — not everywhere. */
.lds-hud { position: relative; }
.lds-hud > * { position: relative; z-index: 1; }
.lds-hud::before, .lds-hud::after {
  content: ""; position: absolute; width: 10px; height: 10px; pointer-events: none;
  border: 1.5px solid var(--brand); opacity: .55; z-index: 0;
}
.lds-hud::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.lds-hud::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.lds-hud--2::before { top: 8px; left: 8px; }

/* ---- Top progress bar (signer / multi-step flows) ------------------------- */
.lds-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 60;
  background: var(--brand);
  transition: width var(--dur-slow) var(--ease-out);
}

/* ---- Brand-gradient text + fill helpers ---------------------------------- */
.lds-grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lds-grad-fill { background: var(--grad-brand); }

@media (prefers-reduced-motion: reduce) {
  .lds-progress { transition: none; }
}

/* Source: web/liftedpos/assets/site.css (shared base) */
/*
 * First-party copies of the Lifted Design System typefaces.
 * The WOFF2 files are the Latin subsets published by Google Fonts under the
 * SIL Open Font License; license texts live beside the assets.
 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2?v=asset-a70049a56dd0') format('woff2');
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/assets/fonts/sora-latin.woff2?v=asset-a70049a56dd0') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/jetbrains-mono-latin.woff2?v=asset-a70049a56dd0') format('woff2');
}

:root {
  color-scheme: dark;
  --ink: var(--void);
  --ink-2: var(--ink-900);
  --panel: var(--ink-900);
  --panel-2: var(--ink-800);
  --paper: var(--mist-100);
  --white: var(--mist-100);
  --text: var(--text-body);
  --muted: var(--text-muted);
  --faint-readable: #6B7C9C;
  --faint: var(--faint-readable);
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .2);
  --violet: #7A5CFF;
  --violet-action: #6846F0;
  --violet-2: var(--brand-bright);
  --violet-soft: var(--brand-tint);
  --mint: var(--success);
  --amber: var(--warning);
  --danger: var(--error);
  --shadow: var(--shadow-xl);
  --max: 1240px;
  --radius: var(--radius-xl);
  --radius-sm: var(--radius-md);
  --display: var(--font-display);
  --body: var(--font-sans);
  --mono: var(--font-mono);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
.liftedpos-site {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(1000px 620px at 78% -5%, rgba(122, 92, 255, .13), transparent 65%),
    var(--ink);
  color: var(--text);
  font: 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .17;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 72%);
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--violet-2); outline-offset: 4px; }
::selection { background: var(--violet); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { transform: none; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 17px;
  color: var(--violet-2);
  font: 600 11px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 22px;
  height: 1px;
  content: "";
  background: currentColor;
}
.kicker { color: var(--violet-2); }
.lede {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}
.prose { max-width: 760px; }
.prose p, .prose li { color: var(--muted); }
.prose strong { color: var(--paper); }
.prose a { color: var(--violet-2); text-underline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(7, 8, 18, .76);
  backdrop-filter: blur(20px);
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(7, 8, 18, .94); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand {
  display: inline-flex;
  flex: none;
  gap: 11px;
  align-items: center;
  color: var(--white);
  font: 700 18px/1 var(--display);
  text-decoration: none;
  letter-spacing: -.04em;
}
.brand-mark { width: 29px; height: 29px; }
.brand em { color: var(--violet-2); font-style: normal; }
.primary-nav { display: flex; gap: 28px; align-items: center; margin-left: auto; }
.primary-nav > a,
.nav-dropdown > button {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.primary-nav > a:hover,
.nav-dropdown > button:hover { color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown > button::after {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin: 0 0 3px 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}
.drop-panel {
  position: absolute;
  top: 32px;
  left: -22px;
  width: 330px;
  max-height: calc(100dvh - 112px);
  padding: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 16, 32, .98);
  box-shadow: var(--shadow);
  scrollbar-gutter: stable;
}
.drop-panel[hidden] { display: none; }
.drop-panel a { display: grid; gap: 2px; padding: 12px; border-radius: 10px; text-decoration: none; }
.drop-panel a:hover { background: var(--violet-soft); }
.drop-panel b { color: var(--paper); font-size: 14px; }
.drop-panel span { color: var(--muted); font-size: 12px; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.mobile-nav-actions { display: none; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  width: 18px;
  height: 1.5px;
  display: block;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}
body.nav-open { overflow: hidden; }

.button {
  min-height: 46px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255,255,255,.02);
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.36); }
.button-primary {
  border-color: var(--violet-action);
  background: var(--violet-action);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(104, 70, 240, .28);
}
.button-primary:hover { background: #5935DF; color: var(--white); }
.button-lg { min-height: 54px; padding-inline: 23px; }
.button-text { min-height: auto; padding: 4px 0; border: 0; }
.arrow {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transition: transform .18s ease;
  transform: rotate(45deg);
}
.button:hover .arrow, a:hover .arrow { transform: translateX(3px) rotate(45deg); }

.hero { position: relative; padding: 80px 0 54px; overflow: clip; }
.home-hero {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(122,92,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,92,255,.055) 1px, transparent 1px),
    radial-gradient(circle at 78% 32%, rgba(122,92,255,.19), transparent 34%),
    radial-gradient(circle at 14% 82%, rgba(83,55,205,.11), transparent 30%);
  background-size: 52px 52px, 52px 52px, auto, auto;
}
.home-hero::after {
  position: absolute;
  z-index: 0;
  right: -4vw;
  bottom: -9vw;
  color: rgba(157,134,255,.025);
  content: "OPERATE";
  font: 800 clamp(110px, 19vw, 310px)/.72 var(--display);
  letter-spacing: -.09em;
  pointer-events: none;
}
.home-hero-copy { position: relative; z-index: 2; }
.hero-globe {
  position: absolute;
  top: 22px;
  right: max(22px, calc((100vw - var(--max)) / 2 - 80px));
  z-index: 0;
  opacity: .16;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(510px, 1.12fr); gap: 54px; align-items: center; }
.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 800px;
  color: var(--paper);
  font: 800 clamp(44px, 6.5vw, 82px)/.99 var(--display);
  letter-spacing: -.065em;
}
.hero h1 span { color: var(--violet-2); }
.hero-copy { max-width: 620px; margin: 25px 0 0; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-note { margin-top: 18px; color: var(--faint); font: 500 11px/1.6 var(--mono); letter-spacing: .03em; }
.hero-signal-grid {
  max-width: 580px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7,8,18,.58);
}
.hero-signal-grid span {
  display: grid;
  gap: 7px;
  padding: 14px 13px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.hero-signal-grid span:last-child { border-right: 0; }
.hero-signal-grid b { color: var(--violet-2); font: 600 9px/1 var(--mono); letter-spacing: .1em; }

.transaction-stage { position: relative; min-height: 630px; }
.stage-glow {
  position: absolute;
  inset: 4% -12% auto 4%;
  height: 70%;
  border-radius: 50%;
  background: rgba(122, 92, 255, .19);
  filter: blur(90px);
}
.product-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: #111324;
  box-shadow: var(--shadow);
  transform: perspective(1600px) rotateY(-5deg) rotateX(1.5deg);
}
.product-frame::before {
  display: block;
  height: 34px;
  border-bottom: 1px solid var(--line);
  content: "";
  background:
    radial-gradient(circle at 17px 17px, #ff7d85 0 4px, transparent 4.5px),
    radial-gradient(circle at 32px 17px, #f8c86a 0 4px, transparent 4.5px),
    radial-gradient(circle at 47px 17px, #5ce1b7 0 4px, transparent 4.5px);
}
.product-frame img { width: 100%; aspect-ratio: 2400 / 1520; object-fit: cover; }
.transaction-pulse {
  position: absolute;
  right: -18px;
  bottom: 0;
  left: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(157,134,255,.34);
  border-radius: 16px;
  background: rgba(10, 11, 24, .95);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(18px);
}
.pulse-step { position: relative; min-height: 118px; padding: 17px 16px; border-right: 1px solid var(--line); }
.pulse-step:last-child { border: 0; }
.pulse-step::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--violet-2);
}
.pulse-step.active::before { animation: fill-step 1.8s ease forwards; }
.pulse-label { display: block; color: var(--faint); font: 600 9px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.pulse-value { display: block; margin-top: 15px; color: var(--paper); font: 600 14px/1.25 var(--mono); }
.pulse-status { display: flex; gap: 6px; align-items: center; margin-top: 11px; color: var(--muted); font-size: 11px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(92,225,183,.1); }
@keyframes fill-step { to { width: 100%; } }

.proof-bar { border-block: 1px solid var(--line); background: rgba(255,255,255,.015); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 25px 24px; border-right: 1px solid var(--line); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-item b { display: block; color: var(--paper); font: 600 14px/1.3 var(--display); }
.proof-item span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }

.section {
  padding: 115px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 820px;
}
.section-tight { padding: 78px 0; }
.home-mode-section,
.home-workforce-section,
.home-pricing-section {
  position: relative;
  overflow: clip;
  border-block: 1px solid rgba(157,134,255,.12);
}
.home-mode-section {
  background:
    radial-gradient(circle at 13% 25%, rgba(122,92,255,.15), transparent 30%),
    linear-gradient(180deg, #0c0d1a, #080914);
}
.home-mode-section::before,
.home-pricing-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(157,134,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,134,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.home-mode-section .shell,
.home-pricing-section .shell { position: relative; z-index: 1; }
.section-paper { background: #100d1c; color: #edeaff; }
.section-paper .eyebrow { color: #b39dff; }
.section-paper h2, .section-paper h3 { color: #f2efff; }
.section-paper p, .section-paper .section-intro { color: #b8b2ca; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.section-head h2,
.split-copy h2 {
  max-width: 800px;
  margin: 0;
  color: var(--paper);
  font: 600 clamp(34px, 4.8vw, 59px)/1.05 var(--display);
  letter-spacing: -.055em;
}
.section-paper .section-head h2 { color: #f2efff; }
.section-intro { max-width: 560px; margin: 0; color: var(--muted); font-size: 17px; }
.split { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 80px; align-items: center; }
.split.reverse { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
.split-copy p { color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: var(--muted); }
.check-list li::before { position: absolute; left: 0; color: var(--mint); content: "✓"; font-family: var(--mono); }

.industry-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.industry-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.industry-tab[aria-selected="true"] { border-color: var(--violet); background: var(--violet-soft); color: var(--white); }
.industry-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 50px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
}
.industry-panel[hidden] { display: none; }
.industry-panel h3 { margin: 0; color: var(--paper); font: 600 28px/1.1 var(--display); letter-spacing: -.035em; }
.industry-panel p { color: var(--muted); }
.shot-shell { padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: var(--ink-2); box-shadow: var(--shadow); }
.shot-shell img { border-radius: 9px; aspect-ratio: 2400 / 1520; object-fit: cover; }

.home-workforce-section {
  background:
    radial-gradient(circle at 83% 35%, rgba(122,92,255,.13), transparent 31%),
    #090a16;
}
.workforce-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  gap: 18px;
  align-items: stretch;
}
.workforce-proof {
  position: relative;
  min-width: 0;
  padding: 38px 11px 11px;
  overflow: hidden;
  border: 1px solid rgba(157,134,255,.22);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(122,92,255,.09), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
}
.workforce-proof .product-shot { border-radius: 11px; }
.proof-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 38px;
  display: flex;
  align-items: center;
  padding-inline: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--violet-2);
  font: 600 9px/1 var(--mono);
  letter-spacing: .11em;
}
.workforce-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.workforce-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.022);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.workforce-card:hover {
  transform: translateY(-3px);
  border-color: rgba(157,134,255,.43);
  background: rgba(122,92,255,.065);
}
.workforce-card > span { color: var(--violet-2); font: 600 9px/1 var(--mono); letter-spacing: .1em; }
.workforce-card h3 { margin: auto 0 9px; color: var(--paper); font: 600 20px/1.15 var(--display); letter-spacing: -.03em; }
.workforce-card p { margin: 0; color: var(--muted); font-size: 13px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.023);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(157,134,255,.42); background: rgba(122,92,255,.065); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(157,134,255,.3); border-radius: 12px; background: var(--violet-soft); color: var(--violet-2); font: 600 13px/1 var(--mono); }
.feature-card h3 { margin: auto 0 8px; color: var(--paper); font: 600 20px/1.2 var(--display); letter-spacing: -.03em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }
.feature-card .link-label { margin-top: 17px; color: var(--violet-2); font-size: 13px; font-weight: 700; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-card { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--panel); }
.gallery-card:nth-child(1), .gallery-card:nth-child(4) { grid-column: span 7; }
.gallery-card:nth-child(2), .gallery-card:nth-child(3) { grid-column: span 5; }
.gallery-image { overflow: hidden; padding: 10px 10px 0; }
.gallery-image img { border-radius: 10px 10px 0 0; aspect-ratio: 2400 / 1520; object-fit: cover; transition: transform .45s ease; }
.gallery-card:hover img { transform: scale(1.018); }
.gallery-caption { display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; }
.gallery-caption b { color: var(--paper); }
.gallery-caption span { color: var(--muted); font-size: 12px; }

.price-stage { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: stretch; }
.price-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.price-amount { margin: 12px 0 2px; color: var(--paper); font: 600 clamp(45px, 6vw, 70px)/1 var(--display); letter-spacing: -.06em; }
.price-amount small { color: var(--muted); font: 500 14px/1 var(--body); letter-spacing: 0; }
.price-detail { color: var(--muted); }
.home-pricing-section {
  background:
    radial-gradient(circle at 76% 20%, rgba(122,92,255,.19), transparent 31%),
    linear-gradient(180deg, #0b0c19, #070812);
}
.home-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pricing-option {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}
.pricing-option-featured {
  border-color: rgba(157,134,255,.48);
  background: linear-gradient(145deg, rgba(122,92,255,.16), rgba(255,255,255,.02));
  box-shadow: 0 26px 80px rgba(38,23,110,.18);
}
.pricing-tag { color: var(--violet-2); font: 600 10px/1 var(--mono); letter-spacing: .13em; }
.pricing-number { margin-top: 32px; color: var(--paper); font: 650 clamp(42px, 5vw, 62px)/.92 var(--display); letter-spacing: -.06em; }
.pricing-number small { display: block; margin-top: 10px; color: var(--muted); font: 500 12px/1 var(--mono); letter-spacing: 0; }
.pricing-option h3 { margin: auto 0 10px; color: var(--paper); font: 600 20px/1.2 var(--display); }
.pricing-option p { margin: 0; color: var(--muted); font-size: 13px; }
.pricing-option p b { color: var(--paper); }
.pricing-lower { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14px; margin-top: 14px; }
.pricing-contract {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.018);
}
.pricing-contract > span { color: var(--violet-2); font: 600 9px/1 var(--mono); letter-spacing: .12em; }
.pricing-contract h3 { margin: 22px 0 9px; color: var(--paper); font: 600 25px/1.1 var(--display); letter-spacing: -.035em; }
.pricing-contract p { color: var(--muted); font-size: 13px; }
.pricing-contract .button { margin-top: 10px; }
.calculator {
  padding: 34px;
  border: 1px solid rgba(122,92,255,.35);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(122,92,255,.12), rgba(15,16,32,.75));
}
.calculator-label { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; }
.calculator label { color: var(--paper); font-weight: 700; }
.calculator output { font-family: var(--mono); }
.calculator input[type="range"] { width: 100%; margin: 28px 0; accent-color: var(--violet); }
.calc-total { display: flex; justify-content: space-between; align-items: end; padding-top: 22px; border-top: 1px solid var(--line); }
.calc-total b { color: var(--paper); font: 600 40px/1 var(--display); letter-spacing: -.04em; }
.calc-total span { color: var(--muted); font-size: 13px; }

.page-hero { padding: 100px 0 72px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 930px; overflow-wrap: anywhere; font-size: clamp(43px, 6vw, 72px); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .45fr; gap: 70px; align-items: end; }
.hero-aside { padding-left: 25px; border-left: 1px solid var(--line-strong); color: var(--muted); font-size: 14px; }
.hero-aside b { display: block; margin-bottom: 9px; color: var(--paper); font: 600 12px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.breadcrumb { margin: 0 0 24px; color: var(--faint); font: 500 11px/1.4 var(--mono); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb span { padding-inline: 7px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 80px; align-items: start; }
.content-main h2 { margin: 64px 0 17px; color: var(--paper); font: 600 31px/1.15 var(--display); letter-spacing: -.04em; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin: 35px 0 10px; color: var(--paper); font: 600 20px/1.2 var(--display); }
.content-main p, .content-main li { color: var(--muted); }
.content-main table { width: 100%; border-collapse: collapse; margin: 28px 0; }
.content-main th, .content-main td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; }
.content-main th { color: var(--paper); font: 600 11px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.section-paper .content-main h2 { color: #f2efff; }
.section-paper .content-main h3,
.section-paper .content-main th { color: #f2efff; }
.section-paper .content-main p { color: #b8b2ca; }
.section-paper .content-main li { color: #b8b2ca; }
.section-paper .content-main th,
.section-paper .content-main td { border-bottom-color: rgba(179,157,255,.24); }
.side-card { position: sticky; top: 100px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.side-card b { display: block; color: var(--paper); font: 600 18px/1.2 var(--display); }
.side-card p { color: var(--muted); font-size: 13px; }
.side-card .button { width: 100%; }
.callout { margin: 35px 0; padding: 23px 25px; border-left: 3px solid var(--violet); background: var(--violet-soft); }
.callout b { color: var(--paper); }

.demo-gallery-page .page-hero {
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 128px);
  background:
    radial-gradient(820px 460px at 86% 18%, rgba(122, 92, 255, .2), transparent 68%),
    linear-gradient(135deg, #05060d 0%, #0b0918 62%, #090712 100%);
}
.demo-gallery-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr);
  gap: clamp(46px, 7vw, 105px);
  align-items: end;
}
.demo-gallery-proof {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(179, 157, 255, .3);
  border-radius: 22px;
  background: rgba(10, 9, 22, .76);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
  backdrop-filter: blur(18px);
}
.demo-gallery-proof::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 15px;
  content: "";
  pointer-events: none;
}
.demo-gallery-proof > span {
  display: block;
  color: var(--violet-2);
  font: 700 clamp(64px, 8vw, 108px)/.82 var(--mono);
  letter-spacing: -.08em;
}
.demo-gallery-proof > b {
  display: block;
  margin-top: 18px;
  color: var(--paper);
  font: 600 20px/1.1 var(--display);
}
.demo-gallery-proof p { color: var(--muted); font-size: 13px; }
.demo-gallery-proof ul { display: grid; gap: 8px; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; }
.demo-gallery-proof li { color: #d7d2e6; font: 500 11px/1.3 var(--mono); }
.demo-gallery-proof li::before { margin-right: 9px; color: var(--violet-2); content: "◆"; font-size: 7px; }
.demo-profile-directory { background: linear-gradient(180deg, #0e0b19, #07080f 68%); }
.demo-profile-group { margin-top: clamp(44px, 6vw, 78px); }
.demo-profile-group:first-of-type { margin-top: 38px; }
.demo-profile-group > header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.demo-profile-group > header p { margin: 0; }
.demo-profile-group > header > span { color: var(--faint); font: 600 9px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.demo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.demo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(260px, 1.18fr);
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(18, 18, 31, .96), rgba(8, 9, 17, .98));
  text-decoration: none;
  transition: border-color .24s ease, transform .24s ease, box-shadow .24s ease;
}
.demo-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet-2);
  box-shadow: 0 0 18px rgba(155, 123, 255, .8);
  content: "";
}
.demo-card:hover {
  border-color: rgba(179, 157, 255, .52);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .3);
  transform: translateY(-3px);
}
.demo-card picture { min-width: 0; height: 100%; }
.demo-card img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; object-position: top left; filter: saturate(.88) contrast(1.04); }
.demo-card--apparel img { object-position: 18% top; }
.demo-card--bar img { object-position: 30% top; }
.demo-card--service img { object-position: 42% top; }
.demo-body { display: flex; flex-direction: column; justify-content: center; padding: 32px 34px 36px; }
.demo-body small { color: var(--violet-2); font: 700 9px/1 var(--mono); letter-spacing: .14em; }
.demo-body h3 { margin: 12px 0 0; color: var(--paper); font: 600 clamp(23px, 2.2vw, 31px)/1.05 var(--display); letter-spacing: -.035em; }
.demo-body p { margin: 15px 0 24px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.demo-body span { margin-top: auto; color: var(--violet-2); font-size: 12px; font-weight: 700; }
.demo-profile-link-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--line);
}
.demo-profile-link-rail a { display: grid; gap: 7px; min-width: 0; padding: 17px 18px; background: #090b14; text-decoration: none; }
.demo-profile-link-rail small { color: var(--violet-2); font: 600 8px/1 var(--mono); letter-spacing: .1em; }
.demo-profile-link-rail b { overflow: hidden; color: var(--paper); font: 600 13px/1.2 var(--display); text-overflow: ellipsis; white-space: nowrap; }
.demo-profile-link-rail span { color: var(--faint); font-size: 10px; }
.demo-profile-link-rail a:hover { background: rgba(122, 92, 255, .1); }
.editorial-context-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 84px;
  padding: 25px 28px;
  border: 1px solid rgba(179, 157, 255, .26);
  border-radius: 17px;
  background:
    linear-gradient(90deg, rgba(122, 92, 255, .12), rgba(11, 13, 23, .96) 42%),
    #0b0d17;
}
.editorial-context-link span { color: var(--violet-2); font: 700 8px/1 var(--mono); letter-spacing: .14em; }
.editorial-context-link b { display: block; margin-top: 9px; color: var(--paper); font: 600 20px/1.15 var(--display); }
.editorial-context-link p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }
.editorial-context-link > a { color: var(--paper); font-size: 12px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.editorial-context-link > a span { margin-left: 8px; font-size: 13px; }

.demo-tour-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(700px 430px at 88% 10%, rgba(122, 92, 255, .16), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 58%);
}
.demo-tour-section::before {
  position: absolute;
  top: 155px;
  right: -170px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(122, 92, 255, .14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.demo-tour { margin-top: 40px; }
.demo-tour-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 15px 15px 0 0;
  background: rgba(7, 8, 18, .72);
  backdrop-filter: blur(18px);
}
.demo-tour-tabs button {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 106px;
  padding: 20px 18px 17px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.demo-tour-tabs button:last-child { border-right: 0; }
.demo-tour-tabs button::after {
  position: absolute;
  right: 17px;
  bottom: -5px;
  left: 17px;
  height: 2px;
  border-radius: 99px;
  background: var(--violet-2);
  box-shadow: 0 0 18px rgba(155, 123, 255, .65);
  content: "";
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .2s ease, transform .2s ease;
}
.demo-tour-tabs button:hover { color: var(--paper); background: rgba(255,255,255,.025); }
.demo-tour-tabs button[aria-selected="true"] {
  background: linear-gradient(180deg, rgba(122, 92, 255, .14), rgba(122, 92, 255, .045));
  color: var(--paper);
}
.demo-tour-tabs button[aria-selected="true"]::after { opacity: 1; transform: scaleX(1); }
.demo-tour-tabs span {
  color: var(--violet-2);
  font: 700 10px/1 var(--mono);
  letter-spacing: .14em;
}
.demo-tour-tabs b {
  overflow: hidden;
  margin-top: 13px;
  font: 600 14px/1.18 var(--display);
  letter-spacing: -.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.demo-tour-tabs small {
  margin-top: 7px;
  overflow: hidden;
  color: var(--faint);
  font: 500 9px/1 var(--mono);
  letter-spacing: .08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.demo-tour-stage {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  background: rgba(11, 16, 32, .8);
  box-shadow: 0 36px 90px rgba(0,0,0,.35);
}
[data-demo-tour-panel] {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  min-height: 570px;
}
[data-demo-tour-panel][hidden] { display: none; }
.demo-tour-media {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  border-right: 1px solid var(--line);
  background: #060812;
}
.demo-tour-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.04);
  content: "";
  pointer-events: none;
}
.demo-tour-media picture,
.demo-tour-media img {
  width: 100%;
  height: 100%;
}
.demo-tour-media img {
  object-fit: cover;
  object-position: top left;
}
.demo-tour-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(30px, 4vw, 58px);
}
.demo-tour-copy h3 {
  margin: 0;
  color: var(--paper);
  font: 600 clamp(30px, 3vw, 43px)/1.06 var(--display);
  letter-spacing: -.045em;
}
.demo-tour-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.demo-tour-copy ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}
.demo-tour-copy li {
  position: relative;
  padding-left: 20px;
  color: #d8ddea;
  font-size: 13px;
  line-height: 1.45;
}
.demo-tour-copy li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--violet-2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 10px rgba(155, 123, 255, .35);
}
.demo-tour-copy .button { align-self: flex-start; }

/* Source: web/liftedpos/assets/site.css (shared FAQ) */
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.faq-layout h2 { margin: 9px 0 0; font: 600 clamp(31px, 4vw, 48px)/1.08 var(--display); letter-spacing: -.045em; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border-bottom: 1px solid #d9dbe7; }
.faq-list summary { padding: 20px 0; color: #171827; font-weight: 800; cursor: pointer; }
.faq-list p { margin: 0; padding: 0 0 22px; color: #5d6075; }

/* Source: web/liftedpos/assets/site.css (loyalty page) */
/* Customer loyalty authority: one completed sale, one configured reward path. */
.loyalty-page-hero,
.loyalty-value-section,
.loyalty-operating-section,
.loyalty-mode-section,
.loyalty-integrity-section,
.loyalty-display-section,
.loyalty-proof-section,
.loyalty-faq-section,
.loyalty-related-section {
  --loyalty-wallet: #73e7c4;
  --loyalty-voucher: #ffcb70;
  --loyalty-reversal: #72a8ff;
  --loyalty-violet: #9d86ff;
  --loyalty-surface: #0a0b18;
  --loyalty-panel: #111328;
}

.loyalty-page-hero {
  position: relative;
  overflow: clip;
  padding-bottom: 92px;
  background:
    linear-gradient(rgba(122,92,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,92,255,.055) 1px, transparent 1px),
    radial-gradient(760px 520px at 82% 38%, rgba(115,231,196,.12), transparent 70%),
    radial-gradient(840px 540px at 18% 8%, rgba(122,92,255,.2), transparent 72%),
    #070812;
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
}
.loyalty-hero-globe {
  position: absolute;
  top: 42px;
  right: max(-42px, calc((100vw - var(--max)) / 2 - 72px));
  opacity: .3;
  filter: saturate(.8);
}
.loyalty-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: center;
}
.loyalty-hero-copy { min-width: 0; }
.loyalty-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: .98;
  letter-spacing: -.068em;
}
.loyalty-hero-copy > p:not(.eyebrow, .lede, .hero-note) {
  max-width: 700px;
  margin-top: 22px;
  color: #aab3c7;
}
.loyalty-hero-copy .hero-note {
  color: #9ca8be;
  overflow-wrap: anywhere;
}
.loyalty-hero-proof {
  position: relative;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(115,231,196,.28);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(115,231,196,.09), transparent 44%),
    rgba(8,9,20,.94);
  box-shadow: 0 34px 100px rgba(0,0,0,.42), 0 0 70px rgba(115,231,196,.06);
}
.loyalty-hero-proof::before {
  position: absolute;
  z-index: 2;
  top: -12px;
  left: 28px;
  padding: 7px 11px;
  border: 1px solid rgba(115,231,196,.4);
  border-radius: 99px;
  background: #0b0d19;
  color: var(--loyalty-wallet);
  content: "CASH-BACK MEMBER · SEEDED PROOF";
  font: 700 8px/1 var(--mono);
  letter-spacing: .12em;
}
.loyalty-hero-proof .product-frame {
  padding: 8px;
  transform: none;
  border-color: rgba(115,231,196,.16);
  background: #080914;
  box-shadow: none;
}
.loyalty-hero-proof .product-frame::before { display: none; }
.loyalty-hero-proof .product-frame img,
.loyalty-mode-proof .shot-shell img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #080914;
}
.loyalty-hero-proof > p,
.loyalty-mode-proof > p {
  margin: 15px 8px 5px;
  color: #929db3;
  font-size: 11px;
  line-height: 1.55;
}
.loyalty-hero-proof > p b { color: var(--loyalty-wallet); }

.loyalty-value-section {
  border-bottom: 1px solid rgba(157,134,255,.15);
  background:
    radial-gradient(600px 320px at 8% 30%, rgba(122,92,255,.09), transparent 72%),
    #090a16;
}
.loyalty-value-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 120px);
}
.loyalty-value-grid h2 {
  margin: 8px 0 0;
  color: var(--paper);
  font: 600 clamp(34px, 4.6vw, 58px)/1.04 var(--display);
  letter-spacing: -.055em;
}
.loyalty-value-grid > div:last-child {
  padding-left: clamp(24px, 4vw, 56px);
  border-left: 1px solid rgba(157,134,255,.24);
}
.loyalty-value-grid p { margin-top: 0; color: #a9b2c4; line-height: 1.78; }

.loyalty-operating-section {
  overflow: hidden;
  border-bottom: 1px solid rgba(157,134,255,.16);
  background:
    radial-gradient(760px 430px at 50% 45%, rgba(122,92,255,.13), transparent 72%),
    #070812;
}
.loyalty-operating-section .section-intro { color: #a6afc1; }
.loyalty-operating-rail {
  position: relative;
  display: grid;
  grid-template-columns: .88fr .94fr 1.46fr .82fr .84fr .92fr;
  margin: 56px 0 0;
  padding: 0;
  border: 1px solid rgba(157,134,255,.26);
  border-radius: 22px;
  background: rgba(10,11,24,.88);
  box-shadow: 0 28px 90px rgba(0,0,0,.3);
  list-style: none;
}
.loyalty-operating-rail::before {
  position: absolute;
  z-index: 0;
  top: 37px;
  right: 6%;
  left: 6%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--loyalty-violet), var(--loyalty-wallet) 42%, var(--loyalty-voucher) 67%, var(--loyalty-reversal));
  opacity: .72;
}
.loyalty-operating-rail::after {
  position: absolute;
  z-index: 2;
  top: 31px;
  left: 5.5%;
  width: 14px;
  height: 14px;
  border: 3px solid #080914;
  border-radius: 50%;
  background: var(--loyalty-wallet);
  box-shadow: 0 0 0 2px rgba(115,231,196,.4), 0 0 22px rgba(115,231,196,.8);
  content: "";
  animation: loyalty-value-trace 6.4s cubic-bezier(.42,0,.28,1) infinite;
}
@keyframes loyalty-value-trace {
  0%, 8% { left: 5.5%; opacity: 1; }
  92% { left: 93%; opacity: 1; }
  100% { left: 93%; opacity: 0; }
}
.loyalty-operating-rail > li {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 300px;
  padding: 63px 18px 24px;
  border-right: 1px solid rgba(157,134,255,.16);
}
.loyalty-operating-rail > li:last-child { border-right: 0; }
.loyalty-operating-rail > li::before {
  position: absolute;
  top: 29px;
  left: 18px;
  width: 16px;
  height: 16px;
  border: 3px solid #0a0b18;
  border-radius: 50%;
  background: var(--loyalty-violet);
  box-shadow: 0 0 0 1px rgba(157,134,255,.48);
  content: "";
}
.loyalty-operating-rail > li:nth-child(3)::before,
.loyalty-operating-rail > li:nth-child(4)::before { background: var(--loyalty-wallet); }
.loyalty-operating-rail > li:nth-child(5)::before { background: var(--loyalty-voucher); }
.loyalty-operating-rail > li:nth-child(6)::before { background: var(--loyalty-reversal); }
.loyalty-operating-rail > li:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 25px;
  right: -12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(157,134,255,.32);
  border-radius: 50%;
  background: #090a16;
  color: var(--loyalty-violet);
  content: "→";
  font: 700 10px/1 var(--mono);
}
.loyalty-operating-rail > li > span {
  display: block;
  min-height: 27px;
  color: var(--loyalty-violet);
  font: 700 8px/1.4 var(--mono);
  letter-spacing: .09em;
}
.loyalty-operating-rail > li > b {
  display: block;
  margin-top: 16px;
  color: var(--paper);
  font: 600 16px/1.22 var(--display);
  letter-spacing: -.025em;
}
.loyalty-operating-rail > li > p {
  margin: 12px 0 0;
  color: #909bb0;
  font-size: 11px;
  line-height: 1.58;
}
.loyalty-mode-branches {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 17px;
}
.loyalty-mode-branches::before {
  position: absolute;
  top: calc(50% - 9px);
  left: 10px;
  width: 1px;
  height: 18px;
  content: "";
  background: rgba(157,134,255,.52);
}
.loyalty-mode-branches::after {
  position: absolute;
  top: calc(50% - 10px);
  left: 3px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 20px;
  background: #101226;
  color: var(--loyalty-violet);
  content: "OR";
  font: 700 7px/1 var(--mono);
}
.loyalty-mode-branches article {
  min-width: 0;
  padding: 13px 11px 13px 16px;
  border: 1px solid rgba(115,231,196,.28);
  border-left: 3px solid var(--loyalty-wallet);
  border-radius: 10px;
  background: rgba(115,231,196,.055);
}
.loyalty-mode-branches article:last-child {
  border-color: rgba(255,203,112,.28);
  border-left-color: var(--loyalty-voucher);
  background: rgba(255,203,112,.05);
}
.loyalty-mode-branches article b {
  color: var(--loyalty-wallet);
  font: 700 8px/1 var(--mono);
  letter-spacing: .1em;
}
.loyalty-mode-branches article:last-child b { color: var(--loyalty-voucher); }
.loyalty-mode-branches article p {
  margin: 7px 0 0;
  color: #a0aabd;
  font-size: 10px;
  line-height: 1.5;
}

.loyalty-mode-section,
.loyalty-mode-section.section-paper,
.loyalty-integrity-section,
.loyalty-display-section.section-paper,
.loyalty-proof-section,
.loyalty-faq-section.section-paper,
.loyalty-related-section {
  background: var(--loyalty-surface);
  color: var(--paper);
}
.loyalty-mode-section {
  background:
    radial-gradient(620px 420px at 86% 18%, rgba(115,231,196,.095), transparent 72%),
    var(--loyalty-surface);
}
.loyalty-mode-section.section-paper {
  border-block: 1px solid rgba(255,203,112,.14);
  background:
    radial-gradient(720px 420px at 12% 18%, rgba(255,203,112,.085), transparent 72%),
    #080914;
}
.loyalty-mode-section .eyebrow { color: var(--loyalty-wallet); }
.loyalty-mode-section.section-paper .eyebrow { color: var(--loyalty-voucher); }
.loyalty-mode-section h2,
.loyalty-mode-section h3,
.loyalty-mode-section.section-paper h2,
.loyalty-mode-section.section-paper h3 { color: var(--paper); }
.loyalty-mode-section p,
.loyalty-mode-section .section-intro,
.loyalty-mode-section.section-paper p,
.loyalty-mode-section.section-paper .section-intro { color: #a7b0c2; }
.loyalty-mode-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .62fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
}
.loyalty-mode-grid-reverse { grid-template-columns: minmax(430px, .92fr) minmax(0, 1.08fr); }
.loyalty-mode-copy h3 {
  margin: 38px 0 12px;
  font: 600 22px/1.18 var(--display);
  letter-spacing: -.035em;
}
.loyalty-mode-copy h3:first-child { margin-top: 0; }
.loyalty-mode-copy p { line-height: 1.78; }
.loyalty-wallet-record {
  position: sticky;
  top: 100px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(115,231,196,.3);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(115,231,196,.11), transparent 48%),
    var(--loyalty-panel);
}
.loyalty-wallet-record::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--loyalty-wallet), transparent);
}
.loyalty-wallet-record h3 {
  margin: 4px 0 22px;
  font: 600 27px/1.08 var(--display);
  letter-spacing: -.04em;
}
.loyalty-wallet-record dl { margin: 0; }
.loyalty-wallet-record dl div {
  display: grid;
  grid-template-columns: minmax(105px, .7fr) minmax(0, 1.3fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(115,231,196,.14);
}
.loyalty-wallet-record dt {
  color: #8f9bad;
  font: 600 9px/1.4 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.loyalty-wallet-record dd {
  margin: 0;
  color: var(--loyalty-wallet);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.loyalty-wallet-record > p:last-child { margin-bottom: 0; font-size: 12px; }
.loyalty-mode-proof {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(255,203,112,.28);
  border-radius: 22px;
  background: rgba(255,203,112,.045);
}
.loyalty-mode-proof .shot-shell {
  padding: 7px;
  border-color: rgba(255,203,112,.16);
  background: #080914;
  box-shadow: none;
}
.loyalty-mode-proof > p b { color: var(--loyalty-voucher); }

.loyalty-integrity-section {
  border-bottom: 1px solid rgba(114,168,255,.16);
  background:
    radial-gradient(680px 430px at 78% 22%, rgba(114,168,255,.1), transparent 72%),
    #090a16;
}
.loyalty-integrity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .68fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}
.loyalty-integrity-card h2,
.loyalty-refund-card h2 {
  margin: 7px 0 20px;
  color: var(--paper);
  font: 600 clamp(32px, 4vw, 52px)/1.06 var(--display);
  letter-spacing: -.05em;
}
.loyalty-integrity-card > p:not(.eyebrow) { color: #a7b0c2; line-height: 1.75; }
.loyalty-integrity-card strong { color: #dbe7ff; }
.loyalty-refund-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(114,168,255,.32);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(114,168,255,.11), transparent 50%),
    var(--loyalty-panel);
}
.loyalty-refund-card::before {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--loyalty-reversal), transparent);
}
.loyalty-refund-card .eyebrow { color: var(--loyalty-reversal); }
.loyalty-refund-card dl { margin: 0; }
.loyalty-refund-card dl div {
  padding: 15px 0;
  border-bottom: 1px solid rgba(114,168,255,.14);
}
.loyalty-refund-card dt {
  color: var(--loyalty-reversal);
  font: 700 9px/1.35 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.loyalty-refund-card dd { margin: 6px 0 0; color: #c1cada; font-size: 12px; overflow-wrap: anywhere; }
.loyalty-refund-card > p:last-child { margin-bottom: 0; color: #929db1; font-size: 12px; }

.loyalty-display-section.section-paper {
  background:
    radial-gradient(780px 420px at 50% 14%, rgba(122,92,255,.12), transparent 74%),
    #070812;
}
.loyalty-display-section.section-paper .eyebrow { color: var(--loyalty-violet); }
.loyalty-display-section.section-paper h2,
.loyalty-display-section.section-paper h3 { color: var(--paper); }
.loyalty-display-section.section-paper p,
.loyalty-display-section.section-paper .section-intro { color: #a7b0c2; }
.loyalty-display-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.loyalty-display-grid article {
  min-width: 0;
  padding: 13px 13px 24px;
  border: 1px solid rgba(157,134,255,.22);
  border-radius: 20px;
  background: rgba(255,255,255,.018);
}
.loyalty-display-grid article:first-child { border-top-color: rgba(115,231,196,.5); }
.loyalty-display-grid article:last-child { border-top-color: rgba(255,203,112,.5); }
.loyalty-display-grid .shot-shell {
  padding: 7px;
  border-color: rgba(157,134,255,.14);
  background: #080914;
  box-shadow: none;
}
.loyalty-display-grid .shot-shell img {
  width: 100%;
  aspect-ratio: 8 / 3;
  object-fit: contain;
  background: #080914;
}
.loyalty-display-grid .eyebrow { margin: 22px 10px 0; }
.loyalty-display-grid article:first-child .eyebrow { color: var(--loyalty-wallet); }
.loyalty-display-grid article:last-child .eyebrow { color: var(--loyalty-voucher); }
.loyalty-display-grid h3 { margin: 12px 10px 7px; font: 600 22px/1.18 var(--display); letter-spacing: -.035em; }
.loyalty-display-grid article > p:last-child { margin: 0 10px; font-size: 13px; }

.loyalty-proof-section { background: #090a16; }
.loyalty-proof-section .content-main h2 { color: var(--paper); }
.loyalty-proof-section .content-main p { color: #a7b0c2; }
.loyalty-proof-checklist {
  display: grid;
  gap: 10px;
  margin: 34px 0;
  padding: 0;
  counter-reset: loyalty-proof;
  list-style: none;
}
.loyalty-proof-checklist li {
  position: relative;
  min-width: 0;
  padding: 22px 22px 22px 68px;
  border: 1px solid rgba(157,134,255,.18);
  border-radius: 15px;
  background: rgba(122,92,255,.035);
  counter-increment: loyalty-proof;
}
.loyalty-proof-checklist li::before {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--loyalty-violet);
  content: counter(loyalty-proof, decimal-leading-zero);
  font: 700 10px/1 var(--mono);
  letter-spacing: .08em;
}
.loyalty-proof-checklist li::after {
  position: absolute;
  top: 42px;
  bottom: 22px;
  left: 27px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--loyalty-violet), rgba(115,231,196,.2));
}
.loyalty-proof-checklist b { color: var(--paper); }
.loyalty-proof-section .side-card {
  border-color: rgba(157,134,255,.26);
  background:
    linear-gradient(145deg, rgba(122,92,255,.1), transparent 48%),
    var(--loyalty-panel);
}

.loyalty-faq-section.section-paper {
  border-block: 1px solid rgba(157,134,255,.15);
  background:
    radial-gradient(680px 360px at 15% 20%, rgba(122,92,255,.09), transparent 72%),
    #080914;
}
.loyalty-faq-section.section-paper .eyebrow { color: var(--loyalty-violet); }
.loyalty-faq-section.section-paper h2 { color: var(--paper); }
.loyalty-faq-section.section-paper p { color: #a6afc1; }
.loyalty-faq-section .faq-list details { border-bottom-color: rgba(157,134,255,.22); }
.loyalty-faq-section .faq-list summary { color: var(--paper); }
.loyalty-faq-section .faq-list summary:focus-visible {
  border-radius: 6px;
  outline-color: var(--loyalty-violet);
}
.loyalty-faq-section .faq-list p { color: #a6afc1; }

.loyalty-related-section {
  background:
    radial-gradient(720px 420px at 84% 10%, rgba(115,231,196,.07), transparent 72%),
    #070812;
}
.loyalty-related-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.loyalty-related-grid > a {
  min-width: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border: 1px solid rgba(157,134,255,.2);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(122,92,255,.075), transparent 55%),
    rgba(255,255,255,.016);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.loyalty-related-grid > a:nth-child(-n+3) { grid-column: span 2; }
.loyalty-related-grid > a:nth-child(n+4) { grid-column: span 3; }
.loyalty-related-grid > a:hover {
  transform: translateY(-3px);
  border-color: rgba(157,134,255,.44);
  background: rgba(122,92,255,.075);
}
.loyalty-related-grid > a:focus-visible {
  outline-color: var(--loyalty-wallet);
  outline-offset: 5px;
}
.loyalty-related-grid span {
  color: var(--loyalty-violet);
  font: 700 9px/1.3 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.loyalty-related-grid b {
  margin: auto 0 10px;
  color: var(--paper);
  font: 600 21px/1.18 var(--display);
  letter-spacing: -.035em;
}
.loyalty-related-grid p { margin: 0; color: #9fa9bc; font-size: 12px; line-height: 1.6; }
.loyalty-related-section .hero-actions { margin-top: 32px; }

.loyalty-page-hero .buyer-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(115,231,196,.25);
  border-radius: 16px;
  background: rgba(115,231,196,.2);
}
.loyalty-page-hero .buyer-path span {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: #aeb7cc;
  background: rgba(8,10,24,.94);
  font-size: 12px;
}
.loyalty-page-hero .buyer-path b {
  color: #73e7c4;
  font: 700 10px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.loyalty-mode-switch {
  padding: 1px;
  border-radius: 22px;
  background: linear-gradient(108deg, rgba(115,231,196,.5), rgba(122,92,255,.25) 50%, rgba(255,203,112,.56));
}
.loyalty-mode-switch .loyalty-operating-rail {
  overflow: hidden;
  border-radius: 21px;
  background: #0a0b18;
}
.loyalty-mode-switch .loyalty-operating-rail > li { min-height: 178px; }
.operator-dossier--loyalty {
  display: block;
  border-block: 1px solid rgba(157,134,255,.2);
  color: var(--paper);
  background: #080a17;
}
.operator-dossier--loyalty > summary {
  display: grid;
  grid-template-columns: minmax(150px,.36fr) minmax(0,1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(var(--max),calc(100% - 40px));
  margin: 0 auto;
  padding: 27px 0;
  color: var(--paper);
  cursor: pointer;
  list-style: none;
}
.operator-dossier--loyalty > summary::-webkit-details-marker { display: none; }
.operator-dossier--loyalty > summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(157,134,255,.35);
  border-radius: 50%;
  color: var(--loyalty-violet);
  content: "+";
  place-items: center;
}
.operator-dossier--loyalty > summary span {
  color: var(--loyalty-violet);
  font: 700 10px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.operator-dossier--loyalty > summary b {
  font: 600 clamp(20px,2.3vw,30px)/1.15 var(--display);
  letter-spacing: -.035em;
}
.operator-dossier--loyalty .section { padding-block: clamp(48px,7vw,82px); }
.operator-dossier--loyalty .section-paper { color: var(--paper); background: #0d1023; }
.operator-dossier--loyalty .loyalty-mode-copy,
.operator-dossier--loyalty .loyalty-integrity-card,
.operator-dossier--loyalty .loyalty-display-grid article { min-height: 0; }
@media (max-width: 760px) {
  .loyalty-page-hero .buyer-path { grid-template-columns: 1fr; }
  .operator-dossier--loyalty > summary {
    grid-template-columns: 1fr auto;
    gap: 9px 14px;
    width: min(100% - 32px,var(--max));
  }
  .operator-dossier--loyalty > summary span { grid-column: 1 / -1; }
  .loyalty-mode-switch .loyalty-operating-rail > li { min-height: 0; }
}
.cta-band { padding: 0 0 32px; }
.cta-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 44px;
  border: 1px solid rgba(157,134,255,.34);
  border-radius: 26px;
  background: linear-gradient(125deg, rgba(122,92,255,.19), rgba(15,16,32,.92) 58%);
}
.cta-inner::after {
  position: absolute;
  top: -130px;
  right: -80px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(157,134,255,.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(122,92,255,.035), 0 0 0 110px rgba(122,92,255,.025);
}
.cta-inner h2 { position: relative; z-index: 1; margin: 0; color: var(--paper); font: 600 clamp(32px, 4vw, 50px)/1.1 var(--display); letter-spacing: -.05em; }
.cta-inner p { position: relative; z-index: 1; margin: 12px 0 0; color: var(--muted); }
.cta-inner .button { position: relative; z-index: 1; }
.operations-authority-page .cta-band { padding-bottom: 32px; }
.operations-authority-page .cta-inner { padding: 36px 44px; }

.site-footer { padding: 52px 0 26px; border-top: 1px solid var(--line); background: #060710; }
.footer-grid { display: grid; grid-template-columns: minmax(220px, 1.1fr) minmax(0, 3fr); gap: 54px; }
.footer-brand p { max-width: 330px; color: var(--muted); font-size: 14px; }
.footer-navigation { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px; }
.footer-nav-summary {
  padding: 0;
  color: var(--paper);
  cursor: pointer;
  font: 600 11px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-nav-summary:focus-visible {
  outline: 3px solid var(--violet-2);
  outline-offset: 2px;
}
.footer-nav-links a { display: block; margin-top: 0; padding-top: 13px; color: var(--muted); font-size: 13px; text-decoration: none; }
.footer-nav-links a:hover { color: var(--paper); }
.footer-disclosures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer-disclosure {
  overflow: clip;
  border: 1px solid rgba(157,134,255,.2);
  border-radius: 13px;
  background: rgba(17,20,38,.62);
}
.footer-disclosure > summary {
  min-height: 44px;
  padding: 12px 14px;
  color: var(--paper);
  cursor: pointer;
  font: 600 12px/1.45 var(--body);
}
.footer-disclosure > summary:focus-visible {
  outline: 3px solid var(--violet-2);
  outline-offset: -3px;
}
.footer-disclosure[open] > summary { border-bottom: 1px solid var(--line); }
.footer-disclosure p { margin: 0; padding: 14px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.footer-disclosure strong { color: var(--paper); font-weight: 650; }
.footer-disclosure code {
  color: var(--violet-2);
  font: 600 11px/1.5 var(--mono);
  overflow-wrap: anywhere;
}
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--faint); font-size: 11px; }

/* Source: web/liftedpos/assets/site.css (shared responsive) */
@media (max-width: 1050px) {
  .primary-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 96px);
    max-height: calc(100dvh - 96px);
    padding: 12px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
    box-shadow: var(--shadow);
    scrollbar-gutter: stable;
  }
  .primary-nav.open { display: flex; }
  .primary-nav > a, .nav-dropdown > button { width: 100%; padding: 13px; text-align: left; }
  .drop-panel { position: static; width: 100%; margin: 0; box-shadow: none; }
  .menu-button { display: grid; place-items: center; margin-left: auto; }
  .nav-actions .button:not(.button-primary) { display: none; }
  .mobile-nav-actions { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 12px; border-top: 1px solid var(--line); }
  .mobile-nav-actions .button { width: 100%; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .transaction-stage { width: min(850px, 100%); min-height: auto; padding-bottom: 90px; }
  .workforce-stage { grid-template-columns: 1fr; }
  .workforce-proof { max-width: 850px; }
  .home-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-option:last-child { grid-column: 1 / -1; min-height: 300px; }
  .pricing-lower { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-intro { margin-top: 18px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 42px; }
  .split.reverse .split-copy { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .demo-gallery-hero-grid { grid-template-columns: 1fr; }
  .demo-gallery-proof { max-width: 680px; }
  .demo-card { grid-template-columns: minmax(0, .72fr) minmax(250px, 1.28fr); }
  .demo-profile-link-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-aside { max-width: 620px; }
  .content-grid { grid-template-columns: 1fr; gap: 45px; }
  .side-card { position: static; }
  .qr-order-stage { grid-template-columns: 1fr minmax(320px, .58fr); gap: 45px; }
  .qr-relay { grid-template-columns: repeat(2, 1fr); }
  .qr-relay-step:nth-child(2) { border-right: 0; }
  .qr-relay-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .qr-relay-step:nth-child(2)::after { display: none; }
  .qr-proof-grid { grid-template-columns: 1fr; }
  .cash-hero-grid,
  .cash-proof-grid,
  .cash-open-grid { grid-template-columns: 1fr; }
  .cash-equation-card { max-width: 760px; }
  .cash-open-grid .cash-shot-shell { order: 2; }
  .cash-control-grid { grid-template-columns: repeat(2, 1fr); }
  .offline-hero-grid,
  .offline-proof-grid,
  .offline-walkthrough-grid { grid-template-columns: 1fr; }
  .offline-hero-brief { max-width: 680px; }
  .offline-state-rail { grid-template-columns: 1fr; }
  .offline-state {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 24px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .offline-state:last-child { border-bottom: 0; }
  .offline-state::before { top: 0; right: auto; bottom: 0; left: 50px; width: 2px; height: auto; }
  .offline-state > div { margin-top: 0; }
  .offline-state-outcomes { margin: 0; }
  .offline-walkthrough-grid > div { position: static; }
  .hybrid-hero-grid,
  .hybrid-fit-grid { grid-template-columns: 1fr; }
  .hybrid-hero-card { max-width: 720px; }
  .hybrid-boundary-card { position: static; max-width: 720px; }
  .restaurant-hero-grid,
  .restaurant-pricing-head,
  .restaurant-people-system { grid-template-columns: 1fr; }
  .restaurant-hero-record { max-width: 720px; }
  .restaurant-people-intro { position: static; }
  .restaurant-people-intro > p:last-child { max-width: 760px; }
  .restaurant-price-record { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .restaurant-price-record > div:nth-child(2) { border-right: 0; }
  .restaurant-price-record > div:nth-child(-n+2) { border-bottom: 1px solid rgba(157,134,255,.18); }
  .restaurant-pricing-terms { grid-template-columns: 1fr; }
  .restaurant-pricing-terms > div { min-height: 0; }
  .restaurant-service-rail { grid-template-columns: 1fr; }
  .restaurant-service-rail li {
    min-height: 0;
    padding: 23px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .restaurant-service-rail li:last-child { border-bottom: 0; }
  .restaurant-service-rail li:not(:last-child)::after {
    top: auto;
    right: 22px;
    bottom: -12px;
    content: "↓";
  }
  .restaurant-service-rail b { margin-top: 17px; }
  [data-demo-tour-panel] { grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr); }
  .demo-tour-copy { padding-inline: 30px; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 68px; }
  .primary-nav {
    top: 68px;
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
  }
  .nav-actions .button-primary { display: none; }
  .hero { padding-top: 58px; }
  .hero h1, .page-hero h1 { font-size: clamp(41px, 13vw, 59px); }
  .hero-copy { font-size: 17px; }
  .home-hero { min-height: auto; background-size: 40px 40px, 40px 40px, auto, auto; }
  .home-hero::after { display: none; }
  .hero-signal-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-signal-grid span:nth-child(2) { border-right: 0; }
  .hero-signal-grid span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .transaction-stage { padding-bottom: 0; }
  .product-frame { transform: none; }
  .transaction-pulse { position: relative; right: auto; bottom: auto; left: auto; grid-template-columns: repeat(2, 1fr); margin-top: 12px; }
  .pulse-step:nth-child(2) { border-right: 0; }
  .pulse-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { padding: 20px 14px; border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(n+3) { border-bottom: 0; }
  .section { padding: 80px 0; }
  .section-tight { padding: 60px 0; }
  .industry-panel { grid-template-columns: 1fr; padding: 20px; }
  .workforce-grid,
  .home-pricing-grid { grid-template-columns: 1fr; }
  .workforce-card { min-height: 190px; }
  .pricing-option,
  .pricing-option:last-child { grid-column: auto; min-height: 320px; padding: 24px; }
  .feature-grid, .demo-grid { grid-template-columns: 1fr; }
  .demo-gallery-page .page-hero { padding-block: 54px 62px; }
  .demo-gallery-page .page-hero h1 { max-width: 12ch; font-size: clamp(38px, 11vw, 52px); }
  .demo-gallery-page .page-hero .lede { font-size: 16px; line-height: 1.55; }
  .demo-gallery-proof {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 0 15px;
    align-items: center;
    padding: 20px 22px;
  }
  .demo-gallery-proof > span { grid-row: 1 / span 2; font-size: 68px; }
  .demo-gallery-proof > b { margin-top: 0; }
  .demo-gallery-proof p { margin: 5px 0 0; }
  .demo-gallery-proof ul { display: none; }
  .demo-profile-group > header { align-items: center; }
  .demo-profile-group .demo-grid {
    display: flex;
    gap: 14px;
    margin-inline: -14px;
    padding-inline: 14px;
    overflow-x: auto;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .demo-card { grid-template-columns: 1fr; min-height: 0; flex: 0 0 min(88vw, 350px); scroll-snap-align: start; }
  .demo-card img { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
  .demo-body { min-height: 255px; padding: 27px 24px 30px; }
  .demo-profile-link-rail { grid-template-columns: 1fr; }
  .editorial-context-link { grid-template-columns: 1fr; gap: 18px; width: min(calc(100% - 28px), var(--max)); margin-bottom: 64px; }
  .demo-tour { margin-top: 30px; }
  .demo-tour-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .demo-tour-tabs button {
    flex: 0 0 184px;
    min-height: 94px;
    padding: 16px;
    scroll-snap-align: start;
  }
  .demo-tour-tabs button:last-child { border-right: 1px solid var(--line); }
  [data-demo-tour-panel] { grid-template-columns: 1fr; min-height: 0; }
  .demo-tour-media {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    aspect-ratio: 2400 / 1520;
  }
  .demo-tour-copy { padding: 36px 24px 40px; }
  .demo-tour-copy h3 { font-size: clamp(29px, 9vw, 39px); }
  .demo-tour-copy .button { width: 100%; }
  .gallery { display: grid; grid-template-columns: 1fr; }
  .gallery-card:nth-child(n) { grid-column: auto; }
  .price-stage { grid-template-columns: 1fr; }
  .page-hero { padding: 68px 0 52px; }
  .qr-page-hero { padding-bottom: 68px; }
  .qr-order-stage { grid-template-columns: 1fr; }
  .qr-stage-copy h1 { font-size: clamp(41px, 13vw, 59px); }
  .qr-phone { width: min(94%, 390px); transform: none; }
  .qr-relay { grid-template-columns: 1fr; }
  .qr-relay-step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .qr-relay-step:nth-child(n) { border-bottom: 1px solid var(--line); }
  .qr-relay-step:last-child { border-bottom: 0; }
  .qr-relay-step:not(:last-child)::after { top: auto; right: 26px; bottom: -12px; content: "↓"; }
  .qr-relay-step:nth-child(2)::after { display: grid; }
  .qr-relay-step b { margin-top: 34px; }
  .faq-layout { grid-template-columns: 1fr; }
  .cash-page-hero { padding-bottom: 68px; background-size: 42px 42px, 42px 42px, auto; }
  .cash-hero-grid h1 { font-size: clamp(41px, 13vw, 59px); }
  .cash-equation-card { padding: 18px; border-radius: 18px; }
  .cash-ledger-row { gap: 4px; padding: 7px; }
  .cash-ledger-term { padding: 9px 5px; }
  .cash-ledger-term small { font-size: 7px; }
  .cash-ledger-op { flex-basis: 9px; font-size: 11px; }
  .cash-proof-grid,
  .cash-open-grid { gap: 34px; }
  .cash-control-grid { grid-template-columns: 1fr; }
  .cash-control-grid .feature-card { min-height: auto; }
  .offline-page-hero { padding-bottom: 68px; background-size: 42px 42px, 42px 42px, auto; }
  .offline-hero-grid h1 { font-size: clamp(41px, 13vw, 59px); }
  .offline-hero-globe { top: 32px; right: -35px; }
  .offline-capability-grid { grid-template-columns: 1fr; }
  .offline-table-wrap { border: 0; background: none; }
  .offline-state-matrix,
  .offline-state-matrix tbody,
  .offline-state-matrix tr,
  .offline-state-matrix th,
  .offline-state-matrix td { display: block; width: 100%; }
  .offline-state-matrix caption { display: block; border: 1px solid var(--line); border-radius: 13px; }
  .offline-state-matrix thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .offline-state-matrix tbody tr { margin-top: 13px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.016); }
  .offline-state-matrix tbody th { width: 100%; padding: 16px; border-right: 0; background: rgba(122,92,255,.07); }
  .offline-state-matrix td { position: relative; padding: 39px 16px 16px; border-right: 0; }
  .offline-state-matrix td::before { position: absolute; top: 14px; left: 16px; color: var(--violet-2); content: attr(data-state); font: 600 9px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
  .offline-state-matrix td:nth-of-type(2)::before { color: #ffcb70; }
  .offline-state-matrix td:nth-of-type(3)::before { color: var(--mint); }
  .offline-state-matrix tbody tr:last-child > *:not(:last-child) { border-bottom: 1px solid var(--line); }
  .offline-walkthrough li { padding-left: 55px; }
  .hybrid-page-hero { padding-bottom: 70px; background-size: 42px 42px, 42px 42px, auto; }
  .hybrid-hero-grid h1 { font-size: clamp(41px, 13vw, 59px); }
  .hybrid-hero-globe { top: 34px; right: -42px; }
  .hybrid-flow { grid-template-columns: 1fr; gap: 38px; padding: 18px; }
  .hybrid-flow-inputs,
  .hybrid-flow-outcomes { gap: 10px; }
  .hybrid-flow-inputs::before,
  .hybrid-flow-outcomes::before,
  .hybrid-flow-input::after,
  .hybrid-flow-outcome::before { display: none; }
  .hybrid-flow-arrow {
    top: auto;
    right: auto;
    left: calc(50% - 13px);
    transform: rotate(90deg);
  }
  .hybrid-flow-arrow-in { top: -33px; }
  .hybrid-flow-arrow-out { bottom: -33px; }
  .hybrid-proof-grid { grid-template-columns: 1fr; }
  .hybrid-table-wrap { border: 0; background: none; }
  .hybrid-matrix,
  .hybrid-matrix tbody,
  .hybrid-matrix tr,
  .hybrid-matrix th,
  .hybrid-matrix td { display: block; width: 100%; }
  .hybrid-matrix caption { display: block; border: 1px solid var(--line); border-radius: 13px; }
  .hybrid-matrix thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .hybrid-matrix tbody tr { margin-top: 13px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.016); }
  .hybrid-matrix tbody th { width: 100%; padding: 16px; border-right: 0; background: rgba(122,92,255,.07); }
  .hybrid-matrix td { position: relative; padding: 40px 16px 16px; border-right: 0; }
  .hybrid-matrix td::before { position: absolute; top: 14px; left: 16px; color: var(--violet-2); content: attr(data-column); font: 600 9px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
  .hybrid-matrix td:nth-of-type(1)::before { color: var(--mint); }
  .hybrid-matrix td:nth-of-type(2)::before { color: #ffcb70; }
  .hybrid-matrix tbody tr:last-child > *:not(:last-child) { border-bottom: 1px solid var(--line); }
  .restaurant-page-hero { padding-bottom: 70px; background-size: 42px 42px, 42px 42px, auto, auto; }
  .restaurant-hero-grid h1 { font-size: clamp(41px, 13vw, 59px); }
  .restaurant-hero-globe { top: 34px; right: -42px; }
  .restaurant-proof-grid,
  .restaurant-fit-grid { grid-template-columns: 1fr; }
  .restaurant-fit-grid article { min-height: 0; }
  .cta-inner { grid-template-columns: 1fr; gap: 18px; padding: 24px 28px; }
  .cta-inner h2 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-navigation { gap: 34px; }
  .footer-bottom { display: block; }
}

@media (max-width: 720px) {
  .cta-band { padding-bottom: 24px; }
  .cta-inner { gap: 16px; padding: 22px 20px; border-radius: 20px; }
  .cta-inner h2 { font-size: 28px; line-height: 1.05; }
  .cta-inner p { margin-top: 8px; font-size: 13px; line-height: 1.45; }
  .site-footer { padding: 30px 0 20px; }
  .footer-grid { gap: 18px; }
  .footer-brand p { margin: 8px 0 0; font-size: 12px; line-height: 1.45; }
  .footer-navigation { display: block; border-top: 1px solid var(--line); }
  .footer-nav-group { border-bottom: 1px solid var(--line); }
  .footer-nav-summary {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 14px 2px;
    color: var(--paper);
    cursor: pointer;
    font: 600 11px/1.4 var(--mono);
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .footer-nav-summary:focus-visible {
    outline: 3px solid var(--violet-2);
    outline-offset: 2px;
  }
  .footer-nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    padding: 0 2px 14px;
  }
  .footer-nav-links a { min-height: 44px; margin-top: 0; padding: 11px 0; color: var(--muted); font-size: 12px; line-height: 1.45; text-decoration: none; }
  .footer-nav-links a:focus-visible { color: var(--paper); }
  .footer-disclosures { grid-template-columns: 1fr; gap: 8px; margin-top: 18px; padding-top: 16px; }
  .footer-disclosure > summary { min-height: 48px; padding: 13px 10px; }
  .footer-disclosure p { padding: 12px 10px; }
  .footer-bottom { gap: 5px; margin-top: 16px; padding-top: 14px; line-height: 1.45; }
  .footer-bottom span { display: block; }
}

@media (max-width: 430px) {
  .operations-authority-page .cta-band { padding-bottom: 20px; }
  .operations-authority-page .cta-inner {
    gap: 18px;
    padding: 24px 20px;
    border-radius: 20px;
  }
  .operations-authority-page .cta-inner h2 {
    font-size: 28px;
    line-height: 1.05;
  }
  .operations-authority-page .cta-inner p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
  }
  .hero-actions .button { width: 100%; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .proof-item:nth-child(n) { border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .pulse-step { min-height: 105px; padding: 14px 12px; }
  .form-card, .price-card, .calculator { padding: 24px 20px; }
  .qr-code-card { grid-template-columns: 76px 1fr; padding: 11px; }
  .qr-code-grid { width: 76px; height: 76px; padding: 7px; }
  .qr-boundary { padding: 24px 20px; }
  .cash-ledger-row { flex-direction: column; }
  .cash-ledger-op { min-height: 12px; }
  .cash-ledger-op[aria-label="plus"]::after { content: "ADD"; }
  .cash-ledger-op[aria-label="minus"]::after { content: "SUBTRACT"; }
  .cash-ledger-op[aria-label="equals"]::after { content: "RESULT"; }
  .cash-ledger-op { color: transparent; font-size: 0; }
  .cash-ledger-op::after { color: var(--faint); font: 600 7px/1 var(--mono); letter-spacing: .12em; }
  .cash-proof-facts { grid-template-columns: 1fr; }
  .cash-proof-facts span { border-right: 0; border-bottom: 1px solid var(--line); }
  .cash-proof-facts span:last-child { border-bottom: 0; }
  .cash-boundary { padding: 24px 20px; }
  .offline-hero-brief { padding: 23px 20px; }
  .demo-tour-tabs button { flex-basis: 165px; }
  .offline-state { grid-template-columns: 39px minmax(0, 1fr); gap: 16px; padding: 23px 18px; }
  .offline-state::before { left: 37px; }
  .offline-state-index { width: 39px; height: 39px; }
  .offline-boundary { padding: 24px 20px; }
  .hybrid-hero-card,
  .hybrid-boundary-card { padding: 24px 20px; }
  .hybrid-proof-card { padding: 10px; }
  .hybrid-proof-heading { padding: 20px 14px 24px; }
  .restaurant-hero-record,
  .restaurant-boundary { padding: 24px 20px; }
  .restaurant-proof-card { padding: 10px; }
  .restaurant-people-section { padding-block: 78px; }
  .restaurant-people-grid article { min-height: 0; padding: 28px 22px; }
  .restaurant-price-record { grid-template-columns: 1fr; }
  .restaurant-price-record > div,
  .restaurant-price-record > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(157,134,255,.18);
  }
  .restaurant-price-record > div:last-child { border-bottom: 0; }
  .restaurant-pricing-table-wrap { overflow: visible; }
  .restaurant-pricing-table {
    min-width: 0;
    border-collapse: separate;
  }
  .restaurant-pricing-table,
  .restaurant-pricing-table tbody,
  .restaurant-pricing-table tr,
  .restaurant-pricing-table th,
  .restaurant-pricing-table td {
    display: block;
    width: 100%;
  }
  .restaurant-pricing-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .restaurant-pricing-table tbody tr {
    margin: 12px 14px 0;
    width: calc(100% - 28px);
    overflow: hidden;
    border: 1px solid rgba(157,134,255,.18);
    border-radius: 15px;
    background: rgba(255,255,255,.012);
  }
  .restaurant-pricing-table tbody th {
    padding: 17px 18px;
    border-bottom: 1px solid rgba(157,134,255,.18);
    background: rgba(122,92,255,.09);
  }
  .restaurant-pricing-table tbody td {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    text-align: right;
    white-space: normal;
  }
  .restaurant-pricing-table tbody td::before {
    color: #aab6cf;
    content: attr(data-price-label);
    font: 700 10px/1.35 var(--mono);
    letter-spacing: .07em;
    text-align: left;
    text-transform: uppercase;
  }
  .restaurant-pricing-table tbody td:last-child { border-bottom: 0; }
  .restaurant-pricing-table tbody tr:last-child { margin-bottom: 14px; }
  .restaurant-pricing-terms > div { padding: 24px 21px; }
}


/* Source: web/liftedpos/assets/site.css (loyalty responsive) */
@media (max-width: 1040px) {
  .loyalty-hero-grid,
  .loyalty-value-grid,
  .loyalty-mode-grid,
  .loyalty-mode-grid-reverse,
  .loyalty-integrity-grid,
  .loyalty-display-grid { grid-template-columns: 1fr; }
  .loyalty-hero-copy { max-width: 780px; }
  .loyalty-hero-proof,
  .loyalty-mode-proof { max-width: 860px; }
  .loyalty-value-grid > div:last-child {
    padding: 30px 0 0;
    border-top: 1px solid rgba(157,134,255,.24);
    border-left: 0;
  }
  .loyalty-mode-grid { gap: 44px; }
  .loyalty-mode-grid-reverse .loyalty-mode-proof { order: 2; }
  .loyalty-wallet-record { position: static; max-width: 680px; }
  .loyalty-integrity-grid { align-items: start; }
  .loyalty-refund-card { max-width: 680px; }
  .loyalty-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .loyalty-related-grid > a:nth-child(n) { grid-column: auto; }
  .loyalty-related-grid > a:last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .loyalty-page-hero {
    padding-bottom: 70px;
    background-size: 42px 42px, 42px 42px, auto, auto, auto;
  }
  .loyalty-hero-globe { top: 34px; right: -42px; }
  .loyalty-hero-copy h1 { font-size: clamp(41px, 13vw, 59px); }
  .loyalty-hero-proof { margin-top: 10px; padding: 9px; border-radius: 18px; }
  .loyalty-operating-rail {
    display: block;
    margin-top: 38px;
  }
  .loyalty-operating-rail::before {
    top: 6%;
    right: auto;
    bottom: 6%;
    left: 34px;
    width: 2px;
    height: auto;
    background: linear-gradient(var(--loyalty-violet), var(--loyalty-wallet) 42%, var(--loyalty-voucher) 67%, var(--loyalty-reversal));
  }
  .loyalty-operating-rail::after {
    top: 6%;
    left: 28px;
    animation-name: loyalty-value-trace-vertical;
  }
  @keyframes loyalty-value-trace-vertical {
    0%, 8% { top: 6%; opacity: 1; }
    92% { top: 92%; opacity: 1; }
    100% { top: 92%; opacity: 0; }
  }
  .loyalty-operating-rail > li {
    min-height: 0;
    padding: 28px 24px 28px 68px;
    border-right: 0;
    border-bottom: 1px solid rgba(157,134,255,.16);
  }
  .loyalty-operating-rail > li:last-child { border-bottom: 0; }
  .loyalty-operating-rail > li::before {
    top: 30px;
    left: 26px;
  }
  .loyalty-operating-rail > li:not(:last-child)::after {
    top: auto;
    right: 18px;
    bottom: -12px;
    content: "↓";
  }
  .loyalty-operating-rail > li > span { min-height: 0; overflow-wrap: anywhere; }
  .loyalty-operating-rail > li > b { margin-top: 10px; }
  .loyalty-mode-branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 20px;
  }
  .loyalty-mode-branches::before {
    top: 12px;
    bottom: 12px;
    left: calc(50% - 1px);
    width: 1px;
    height: auto;
  }
  .loyalty-mode-branches::after {
    top: calc(50% - 10px);
    left: calc(50% - 8px);
  }
  .loyalty-mode-branches article { padding: 14px; }
  .loyalty-display-grid { gap: 34px; }
  .loyalty-related-grid { grid-template-columns: 1fr; }
  .loyalty-related-grid > a:last-child { grid-column: auto; }
  .loyalty-related-grid > a { min-height: 178px; }
}

@media (max-width: 430px) {
  .loyalty-hero-proof::before {
    left: 14px;
    max-width: calc(100% - 28px);
    overflow-wrap: anywhere;
    white-space: normal;
  }
  .loyalty-hero-proof,
  .loyalty-mode-proof,
  .loyalty-display-grid article { padding: 7px; }
  .loyalty-operating-rail > li { padding: 24px 17px 24px 59px; }
  .loyalty-operating-rail::before { left: 29px; }
  .loyalty-operating-rail::after { left: 23px; }
  .loyalty-operating-rail > li::before { left: 21px; }
  .loyalty-mode-branches { grid-template-columns: 1fr; }
  .loyalty-mode-branches::before {
    top: calc(50% - 9px);
    bottom: auto;
    left: 10px;
    height: 18px;
  }
  .loyalty-mode-branches::after {
    top: calc(50% - 10px);
    left: 3px;
  }
  .loyalty-wallet-record,
  .loyalty-refund-card,
  .loyalty-proof-section .side-card { padding: 23px 20px; }
  .loyalty-wallet-record dl div { grid-template-columns: 1fr; gap: 6px; }
  .loyalty-wallet-record dd,
  .loyalty-refund-card dd,
  .loyalty-operating-rail span,
  .loyalty-mode-branches b,
  .loyalty-related-grid span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .loyalty-display-grid .eyebrow,
  .loyalty-display-grid h3,
  .loyalty-display-grid article > p:last-child { margin-inline: 8px; }
  .loyalty-proof-checklist li { padding: 21px 17px 21px 58px; }
  .loyalty-proof-checklist li::before { left: 18px; }
  .loyalty-proof-checklist li::after { left: 23px; }
  .loyalty-related-grid > a { padding: 20px 18px; }
  .loyalty-related-section .hero-actions .button { white-space: normal; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .loyalty-operating-rail::after {
    left: 5.5%;
    opacity: 1;
    animation: none !important;
  }
  .message-shift-signal {
    top: 7%;
    left: 9%;
    opacity: 1;
    animation: none !important;
  }
  .message-shift-wire::before { opacity: .88; }
}

@media (max-width: 1040px) and (prefers-reduced-motion: reduce) {
  .message-shift-signal { top: 7%; left: 29px; }
}

@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .loyalty-operating-rail::after { top: 6%; left: 28px; }
}

@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  .loyalty-operating-rail::after { left: 23px; }
}

/* Workforce shift-handoff operator guide */
.editorial-guide--handoff {
  --handoff-violet: #a783ff;
  --handoff-electric: #7b4dff;
  --handoff-ink: #090712;
  --handoff-panel: #151024;
  --handoff-panel-strong: #1d1530;
  --handoff-rule: rgba(183, 154, 255, .28);
}
.editorial-guide--handoff .editorial-masthead {
  background:
    radial-gradient(circle at 78% 20%, rgba(123, 77, 255, .22), transparent 30%),
    linear-gradient(148deg, #090712 0%, #120c21 58%, #1a1030 100%);
}
.handoff-custody-section,
.handoff-clock-section,
.handoff-exception-section,
.handoff-close-section {
  background: linear-gradient(180deg, #0c0915, #110b1e);
}
.handoff-readiness-section,
.handoff-proof-section,
.handoff-reconcile-section,
.handoff-chat-section {
  background:
    linear-gradient(120deg, rgba(123, 77, 255, .08), transparent 42%),
    #141020;
}
.handoff-custody-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--handoff-rule);
  background: var(--handoff-rule);
  overflow: hidden;
}
.handoff-custody-rail::before {
  position: absolute;
  top: 44px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--handoff-violet), transparent);
}
.handoff-custody-rail li {
  position: relative;
  min-height: 245px;
  padding: 72px 24px 26px;
  background: linear-gradient(160deg, #171126, #0f0b19);
}
.handoff-custody-rail li::before {
  position: absolute;
  top: 37px;
  left: 24px;
  width: 14px;
  height: 14px;
  border: 3px solid #0f0b19;
  border-radius: 50%;
  background: var(--handoff-violet);
  box-shadow: 0 0 0 1px var(--handoff-violet), 0 0 28px rgba(167, 131, 255, .65);
  content: "";
}
.handoff-custody-rail span,
.handoff-readiness-gate span,
.handoff-exception-tree span,
.handoff-close-checklist > article > span {
  display: block;
  color: var(--handoff-violet);
  font: 700 .72rem/1.2 var(--font-mono);
  letter-spacing: .08em;
}
.handoff-custody-rail b {
  display: block;
  margin: 14px 0 10px;
  color: #fff;
  font-size: 1.08rem;
}
.handoff-custody-rail p,
.handoff-readiness-gate p,
.handoff-exception-tree p,
.handoff-close-checklist p {
  margin: 0;
  color: var(--text-secondary);
}
.handoff-readiness-gate {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}
.handoff-readiness-gate article,
.handoff-exception-tree article,
.handoff-close-checklist article {
  border: 1px solid var(--handoff-rule);
  background: linear-gradient(145deg, #1b142c, #100c1b);
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}
.handoff-readiness-gate article { min-height: 220px; padding: 26px 22px; }
.handoff-readiness-gate h3 { margin: 18px 0 12px; font-size: 1rem; }
.handoff-readiness-gate code { color: #fff; }
.handoff-responsibility-matrix,
.handoff-acceptance-grid {
  margin-top: 28px;
  border: 1px solid var(--handoff-rule);
  border-radius: var(--radius-lg);
  background: #0d0917;
  overflow-x: auto;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .28);
}
.handoff-responsibility-matrix .editorial-decision-table,
.handoff-acceptance-grid .editorial-decision-table { min-width: 820px; }
.handoff-proof-frame {
  margin-top: 34px;
  border-color: var(--handoff-rule);
  background: #0a0711;
}
.handoff-proof-frame .product-shot {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}
.handoff-proof-mobile-cue { display: none; }
.editorial-masthead-actions { margin-top: 28px; }
.handoff-primary-proof-viewport,
.editorial-guide--handoff .editorial-proof-viewport {
  overflow: auto;
  scrollbar-color: var(--handoff-violet) #0a0711;
}
.handoff-proof-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 20px;
  border-top: 1px solid var(--handoff-rule);
  background: #100b1b;
}
.handoff-proof-toolbar figcaption { color: var(--text-secondary); }
.handoff-proof-toolbar a { color: #d7c7ff; font-weight: 700; }
.handoff-proof-sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.handoff-proof-sequence article {
  padding: 23px;
  border-left: 2px solid var(--handoff-electric);
  background: #151020;
}
.handoff-proof-sequence span {
  color: var(--handoff-violet);
  font: 700 .8rem/1 var(--font-mono);
}
.handoff-proof-sequence h3 { margin: 13px 0 9px; }
.handoff-proof-sequence p { margin: 0; color: var(--text-secondary); }
.handoff-exception-tree {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.handoff-exception-tree article { min-height: 240px; padding: 28px; }
.handoff-exception-tree h3 { margin: 17px 0 11px; }
.handoff-close-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
ol.handoff-close-checklist li {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--handoff-rule);
  background: #151020;
}
ol.handoff-close-checklist b { color: var(--handoff-violet); }
ol.handoff-close-checklist span { color: var(--text-secondary); }
.handoff-close-checklist article { min-height: 190px; padding: 25px; }
.handoff-close-checklist h3 { margin: 16px 0 10px; }
.resource-command.resource-command--workforce {
  grid-column: 1 / -1;
  min-height: 250px;
  background:
    radial-gradient(circle at 80% 24%, rgba(167, 131, 255, .21), transparent 32%),
    linear-gradient(120deg, #171026, #0d0916);
}
.related-path-cluster {
  background:
    radial-gradient(circle at 82% 20%, rgba(123, 75, 255, .14), transparent 34%),
    linear-gradient(180deg, #100b1a, #090711);
  border-block: 1px solid rgba(174, 143, 255, .12);
}
.related-path-heading {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(420px, 1.18fr);
  gap: 24px 52px;
  align-items: end;
  margin-bottom: 28px;
}
.related-path-heading .eyebrow { grid-column: 1 / -1; margin: 0; }
.related-path-heading h2 { margin: 0; max-width: 10ch; }
.related-path-heading > p:last-child {
  margin: 0;
  max-width: 60ch;
  color: var(--text-secondary);
}
.related-path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(174, 143, 255, .16);
  border-radius: 22px;
  background: rgba(174, 143, 255, .16);
}
.related-path-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 270px;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(31, 23, 50, .96), rgba(13, 10, 22, .98));
  transition: transform .22s ease, background .22s ease;
}
.related-path-card:hover,
.related-path-card:focus-visible {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at 80% 10%, rgba(123, 75, 255, .22), transparent 34%),
    linear-gradient(145deg, #211831, #0d0a16);
}
.related-path-card span,
.related-path-card b {
  color: var(--electric-violet-300);
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.related-path-card h3 { margin: 22px 0 12px; max-width: 15ch; }
.related-path-card p { margin: 0; color: var(--text-secondary); }
.related-path-card b { margin-top: 28px; }
.related-path-grid--1 {
  max-width: 1040px;
}
.related-path-grid--1 .related-path-card {
  grid-template-columns: minmax(150px, .6fr) minmax(220px, 1fr) minmax(280px, 1.35fr) auto;
  grid-template-rows: auto;
  gap: 28px;
  align-items: center;
  min-height: 0;
}
.related-path-grid--1 .related-path-card h3,
.related-path-grid--1 .related-path-card b { margin: 0; }

@media (max-width: 1050px) {
  .related-path-grid--1 .related-path-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: 0;
  }
  .related-path-grid--1 .related-path-card h3 { margin: 14px 0 10px; }
  .related-path-grid--1 .related-path-card b { margin-top: 18px; }
  .handoff-custody-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .handoff-custody-rail::before { display: none; }
  .handoff-readiness-gate { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .handoff-proof-sequence { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .handoff-exception-tree { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .resource-command.resource-command--workforce {
    grid-column: 1 / -1;
    min-height: inherit;
  }
}

@media (max-width: 760px) {
  .related-path-heading { grid-template-columns: 1fr; }
  .related-path-heading .eyebrow { grid-column: auto; }
  .related-path-card,
  .related-path-grid--1 .related-path-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    min-height: 0;
  }
  .related-path-grid--1 .related-path-card h3 { margin: 14px 0 10px; }
  .related-path-grid--1 .related-path-card b { margin-top: 18px; }
  .related-path-grid--4 .related-path-card {
    grid-template-rows: auto auto auto;
    padding: 20px 22px;
  }
  .related-path-grid--4 .related-path-card h3 {
    margin: 12px 0 0;
    max-width: none;
  }
  .related-path-grid--4 .related-path-card p { display: none; }
  .related-path-grid--4 .related-path-card b { margin-top: 14px; }
  .handoff-custody-rail,
  .handoff-readiness-gate,
  .handoff-proof-sequence,
  .handoff-exception-tree,
  .handoff-close-checklist { grid-template-columns: 1fr; }
  .handoff-custody-rail li { min-height: 0; padding: 66px 21px 23px; }
  .handoff-primary-proof-viewport,
  .editorial-guide--handoff .editorial-proof-viewport {
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .handoff-proof-frame .shot-shell {
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .handoff-proof-mobile-cue {
    display: block;
    margin: 10px 14px 0;
    color: #b8a9dc;
    font: 700 .7rem/1.45 var(--font-mono);
    letter-spacing: .04em;
  }
  .handoff-proof-toolbar { align-items: flex-start; flex-direction: column; }
  .handoff-responsibility-matrix,
  .handoff-acceptance-grid { margin-inline: -8px; border-radius: 0; }
  ol.handoff-close-checklist li { grid-template-columns: 1fr; gap: 8px; }
  .resource-command.resource-command--workforce {
    grid-column: auto;
    min-height: 0;
  }
}

@media print {
  .editorial-guide--handoff header,
  .editorial-guide--handoff footer,
  .editorial-guide--handoff .editorial-command-section,
  .editorial-guide--handoff .handoff-proof-section,
  .editorial-guide--handoff .handoff-clock-section,
  .editorial-guide--handoff .handoff-chat-section,
  .editorial-guide--handoff .editorial-cost-section,
  .editorial-guide--handoff .section-tight { display: none !important; }
  .editorial-guide--handoff #close {
    display: block !important;
    color: #000;
    background: #fff;
    break-before: page;
  }
  .editorial-guide--handoff #close::after {
    display: block;
    margin-top: 18px;
    color: #333;
    font-size: 10pt;
    content: "Reviewed July 25, 2026 · https://liftedpos.com/resources/pos-shift-handoff-checklist/";
  }
  .editorial-guide--handoff #close * { color: #000 !important; box-shadow: none !important; }
}
