/* ============================================================
   Luciditi ID Verifier Landing — page styles
   Static CSS for WordPress (vanilla, no framework)
   ============================================================ */
   /* ── Fonts ────────────────────────────────────────────────── */

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/wp-content/themes/luciditi-main-theme/fonts/HelveticaNeue-1.woff2') format('woff2'),
         url('/wp-content/themes/luciditi-main-theme/fonts/HelveticaNeue.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/wp-content/themes/luciditi-main-theme/fonts/HelveticaNeue-2.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Play';
    src: url('/wp-content/themes/luciditi-main-theme/fonts/Play-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html body {
    font-family: 'Helvetica Neue', sans-serif;
}

h1, h2 {
    font-family: 'Play', sans-serif;
}

   /* ── Color Primitives ─────────────────────────────────────── */

:root,
.page-template-luciditi-proof-of-age {
  /* Brand Blues */
  --color-blue-600:       #0057D9;   /* logo icon blue */
  --color-blue-500:       #0076BA;   /* primary brand blue */
  --color-blue-400:       #00A2FF;   /* bright accent blue */
  --color-blue-200:       #AABDD9;   /* soft blue */

  /* Brand Teals */
  --color-teal-500:       #04988E;   /* deep teal */
  --color-teal-400:       #05A89D;   /* mid teal */
  --color-teal-300:       #18E7CD;   /* bright teal/cyan accent */
  --color-teal-200:       #00FFB0;   /* logo green-teal */

  /* Brand Cyan */
  --color-cyan-400:       #00F0FF;   /* logo top cyan */
  --color-cyan-300:       #00C8FF;   /* mid cyan */

  /* Neutrals */
  --color-black:          #000000;
  --color-navy-900:       #020B18;   /* near-black background */
  --color-navy-800:       #051428;   /* dark navy */
  --color-navy-700:       #0A1E3C;   /* navy mid */
  --color-grey-600:       #535353;
  --color-grey-400:       #808080;
  --color-grey-300:       #A7A7A7;
  --color-grey-200:       #CCCCCC;
  --color-grey-100:       #F0F0F0;
  --color-white:          #FFFFFF;

  /* ── Semantic Colors ────────────────────────────────────── */

  /* Backgrounds */
  --bg-primary:           var(--color-navy-900);
  --bg-secondary:         var(--color-navy-800);
  --bg-surface:           var(--color-navy-700);
  --bg-light:             var(--color-white);
  --bg-accent:            var(--color-blue-500);
  --bg-teal:              var(--color-teal-400);

  /* Text */
  --text-primary:         var(--color-white);
  --text-secondary:       var(--color-grey-300);
  --text-muted:           var(--color-grey-400);
  --text-on-light:        var(--color-black);
  --text-accent:          var(--color-teal-300);
  --text-link:            var(--color-blue-400);

  /* Borders */
  --border-default:       rgba(255,255,255,0.12);
  --border-strong:        rgba(255,255,255,0.24);
  --border-accent:        var(--color-teal-300);

  /* Brand Gradient */
  --gradient-brand:       linear-gradient(135deg, var(--color-teal-200) 0%, var(--color-cyan-400) 40%, var(--color-blue-600) 100%);
  --gradient-dark:        linear-gradient(180deg, var(--color-navy-900) 0%, var(--color-navy-800) 100%);

  /* ── Typography ─────────────────────────────────────────── */

  --font-sans:            'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --font-display:         'Play', 'Helvetica Neue', sans-serif;

  --font-size-xs:         0.75rem;    /* 12px */
  --font-size-sm:         0.875rem;   /* 14px */
  --font-size-base:       1rem;       /* 16px */
  --font-size-md:         1.125rem;   /* 18px */
  --font-size-lg:         1.25rem;    /* 20px */
  --font-size-xl:         1.5rem;     /* 24px */
  --font-size-2xl:        2rem;       /* 32px */
  --font-size-3xl:        2.5rem;     /* 40px */
  --font-size-4xl:        3.5rem;     /* 56px */
  --font-size-5xl:        5rem;       /* 80px */

  --font-weight-light:    300;
  --font-weight-regular:  400;
  --font-weight-medium:   500;
  --font-weight-bold:     700;

  --line-height-tight:    1.1;
  --line-height-snug:     1.3;
  --line-height-normal:   1.5;
  --line-height-loose:    1.7;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-wide:  0.04em;
  --letter-spacing-wider: 0.1em;

  /* ── Spacing ────────────────────────────────────────────── */

  --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;

  /* ── Radii ──────────────────────────────────────────────── */

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  /* ── Shadows ────────────────────────────────────────────── */

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.5);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.6);
  --shadow-glow-blue:  0 0 24px rgba(0,118,186,0.4);
  --shadow-glow-teal:  0 0 24px rgba(24,231,205,0.3);
}

/* ── Semantic Type Styles ───────────────────────────────────── */

.t-display {
  font-family: var(--font-display);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--text-primary);
}

.t-h1 {
  font-family: var(--font-sans);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--text-primary);
}

.t-h2 {
  font-family: var(--font-sans);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  color: var(--text-primary);
}

.t-h3 {
  font-family: var(--font-sans);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-snug);
  color: var(--text-primary);
}

.t-body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  color: var(--text-secondary);
}

.t-body-sm {
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  color: var(--text-secondary);
}

.t-label {
  font-family: var(--font-sans);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--text-muted);
}

.t-accent {
  color: var(--text-accent);
}

.t-link {
  color: var(--text-link) !important;
  text-decoration: none;
}

.t-link:hover {
  text-decoration: underline;
  opacity: 0.85;
}

html body,
.page-template-luciditi-proof-of-age,
.page-template-luciditi-proof-of-age h1, .page-template-luciditi-proof-of-age h2, .page-template-luciditi-proof-of-age h3, .page-template-luciditi-proof-of-age h4 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400 !important;
}
h1, h2, .page-template-luciditi-proof-of-age h1, .page-template-luciditi-proof-of-age h2 {
    font-family: 'Play', sans-serif;
    font-weight: 700 !important;
}
body p,
.page-template-luciditi-proof-of-age p {
    font-weight: 400;
}
    
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg-primary);
  color: var(--text-primary) !important;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px;
  border-radius: var(--radius-full); font-weight: 700; font-size: 15px; letter-spacing: .02em;
  cursor: pointer; border: none; transition: transform .18s, box-shadow .18s, background .18s;
  white-space: nowrap; font-family: var(--font-sans); }
.btn-primary { background: var(--gradient-brand); color: #02121F;
  box-shadow: 0 8px 24px rgba(0,240,255,.2), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,240,255,.32), inset 0 1px 0 rgba(255,255,255,.5); background: var(--gradient-brand); color: #02121F; }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text-primary); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--color-teal-300); color: var(--text-primary); }
.btn-arrow::after {
  content: "";
  display: inline-block;
  width: 20px; height: 20px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path d='M438.8 320L427.5 331.3L267.5 491.3L256.2 502.6L233.6 480L244.9 468.7L393.6 320L244.9 171.3L233.6 160L256.2 137.4L267.5 148.7L427.5 308.7L438.8 320z' stroke='black' stroke-width='40' stroke-linejoin='miter'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path d='M438.8 320L427.5 331.3L267.5 491.3L256.2 502.6L233.6 480L244.9 468.7L393.6 320L244.9 171.3L233.6 160L256.2 137.4L267.5 148.7L427.5 308.7L438.8 320z' stroke='black' stroke-width='40' stroke-linejoin='miter'/></svg>") no-repeat center / contain;
  transition: transform .18s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* Hero CTA: shake the chevron after a 2s pause, repeat */
.hero .btn-arrow::after {
  animation: hero-chevron-shake 3s ease-in-out infinite;
}
.hero .btn-arrow:hover::after {
  animation-play-state: paused;
  transform: translateX(4px);
}
@keyframes hero-chevron-shake {
  0%, 66.67% { transform: translateX(0); }
  72%       { transform: translateX(6px); }
  78%       { transform: translateX(-3px); }
  85%       { transform: translateX(6px); }
  92%       { transform: translateX(-3px); }
  100%      { transform: translateX(0); }
}

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 20px 0;
  backdrop-filter: blur(14px); background: rgba(2,11,24,.55); border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { height: 28px; }
.nav-links { display: flex; gap: 32px; font-size: 14px; color: var(--text-secondary); }
.nav-links a:hover { color: var(--color-teal-300); }
.nav-cta { padding: 10px 20px; font-size: 13px; }
@media (max-width: 768px) { .nav-links { display: none; } }

/* Hero */
.hero { position: relative; padding: 160px 0 100px; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(0,118,186,.35), transparent 60%),
    linear-gradient(180deg, rgba(2,11,24,.4) 0%, rgba(2,11,24,.92) 80%); }

