/* ── 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;
}

/* ── Color Primitives ─────────────────────────────────────── */

:root,
.page-template-templatenew-home-php {
  /* 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);
  text-decoration: none;
}

.t-link:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* ── 2. Shared base, buttons, eyebrow ──────────────────────── */
/* Shared base styles for all variants — scoped under .lcd-page to avoid clashing with global site CSS */
* { box-sizing: border-box; }

.lcd-page {
  margin: 0;
  padding: 0;
  background: var(--color-navy-900);
  color: var(--color-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lcd-page img { max-width: 100%; display: block; }
.lcd-page button { font-family: inherit; cursor: pointer; }
.lcd-page input, .lcd-page select, .lcd-page textarea { font-family: inherit; }
.lcd-page a { color: inherit; text-decoration: none; }

.brand-grad-text {
  background: linear-gradient(96deg, #00FFB0 0%, #00F0FF 45%, #0076BA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* shared SVG check */
.chk { color: var(--color-teal-300); flex-shrink: 0; }

/* Buttons */
.lcd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  transition: transform .12s ease, opacity .12s ease, background .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}
.lcd-page .lcd-btn-primary {
  background: linear-gradient(135deg, #00FFB0 0%, #00F0FF 50%, #0076BA 100%);
  color: #02101F;
  box-shadow: 0 8px 32px -8px rgba(0,240,255,.45);
}
.lcd-page .lcd-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 40px -8px rgba(0,240,255,.55); }
.lcd-page .lcd-btn-ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}
.lcd-page .lcd-btn-ghost:hover { background: rgba(255,255,255,.10); }

/* Arrow chevron — appears via ::after when the button has the .lcd-btn-arrow class */
.lcd-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;
}
.lcd-btn-arrow:hover::after { transform: translateX(4px); }

/* Hero & final CTA: shake the chevron after a 2s pause, repeat */
.hero-b .lcd-btn-arrow::after,
.cta-b .lcd-btn-arrow::after {
  animation: hero-chevron-shake 3s ease-in-out infinite;
}
.hero-b .lcd-btn-arrow:hover::after,
.cta-b .lcd-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); }
}

/* Eyebrow */
.lcd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-teal-300);
}
.lcd-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

/* Network bg (legacy variant helper — no longer used in index.html) */

/* Sections */
.lcd-page section { position: relative; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Selectable / focusable artboards in canvas */
[data-screen-label] { scroll-margin-top: 32px; }

/* ── 3. Page-specific styles ───────────────────────────────── */
:root,
.page-template-templatenew-home-php {
  --accent: #00F0FF;
  --accent-2: #00FFB0;
  --accent-3: #0057D9;
  --bg: #020B18;
  --bg-glow: #04162F;
  --rule: rgba(255,255,255,.08);
}
.lcd-page { background: var(--bg); }
/*html { scroll-behavior: smooth; }*/

/* ===== Continuous network canvas behind the page ===== */
.cosmos {
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,87,217,.35), transparent 60%),
    radial-gradient(ellipse 50% 30% at 100% 50%, rgba(5,168,157,.18), transparent 60%),
    var(--bg);
  z-index: 0;
}
.cosmos canvas { display: block; width: 100%; height: 100%; opacity: .7; }
.cosmos-fg { position: fixed; inset: 0; z-index: 2; pointer-events: none; }
.cta-b { isolation: isolate; }
.cta-b h2 { z-index: 1; }
.cta-b > .cta-b-logo, .cta-b > p, .cta-b > .cta-b-actions, .cta-b > .cta-b-trust { position: relative; z-index: 5; }
.cosmos-ship {
  position: absolute;
  width: 88px; height: 88px;
  top: 30%;
  left: -200px;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(255, 140, 60, .4));
  will-change: transform, opacity;
}
.cosmos-ship img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  /* image is rotated by JS to point along travel direction */
}
.cosmos-ship-flame {
  position: absolute;
  top: 72%;
  left: 50%;
  width: 18px; height: 80px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: center top;
  background: linear-gradient(180deg,
    rgba(255,255,210,1)  0%,
    rgba(255,200,80,.95) 22%,
    rgba(255,110,30,.85) 55%,
    rgba(255,40,20,.5)   82%,
    rgba(255,40,20,0)   100%);
  filter: blur(2px);
  border-radius: 999px;
  opacity: 0;
  transition: opacity .08s ease, transform .12s cubic-bezier(.34,1.56,.64,1);
}
.cosmos-puff {
  position: absolute;
  width: 57px; height: 31px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.55), rgba(255,200,140,.25) 45%, rgba(255,150,80,0) 75%);
  filter: blur(2px);
  pointer-events: none;
  animation: cosmos-puff 1.15s ease-out forwards;
}
.cosmos-spaceman, .cosmos-flag {
  position: absolute;
  pointer-events: none;
  transform-origin: 50% 100%;
  z-index: 4;
}
.cosmos-spaceman {
  width: 18px; height: 24px;
  transition: none;
  -webkit-transform: translateZ(0); /* Safari/iOS layer hint */
}
.cosmos-spaceman svg { width: 100%; height: 100%; display: block; }
.cosmos-flag {
  width: 22px; height: 30px;
  opacity: 0;
  transform: scale(var(--fs, 1)) scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: opacity .3s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
}
.cosmos-flag.is-up { opacity: 1; transform: scale(var(--fs, 1)) scaleY(1); }
.cosmos-flag svg { width: 100%; height: 100%; display: block; }
.cosmos-flag-cloth { transform-origin: 10.8px 6.5px; animation: cosmos-flap 1.1s ease-in-out infinite; }
@keyframes cosmos-flap {
  0%, 100% { transform: skewY(0deg) scaleX(1); }
  25%      { transform: skewY(-6deg) scaleX(.94); }
  50%      { transform: skewY(0deg) scaleX(1.02); }
  75%      { transform: skewY(6deg) scaleX(.94); }
}
@keyframes cosmos-puff {
  0%   { opacity: .9; transform: scale(.4); }
  100% { opacity: 0;  transform: scale(2.65) translateY(7px); }
}
.cosmos-ship.is-thrusting .cosmos-ship-flame {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
  animation: cosmos-flame-flicker .08s steps(2, end) infinite;
}
@keyframes cosmos-flame-flicker {
  0%   { filter: blur(1.5px) brightness(1); }
  50%  { filter: blur(2.5px) brightness(1.25); }
  100% { filter: blur(1.5px) brightness(.9); }
}
.scope { position: relative; z-index: 1; }

/* ===== HERO ===== */
.hero-b {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 32px 48px;
  text-align: center;
  position: relative;
}
.hero-b-main {
  margin: auto 0;
}
.hero-b-pill-bottom {
  margin-top: auto;
  padding-top: 24px;
}
.hero-b-logo {
  display: block;
  width: auto; height: 100px;
  margin: 0 auto 28px;
  opacity: .95;
  filter: drop-shadow(0 0 24px rgba(0,240,255,.25));
}
.hero-b-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,240,255,.3);
  background: rgba(0,240,255,.06);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  backdrop-filter: blur(6px);
}
.hero-b-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% {opacity:1} 50% {opacity:.4} }

.hero-b h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 32px auto 28px;
  max-width: 100%;
  width: 100%;
  text-align: center;
}
.hero-b h1 .lcd-grad {
  background: linear-gradient(96deg,
    var(--accent-2) 0%,
    var(--accent) 20%,
    var(--accent-3) 40%,
    var(--accent) 60%,
    var(--accent-2) 80%,
    var(--accent-3) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: hero-grad-pan 14s ease-in-out infinite;
}
@keyframes hero-grad-pan {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-b h1 .lcd-grad { animation: none; }
}
.hero-b-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(255,255,255,.75);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-b-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.hero-b-meta {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  column-gap: 36px;
  row-gap: 16px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  max-width: 900px;
  margin-inline: auto;
}
.hero-b-meta span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: .04em;
  color: rgba(255,255,255,.72); font-weight: 600;
}
.hero-b-meta svg { color: var(--accent-2); }