.hero--retail .hero-bg { background-image:
  linear-gradient(135deg, rgba(2,11,24,.7) 0%, rgba(2,11,24,.55) 100%),
  url('https://images.unsplash.com/photo-1572116469696-31de0f17cc34?auto=format&fit=crop&w=1800&q=80'); }
.hero--retail .hero-bg::after {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(0,87,217,.25), transparent 50%),
    linear-gradient(90deg, rgba(2,11,24,.85) 0%, rgba(2,11,24,.55) 50%, rgba(2,11,24,.35) 100%); }

.hero--network .hero-bg { background-image: url('./assets/bg-network-dark.jpeg'); }

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px;
  border-radius: var(--radius-full); background: rgba(24,231,205,.08);
  border: 1px solid rgba(24,231,205,.28); color: var(--color-teal-300);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-teal-300);
  box-shadow: 0 0 8px var(--color-teal-300); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }

.hero h1 { font-family: var(--font-display); font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02; letter-spacing: -.02em; margin: 22px 0; font-weight: 700; text-wrap: balance; }
.hero h1 .grad { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 19px; line-height: 1.55; color: var(--color-grey-200);
  max-width: 560px; margin-bottom: 36px; text-wrap: pretty; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }
.hero-meta { display: grid; grid-template-columns: repeat(2, max-content); column-gap: 28px; row-gap: 12px; color: var(--text-secondary); font-size: 13px; align-items: center; }
@media (max-width: 560px) { .hero-meta { grid-template-columns: 1fr; } }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { color: var(--color-teal-300); flex-shrink: 0; }

/* Verification flow card */
.flow-card { position: relative; background: linear-gradient(180deg, rgba(10,30,60,.7), rgba(2,11,24,.8));
  border: 1px solid var(--border-strong); border-radius: 24px; padding: 32px;
  box-shadow: var(--shadow-lg); overflow: hidden; }
.flow-card::before { content: ""; position: absolute; inset: -1px; border-radius: 24px; padding: 1px;
  background: linear-gradient(135deg, rgba(24,231,205,.4), transparent 40%, transparent 60%, rgba(0,118,186,.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.flow-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.flow-title { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--color-grey-300); }
.flow-status { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--color-teal-300); font-weight: 600; }
.flow-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-teal-300);
  box-shadow: 0 0 12px var(--color-teal-300); animation: pulse 1.5s ease-in-out infinite; }
.flow-steps { display: flex; flex-direction: column; gap: 12px; }
.flow-step { display: grid; grid-template-columns: 40px 1fr auto; gap: 16px; align-items: center;
  padding: 14px 16px; background: rgba(255,255,255,.03); border: 1px solid var(--border-default);
  border-radius: 14px; transition: all .4s ease; opacity: .35; }
.flow-step.is-active { opacity: 1; background: rgba(24,231,205,.06); border-color: rgba(24,231,205,.4);
  box-shadow: 0 0 0 1px rgba(24,231,205,.15), 0 8px 24px rgba(0,0,0,.4); }
.flow-step.is-done { opacity: .85; }
.flow-icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.05); color: var(--color-grey-300); border: 1px solid var(--border-default); }
.flow-step.is-active .flow-icon { background: var(--gradient-brand); color: #02121F; border-color: transparent; }
.flow-step.is-done .flow-icon { background: rgba(24,231,205,.15); color: var(--color-teal-300); border-color: rgba(24,231,205,.4); }
.flow-step-name { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.flow-step-desc { font-size: 12px; color: var(--text-muted); }
.flow-step-state { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.flow-step.is-active .flow-step-state, .flow-step.is-done .flow-step-state { color: var(--color-teal-300); }
.flow-result { margin-top: 18px; padding: 18px 20px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,255,176,.12), rgba(0,118,186,.1));
  border: 1px solid rgba(0,255,176,.3); display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(8px); transition: all .5s ease .1s; }
.flow-result.is-visible { opacity: 1; transform: translateY(0); }
.flow-result-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--color-teal-200);
  color: #02121F; display: grid; place-items: center; flex-shrink: 0; font-weight: 700; }
.flow-result-title { font-size: 14px; font-weight: 700; }
.flow-result-meta { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* Variant switch */
.variant-switch { position: fixed; top: 90px; right: 24px; z-index: 60;
  display: flex; gap: 4px; padding: 4px; background: rgba(2,11,24,.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong); border-radius: var(--radius-full); box-shadow: var(--shadow-lg); }
.variant-switch .label { font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted); padding: 10px 12px 10px 16px; align-self: center; }
.variant-switch button { appearance: none; border: none; background: transparent;
  color: var(--text-secondary); font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 10px 16px;
  border-radius: var(--radius-full); cursor: pointer; transition: all .2s; }
.variant-switch button.active { background: var(--gradient-brand); color: #02121F; }

/* Sections */
section { padding: 100px 0; position: relative; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--color-teal-300); margin-bottom: 16px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05; letter-spacing: -.015em; margin: 0 0 16px; font-weight: 700; text-wrap: balance; }
.section-head p { font-size: 18px; color: var(--color-grey-200); line-height: 1.55; margin: 0; text-wrap: pretty; }

/* Products */
.products { background: var(--bg-secondary); border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .product-grid { grid-template-columns: 1fr; } }
.product-tile { position: relative; padding: 36px 32px 32px;
  background: linear-gradient(180deg, rgba(10,30,60,.4), rgba(5,20,40,.4));
  border: 1px solid var(--border-default); border-radius: 20px; overflow: hidden;
  transition: transform .25s, border-color .25s; }
.product-tile:hover { transform: translateY(-4px); border-color: rgba(24,231,205,.4); }
.product-tile-glow { position: absolute; top: -40%; right: -20%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(24,231,205,.18), transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity .3s; }
.product-tile:hover .product-tile-glow { opacity: 1; }
.product-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-full);
  background: rgba(0,255,176,.12); color: var(--color-teal-200); margin-bottom: 24px; }
.product-badge--blue { background: rgba(0,162,255,.12); color: var(--color-blue-400); }
.product-badge--cyan { background: rgba(0,240,255,.12); color: var(--color-cyan-400); }
.product-icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-strong);
  margin-bottom: 24px; color: var(--color-teal-300); }
.product-tile h3 { font-size: 22px; font-weight: 700; margin: 0 0 12px; letter-spacing: -.01em; }
.product-tile p { font-size: 15px; color: var(--text-secondary); line-height: 1.55; margin: 0 0 24px; text-wrap: pretty; }
.product-features { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.product-features li { font-size: 14px; color: var(--color-grey-200); display: flex; gap: 10px; align-items: flex-start; }
.product-features li::before { content: ""; width: 6px; height: 6px; margin-top: 8px;
  border-radius: 50%; background: var(--color-teal-300); flex-shrink: 0; }
.product-link { font-size: 14px; font-weight: 700; color: var(--color-teal-300);
  display: inline-flex; align-items: center; gap: 8px; transition: gap .2s; }
.product-link:hover { gap: 14px; }

/* Credentials */
.credentials { padding: 80px 0; background: var(--bg-primary); border-bottom: 1px solid var(--border-default); }
.credentials-head { text-align: center; margin-bottom: 40px; }
.credentials-head .label { font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-muted); }
.credentials-head h3 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px);
  margin: 12px 0 0; font-weight: 700; text-wrap: balance; }