/* Floating credential cards in hero */
.float-cards {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.float-card {
  position: absolute;
  background: rgba(8, 22, 44, .65);
  border: 1px solid rgba(0,240,255,.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.6);
  font-size: 12px;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.float-card .fc-mark {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #021;
  font-weight: 800;
  font-size: 11px;
}
.float-card .fc-tag {
  font-size: 10px; padding: 3px 7px; border-radius: 999px;
  background: rgba(0,255,176,.12);
  color: var(--accent-2);
  border: 1px solid rgba(0,255,176,.25);
  margin-left: 4px;
  font-weight: 700; letter-spacing: .08em;
}
.fc-1 { top: 14%; left: 6%; animation: drift 9s ease-in-out infinite alternate; }
.fc-2 { top: 22%; right: 8%; animation: drift 11s ease-in-out infinite alternate-reverse; animation-delay: -2s; }
.fc-3 { bottom: 18%; left: 10%; animation: drift 8s ease-in-out infinite alternate; animation-delay: -4s; }
.fc-4 { bottom: 26%; right: 6%; animation: drift 10s ease-in-out infinite alternate-reverse; animation-delay: -1s; }
@keyframes drift { from { transform: translateY(0) } to { transform: translateY(-20px) } }

/* Section base */
.scn {
  padding: 120px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.scn-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.scn-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  letter-spacing: -0.03em;
  line-height: .96;
  margin: 16px 0 18px;
}
.scn-head h2 .lcd-grad {
  background: linear-gradient(96deg, var(--accent-2), var(--accent), var(--accent-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.scn-head p {
  color: rgba(255,255,255,.7);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

/* ===== Pillar constellation ===== */
.pillars-rail {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.pillars {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 48px 8px 0;
  -webkit-overflow-scrolling: touch;
  --fade-l: 0px;
  --fade-r: 80px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 var(--fade-l), #000 calc(100% - var(--fade-r)), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 var(--fade-l), #000 calc(100% - var(--fade-r)), transparent 100%);
  transition: -webkit-mask-image .25s ease, mask-image .25s ease;
}
.pillars::-webkit-scrollbar { display: none; }
.pillars-next, .pillars-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0,240,255,.35);
  background: rgba(2,11,24,.7);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .2s, transform .2s, border-color .2s, opacity .2s;
}
.pillars-next { right: -8px; }
.pillars-prev { left: -8px; }
.pillars-next:hover, .pillars-prev:hover { background: rgba(0,240,255,.18); border-color: var(--accent); transform: translateY(-50%) scale(1.06); }
.pillars-next:disabled, .pillars-prev:disabled { opacity: 0; pointer-events: none; transform: translateY(-50%); }
.pillars-next svg, .pillars-prev svg { width: 22px; height: 22px; }
.pillars.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.pillars.is-dragging .pillar { pointer-events: none; }
.pillar {
  position: relative;
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
  padding: 28px;
  background: linear-gradient(160deg, rgba(8,22,44,.7) 0%, rgba(2,11,24,.5) 100%);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
  flex: 0 0 320px;
  min-height: 280px;
  scroll-snap-align: start;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(0,240,255,.35);
}
.pillar::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(0,240,255,.12), transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.pillar:hover::before { opacity: 1; }
.pillar.is-feature {
  border-color: rgba(0,240,255,.3);
  background: linear-gradient(160deg, rgba(0,87,217,.18) 0%, rgba(2,11,24,.7) 100%);
}
.pillar.is-feature .pi-icon { color: var(--accent); }
.pillar .pi-num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.4);
}
.pillar .pi-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(0,240,255,.06);
  border: 1px solid rgba(0,240,255,.2);
  border-radius: 11px;
  color: var(--accent-2);
  margin: 14px 0 18px;
}
.pillar h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.pillar p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  margin: 0;
}
.pillar .pi-foot {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,.45);
}
.pillar.is-feature .pi-foot { color: var(--accent); }

/* ===== Featured: ID Verification ===== */
.feat-b {
  padding: 100px 0;
  position: relative;
  isolation: isolate;
  background: var(--bg);
}
.feat-b::before {
  content: "";
  position: absolute; inset: 0;
  /*background-image: url('assets/built-for-montage.webp');*/
  background-image: url(https://luciditi.coaxcloud.com/wp-content/uploads/2026/05/built-for-montage-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  /* responsively scale: never smaller than the section, soft cap on huge screens */
  background-size: cover;
  opacity: 0.55;
  z-index: -2;
  pointer-events: none;
}
@media (min-width: 1600px) {
  .feat-b::before {
    background-size: cover;
    background-position: center;
  }
}
@media (max-width: 900px) {
  .feat-b::before {
    background-size: cover;
    background-position: center top;
    opacity: 0.45;
  }
}
@media (max-width: 600px) {
  .feat-b::before {
    /* keep proportions readable on narrow phones */
    background-size: auto 100%;
    background-position: 70% center;
    opacity: 0.4;
  }
}
.feat-b-spotlight {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0,87,217,.18), transparent 70%);
  pointer-events: none;
}
.feat-b-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.feat-b h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: .96;
  letter-spacing: -0.03em;
  margin: 18px 0 24px;
}
.feat-b h2 .lcd-grad {
  background: linear-gradient(96deg, var(--accent-2), var(--accent), var(--accent-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.feat-b h2 .lcd-grad-cycle,
.aa-b h2 .lcd-grad-cycle,
.more-b h2 .lcd-grad-cycle {
  background: linear-gradient(96deg,
    var(--accent-2) 0%,
    var(--accent) 35%,
    var(--accent-3) 70%,
    var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.aa-b h2 .lcd-grad-cycle {
  background: linear-gradient(96deg,
    var(--accent-2) 0%,
    var(--accent) 35%,
    var(--accent-3) 70%,
    var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.feat-b-lede {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
  margin: 0 0 36px;
}

.feat-b-bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; gap: 14px;
}
.feat-b-bullets li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.feat-b-bullets li strong { color: #fff; font-weight: 600; display: block; margin-bottom: 2px; }
.feat-b-bullets .b-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(0,240,255,.08);
  border: 1px solid rgba(0,240,255,.22);
  color: var(--accent);
}

/* ===== ID Verifier interactive demo (cinematic) ===== */
.verifier-stage {
  position: relative;
  border-radius: 22px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(0,87,217,.25), transparent 70%),
    linear-gradient(160deg, rgba(8,22,44,.7), rgba(2,11,24,.6));
  border: 1px solid rgba(0,240,255,.18);
  padding: 32px;
  min-height: 600px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,87,217,.4);
}
.verifier-stage::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,240,255,.5), transparent);
}

.verifier-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}
.verifier-head .vh-title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.verifier-head .vh-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 700;
}
.verifier-head .vh-status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2); box-shadow: 0 0 8px var(--accent-2);
  animation: pulse 1.6s ease-in-out infinite;
}

.verifier-display {
  position: relative;
  height: 320px;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(0,87,217,.15), transparent 70%);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.verifier-frame {
  position: relative;
  width: 220px; height: 220px;
}
.verifier-frame .corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
}
.verifier-frame .corner.tl { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; border-top-left-radius: 8px; }
.verifier-frame .corner.tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; border-top-right-radius: 8px; }
.verifier-frame .corner.bl { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; border-bottom-left-radius: 8px; }
.verifier-frame .corner.br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; border-bottom-right-radius: 8px; }

.verifier-qr {
  width: 160px; height: 160px;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .3s ease;
  overflow: hidden;
}
.verifier-qr.is-on { opacity: 1; }
.verifier-qr img { width: 100%; height: 100%; display: block; border-radius: 14px; }

.verifier-scanline {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px var(--accent);
  opacity: 0;
}
.verifier-scanline.is-on {
  opacity: 1;
  animation: scan 1.6s ease-in-out infinite;
}
@keyframes scan {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(218px); }
}