.credentials-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 880px; margin: 0 auto; }
@media (max-width: 880px) { .credentials-strip { grid-template-columns: repeat(2, 1fr); } }
.credential { display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 28px 18px; background: rgba(255,255,255,.025);
  border: 1px solid var(--border-default); border-radius: 16px; transition: all .25s; text-align: center; }
.credential:hover { background: rgba(255,255,255,.05); border-color: rgba(24,231,205,.3); transform: translateY(-2px); }
.credential-mark { height: 36px; display: grid; place-items: center; color: var(--color-grey-100); }
.credential-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.credential-meta { font-size: 11px; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }
.credential--soon { border-style: dashed; border-color: rgba(0,162,255,.3); }
.credential--soon .credential-meta { color: var(--color-blue-400); }

/* How it works */
.how { background: var(--bg-secondary); border-bottom: 1px solid var(--border-default); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1140px; margin: 0 auto; }
@media (max-width: 980px) { .steps-grid { grid-template-columns: 1fr; } }
.step { padding: 32px; background: linear-gradient(180deg, rgba(10,30,60,.5), rgba(5,20,40,.5));
  border: 1px solid var(--border-default); border-radius: 18px; }
.step-num { font-family: var(--font-display); font-size: 56px; font-weight: 700; line-height: 1;
  background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text;
  color: transparent; margin-bottom: 8px; display: block; }
.step h3 { font-size: 20px; font-weight: 700; margin: 8px 0 12px; letter-spacing: -.01em; }
.step p { font-size: 15px; color: var(--text-secondary); line-height: 1.55; margin: 0; text-wrap: pretty; }

/* How it works — user-flow image strip */
.how-flow {
  margin-top: 72px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 24px 28px;
  background: linear-gradient(180deg, rgba(10,30,60,.55), rgba(5,20,40,.4));
  border: 1px solid var(--border-default);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.how-flow::before {
  content: "";
  position: absolute; inset: -1px; border-radius: 24px; padding: 1px;
  background: linear-gradient(135deg, rgba(24,231,205,.25), transparent 40%, transparent 60%, rgba(0,118,186,.22));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.how-flow-cap {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-bottom: 18px; padding: 0 12px;
}
.how-flow-cap .label {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--color-teal-300);
}
.how-flow-cap .meta {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: .04em;
}
.how-flow-img {
  width: 100%; height: auto; display: block;
  border-radius: 12px;
  background: #E8ECF3; /* matches the strip's own light backdrop so seams disappear */
}

/* See it in action — gallery */
.gallery { background: var(--bg-primary); border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); position: relative; overflow: hidden; }
.gallery::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(24,231,205,.06), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(0,87,217,.10), transparent 55%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; gap: 56px; } }
.gallery-item {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}

/* Custom phone frame */
.phone {
  position: relative;
  width: 264px;
  aspect-ratio: 9 / 18.5;
  background: linear-gradient(180deg, #2a2d33 0%, #16181c 100%);
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 30px 60px -20px rgba(0,0,0,.7),
    0 12px 30px -10px rgba(0,87,217,.25);
}
.phone::before {
  /* Side button highlight */
  content: ""; position: absolute; right: -2px; top: 30%; width: 3px; height: 56px;
  background: linear-gradient(180deg, #4a4d54, #2a2d33);
  border-radius: 0 2px 2px 0;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #0a0d12;
}
.phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
.phone-screen::after {
  /* glass sheen */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, transparent 30%, transparent 70%, rgba(255,255,255,.03) 100%);
  pointer-events: none;
}

.gallery-caption {
  text-align: center;
  max-width: 240px;
}
.gallery-caption .step-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--color-teal-300);
  background: rgba(24,231,205,.08);
  border: 1px solid rgba(24,231,205,.28);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.gallery-caption h4 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700; line-height: 1.2; letter-spacing: -.005em;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.gallery-caption p {
  font-size: 13px; line-height: 1.5; color: var(--text-secondary); margin: 0; text-wrap: pretty;
}

/* Decline '09 */
.decline09 { background: var(--bg-secondary); border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); position: relative; overflow: hidden; }
.decline09::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(0,162,255,.12), transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(24,231,205,.06), transparent 55%);
}
.decline09-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; position: relative;
}
@media (max-width: 980px) { .decline09-grid { grid-template-columns: 1fr; gap: 40px; } }
.decline09-logo-wrap {
  display: grid; place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.decline09-logo { width: 100%; height: auto; display: block; border-radius: 24px; }
.decline09-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.06; letter-spacing: -.015em;
  margin: 14px 0 20px; font-weight: 700; text-wrap: balance;
}
.decline09-copy p {
  font-size: 16px; color: var(--color-grey-200); line-height: 1.6; margin: 0 0 14px; text-wrap: pretty;
}
.decline09-emphasis {
  margin-top: 22px !important;
  padding: 18px 22px;
  background: rgba(24,231,205,.08);
  border-left: 3px solid var(--color-teal-300);
  border-radius: 8px;
  color: var(--text-primary) !important;
  font-weight: 500;
}

/* Compliance / Regulator-ready */
.compliance { position: relative; overflow: hidden; }
.compliance-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('assets/regulator-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .28;
  pointer-events: none;
}
.compliance-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(2,11,24,.55) 0%, rgba(2,11,24,.35) 50%, rgba(2,11,24,.7) 100%),
    linear-gradient(90deg, rgba(2,11,24,.35) 0%, rgba(2,11,24,.12) 50%, rgba(2,11,24,.08) 100%);
}
.compliance > .container { position: relative; z-index: 2; }

/* Smoking ban */
.ban { background: var(--bg-primary); position: relative; overflow: hidden; }
.ban-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://luciditi.co.uk/wp-content/uploads/2026/05/bg-mlc.jpg');
  background-size: cover; background-position: center;
  opacity: .35;
  pointer-events: none;
}
.ban-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(0,87,217,.12), transparent 60%),
    linear-gradient(90deg, rgba(2,11,24,.35) 0%, rgba(2,11,24,.12) 50%, rgba(2,11,24,.08) 100%);
}
.ban::before { content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 80% 50%, rgba(0,87,217,.15), transparent 50%),
              radial-gradient(ellipse at 20% 50%, rgba(0,255,176,.06), transparent 60%);
  pointer-events: none; }
.ban .container { position: relative; z-index: 2; }
.ban-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
@media (max-width: 980px) { .ban-grid { grid-template-columns: 1fr; gap: 40px; } }
.ban-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px;
  border-radius: var(--radius-full); background: rgba(0,162,255,.1);
  border: 1px solid rgba(0,162,255,.3); color: var(--color-blue-400);
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.ban h2 { font-family: var(--font-display); font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.05; letter-spacing: -.015em; margin: 18px 0 20px; font-weight: 700; text-wrap: balance; }
.ban p { font-size: 17px; color: var(--color-grey-200); line-height: 1.6; margin: 0 0 16px; text-wrap: pretty; }
.ban-bullets { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.ban-bullets li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--color-grey-200); }
.ban-bullets li svg { color: var(--color-teal-300); flex-shrink: 0; margin-top: 3px; }

.gen-card { padding: 40px; background: linear-gradient(180deg, rgba(10,30,60,.6), rgba(5,20,40,.6));
  border: 1px solid var(--border-strong); border-radius: 24px; box-shadow: var(--shadow-lg); }