.verifier-success-caption {
  margin-top: 18px;
  text-align: center;
}
.verifier-success {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding-top: 14%;
  flex-direction: column;
  background: radial-gradient(circle at 50% 50%, rgba(0,255,176,.18), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}
.verifier-success.is-on { opacity: 1; }
.verifier-success-tick {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #021;
  display: grid; place-items: center;
  box-shadow: 0 0 60px rgba(0,255,176,.5);
  animation: pop .5s cubic-bezier(.22,1.4,.36,1);
}
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.verifier-status-line {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* Step rail */
.verifier-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.v-rail-step {
  position: relative;
  padding: 12px 10px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--rule);
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-align: center;
  transition: all .3s ease;
}
.v-rail-step.is-active {
  background: rgba(0,240,255,.08);
  border-color: rgba(0,240,255,.4);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(0,240,255,.06);
}
.v-rail-step.is-done {
  border-color: rgba(0,255,176,.3);
  color: rgba(255,255,255,.85);
}
.v-rail-step.is-done .v-rail-num {
  background: var(--accent-2); color: #021;
}
.v-rail-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 700;
  margin: 0 auto 6px;
  display: grid; place-items: center;
}
.v-rail-step.is-active .v-rail-num { background: var(--accent); color: #021; }
.v-rail-label { font-size: 11px; line-height: 1.3; }

.verifier-controls {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px;
}
.verifier-controls .v-meta {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 700;
}
.v-replay {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  cursor: pointer;
}
.v-replay:hover { color: #fff; border-color: rgba(255,255,255,.3); }

/* ===== Featured: Embedded ===== */
.emb-b {
  padding: 100px 0;
  position: relative;
}
.emb-b-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.emb-b h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: .96;
  letter-spacing: -0.03em;
  margin: 18px 0 24px;
}
.emb-b h2 .lcd-grad {
  background: linear-gradient(96deg, var(--accent-2), var(--accent), var(--accent-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.emb-b-lede {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
  margin: 0 0 36px;
}

.emb-uvp-list {
  display: grid; gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.emb-uvp-list li {
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(8,22,44,.6) 0%, rgba(2,11,24,.4) 100%);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: center;
  transition: border-color .25s ease;
}
.emb-uvp-list li:hover { border-color: rgba(0,240,255,.3); }
.emb-uvp-list .uv-num {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(0,240,255,.08);
  border: 1px solid rgba(0,240,255,.2);
  display: grid; place-items: center;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}
.emb-uvp-list .uv-ttl {
  font-size: 15px; font-weight: 600;
  margin-bottom: 3px;
}
.emb-uvp-list .uv-desc {
  font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.45;
}
.emb-uvp-list .uv-tag {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-2);
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0,255,176,.06);
  border: 1px solid rgba(0,255,176,.25);
  white-space: nowrap;
}

/* Phone demo with click-through stages */
.emb-stage-b {
  position: relative;
  border-radius: 24px;
  padding: 48px 24px 60px;
  background: transparent;
  border: none;
  display: grid; place-items: center;
  min-height: 680px;
  overflow: visible;
}

.emb-phone-b {
  width: 280px;
  height: 540px;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  overflow: visible;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.55), 0 0 60px rgba(0,87,217,.3);
}
.emb-phone-b::before { display: none; }
.emb-stage-screen { padding: 0; }
.emb-host-img,
.emb-proof img {
  position: absolute;
  width: 124%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  cursor: pointer;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55));
  transition: filter .25s ease;
}
.emb-host-img:hover,
.emb-proof img:hover,
img.emb-verifier-img:hover { filter: drop-shadow(0 38px 70px rgba(0,255,176,.35)); }
.emb-proof.is-on img { background: transparent; }
.emb-pop-img { opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 2; }
.emb-pop-img.is-on { opacity: 1; pointer-events: auto; }
/* When advancing past step 1, fade out the host (base) image */
#embActionB.is-off { opacity: 0; pointer-events: none; }
.emb-proof { z-index: 3; }

/* Step 5: Presentation complete (tick) — full phone screen, replaces proof */
.emb-complete-img {
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 4;
}
.emb-complete-img.is-on { opacity: 1; pointer-events: auto; }

/* Step 4: Verifier QR scan — hand holding phone, extends beyond the user's phone frame */
img.emb-verifier-img {
  position: absolute;
  /* Match the rendered height of the other phone-screen images (width:124% on a 403\u00d7825 image
     == ~131.6% of the 280\u00d7540 phone frame's height) so this wider image stays the same
     vertical size and is centred \u2014 letting the extra width hang off the sides of the phone. */
  height: 106.2%;
  width: auto;
  max-width: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease, filter .25s ease;
  z-index: 5;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55));
}
img.emb-verifier-img.is-on { opacity: 1; pointer-events: auto; cursor: pointer; }

.emb-phone-b::before {
  content: "";
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #000; border-radius: 999px;
  z-index: 9;
}

.emb-stage-screen {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 50px 18px 18px;
}

.emb-host-b {
  flex: 1;
  display: flex; flex-direction: column;
}
.emb-host-b-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 700;
}
.emb-host-b-name {
  font-family: var(--font-display);
  font-size: 22px; color: #fff; letter-spacing: -0.01em;
  margin: 4px 0 16px;
}
.emb-host-b-card {
  background: linear-gradient(135deg, rgba(0,87,217,.18), rgba(8,22,44,.4));
  border: 1px solid rgba(0,240,255,.15);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.emb-host-b-card .l { font-size: 13px; font-weight: 600; }
.emb-host-b-card .l .meta { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; font-weight: 400; }
.emb-host-b-card .r { font-family: var(--font-display); font-size: 16px; }

.emb-host-b-cta {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 8px;
}
.emb-host-b-action {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  color: #021;
  padding: 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all .25s ease;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.emb-host-b-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -8px rgba(0,255,176,.5);
}
.emb-host-b-action svg { color: #021; }
.emb-host-b-faux {
  background: rgba(255,255,255,.06);
  padding: 12px; border-radius: 12px;
  font-size: 12px; text-align: center; color: rgba(255,255,255,.5);
}

/* Sheet (proof view) */
.emb-proof {
  position: absolute; inset: 0;
  background: transparent;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  display: flex; flex-direction: column;
}
.emb-proof.is-on { opacity: 1; pointer-events: auto; }

.emb-proof-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.7);
  margin-bottom: 14px;
  cursor: pointer;
  background: transparent; border: 0; padding: 0;
}
.emb-proof-eyebrow {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  text-align: center;
  margin: 8px 0 6px;
}
.emb-proof-title {
  text-align: center; font-size: 18px; font-weight: 700;
  margin-bottom: 18px;
}

.emb-proof-qr {
  width: 180px; height: 180px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 40px rgba(0,240,255,.25);
}
.emb-proof-qr svg { width: 100%; height: 100%; }
.emb-proof-qr::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 12px;
  border: 2px solid var(--accent);
  opacity: 0.4;
  animation: qr-pulse 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes qr-pulse { 0%,100% { opacity: .25; box-shadow: 0 0 0 0 rgba(0,240,255,.3); } 50% { opacity: .6; box-shadow: 0 0 0 12px rgba(0,240,255,0); } }

.emb-proof-meta {
  margin-top: 18px;
  padding: 14px;
  background: rgba(255,255,255,.03);
  border-radius: 10px;
  border: 1px solid var(--rule);
  display: grid; gap: 6px;
}
.emb-proof-meta .row {
  display: flex; justify-content: space-between;
  font-size: 12px;
}
.emb-proof-meta .row .k { color: rgba(255,255,255,.5); }
.emb-proof-meta .row .v { color: #fff; font-weight: 500; }
.emb-proof-meta .row .v.ok { color: var(--accent-2); }

.emb-proof-foot {
  margin-top: auto;
  padding-top: 12px;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.4;
}

.emb-stage-caption {
  position: absolute; bottom: 18px; left: 0; right: 0;
  text-align: center;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 700;
}

/* ===== Age Assurance ===== */
.aa-b {
  padding: 120px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.aa-b-card {
  position: relative;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(5,168,157,.18), transparent 70%),
    linear-gradient(160deg, rgba(8,22,44,.6), rgba(2,11,24,.6));
  border: 1px solid var(--rule);
  padding: 64px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.aa-b-card h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 16px 0 18px;
}
.aa-b-card p {
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  font-size: 16px;
}
.aa-b-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.aa-b-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.45;
}
.aa-b-bullets li svg.aa-b-bullet-icon {
  flex: none;
  width: 32px;
  height: 32px;
  padding: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0,240,255,.08);
  border: 1px solid rgba(0,240,255,.22);
  color: var(--accent);
  box-sizing: border-box;
}
.aa-b-bullets li i {
  flex: none;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0,240,255,.08);
  border: 1px solid rgba(0,240,255,.22);
  color: var(--accent);
  font-size: 14px;
}
.aa-b-cta {
  margin-top: 28px;
}
.aa-b-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.aa-b-method {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--rule);
  transition: border-color .25s ease;
}
.aa-b-method:hover { border-color: rgba(0,255,176,.3); }
.aa-b-method svg { color: var(--accent-2); margin-bottom: 12px; }
.aa-b-method h4 { margin: 0 0 4px; font-size: 14px; font-weight: 600; }
.aa-b-method p { font-size: 12px; color: rgba(255,255,255,.55); margin: 0; line-height: 1.5; }