.gen-card-head { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px; }
.gen-date { font-family: var(--font-display); font-size: 64px; font-weight: 700; letter-spacing: -.02em;
  line-height: 1; margin-bottom: 8px; background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.gen-rule { font-size: 16px; color: var(--color-grey-200); margin-bottom: 24px; }
.gen-progression { display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--border-default); padding-top: 24px; }
.gen-row { position: relative; display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; align-items: center;
  font-size: 14px; color: var(--color-grey-200);
  padding: 10px 14px; margin: 0 -14px; border-radius: 12px;
  border: 1px solid transparent;
  transition: background-color .5s ease, border-color .5s ease, color .5s ease, transform .5s ease, box-shadow .5s ease; }
.gen-year { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--color-teal-300);
  transition: color .5s ease, text-shadow .5s ease; }
.gen-row .pill { padding: 4px 10px; border-radius: var(--radius-full); font-size: 11px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.06); color: var(--text-secondary);
  transition: background-color .5s ease, color .5s ease; }
.gen-row.is-now .pill { background: rgba(24,231,205,.15); color: var(--color-teal-300); }

/* Sequential highlight on the enforcement timeline */
.gen-row.is-active {
  background: linear-gradient(90deg, rgba(24,231,205,.18), rgba(0,162,255,.10) 60%, transparent);
  border-color: rgba(24,231,205,.45);
  color: #fff;
  transform: translateX(2px);
  box-shadow: 0 8px 30px rgba(24,231,205,.12), inset 0 0 0 1px rgba(255,255,255,.04);
}
.gen-row.is-active .gen-year { color: #fff; text-shadow: 0 0 16px rgba(24,231,205,.7); }
.gen-row.is-active .pill { background: rgba(24,231,205,.95); color: #02121F; font-weight: 800;
  box-shadow: 0 0 16px rgba(24,231,205,.55), 0 0 0 1px rgba(255,255,255,.25) inset; }
.gen-row::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0; border-radius: 2px;
  background: linear-gradient(180deg, var(--color-teal-300), var(--color-blue-400));
  box-shadow: 0 0 12px rgba(24,231,205,.7);
  transition: height .5s ease;
}
.gen-row.is-active::before { height: 70%; }
@media (prefers-reduced-motion: reduce) {
  .gen-row, .gen-year, .gen-row .pill, .gen-row::before { transition: none; }
}

/* Compliance */
.compliance { background: var(--bg-secondary); border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
.compliance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .compliance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .compliance-grid { grid-template-columns: 1fr; } }
.compliance-card { padding: 28px 24px; background: rgba(255,255,255,.025);
  border: 1px solid var(--border-default); border-radius: 16px; }
.compliance-card .icon { width: 44px; height: 44px; border-radius: 12px;
  background: rgba(24,231,205,.1); border: 1px solid rgba(24,231,205,.3);
  color: var(--color-teal-300); display: grid; place-items: center; margin-bottom: 16px; }
.compliance-card h4 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.compliance-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* CTA */
.cta { background: var(--bg-primary); position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,118,186,.25), transparent 60%); pointer-events: none; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; position: relative; }
@media (max-width: 980px) { .cta-grid { grid-template-columns: 1fr; gap: 40px; } }
.cta-copy h2 { font-family: var(--font-display); font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.05; letter-spacing: -.015em; margin: 14px 0 20px; font-weight: 700; text-wrap: balance; }
.cta-copy p { font-size: 17px; color: var(--color-grey-200); line-height: 1.6; margin: 0 0 28px; text-wrap: pretty; }
.cta-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.cta-perks li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--color-grey-200); }
.cta-perks li svg { color: var(--color-teal-300); flex-shrink: 0; margin-top: 2px; }

.form-card { padding: 36px; background: linear-gradient(180deg, rgba(10,30,60,.7), rgba(5,20,40,.8));
  border: 1px solid var(--border-strong); border-radius: 24px; box-shadow: var(--shadow-lg); position: relative; }
.form-card::before { content: ""; position: absolute; inset: -1px; border-radius: 24px; padding: 1px;
  background: linear-gradient(135deg, rgba(24,231,205,.5), transparent 50%, rgba(0,118,186,.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.form-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 6px; letter-spacing: -.01em; }
.form-card .form-sub { font-size: 14px; color: var(--text-secondary); margin: 0 0 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-secondary); }
.form-field input, .form-field select, .form-field textarea { appearance: none;
  background: rgba(2,11,24,.5); color: var(--text-primary); border: 1px solid var(--border-strong);
  border-radius: 10px; padding: 12px 14px; font-family: var(--font-sans); font-size: 14px;
  transition: border-color .2s, background .2s; width: 100%; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-teal-300); background: rgba(2,11,24,.7); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2318E7CD' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 15px; margin-top: 10px; }
.form-foot { margin-top: 16px; font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* Footer */
.footer { padding: 48px 0 32px; background: var(--bg-primary); border-top: 1px solid var(--border-default);
  font-size: 13px; color: var(--text-muted); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo { height: 22px; opacity: .9; }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--color-teal-300); }
.site_footer .footer_content_row2 .footer_media_links .socila-popup-inner li a { color: #337dff; }
.site_footer .footer_content_row2 .footer_media_links .socila-popup-inner li a:focus, .site_footer .footer_content_row2 .footer_media_links .socila-popup-inner li a:hover {
    color: #fff;
    background: #337dff;
}
/* Hide variants by default */
.hero[hidden] { display: none; }


/* ==========================================================
   Embedded Proof of Age — page-specific overrides & additions
   Builds on top of styles.css from the ID Verifier template.
   ========================================================== *

	    /* Hero */
.hero .hero-bg { background-image:
  linear-gradient(90deg, rgba(2,11,24,.85) 0%, rgba(2,11,24,.55) 40%, rgba(2,11,24,.18) 70%, rgba(2,11,24,.05) 100%),
  url('https://luciditi.co.uk/wp-content/uploads/2026/05/bg-hero-bar.jpg');
  background-size: cover; background-position: center; }
.hero .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 78% 40%, rgba(0,87,217,.28), transparent 55%),
    radial-gradient(ellipse at 12% 80%, rgba(24,231,205,.10), transparent 55%),
    linear-gradient(90deg, rgba(2,11,24,.85) 0%, rgba(2,11,24,.55) 50%, rgba(2,11,24,.4) 100%); }

.hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

/* ====== Embed stage (interactive in-app demo) ====== */
.embed-stage {
  position: relative;
  display: grid; grid-template-rows: auto auto auto auto; gap: 18px;
  justify-items: center;
}

.embed-tabs {
  display: inline-flex; gap: 4px; padding: 4px;
  background: rgba(2,11,24,.7); backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong); border-radius: var(--radius-full);
}
.embed-tabs button {
  appearance: none; border: none; background: transparent; cursor: pointer;
  padding: 8px 18px; font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-secondary);
  border-radius: var(--radius-full); transition: all .2s;
}
.embed-tabs button.is-active { background: var(--gradient-brand); color: #02121F; }

.embed-phone {
  position: relative; width: 300px; aspect-ratio: 9 / 18.5;
  background: linear-gradient(180deg, #2a2d33 0%, #16181c 100%);
  border-radius: 42px; padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 30px 60px -20px rgba(0,0,0,.7),
    0 12px 30px -10px rgba(0,87,217,.35);
}
.embed-phone::before {
  content: ""; position: absolute; right: -2px; top: 30%; width: 3px; height: 56px;
  background: linear-gradient(180deg, #4a4d54, #2a2d33); border-radius: 0 2px 2px 0;
}
.embed-phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: #fff;
}

/* Status bar inside the mock phone */
.mock-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 22px 6px; font-size: 12px; font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.mock-status-icons { display: inline-flex; align-items: center; gap: 5px; opacity: .85; }

/* App chrome — top bar */
.mock-app {
  height: 100%;
  display: flex; flex-direction: column;
}
.mock-appbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 18px 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mock-appbar-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; }
.mock-appbar-brand .logo {
  width: 24px; height: 24px; border-radius: 7px;
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 12px;
}
.mock-appbar-icon { width: 22px; height: 22px; border-radius: 50%; background: #f0f1f4; display: grid; place-items: center; font-size: 11px; color: #6b7280; }

/* App body — generic */
.mock-body {
  flex: 1; padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
}

/* Basket / cart row */
.mock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px; border-radius: 12px;
  background: #f6f7fa;
}
.mock-row-thumb {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 18px;
}
.mock-row-text { flex: 1; min-width: 0; }
.mock-row-name { font-size: 12px; font-weight: 700; color: #111827; line-height: 1.2; }
.mock-row-meta { font-size: 11px; color: #6b7280; margin-top: 2px; }
.mock-row-price { font-size: 12px; font-weight: 700; color: #111827; }

.mock-divider { height: 1px; background: rgba(0,0,0,.06); margin: 4px 0; }

.mock-total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 4px;
  font-size: 13px; font-weight: 700; color: #111827;
}

/* The embedded Luciditi component, sitting inside the host app */
.poa-embed {
  margin-top: auto;
  border: 1px solid rgba(0,87,217,.18);
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfdff 0%, #f3f7ff 100%);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
}
.poa-embed::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, #00F0FF 0%, #18E7CD 50%, #0057D9 100%);
}
.poa-embed-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: #5560a3;
}
.poa-embed-head .by {
  display: inline-flex; align-items: center; gap: 5px;
  color: #6b7280; font-weight: 600; letter-spacing: .04em; text-transform: none; font-size: 10px;
}
.poa-embed-head .by .lc {
  width: 12px; height: 12px; border-radius: 3px;
  background: linear-gradient(135deg, #00F0FF, #18E7CD 50%, #0057D9);
}

.poa-embed-title { font-size: 13px; font-weight: 700; color: #111827; line-height: 1.3; }
.poa-embed-sub { font-size: 11px; color: #6b7280; line-height: 1.4; }

.poa-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 11px 14px;
  border-radius: 10px; font-weight: 700; font-size: 13px;
  border: none; cursor: pointer; font-family: var(--font-sans);
  background: #02121F; color: #fff;
  transition: transform .15s, box-shadow .15s, opacity .15s;
}
.poa-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 16px rgba(0,0,0,.18); }
.poa-btn .arrow { transition: transform .18s; }
.poa-btn:hover .arrow { transform: translateX(3px); }

/* Steps inside the embedded component */
.poa-face {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 14px 0 6px;
}
.poa-face-ring {
  width: 84px; height: 84px; border-radius: 50%;
  border: 3px solid rgba(0,87,217,.18); position: relative;
  display: grid; place-items: center;
  background: radial-gradient(circle, #fff 60%, #eaf1ff);
}
.poa-face-ring::before {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 3px solid transparent; border-top-color: #00F0FF;
  border-right-color: #18E7CD;
  animation: poa-spin 1.4s linear infinite;
}
@keyframes poa-spin { to { transform: rotate(360deg); } }
.poa-face-icon { font-size: 38px; }
.poa-face-text { font-size: 12px; color: #111827; font-weight: 700; }
.poa-face-sub { font-size: 11px; color: #6b7280; }

.poa-result {
  display: flex; align-items: center; gap: 10px; padding: 4px 0 6px;
}
.poa-result-tick {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #00FFB0, #18E7CD);
  color: #02121F; display: grid; place-items: center; font-weight: 800; font-size: 18px;
  flex-shrink: 0;
}
.poa-result-title { font-size: 13px; font-weight: 700; color: #111827; line-height: 1.2; }
.poa-result-meta { font-size: 11px; color: #4b5563; margin-top: 2px; }

.poa-receipt {
  background: rgba(0,255,176,.08);
  border: 1px solid rgba(0,255,176,.4);
  border-radius: 10px; padding: 8px 10px;
  font-size: 11px; color: #047857; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}

/* App-specific palette overrides */
.mock-app[data-app="grocery"] .mock-appbar-brand .logo { background: #ee7c1c; }
.mock-app[data-app="grocery"] .mock-appbar-brand .name { color: #d35d00; }
.mock-app[data-app="pub"] .mock-appbar-brand .logo { background: #6b3a14; }
.mock-app[data-app="pub"] .mock-appbar-brand .name { color: #6b3a14; }
.mock-app[data-app="delivery"] .mock-appbar-brand .logo { background: #00b15a; }
.mock-app[data-app="delivery"] .mock-appbar-brand .name { color: #00874a; }

.mock-app[data-app="grocery"] .poa-btn { background: #ee7c1c; }
.mock-app[data-app="pub"] .poa-btn { background: #6b3a14; }
.mock-app[data-app="delivery"] .poa-btn { background: #00b15a; }

/* Embed controls */
.embed-controls {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 6px 8px;
  background: rgba(2,11,24,.6); border: 1px solid var(--border-strong);
  border-radius: var(--radius-full); backdrop-filter: blur(10px);
}
.embed-controls button {
  appearance: none; border: 1px solid var(--border-strong); background: rgba(255,255,255,.04);
  color: var(--text-primary); width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer; font-size: 14px; transition: all .2s;
}
.embed-controls button:hover { background: rgba(24,231,205,.15); border-color: rgba(24,231,205,.5); }
.embed-controls button:disabled { opacity: .35; cursor: not-allowed; }
.embed-progress { display: inline-flex; gap: 6px; }
.embed-progress .dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.18);
  transition: background .2s, transform .2s;
}
.embed-progress .dot.is-active { background: var(--color-teal-300); transform: scale(1.3); box-shadow: 0 0 10px rgba(24,231,205,.6); }
.embed-progress .dot.is-done { background: rgba(24,231,205,.5); }

.embed-stage-cap {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted);
}
.embed-stage-cap .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--color-teal-300);
  box-shadow: 0 0 8px var(--color-teal-300);
}

/* ====== UVPs ====== */
.uvp { background: var(--bg-primary); border-bottom: 1px solid var(--border-default); }
.uvp .section-head h2 em { font-style: italic; color: var(--color-teal-300); }
.uvp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1240px; margin: 0 auto;
}
.uvp-card {
  position: relative; padding: 28px 26px;
  background: linear-gradient(180deg, rgba(10,30,60,.4), rgba(5,20,40,.4));
  border: 1px solid var(--border-default); border-radius: 18px;
  grid-column: span 2;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s, border-color .25s;
}
.uvp-card:hover { transform: translateY(-3px); border-color: rgba(24,231,205,.3); }
.uvp-card { grid-column: span 2; }
.uvp-card--lead { grid-column: span 2; background: linear-gradient(160deg, rgba(0,87,217,.18), rgba(5,20,40,.4) 60%); border-color: rgba(0,162,255,.25); }
.uvp-card--accent { grid-column: span 3; background: linear-gradient(160deg, rgba(24,231,205,.14), rgba(5,20,40,.4) 60%); border-color: rgba(24,231,205,.25); }
.uvp-grid > .uvp-card:nth-child(4) { grid-column: span 3; }
.uvp-num {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: .12em; color: var(--color-teal-300);
}
.uvp-card h3 {
  font-size: 22px; font-weight: 700; margin: 0; letter-spacing: -.01em;
  line-height: 1.2; text-wrap: balance;
}
.uvp-card--lead h3 { font-size: 26px; }
.uvp-card--accent h3 { font-size: 26px; }
.uvp-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin: 0; text-wrap: pretty; }
.uvp-card p strong { color: var(--text-primary); }
.uvp-foot { margin-top: auto; padding-top: 8px; }
.uvp-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-full);
  background: rgba(0,162,255,.12); color: var(--color-blue-400);
  transition: background .2s, color .2s;
}
.uvp-card:hover .uvp-tag,
.uvp-tag:hover { background: rgba(24,231,205,.18); color: var(--color-teal-300); }

@media (max-width: 980px) {
  .uvp-grid { grid-template-columns: repeat(2, 1fr); }
  .uvp-card, .uvp-card--lead, .uvp-card--accent { grid-column: span 1; }
}
@media (max-width: 600px) {
  .uvp-grid { grid-template-columns: 1fr; }
}

/* ====== How it works — code block ====== */
.how-flow--code { padding: 28px 28px 22px; }
.code-block {
  font-family: 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
  font-size: 13px; line-height: 1.65;
  background: rgba(2,11,24,.65);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  padding: 22px 24px;
  color: #e0e6f0;
  overflow-x: auto;
  margin: 0;
  text-wrap: nowrap;
}
.code-block .cm { color: #6c7a8e; font-style: italic; }
.code-block .kw { color: #c084fc; }
.code-block .str { color: #18E7CD; }
.code-block .fn { color: #00A2FF; }
.code-block .num { color: #FFB86B; }
.hero-shot { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-shot img { display: block; width: 100%; max-width: 360px; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)) drop-shadow(0 8px 18px rgba(0,162,255,.18)); border-radius: 36px; }
.hero-shot figcaption { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--color-grey-300, #9aa6b3); text-align: center; }
.code-tabs { display: inline-flex; gap: 4px; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.code-tab { appearance: none; border: 0; background: transparent; color: var(--color-grey-300, #9aa6b3); font: inherit; font-size: 12px; font-weight: 600; letter-spacing: .04em; padding: 6px 12px; border-radius: 999px; cursor: pointer; transition: background .15s, color .15s; }
.code-tab:hover { color: #fff; }
.code-tab.is-active { background: rgba(24,231,205,.15); color: #18E7CD; box-shadow: inset 0 0 0 1px rgba(24,231,205,.35); }

/* ====== Network ====== */
.network { background: var(--bg-primary); border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); position: relative; overflow: hidden; padding: 100px 0; }
.network::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,87,217,.18), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(24,231,205,.06), transparent 55%);
}
.network > .container { position: relative; }
.network-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1140px; margin: 0 auto 48px;
}
@media (max-width: 760px) { .network-stats { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  padding: 28px 22px; text-align: center;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border-default); border-radius: 16px;
}
.stat-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 700; line-height: 1;
  background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }

.credentials-strip--network { grid-template-columns: repeat(4, 1fr); max-width: 980px; margin: 0 auto; }
.credentials-strip--network .credential-mark img { height: 38px; width: auto; }
.credential--featured { background: linear-gradient(160deg, rgba(0,87,217,.18), rgba(255,255,255,.02)); border-color: rgba(0,162,255,.4); }
.credential--featured .credential-meta { color: var(--color-cyan-400); }

@media (max-width: 760px) {
  .credentials-strip--network { grid-template-columns: repeat(2, 1fr); }
}

.network-foot {
  text-align: center; margin: 36px auto 0 !important; max-width: 720px;
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
}
.network-foot strong { color: var(--text-primary); }

/* ====== In-person ====== */
.inperson { background: var(--bg-secondary); border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); position: relative; }

.inperson-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.inperson-head h2 {
  font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.06; letter-spacing: -.015em; margin: 14px 0 18px; font-weight: 700; text-wrap: balance;
}
.inperson-head p {
  font-size: 16px; color: var(--color-grey-200); line-height: 1.6; margin: 0; text-wrap: pretty;
}

/* Verification flow */
.flow-grid {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto 56px;
}
.flow-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; text-align: center;
  opacity: .28;
  transition: opacity .6s ease;
  /* override holdover from styles.css .flow-step (different design) */
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border-default);
  border-radius: 18px;
  padding: 24px 20px 28px;
}
.flow-step.is-active { opacity: 1; }
.flow-phone img { transition: filter .6s ease; }
.flow-step:not(.is-active) .flow-phone img { filter: grayscale(.55) brightness(.7); }
.flow-step-meta {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.flow-step-num {
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--color-teal-300);
  padding: 4px 12px; border-radius: var(--radius-full);
  background: rgba(24,231,205,.10);
  border: 1px solid rgba(24,231,205,.3);
}
.flow-step-actor {
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-secondary);
}
.flow-phone {
  width: 100%;
  max-width: 238px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.flow-phone::after { content: none; }
.flow-phone img {
  position: relative; z-index: 1;
  display: block;
  width: 100%; height: auto;
  max-width: 100%;
  object-fit: contain;
}
.flow-phone--scan {
  /* Hand-held device asset is wider — let it breathe */
  max-width: 360px;
}
.flow-step-copy { max-width: 320px; padding: 0 6px; margin-top: auto; }
.flow-step-copy h3 {
  font-size: 17px; font-weight: 700; margin: 0 0 8px;
  letter-spacing: -.005em; line-height: 1.25; text-wrap: balance;
}
.flow-step-copy p {
  font-size: 13.5px; color: var(--text-primary);
  line-height: 1.55; margin: 0; text-wrap: pretty;
}
.flow-arrow {
  align-self: center;
  margin-top: 100px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--color-teal-300);
  background: rgba(24,231,205,.08);
  border: 1px solid rgba(24,231,205,.3);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-10px) scale(.85);
  transition: opacity .5s ease, transform .5s ease;
}
.flow-arrow.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}
@media (max-width: 980px) {
  .flow-grid { grid-template-columns: 1fr; gap: 18px; }
  .flow-arrow {
    opacity: 0;
    transform: rotate(90deg);
    transition: opacity .5s ease;
    margin: 0 auto;
  }
  .flow-arrow.is-active {
    opacity: 1;
    transform: rotate(90deg);
  }
  .flow-phone { max-width: 220px; }
  .flow-phone--scan { max-width: 280px; }
}

.inperson-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 1240px; margin: 0 auto;
}
.inperson-list li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px; background: rgba(255,255,255,.025);
  border: 1px solid var(--border-default); border-radius: 12px;
}
.inperson-list li strong { font-size: 13px; color: var(--text-primary); font-weight: 700; }
.inperson-list li span { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
@media (max-width: 980px) { .inperson-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .inperson-list { grid-template-columns: 1fr; } }

.inperson-visual { display: none; }
.qr-card {
  width: 100%; max-width: 360px;
  background: linear-gradient(180deg, rgba(10,30,60,.7), rgba(2,11,24,.85));
  border: 1px solid var(--border-strong); border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
}
.qr-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: 22px; padding: 1px;
  background: linear-gradient(135deg, rgba(24,231,205,.4), transparent 50%, rgba(0,118,186,.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.qr-card-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-grey-300);
}
.qr-status { display: inline-flex; align-items: center; gap: 7px; color: var(--color-teal-300); }
.qr-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-teal-300); box-shadow: 0 0 8px var(--color-teal-300); animation: pulse 1.6s ease-in-out infinite; }
.qr-body { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; }
.qr-glyph { width: 160px; }
.qr-glyph svg { display: block; width: 100%; height: auto; }
.qr-detail { display: flex; flex-direction: column; gap: 10px; }
.qr-row { display: flex; flex-direction: column; gap: 2px; }
.qr-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
.qr-val { font-size: 13px; color: var(--text-primary); font-weight: 600; }
.qr-val--muted { color: var(--text-muted); font-weight: 500; }
.qr-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border-default); padding-top: 14px;
  font-size: 11px; color: var(--text-muted);
}
.qr-foot-meta { color: var(--color-teal-300); font-weight: 600; }
@media (max-width: 480px) {
  .qr-body { grid-template-columns: 1fr; justify-items: center; text-align: left; }
  .qr-glyph { width: 200px; }
}

/* ====== Use cases ====== */
.use-cases {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(24,231,205,.22), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(0,87,217,.28), transparent 55%),
    linear-gradient(180deg, rgba(2,18,31,.32), rgba(2,18,31,.48)),
    url('https://luciditi.co.uk/wp-content/uploads/2026/05/built-for-montage.jpg') center/cover no-repeat,
    var(--bg-primary);
  border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default);
  position: relative;
}
.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1180px; margin: 0 auto; }
@media (max-width: 980px) { .usecase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .usecase-grid { grid-template-columns: 1fr; } }
.usecase {
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(10,30,60,.55), rgba(5,20,40,.6));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-default); border-radius: 16px;
  transition: transform .25s, border-color .25s;
}
.usecase:hover { transform: translateY(-3px); border-color: rgba(24,231,205,.3); }
.usecase-icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(24,231,205,.1); border: 1px solid rgba(24,231,205,.3);
  color: var(--color-teal-300); margin-bottom: 18px;
}
.usecase h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; letter-spacing: -.01em; }
.usecase p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.55; margin: 0; text-wrap: pretty; }