/* ===== Use cases (cinematic carousel-ish) ===== */
.uc-b {
  padding: 120px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.uc-b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.uc-b-tile {
  position: relative;
  border-radius: 18px;
  padding: 32px;
  background: linear-gradient(160deg, rgba(8,22,44,.7) 0%, rgba(2,11,24,.4) 100%);
  border: 1px solid var(--rule);
  overflow: hidden;
  min-height: 240px;
  display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
  cursor: pointer;
}
.uc-b-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(0,240,255,.3);
}
.uc-b-tile::before {
  content: "";
  position: absolute; bottom: -50%; right: -30%;
  width: 80%; height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,240,255,.12), transparent 60%);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.uc-b-tile:hover::before { opacity: 1; }
.uc-b-tile .uc-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(0,255,176,.06);
  border: 1px solid rgba(0,255,176,.18);
  color: var(--accent-2);
  margin-bottom: 16px;
}
.uc-b-tile h3 { font-family: var(--font-display); font-size: 20px; margin: 0 0 10px; letter-spacing: -0.01em; }
.uc-b-tile p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; margin: 0; }
.uc-b-tile .uc-arrow {
  margin-top: auto;
  padding-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4); font-weight: 700;
}
.uc-b-tile:hover .uc-arrow { color: var(--accent); }

/* ===== More capabilities ===== */
.more-b {
  padding: 120px 32px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.more-b-orbit {
  position: relative;
  width: 100%;
  margin: 64px 0 0;
}
.more-b-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.more-b-cell {
  padding: 22px 16px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(8,22,44,.5) 0%, rgba(2,11,24,.3) 100%);
  border: 1px solid var(--rule);
  text-align: left;
  transition: border-color .25s ease;
}
.more-b-cell:hover { border-color: rgba(0,240,255,.3); }
.more-b-cell svg { color: var(--accent); margin-bottom: 12px; }
.more-b-cell h4 { font-size: 14px; margin: 0 0 6px; font-weight: 600; letter-spacing: -0.005em; }
.more-b-cell p { font-size: 12px; color: rgba(255,255,255,.55); margin: 0; line-height: 1.45; }

/* ===== Final CTA ===== */
.cta-b {
  padding: 60px 32px 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-b-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,217,.3), transparent 60%);
  filter: blur(40px);
  top: -200px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.cta-b h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 128px);
  line-height: .92;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  position: relative;
}
.cta-b h2 .lcd-grad {
  background: linear-gradient(96deg,
    var(--accent-2) 0%,
    var(--accent) 25%,
    var(--accent-3) 50%,
    var(--accent) 75%,
    var(--accent-2) 100%);
  background-size: 200% 100%;
  animation: hero-grad-pan 14s ease-in-out infinite;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-b p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.55;
  position: relative;
}
.cta-b-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

.cta-b-logo {
  display: block;
  margin: 0 auto 60px;
  height: 67px;
  width: auto;
  opacity: .9;
  position: relative;
}

.cta-b-trust {
  margin-top: 80px;
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4); font-weight: 700;
  position: relative;
}

@media (max-width: 900px) {
  .uc-b-grid { grid-template-columns: 1fr 1fr; }
  .pillar { flex: 0 0 280px; min-height: 260px; }
  .more-b-grid { grid-template-columns: 1fr 1fr; }
  .feat-b-inner, .emb-b-inner, .aa-b-card { grid-template-columns: 1fr; gap: 40px; }
  .float-card { display: none; }
  .hero-b { padding: 80px 20px 40px; min-height: auto; }
  .hero-b-logo { height: 72px; margin-bottom: 20px; }
  .hero-b h1 { font-size: clamp(40px, 9vw, 96px); margin: 20px 0 20px; }
  .hero-b-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-b-pill-bottom { padding-top: 40px; }
  .hero-b-eyebrow { font-size: 10px; padding: 8px 14px; text-align: center; line-height: 1.4; }
}

@media (max-width: 600px) {
  .scn { padding: 80px 20px; }
  .aa-b, .uc-b, .more-b, .emb-b { padding: 80px 0; }
  .feat-b-inner, .emb-b-inner { padding: 0 20px; }
  .pillar { flex: 0 0 260px; min-height: 240px; }
  .pillars-next, .pillars-prev { display: none; }
  .uc-b-grid, .more-b-grid { grid-template-columns: 1fr; }
  .hero-b h1 { font-size: clamp(36px, 11vw, 72px); max-width: 100%; }
  .hero-b-sub { font-size: 15px; }
  .hero-b-sub br { display: none; }
  .hero-b-meta { grid-template-columns: 1fr; row-gap: 12px; margin-top: 40px; padding-top: 24px; }
  .hero-b-eyebrow { white-space: normal; max-width: 100%; }
  .cta-b { padding: 40px 20px 80px; }
  .cta-b h2 { font-size: clamp(40px, 11vw, 72px); }

  /* Center stand-alone "Learn More" buttons */
  .aa-b-cta { display: flex; justify-content: center; }
  .feat-b-bullets ~ a.lcd-btn-primary {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
  }
  .emb-b-inner div[style*="align-items:center"] {
    justify-content: center;
  }

  /* Wider, more readable Age Assurance method cards */
  .aa-b-methods {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .aa-b-method {
    padding: 22px;
  }

  /* Vertically center the green tick in the verifier success state */
  .verifier-success {
    justify-content: center;
    padding-top: 0;
  }
}

@media (max-width: 380px) {
  .hero-b { padding: 56px 14px 32px; }
  .hero-b-logo { height: 56px; margin-bottom: 16px; }
  .hero-b h1 { font-size: clamp(30px, 10vw, 48px); letter-spacing: -0.03em; margin: 14px 0 16px; }
  .hero-b-sub { font-size: 14px; line-height: 1.45; margin-bottom: 22px; }
  .hero-b-eyebrow { font-size: 9px; letter-spacing: .14em; padding: 7px 12px; }
  .lcd-btn { padding: 12px 18px; font-size: 14px; }
  .scn-head h2, .feat-b h2, .emb-b h2, .aa-b-card h2, .cta-b h2 { font-size: clamp(30px, 10vw, 48px); }
  .cta-b-logo { height: 48px; margin-bottom: 32px; }
  .cta-b { padding: 32px 14px 64px; }
}

/* CSS fixes */
.page-template-templatenew-home-php .siteHeader, 
.page-template-templatenew-home-php .siteHeader.scrolled-header {
    backdrop-filter: blur(14px);
    background: rgba(2, 11, 24, .55);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
body.page-template-templatenew-home-php .main-content {
    margin: 0;
    overflow-x: hidden;
}
a.lcd-btn.lcd-btn-primary.lcd-btn-arrow {
    background: linear-gradient(135deg, #00FFB0 0%, #00F0FF 50%, #0076BA 100%);
    color: #02101F;
    box-shadow: 0 8px 32px -8px rgba(0, 240, 255, .45);
}
.lcd-btn.lcd-btn-primary.lcd-btn-arrow:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 40px -8px rgba(0, 240, 255, .55);
}

html,
body,
[data-screen-label] {
    /*scroll-behavior: smooth;*/
}

html body,
.page-template-templatenew-home-php,
.pillar h3,
.aa-b-method h4,
.more-b-cell h4,
.pillar.is-feature .pi-foot {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400 !important;
}

.page-template-templatenew-home-php .site_footer {
    position: relative;
    z-index: 0;
}
.lcd-btn {
    font-weight: 400;
}
.verifier-status-line,
.verifier-head .vh-title {
    font-weight: 700;
}
.page-template-templatenew-home-php h1,
.page-template-templatenew-home-php h2,
.page-template-templatenew-home-php h3,
.page-template-templatenew-home-php h4,
.emb-uvp-list .uv-ttl,
.verifier-head .vh-title {
 color: #fff;    

}
@media (max-width: 575px){
    body.page-template-templatenew-home-php .main-content {
        margin: 40px 0 0;
    }
}