/* ====== Integration ====== */
.integration { position: relative; isolation: isolate; background: var(--bg-secondary); border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); overflow: hidden; }
.integration::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: url('https://luciditi.co.uk/wp-content/uploads/2026/05/bg-integration.jpg');
  background-size: cover; background-position: center;
  opacity: .9;
}
.integration::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(2,11,24,.20) 0%, rgba(2,11,24,.40) 30%, rgba(2,11,24,.92) 60%, rgba(2,11,24,.97) 100%),
    radial-gradient(ellipse at 25% 50%, rgba(0,87,217,.18), transparent 60%);
}
.integration-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.integration-grid .integration-visual { order: 0; }
.integration-grid .integration-copy { order: 1; }
@media (max-width: 980px) { .integration-grid { grid-template-columns: 1fr; gap: 40px; } .integration-grid .integration-visual, .integration-grid .integration-copy { order: 0; } }

.integration-copy h2 {
  font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.06; letter-spacing: -.015em; margin: 14px 0 18px; font-weight: 700; text-wrap: balance;
}
.integration-copy > p { font-size: 16px; color: var(--color-grey-200); line-height: 1.6; margin: 0 0 24px; }
.integration-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.integration-list li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; }
.integration-list .num {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(24,231,205,.12); border: 1px solid rgba(24,231,205,.35);
  color: var(--color-teal-300); font-weight: 800; font-size: 14px; font-family: var(--font-display);
}
.integration-list h4 { font-size: 16px; font-weight: 700; margin: 4px 0 4px; color: var(--text-primary); }
.integration-list p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.55; margin: 0; text-wrap: pretty; }

.effort-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(8,22,42,.96), rgba(4,14,28,.97));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong); border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.effort-head { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.effort-bar { display: flex; flex-direction: column; gap: 14px; }
.effort-row { display: grid; grid-template-rows: auto auto; gap: 6px; }
.effort-label { font-size: 13px; color: var(--text-secondary); font-weight: 600; }
.effort-row--us .effort-label { color: var(--color-teal-300); font-weight: 700; }
.effort-track { height: 30px; background: rgba(255,255,255,.04); border-radius: 8px; overflow: hidden; position: relative; border: 1px solid var(--border-default); }
.effort-fill {
  height: 100%; padding: 0 12px;
  display: flex; align-items: center; justify-content: flex-end;
  font-size: 11px; font-weight: 700; color: #fff; letter-spacing: .04em;
  border-radius: 7px;
  transition: width .9s cubic-bezier(.2,.8,.2,1);
}
.effort-fill--max { background: linear-gradient(90deg, #6b3a14, #c0392b); }
.effort-fill--mid { background: linear-gradient(90deg, #1a4a8a, #00A2FF); }
.effort-fill--min {
  background: var(--gradient-brand); color: #02121F;
  box-shadow: 0 0 16px rgba(24,231,205,.3);
}
.effort-foot { margin-top: 16px; font-size: 11px; color: var(--text-muted); font-style: italic; }

/* ====== MLC card sub-label ====== */
.gen-date-sub {
  font-size: 22px; vertical-align: super;
  background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-left: 6px; letter-spacing: 0;
}


/* =====================================================
   Responsive — small screens (≤ 600px) and tiny (≤ 380px, e.g. Galaxy ZFold cover)
   ===================================================== */
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, svg, video { max-width: 100%; }
pre, code { white-space: pre; }
pre.code-block { overflow-x: auto; max-width: 100%; }

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .nav { padding: 14px 0; }
  .nav-inner { gap: 12px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .nav-logo img, .nav .logo img { max-height: 24px; }

  .btn { padding: 14px 22px; font-size: 14px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-sub { font-size: 16px; line-height: 1.5; }
  .hero-meta { font-size: 12px; }
  .hero-shot img { max-width: 280px; border-radius: 30px; }

  /* code block */
  .how-flow--code { padding: 18px 16px 14px; }
  .code-block { font-size: 11.5px; padding: 14px 14px; }
  .code-tabs { flex-wrap: wrap; }
  .code-tab { padding: 5px 10px; font-size: 11px; }
  .how-flow-cap { flex-direction: column; align-items: flex-start !important; gap: 10px; }

  /* Section spacing */
  section { padding-top: 56px !important; padding-bottom: 56px !important; }

  /* Cards */
  .uvp-card, .uvp-card--lead, .uvp-card--accent { padding: 24px 20px; }
  .usecase { padding: 22px 18px; }
  .gen-card { padding: 22px !important; }
  .stat-card { padding: 22px 16px; }
  .credential { padding: 22px 14px; }

  /* Flow / phones */
  .flow-phone img, .flow-phone { max-width: 220px; margin-inline: auto; }
  .flow-arrow {
    opacity: 0;
    transform: rotate(90deg);
    transition: opacity .5s ease;
    margin: 0 auto !important;
  }
  .flow-arrow.is-active {
    opacity: 1;
    transform: rotate(90deg);
  }

  /* Form */
  .form-card { padding: 26px 20px; }

  /* Section heads */
  .section-head h2, .ban h2, .cta-copy h2 { font-size: 28px !important; line-height: 1.1; }
  .hero h1 { font-size: 36px !important; line-height: 1.05; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .btn { padding: 12px 18px; font-size: 13px; }
  .hero h1 { font-size: 30px !important; }
  .section-head h2, .ban h2, .cta-copy h2 { font-size: 24px !important; }
  .hero-sub { font-size: 15px; }
  .hero-shot img { max-width: 240px; }
  .hero-ctas .btn { padding: 12px 16px; }

  /* Force tight grids to single column */
  .uvp-grid,
  .usecase-grid,
  .compliance-grid,
  .credentials-strip,
  .credentials-strip--network,
  .network-stats,
  .form-row,
  .gallery-grid,
  .product-grid,
  .integration-list,
  .inperson-list { grid-template-columns: 1fr !important; }

  .nav-logo img, .nav .logo img { max-height: 20px; }
  .nav-cta { padding: 7px 11px; font-size: 11px; }

  .code-block { font-size: 11px; padding: 12px; }
  .code-tab { padding: 5px 9px; font-size: 10.5px; letter-spacing: .02em; }

  /* Tighten card paddings further */
  .uvp-card, .uvp-card--lead, .uvp-card--accent,
  .usecase, .gen-card, .stat-card, .credential, .form-card { padding: 18px 14px !important; }

  /* Long words / urls */
  .hero-sub, .uvp-card p, .usecase p, .ban p, .section-head p, .step p, .integration-list p { overflow-wrap: anywhere; }
}
/* Code-block scrollbar pretty */
.code-block::-webkit-scrollbar { height: 8px; }
.code-block::-webkit-scrollbar-thumb { background: rgba(24,231,205,.3); border-radius: 4px; }

/* Nav logo: wordmark by default, icon-only at narrow widths */
.nav-logo--icon { display: none; height: 28px; width: auto; }
@media (max-width: 480px) {
  .nav-logo--wordmark { display: none; }
  .nav-logo--icon { display: block; height: 28px; }
}
@media (max-width: 380px) {
  .nav-logo--icon { height: 24px; }
}

/* In-person flow phones: smaller on mobile so they don't overlap copy */
@media (max-width: 600px) {
  .flow-grid { gap: 8px; margin-bottom: 32px; }
  .flow-step { gap: 14px; }
  .flow-phone { max-width: 180px !important; }
  .flow-phone--scan { max-width: 240px !important; }
  .flow-step-copy { max-width: 320px; padding: 0 14px; }
  .flow-step-copy h3 { font-size: 16px; }
  .flow-step-copy p { font-size: 13px; }
  .flow-arrow { margin: 6px auto !important; }
}
@media (max-width: 380px) {
  .flow-phone { max-width: 160px !important; }
  .flow-phone--scan { max-width: 220px !important; }
}

/* ============================================================
   Responsive fixes — narrow desktop & mobile
   ============================================================ */

/* Hero clears the fixed nav at all sizes */
@media (max-width: 980px) {
  .hero { padding-top: 130px; padding-bottom: 80px; }
}
@media (max-width: 600px) {
  /* Override the blanket `section { padding-top: 56px !important; }` reset above */
  .hero { padding-top: 110px !important; padding-bottom: 56px !important; }
}
@media (max-width: 380px) {
  .hero { padding-top: 96px !important; }
}

/* UVP cards: full-width vertical stack at narrow desktop and mobile */
@media (max-width: 980px) {
  .uvp-grid { grid-template-columns: 1fr; gap: 16px; }
  .uvp-card, .uvp-card--lead, .uvp-card--accent,
  .uvp-grid > .uvp-card:nth-child(4) { grid-column: 1 / -1; }
}

/* Licensing timeline rows: two-row layout at narrow widths
   Top row: year + pill (space-between)
   Bottom row: full-width copy */
@media (max-width: 760px) {
  .gen-progression { gap: 8px; }
  .gen-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "year pill"
      "text text";
    row-gap: 6px;
    column-gap: 12px;
    padding: 12px 14px;
  }
  .gen-row > .gen-year { grid-area: year; }
  .gen-row > .pill { grid-area: pill; justify-self: end; }
  .gen-row > span:not(.gen-year):not(.pill) {
    grid-area: text;
    line-height: 1.45;
  }
}


/* ====== Verification Technology / Products ====== */
.products {
  position: relative;
  isolation: isolate;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  overflow: hidden;
}
.products::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(0,87,217,.18), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(24,231,205,.12), transparent 55%);
  pointer-events: none;
}
.products .section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.products .section-head h2 { color: #fff; margin: 16px 0 18px; }
.products .section-head p { color: var(--text-secondary); font-size: 18px; line-height: 1.6; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) {
  .product-grid { grid-template-columns: 1fr; gap: 20px; }
}

.product-tile {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.015) 100%);
  border: 1px solid var(--border-default);
  border-radius: 22px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
  overflow: hidden;
}
.product-tile:hover {
  border-color: rgba(24,231,205,.45);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
}
.product-tile-glow {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(24,231,205,.18), transparent 65%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.product-tile:hover .product-tile-glow { opacity: 1; }

.product-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(24,231,205,.14);
  color: #18E7CD;
  border: 1px solid rgba(24,231,205,.32);
}
.product-badge--blue { background: rgba(0,87,217,.18); color: #6FA8FF; border-color: rgba(0,87,217,.4); }
.product-badge--cyan { background: rgba(76,201,240,.16); color: #4CC9F0; border-color: rgba(76,201,240,.36); }

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(24,231,205,.1);
  color: #18E7CD;
  border: 1px solid rgba(24,231,205,.25);
}
.product-tile h3 {
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}
.product-tile p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-features li {
  position: relative;
  padding-left: 22px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}
.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 8px;
  border-left: 2px solid #18E7CD;
  border-bottom: 2px solid #18E7CD;
  transform: rotate(-45deg);
}
.product-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #18E7CD;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding-top: 8px;
  transition: gap .2s ease, color .2s ease;
}
.product-link:hover { gap: 12px; color: #fff; }
.product-link span { transition: transform .2s ease; }
.product-link:hover span { transform: translateX(2px); }

.products-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.btn-arrow--external::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path d='M352 88C352 101.3 362.7 112 376 112L494.1 112L263.1 343C253.7 352.4 253.7 367.6 263.1 376.9C272.5 386.2 287.7 386.3 297 376.9L528 145.9L528 264C528 277.3 538.7 288 552 288C565.3 288 576 277.3 576 264L576 88C576 74.7 565.3 64 552 64L376 64C362.7 64 352 74.7 352 88zM144 160C99.8 160 64 195.8 64 240L64 496C64 540.2 99.8 576 144 576L400 576C444.2 576 480 540.2 480 496L480 408C480 394.7 469.3 384 456 384C442.7 384 432 394.7 432 408L432 496C432 513.7 417.7 528 400 528L144 528C126.3 528 112 513.7 112 496L112 240C112 222.3 126.3 208 144 208L232 208C245.3 208 256 197.3 256 184C256 170.7 245.3 160 232 160L144 160z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path d='M352 88C352 101.3 362.7 112 376 112L494.1 112L263.1 343C253.7 352.4 253.7 367.6 263.1 376.9C272.5 386.2 287.7 386.3 297 376.9L528 145.9L528 264C528 277.3 538.7 288 552 288C565.3 288 576 277.3 576 264L576 88C576 74.7 565.3 64 552 64L376 64C362.7 64 352 74.7 352 88zM144 160C99.8 160 64 195.8 64 240L64 496C64 540.2 99.8 576 144 576L400 576C444.2 576 480 540.2 480 496L480 408C480 394.7 469.3 384 456 384C442.7 384 432 394.7 432 408L432 496C432 513.7 417.7 528 400 528L144 528C126.3 528 112 513.7 112 496L112 240C112 222.3 126.3 208 144 208L232 208C245.3 208 256 197.3 256 184C256 170.7 245.3 160 232 160L144 160z' fill='black'/></svg>");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 16px;
  height: 16px;
  animation: none;
}
.btn-arrow--external:hover::after { transform: translate(2px, -2px); }

html body,
.page-template-luciditi-proof-of-age,
.form-field label,
.page-template-luciditi-proof-of-age h1, .page-template-luciditi-proof-of-age h2, .page-template-luciditi-proof-of-age h3, .page-template-luciditi-proof-of-age h4 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400 !important;
}
h1, h2, .page-template-luciditi-proof-of-age h1, .page-template-luciditi-proof-of-age h2 {
    font-family: 'Play', sans-serif;
    font-weight: 700 !important;
}
body p,
.effort-label,
.page-template-luciditi-proof-of-age p {
    font-weight: 400;
}
.eyebrow {
    font-weight: 400 !important;
}
/* Header chnages CSS */
a.nav-logo-link {
    display: block;
}
 a.nav-logo-link .nav-logo {
    max-width: 125px;
    object-fit: contain;
    height: auto;
}

.nav-links,
.nav-links a {
    font-size: 1.4rem;
    line-height: 2.2rem;
    font-weight: 700;
    font-family: 'Play', sans-serif;
    color: #fff;
    text-transform: capitalize;
    gap: 15px;
}
.nav-links a {
    padding: 1rem .7rem;
}

@media (min-width: 1200px) {
    .nav-inner {
        max-width: 119rem;
        padding: 0 1.5rem;
        margin: 0 auto;
    }
   
}
