/* base.css */
/* ==========================================================================
   HRlume marketing site — design tokens, reset, typography, buttons
   ========================================================================== */

/* "Lume Precision" design system (2026-08-09 unification) — Deep Navy +
   Vibrant Indigo on a light, minimal, card-based surface. Replaces the
   previous blue/purple-on-dark-hero identity; --brand-* and --ink names are
   kept (large call-site surface across ~4000 lines of CSS) but now point at
   the new palette, so this file is the single place the rebrand happens. */
:root{
  /* Brand */
  --brand-navy:#101828;
  --brand-indigo:#4f46e5;
  --brand-blue:#4f46e5;
  --brand-purple:#4f46e5;
  --brand-gradient: linear-gradient(120deg, var(--brand-indigo), #7c6ff0);
  --brand-gradient-hero: linear-gradient(100deg, var(--brand-navy) 0%, var(--brand-indigo) 100%);
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --blue-50:#eff6ff; --blue-100:#dbeafe; --blue-500:#3b82f6; --blue-600:#2563eb;
  --purple-50:#eef2ff; --purple-100:#e0e7ff; --purple-500:#6366f1; --purple-600:#4f46e5;
  --green-500:#10b981; --green-600:#059669;
  --amber-500:#f59e0b;

  --slate-25:#fbfcfe;
  --slate-50:#f9fafb; --slate-100:#f0edef; --slate-200:#eaecf0; --slate-300:#c6c6cd;
  --slate-400:#94a3b8; --slate-500:#727379; --slate-600:#475467; --slate-700:#45474c;
  --slate-800:#1e293b; --slate-900:#101828; --slate-950:#020617;

  /* --ink now the light system's own "primary accent" ink (navy), not a
     dark-mode background — every existing var(--ink) call site (hero,
     page-hero, final-cta, cloudflare section, etc.) is what gets converted
     to light card treatments elsewhere in this pass. */
  --ink:#101828;

  --color-bg:#fcf8fa;
  --color-surface:#ffffff;
  --color-surface-2:#f9fafb;
  --color-primary:var(--brand-indigo);
  --color-text:#1b1b1d;
  --color-text-2:var(--slate-600);
  --color-text-3:var(--slate-500);
  --color-border:var(--slate-200);
  --color-border-soft:rgba(16,24,40,.06);

  --radius-md:8px; --radius-lg:12px; --radius-xl:16px; --radius-2xl:20px; --radius-full:999px;

  --shadow-sm:0px 4px 20px rgba(16,24,40,.05);
  --shadow-md:0px 8px 24px rgba(16,24,40,.08);
  --shadow-lg:0px 24px 48px rgba(16,24,40,.12);
  --shadow-glow: 0px 8px 24px rgba(79,70,229,.15);

  --ease: cubic-bezier(.16,1,.3,1);
  --dur-fast:150ms; --dur-base:280ms; --dur-slow:560ms;

  --section-y: 96px;
  --container: 1280px;
  --site-header-height:72px;
}

@media (max-width: 760px){
  :root{ --section-y: 72px; }
}

*,*::before,*::after{ box-sizing:border-box; }
[hidden]{ display:none!important; }
html{
  scroll-behavior:smooth;
  /* body's own overflow-x:hidden below does not clip position:fixed
     elements (the consent banner, chiefly) — those are positioned
     against the viewport/initial containing block, not against body, so
     they can still push document.documentElement.scrollWidth past the
     viewport on narrow screens even though nothing "in the page" visibly
     scrolls. Hiding overflow-x here too closes that gap at the one place
     that actually contains fixed elements. */
  overflow-x:hidden;
}
body{
  margin:0;
  padding-top:var(--site-header-height);
  background:var(--color-bg);
  color:var(--color-text);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
button{ font:inherit; }
.container{ max-width:var(--container); margin:0 auto; padding:0 28px; }
section{ position:relative; }

::selection{ background:rgba(130,39,252,.18); }

:focus-visible{
  outline:2px solid var(--brand-purple);
  outline-offset:2px;
  border-radius:6px;
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.skip-link{
  position:absolute; left:12px; top:-48px; z-index:1000;
  background:var(--ink); color:#fff; padding:10px 16px; border-radius:var(--radius-md);
  font-size:14px; font-weight:600; text-decoration:none; transition:top var(--dur-fast) var(--ease);
}
.skip-link:focus{ top:12px; }

/* ---------- Typography ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--brand-purple);
}
h1,h2,h3,h4{ margin:0; letter-spacing:-0.02em; font-weight:700; font-family:var(--font-display); }
.section-head{ max-width:640px; margin:0 auto 56px; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.6vw,42px); line-height:1.15; margin:14px 0 16px; }
.section-head p{ color:var(--color-text-2); font-size:17px; margin:0; }
.section-head.is-left{ margin:0 0 48px; text-align:left; }

.gradient-text{
  background:var(--brand-gradient);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
/* Hero headline emphasis only — the richer 3-stop gradient reads as more
   premium at 60-70px than the flat 2-stop version, but only earns that at
   hero-heading scale; everywhere else keeps .gradient-text as-is. */
.gradient-text--hero{
  background:var(--brand-gradient-hero);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  height:48px; padding:0 26px; border-radius:var(--radius-md);
  font-size:15px; font-weight:600; text-decoration:none; border:1px solid transparent;
  cursor:pointer; white-space:nowrap;
  transition:background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.btn:active{ transform:translateY(1px); }
.btn--sm{ height:40px; padding:0 18px; font-size:14px; }
.btn--primary{ background:var(--ink); color:#fff; box-shadow:var(--shadow-sm); }
.btn--primary:hover{ background:#000; box-shadow:var(--shadow-md); transform:translateY(-1px); }
.btn--gradient{ background:var(--brand-gradient); color:#fff; box-shadow:var(--shadow-glow); }
.btn--gradient:hover{ filter:brightness(1.08); transform:translateY(-1px); }

/* Liquid-glass sheen — layers a glossy rim-light border + subtle blur on
   top of an existing fill (.btn--gradient here), rather than the fully
   transparent glass a video-background hero can get away with. The ::before
   ring uses the standard gradient-border mask trick: a padded gradient
   layer, masked so only its edge (not its fill) is visible. */
.btn--liquid{
  position:relative; overflow:hidden; backdrop-filter:blur(6px);
  box-shadow:var(--shadow-glow), inset 0 1px 1px rgba(255,255,255,.18);
}
.btn--liquid::before{
  content:""; position:absolute; inset:0; border-radius:inherit; padding:1.5px;
  background:linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.12) 30%,
    rgba(255,255,255,0) 50%, rgba(255,255,255,0) 65%, rgba(255,255,255,.22) 100%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  pointer-events:none;
}
.btn--ghost{ border-color:var(--color-border); color:var(--color-text); background:transparent; }
.btn--ghost:hover{ background:var(--color-surface-2); }
.btn--on-dark{ border-color:rgba(255,255,255,.16); color:#fff; }
.btn--on-dark:hover{ background:rgba(255,255,255,.08); }
.btn--block{ width:100%; }
.btn svg{ width:16px; height:16px; stroke-width:2.25; }

/* header.css */
/* ---------- Header / Nav — persistent Lume control strip ---------- */
body > header{
  --header-scroll-progress:0;
  position:fixed; inset:0 0 auto; z-index:100;
  width:100%;
  background:rgba(255,255,255,.96);
  box-shadow:0 1px 0 rgba(16,24,40,.03);
  border-bottom:1px solid var(--color-border);
  -webkit-backdrop-filter:saturate(150%) blur(16px);
  backdrop-filter:saturate(150%) blur(16px);
  transition:box-shadow var(--dur-base) var(--ease),background-color var(--dur-base) var(--ease);
}
body > header::after{
  content:""; position:absolute; right:0; bottom:-1px; left:0; height:2px;
  pointer-events:none; transform:scaleX(var(--header-scroll-progress)); transform-origin:left center;
  background:linear-gradient(90deg,var(--brand-indigo),#7c6ff0 62%,#3b82f6);
}
body > header.is-scrolled{
  background:rgba(255,255,255,.9);
  box-shadow:0 12px 34px rgba(16,24,40,.1);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:var(--site-header-height); max-width:var(--container); margin:0 auto; padding:0 28px;
}
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand img{ height:28px; width:auto; }
.brand span{ font-family:var(--font-display); font-weight:700; font-size:18px; letter-spacing:-0.01em; color:var(--brand-navy); }
.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links > a, .nav-dropdown summary{
  font-size:14px; font-weight:500; color:var(--color-text-2); text-decoration:none;
  padding:9px 0; transition:color var(--dur-fast);
}
.nav-links > a:hover, .nav-dropdown summary:hover, .nav-dropdown[open] summary{ color:var(--brand-navy); background:none; }
.nav-dropdown{ position:relative; }
.nav-dropdown summary{ display:flex; align-items:center; gap:6px; cursor:pointer; list-style:none; }
.nav-dropdown summary::-webkit-details-marker{ display:none; }
.nav-dropdown summary svg{ width:10px; fill:none; stroke:currentColor; stroke-width:1.7; transition:transform var(--dur-fast); }
.nav-dropdown[open] summary svg{ transform:rotate(180deg); }
.nav-dropdown__panel{
  position:absolute; top:calc(100% + 15px); left:50%; transform:translateX(-31%); width:min(760px, calc(100vw - 40px));
  display:grid; grid-template-columns:220px 1fr; gap:18px; padding:18px; border:1px solid var(--color-border);
  border-radius:var(--radius-lg); background:var(--color-surface); box-shadow:var(--shadow-lg);
}
.nav-dropdown__panel::before{ content:""; position:absolute; inset:-18px 0 auto; height:18px; }
.nav-dropdown__intro{ padding:18px; border-radius:var(--radius-md); background:color-mix(in srgb, var(--brand-indigo) 8%, var(--color-surface)); }
.nav-dropdown__intro > span{ display:block; margin-bottom:10px; color:var(--brand-indigo); font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.nav-dropdown__intro strong{ display:block; font-family:var(--font-display); font-size:18px; line-height:1.3; color:var(--brand-navy); }
.nav-dropdown__intro a{ display:inline-flex; margin-top:18px; color:var(--brand-indigo); font-size:13px; font-weight:700; text-decoration:none; }
.nav-dropdown__links{ display:grid; grid-template-columns:1fr 1fr; gap:3px; }
.nav-dropdown__links a{ min-width:0; padding:9px 11px; border-radius:var(--radius-md); color:var(--color-text); text-decoration:none; }
.nav-dropdown__links a:hover{ background:var(--color-surface-2); }
.nav-dropdown__links b,.nav-dropdown__links span{ display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.nav-dropdown__links b{ font-size:13px; }
.nav-dropdown__links b em{ margin-left:5px; color:var(--brand-indigo); font-size:9px; font-style:normal; font-weight:800; letter-spacing:.04em; text-transform:uppercase; }
.nav-dropdown__links span{ margin-top:2px; color:var(--color-text-3); font-size:11px; }
.nav-actions{ display:flex; align-items:center; gap:14px; }
.locale-switch{ display:flex; align-items:center; padding:3px; border:1px solid var(--color-border); border-radius:var(--radius-md); background:var(--color-surface); }
.locale-switch a{ min-width:30px; padding:6px 7px; border-radius:6px; color:var(--color-text-3); font-size:11px; font-weight:800; text-align:center; text-decoration:none; }
.locale-switch a.is-active{ color:#fff; background:var(--brand-navy); }
.nav-burger{
  display:none; width:40px; height:40px; border-radius:var(--radius-md); border:1px solid var(--color-border);
  background:var(--color-surface); align-items:center; justify-content:center; cursor:pointer;
}
.nav-burger svg{ width:18px; height:18px; }
.mobile-menu{
  display:none; position:fixed; inset:var(--site-header-height) 0 0 0; z-index:99; background:var(--color-bg);
  height:calc(100vh - var(--site-header-height)); height:calc(100dvh - var(--site-header-height));
  padding:24px 28px max(24px, env(safe-area-inset-bottom)); overflow-y:auto;
  overscroll-behavior:contain; -webkit-overflow-scrolling:touch; touch-action:pan-y;
}
main [id]{ scroll-margin-top:calc(var(--site-header-height) + 16px); }
.mobile-menu.is-open{ display:block; }
.mobile-menu a{
  display:block; padding:14px 4px; font-size:17px; font-weight:600; text-decoration:none;
  color:var(--color-text); border-bottom:1px solid var(--color-border-soft);
}
.mobile-menu .mobile-menu__cta{
  display:flex; align-items:center; justify-content:center; gap:10px; min-height:52px;
  margin-top:22px; padding:0 20px; border:0; border-radius:var(--radius-md); color:#fff;
  background:var(--brand-gradient);
  box-shadow:var(--shadow-glow); font-size:15px; font-weight:750; line-height:1.2;
}
.mobile-menu .mobile-menu__cta::after{ content:"→"; font-size:18px; font-weight:600; line-height:1; }
.mobile-menu .mobile-menu__cta:active{ transform:translateY(1px); box-shadow:var(--shadow-sm); }
.mobile-features summary{ padding:14px 4px; border-bottom:1px solid var(--color-border-soft); font-size:17px; font-weight:700; cursor:pointer; }
.mobile-features > div{ display:grid; grid-template-columns:1fr 1fr; padding:8px 0 12px; }
.mobile-features > div a{ padding:10px 4px; border:0; font-size:14px; }

@media (max-width:900px){
  .nav-links{ display:none; }
  .nav-actions .btn--ghost{ display:none; }
  .nav-burger{ display:inline-flex; }
}
@media (min-width:901px) and (max-width:1120px){
  .nav-links{ gap:2px; }
  .nav-links > a,.nav-dropdown summary{ padding-inline:9px; }
  .nav-actions{ gap:6px; }
}
@media (max-width:640px){
  .nav{ padding:0 16px; }
  .nav-actions{ gap:6px; }
  .nav-actions > .btn--primary{ display:none; }
  .locale-switch{ padding:2px; }
  .locale-switch a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:44px;
    min-height:44px;
    padding:0 8px;
  }
  .nav-burger{ width:44px; height:44px; }
}
@media (max-width:420px){
  .mobile-features > div{ grid-template-columns:1fr; }
}

@media (prefers-reduced-motion:reduce){
  body > header{ transition:none; }
}

/* hero.css */
/* ---------- Hero (light — "Lume Precision") ---------- */
.hero{
  position:relative;
  background:
    radial-gradient(900px 500px at 18% -10%, rgba(79,70,229,.08), transparent 60%),
    radial-gradient(800px 460px at 85% 8%, rgba(79,70,229,.06), transparent 55%),
    var(--color-bg);
  color:var(--color-text);
  padding:104px 0 0;
  overflow:hidden;
}
.hero::after{
  content:""; position:absolute; inset:auto 0 0 0; height:160px;
  background:linear-gradient(180deg, transparent, var(--color-bg));
  pointer-events:none;
}
.hero-grid{
  position:absolute; inset:0; opacity:.5; pointer-events:none;
  background-image:
    linear-gradient(rgba(16,24,40,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,24,40,.04) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(60% 60% at 50% 0%, black, transparent 75%);
}
.hero-inner{ position:relative; text-align:center; max-width:880px; margin:0 auto; padding:0 28px; }
.hero-badge{
  display:inline-flex; align-items:center; gap:8px; padding:7px 16px 7px 8px;
  border-radius:var(--radius-full); background:var(--color-surface);
  border:1px solid var(--color-border); font-size:13px; font-weight:600; color:var(--color-text-2);
  box-shadow:var(--shadow-sm);
  margin-bottom:28px;
}
.hero-badge b{
  background:var(--brand-gradient); color:#fff; font-size:11px; font-weight:800;
  padding:3px 8px; border-radius:var(--radius-full); letter-spacing:.02em;
}
.hero h1{
  font-size:clamp(36px,6vw,68px); line-height:1.06; letter-spacing:-0.03em;
  margin:0 0 22px; color:var(--brand-navy);
}
.hero p.lead{
  max-width:600px; margin:0 auto 36px; font-size:19px; color:var(--color-text-2);
}
.hero-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:20px; }
.hero-fineprint{
  display:flex; gap:22px; justify-content:center; flex-wrap:wrap; margin-bottom:72px;
  font-size:13.5px; color:var(--color-text-3);
}
.hero-fineprint span{ display:inline-flex; align-items:center; gap:7px; }
.hero-fineprint svg{ width:15px; height:15px; stroke:var(--brand-indigo); stroke-width:2.5; flex:none; }

/* ---------- Browser mockup ---------- */
.mockup-wrap{ position:relative; max-width:980px; margin:0 auto; padding:0 20px; }
.browser{
  border-radius:var(--radius-2xl) var(--radius-2xl) 0 0;
  background:linear-gradient(180deg, #11142a, #0b0d1c);
  border:1px solid rgba(255,255,255,.08);
  border-bottom:none;
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}
.browser-bar{
  display:flex; align-items:center; gap:16px; padding:14px 18px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.browser-dots{ display:flex; gap:7px; flex:none; }
.browser-dots span{ width:11px; height:11px; border-radius:50%; background:rgba(255,255,255,.14); }
.browser-url{
  flex:1; max-width:340px; height:26px; border-radius:var(--radius-full);
  background:rgba(255,255,255,.06); display:flex; align-items:center; padding:0 12px;
  font-size:12px; color:#8b91ac; gap:6px;
}
.browser-url svg{ width:11px; height:11px; stroke:#5ee6a8; }
.browser-tabs{ display:flex; gap:6px; flex-wrap:wrap; justify-content:flex-end; flex:1; }
.browser-tabs button{
  border:none; background:transparent; color:#7b81a0; font-size:12.5px; font-weight:600;
  padding:7px 12px; border-radius:var(--radius-full); cursor:pointer;
  transition:background var(--dur-fast), color var(--dur-fast);
}
.browser-tabs button.is-active{ background:rgba(255,255,255,.1); color:#fff; }
.browser-stage{
  position:relative;
  aspect-ratio:2400/1334;
  overflow:hidden;
  background:linear-gradient(145deg,#f4f6fb,#eef2f9);
}
.mock-screen{
  position:absolute; inset:0; padding:28px 32px; opacity:0; transform:translateY(10px) scale(.99);
  transition:opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  display:grid; grid-template-columns:180px 1fr; gap:22px;
}
.mock-screen.is-active{ opacity:1; transform:translateY(0) scale(1); position:relative; }

/* Real screenshot fills the browser stage instead of the schematic grid. */
.mock-screen.is-shot{
  display:block;
  padding:0;
  position:absolute;
  inset:5%;
  overflow:hidden;
  border:1px solid var(--color-border);
  border-radius:8px;
  background:#fff;
  box-shadow:0 10px 28px rgba(16,24,40,.09);
}
.mock-screen.is-shot.is-active{ position:absolute; }
.mock-screen.is-shot img{ width:100%; height:100%; object-fit:cover; object-position:top left; display:block; }
.mock-side{ display:flex; flex-direction:column; gap:8px; }
.mock-side .dot{ width:8px; height:8px; border-radius:50%; background:var(--brand-gradient); }
.mock-side-item{
  height:32px; border-radius:9px; background:rgba(255,255,255,.05);
  display:flex; align-items:center; padding:0 10px; gap:8px; font-size:12px; color:#7b81a0;
}
.mock-side-item.is-active{ background:rgba(255,255,255,.1); color:#fff; }
.mock-side-item i{ width:14px; height:14px; border-radius:4px; background:rgba(255,255,255,.18); flex:none; }
.mock-main{ display:flex; flex-direction:column; gap:14px; min-width:0; }
.mock-row{ display:flex; gap:14px; }
.mock-card{
  flex:1; border-radius:14px; background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.06); padding:16px; min-width:0;
}
.mock-card h4{ font-size:12px; color:#7b81a0; font-weight:600; margin:0 0 8px; }
.mock-card b{ font-size:22px; color:#fff; display:block; }
.mock-bar{ height:8px; border-radius:4px; background:rgba(255,255,255,.08); margin-top:10px; overflow:hidden; }
.mock-bar i{ display:block; height:100%; background:var(--brand-gradient); border-radius:4px; }
.mock-table{ flex:1; border-radius:14px; background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.06); padding:16px; }
.mock-line{ display:flex; align-items:center; gap:10px; padding:9px 0; border-bottom:1px solid rgba(255,255,255,.05); }
.mock-line:last-child{ border-bottom:none; }
.mock-avatar{ width:22px; height:22px; border-radius:50%; background:var(--brand-gradient); flex:none; }
.mock-line span{ height:8px; border-radius:4px; background:rgba(255,255,255,.12); flex:1; }
.mock-pill{
  font-size:10px; font-weight:700; padding:3px 8px; border-radius:var(--radius-full);
  background:rgba(94,230,168,.15); color:#5ee6a8; flex:none;
}
.mockup-floaters{ display:none; }
@media (min-width:900px){
  /* Overlay anchored to the mockup itself (mockup-wrap is position:relative), so
     the callouts read as part of the product screenshot instead of floating
     loose in the dark hero. pointer-events:none keeps the tab bar clickable. */
  .mockup-floaters{ display:block; position:absolute; inset:0; z-index:3; pointer-events:none; }
  .float-card{
    position:absolute; background:var(--color-surface); border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg); border:1px solid var(--color-border); padding:14px 16px;
    display:flex; align-items:center; gap:10px; font-size:13px; font-weight:600; color:var(--color-text);
    white-space:nowrap; animation: float 6s var(--ease) infinite;
  }
  .float-card svg{ width:18px; height:18px; }
  /* Tuck onto the top-left / bottom-right corners of the screenshot frame —
     overlapping it, but never past the hero edge (no clipping, no overflow). */
  .float-card--1{ top:7%; left:0; animation-delay:0s; }
  .float-card--2{ bottom:11%; right:0; animation-delay:1.2s; }
}
@keyframes float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }

@media (max-width:640px){
  .hero-badge{
    flex-direction:column; gap:7px; max-width:min(300px,calc(100vw - 48px));
    padding:10px 16px 12px; border-radius:18px; line-height:1.35; text-align:center;
  }
  .hero-badge b{ padding:4px 10px; font-size:10px; white-space:nowrap; }
  .hero-badge > span{ color:#cfd4ee; font-size:12px; font-weight:600; }
  .browser-bar{
    display:grid; grid-template-columns:auto minmax(0,1fr); gap:10px 12px;
    padding:12px; align-items:center;
  }
  .browser-dots{ gap:5px; }
  .browser-dots span{ width:8px; height:8px; }
  .browser-url{ width:100%; max-width:none; height:28px; }
  .browser-tabs{
    grid-column:1/-1; display:grid; grid-template-columns:repeat(2,minmax(0,1fr));
    gap:6px; width:100%;
  }
  .browser-tabs button{
    width:100%; min-height:32px; padding:6px 8px; border:1px solid transparent;
    background:rgba(255,255,255,.035); font-size:11px; text-align:center;
  }
  .browser-tabs button.is-active{ border-color:rgba(255,255,255,.08); background:rgba(255,255,255,.12); }
  .mock-screen{ grid-template-columns:1fr; }
  .mock-side{ display:none; }
}

/* marquee.css */
/* ---------- Product marquee (dark, continues the hero) ---------- */
.marquee-section{
  background:var(--ink);
  padding:0 0 96px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.marquee-row{
  overflow:hidden;
  width:100%;
}
.marquee-track{
  display:flex;
  gap:14px;
  width:max-content;
  will-change:transform;
}
.marquee-track img{
  width:340px;
  height:220px;
  padding:8px;
  object-fit:contain;
  background:#fff;
  border-radius:var(--radius-xl);
  border:1px solid rgba(255,255,255,.08);
  flex:none;
}
@media (max-width:760px){
  .marquee-section{ padding-bottom:64px; gap:10px; }
  .marquee-track{ gap:10px; }
  .marquee-track img{ width:220px; height:150px; border-radius:var(--radius-lg); }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ transform:none !important; }
}

/* sections.css */
/* ---------- Reveal-on-scroll ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .float-card, .cf-core::before, .cf-node{ animation:none; }
  html{ scroll-behavior:auto; }
}

/* ---------- Sections generic ---------- */
.section{ padding:var(--section-y) 0; }
.section--tight{ padding:calc(var(--section-y) * .6) 0; }
.section--surface{ background:var(--color-surface-2); }
.section--border-t{ border-top:1px solid var(--color-border); }

/* ---------- Trust / quality cards ---------- */
.trust-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:18px; }
@media (max-width:980px){ .trust-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:640px){ .trust-grid{ grid-template-columns:repeat(2,1fr); } }
.trust-card{
  border:1px solid var(--color-border); border-radius:var(--radius-lg); padding:24px 18px;
  text-align:center; background:var(--color-surface);
  transition:transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base);
}
.trust-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:transparent; }
.trust-card .ic{
  width:44px; height:44px; margin:0 auto 14px; border-radius:var(--radius-md);
  display:grid; place-items:center; background:var(--brand-gradient); color:#fff;
}
.trust-card .ic svg{ width:22px; height:22px; stroke-width:1.8; }
.trust-card h4{ font-size:14.5px; margin:0 0 4px; }
.trust-card p{ font-size:12.5px; color:var(--color-text-3); margin:0; }

/* ---------- Product module cards ---------- */
.products-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:980px){ .products-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .products-grid{ grid-template-columns:1fr; } }
.product-card{
  border:1px solid var(--color-border); border-radius:var(--radius-xl); padding:28px;
  background:var(--color-surface); position:relative; overflow:hidden;
  transition:transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base);
}
.product-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:transparent; }
.product-card--coming{ border-color:color-mix(in srgb,var(--brand-purple) 28%,var(--color-border)); background:linear-gradient(155deg,color-mix(in srgb,var(--brand-purple) 8%,var(--color-surface)),var(--color-surface) 58%); }
.product-card__status{ display:inline-flex; width:max-content; margin:0 0 18px; padding:6px 9px; border-radius:var(--radius-full); background:color-mix(in srgb,var(--brand-purple) 12%,var(--color-surface)); color:var(--brand-purple); font-size:10px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.product-card::before{
  content:""; position:absolute; inset:0; opacity:0; background:var(--brand-gradient);
  transition:opacity var(--dur-base) var(--ease);
}
.product-card:hover::before{ opacity:.03; }
.product-card .ic{
  width:46px; height:46px; border-radius:var(--radius-md); display:grid; place-items:center;
  margin-bottom:18px; background:var(--brand-gradient); color:#fff;
}
.product-card .ic svg{ width:23px; height:23px; stroke-width:2; }
.product-card h3{ font-size:18px; margin:0 0 8px; }
.product-card > p{ font-size:14px; color:var(--color-text-2); margin:0 0 16px; }
.product-card ul{ list-style:none; margin:0 0 18px; padding:0; display:flex; flex-direction:column; gap:8px; }
.product-card li{ display:flex; gap:8px; font-size:13px; color:var(--color-text-2); align-items:flex-start; }
.product-card li svg{ width:14px; height:14px; stroke:var(--green-600); stroke-width:2.5; flex:none; margin-top:2px; }
.product-card .learn{
  display:inline-flex; align-items:center; gap:6px; font-size:13.5px; font-weight:700;
  color:var(--color-text); text-decoration:none; position:relative; z-index:1;
}
.product-card .learn svg{ width:14px; height:14px; stroke-width:2.5; transition:transform var(--dur-fast) var(--ease); }
.product-card .learn:hover svg{ transform:translateX(3px); }

/* ---------- Alternating feature rows ---------- */
.feature-row{
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
  padding:64px 0;
}
.feature-row + .feature-row{ border-top:1px solid var(--color-border); }
.feature-row.is-reverse .feature-visual{ order:2; }
@media (max-width:900px){
  .feature-row{ grid-template-columns:1fr; gap:32px; padding:44px 0; }
  .feature-row.is-reverse .feature-visual{ order:0; }
}
.feature-copy .eyebrow{ margin-bottom:14px; }
.feature-copy h3{ font-size:clamp(22px,2.6vw,30px); margin:0 0 14px; letter-spacing:-0.01em; }
.feature-copy > p{ font-size:15.5px; color:var(--color-text-2); margin:0 0 20px; }
.feature-list{ list-style:none; margin:0 0 22px; padding:0; display:flex; flex-direction:column; gap:12px; }
.feature-list li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color:var(--color-text); }
.feature-list svg{ width:18px; height:18px; stroke:var(--brand-purple); stroke-width:2.25; flex:none; margin-top:1px; }
.feature-metric{ display:inline-flex; align-items:baseline; gap:8px; font-size:13.5px; color:var(--color-text-3); }
.feature-metric b{ font-size:26px; color:var(--color-text); font-weight:800; }
.feature-visual{
  border-radius:var(--radius-xl); border:1px solid var(--color-border); background:var(--color-surface-2);
  padding:22px; box-shadow:var(--shadow-sm);
}
.feature-visual img{ border-radius:var(--radius-md); }

/* Real product screenshot inside a feature row: the framed shot IS the visual,
   so drop the surrounding card padding/border. */
.feature-visual.is-shot{ padding:0; border:none; background:none; box-shadow:none; }
.shot{
  margin:0; line-height:0; overflow:hidden;
  border-radius:var(--radius-lg); border:1px solid var(--color-border);
  background:var(--color-surface); box-shadow:var(--shadow-md);
}
.shot img{
  display:block;
  width:90%;
  height:auto;
  margin:5% auto;
  border:1px solid var(--color-border);
  border-radius:var(--radius-md);
  box-shadow:0 8px 24px rgba(16,24,40,.07);
}
.fv-head{ display:flex; align-items:center; gap:8px; margin-bottom:16px; }
.fv-head .ic{ width:30px; height:30px; border-radius:9px; display:grid; place-items:center; background:var(--brand-gradient); color:#fff; }
.fv-head .ic svg{ width:16px; height:16px; stroke-width:2.25; }
.fv-head span{ font-size:13px; font-weight:700; color:var(--color-text-2); }
.fv-block{ height:14px; border-radius:5px; background:var(--color-border); margin-bottom:10px; }
.fv-row{ display:flex; gap:12px; margin-bottom:10px; }
.fv-card{ flex:1; border-radius:12px; background:var(--color-surface); border:1px solid var(--color-border); padding:14px; }
.fv-card b{ display:block; font-size:20px; margin-bottom:4px; }
.fv-card span{ font-size:11.5px; color:var(--color-text-3); }
.fv-list-row{ display:flex; align-items:center; gap:10px; padding:9px 0; border-bottom:1px solid var(--color-border); }
.fv-list-row:last-child{ border:none; }
.fv-list-row .dot{ width:9px; height:9px; border-radius:50%; flex:none; }
.fv-list-row span{ height:9px; flex:1; border-radius:4px; background:var(--color-border); }
.fv-badge{ font-size:10px; font-weight:700; padding:3px 8px; border-radius:var(--radius-full); flex:none; }

/* ---------- Comparison ---------- */
.compare{
  border:1px solid var(--color-border); border-radius:var(--radius-xl); overflow:hidden;
  background:var(--color-surface);
}
.compare-row{ display:grid; grid-template-columns:1fr 1fr; transition-delay:var(--rd,0s); }
.compare-row + .compare-row{ border-top:1px solid var(--color-border); }
/* +1 offset — .compare-head is the first child inside .compare, before the rows. */
.compare-row:nth-child(3){ --rd:.08s; }
.compare-row:nth-child(4){ --rd:.16s; }
.compare-row:nth-child(5){ --rd:.24s; }
.compare-row:nth-child(6){ --rd:.32s; }
.compare-head{ display:grid; grid-template-columns:1fr 1fr; background:var(--color-surface-2); }
.compare-head div{ padding:18px 24px; font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.04em; }
.compare-head div:first-child{ color:var(--color-text-3); }
.compare-head div:last-child{ color:var(--brand-purple); }
.compare-cell{ padding:20px 24px; display:flex; align-items:center; gap:12px; font-size:14.5px; }
.compare-cell svg{ width:16px; height:16px; flex:none; stroke-width:2.5; }
.compare-cell.is-old{ color:var(--color-text-3); }
.compare-cell.is-old svg{ stroke:var(--slate-400); }
.compare-cell.is-new{ color:var(--color-text); font-weight:600; }
.compare-cell.is-new svg{ stroke:var(--green-600); }
.compare-cell.is-new{ background:linear-gradient(90deg, rgba(79,70,229,.04), transparent); }
.compare-cell--roadmap{ flex-wrap:wrap; }
.compare-cell--roadmap > span{ flex:1 1 220px; }
.compare-status{
  flex:none; padding:4px 9px; border:1px solid var(--color-border);
  border-radius:var(--radius-full); background:var(--color-surface-2);
  color:var(--brand-purple); font-size:10px; font-weight:800;
  letter-spacing:.05em; line-height:1.2; text-transform:uppercase;
}

/* ---------- Why teams choose (photo + stat cards) ---------- */
.team-band{ display:grid; grid-template-columns:1fr 1.1fr; gap:56px; align-items:center; }
@media (max-width:900px){ .team-band{ grid-template-columns:1fr; gap:36px; } }
.team-photo{
  border-radius:var(--radius-xl); overflow:hidden; border:1px solid var(--color-border);
  box-shadow:var(--shadow-md);
}
/* height:auto is required — the img carries width/height attributes, so without
   it the height hint (733px) stays fixed and stretches the photo. */
.team-photo img{ width:100%; height:auto; display:block; }
.choose-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.choose-card{
  border-radius:var(--radius-lg); padding:24px; background:var(--color-surface);
  border:1px solid var(--color-border);
  transition:transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.choose-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.choose-card .ic{
  width:40px; height:40px; margin-bottom:12px; border-radius:50%; display:grid; place-items:center;
  background:var(--brand-gradient); color:#fff;
}
.choose-card .ic svg{ width:18px; height:18px; stroke-width:2.25; }
.choose-card h4{ font-size:14.5px; margin:0 0 6px; }
.choose-card p{ font-size:13px; color:var(--color-text-2); margin:0; }

/* home-lume.css */
/* Homepage — Lume Precision composition from the approved visual reference. */
.hero{
  padding:84px 0 96px;
  background:
    radial-gradient(760px 380px at 15% -12%,rgba(79,70,229,.07),transparent 64%),
    radial-gradient(700px 360px at 86% 6%,rgba(124,58,237,.05),transparent 62%),
    #fcf8fa;
}
.hero::after{ display:none; }
.hero-inner{ max-width:850px; }
.hero-badge{ margin-bottom:24px; background:#eef2ff; border:0; box-shadow:none; color:#4f46e5; }
.hero-badge b{ background:transparent; color:#4f46e5; padding:0; letter-spacing:.08em; }
.hero h1{ max-width:820px; margin:0 auto 20px; font-size:clamp(38px,5.2vw,60px); line-height:1.18; letter-spacing:-.03em; }
.hero .gradient-text--hero{ background:none; color:var(--brand-navy); }
.hero p.lead{ max-width:680px; margin-bottom:30px; font-size:18px; line-height:1.6; }
.hero-actions{ margin-bottom:18px; }
.hero-actions .btn{ min-height:48px; padding-inline:22px; }
.hero-fineprint{ margin-bottom:54px; }

/* Product showcase: editorial heading + actual product UI in one elevated card. */
.mockup-wrap{
  max-width:1180px; padding:30px; border:1px solid var(--color-border); border-radius:14px;
  background:#fff; box-shadow:0 18px 54px rgba(16,24,40,.10);
}
.showcase-copy{ max-width:640px; margin:0 0 26px; text-align:left; }
.showcase-copy .eyebrow{ font-size:11px; }
.showcase-copy h2{ margin:8px 0; color:var(--brand-navy); font-size:clamp(25px,3vw,36px); }
.showcase-copy p{ margin:0; color:var(--color-text-2); }
.browser{ background:#fff; border:1px solid var(--color-border); border-radius:10px; box-shadow:0 12px 34px rgba(16,24,40,.10); }
.browser-bar{ background:#f8fafc; border-bottom-color:var(--color-border); }
.browser-dots span:nth-child(1){ background:#f97066; }
.browser-dots span:nth-child(2){ background:#fdb022; }
.browser-dots span:nth-child(3){ background:#32d583; }
.browser-url{ background:#fff; border:1px solid var(--color-border); color:var(--color-text-3); }
.browser-tabs button{ color:var(--color-text-3); }
.browser-tabs button:hover{ background:#eef2ff; color:var(--brand-indigo); }
.browser-tabs button.is-active{ background:#e9edff; color:var(--brand-indigo); }
.float-card{ box-shadow:0 8px 28px rgba(16,24,40,.10); }
.mockup-floaters{ display:none!important; }

/* Four core modules — compact horizontal rail from the reference. */
.product-rail-section{ background:#fff; }
.product-rail{ display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--color-border); border-radius:12px; overflow:hidden; background:#fff; }
.rail-card{ min-width:0; padding:30px; color:inherit; text-decoration:none; transition:background .2s ease; }
.rail-card + .rail-card{ border-left:1px solid var(--color-border); }
.rail-card:hover{ background:#f8f9ff; }
.rail-card__icon{ display:grid; place-items:center; width:38px; height:38px; border-radius:9px; margin-bottom:22px; background:#eef2ff; color:#4f46e5; font-size:12px; font-weight:800; }
.rail-card h3{ margin-bottom:8px; font-size:18px; }
.rail-card p{ min-height:84px; margin:0 0 18px; color:var(--color-text-2); font-size:13.5px; line-height:1.55; }
.rail-card>span:last-child{ color:#4f46e5; font-size:13px; font-weight:700; }

/* The capability grid is intentionally quieter and denser than the old module cards. */
#products{ background:#f9fafb; }
.products-grid{ grid-template-columns:repeat(3,1fr); gap:16px; }
.product-card{ min-height:252px; padding:30px; border-radius:12px; box-shadow:0 4px 20px rgba(16,24,40,.035); }
.product-card:hover{ transform:translateY(-2px); border-color:#c7d2fe; box-shadow:0 10px 28px rgba(16,24,40,.07); }
.product-card .ic{ width:44px; height:44px; margin-bottom:22px; background:#eef2ff; color:#4f46e5; }
.product-card h3{ font-size:18px; }
.product-card>p{ margin-bottom:22px; line-height:1.6; }
.product-card ul{ display:none; }
.product-card__status{ position:absolute; top:22px; right:22px; margin:0; font-size:9px; }
.product-card--coming,.product-card--new{ background:linear-gradient(145deg,#f8f9ff,#fff 64%); border-color:#dfe3ff; }

/* Why section follows the reference's copy + old/new comparison. */
.why-section{ background:#fff; }
.why-layout{ display:grid; grid-template-columns:1.12fr .88fr; gap:64px; align-items:center; }
.why-copy{ display:grid; gap:32px; }
.why-copy>div{ display:grid; grid-template-columns:38px 1fr; column-gap:16px; }
.why-copy span{ grid-row:1/3; display:grid; place-items:center; width:38px; height:38px; border-radius:9px; background:#eef2ff; color:#4f46e5; font-size:12px; font-weight:800; }
.why-copy h3{ margin:2px 0 8px; font-size:20px; }
.why-copy p{ margin:0; color:var(--color-text-2); font-size:15px; }
.way-card{ border:1px solid var(--color-border); border-radius:12px; background:#f9fafb; padding:10px 28px; }
.way-row{ position:relative; padding:28px 0 28px 34px; }
.way-row+ .way-row{ border-top:1px solid var(--color-border); }
.way-row::before{ content:""; position:absolute; left:0; top:31px; width:18px; height:18px; border-radius:50%; }
.way-row--old::before{ background:#fee4e2; box-shadow:inset 0 0 0 5px #f97066; }
.way-row--new::before{ background:#dcfae6; box-shadow:inset 0 0 0 5px #12b76a; }
.way-row b{ display:block; margin-bottom:5px; }
.way-row p{ margin:0; color:var(--color-text-2); font-size:14px; }

/* One full-width, two-column dark band — platform and controls together. */
.platform-band{ padding:88px 0; background:#101828; color:#fff; }
.platform-band__grid{ display:grid; grid-template-columns:1fr 1fr; gap:0; }
.platform-column{ padding:0 60px; }
.platform-column:first-child{ padding-left:0; border-right:1px solid rgba(255,255,255,.12); }
.platform-column:last-child{ padding-right:0; }
.platform-kicker{ display:block; margin-bottom:12px; color:#c7d2fe; font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.platform-column h2{ color:#fff; font-size:clamp(28px,3vw,38px); }
.platform-column>p{ max-width:520px; margin:14px 0 30px; color:#b7c0d5; }
.platform-column ul{ display:grid; gap:22px; margin:0; padding:0; list-style:none; }
.platform-column li{ display:flex; gap:14px; }
.platform-column li>span{ display:grid; place-items:center; flex:0 0 36px; height:36px; border-radius:8px; background:rgba(255,255,255,.08); color:#c7d2fe; font-size:10px; font-weight:800; }
.platform-column b{ display:block; margin-bottom:3px; color:#fff; font-size:14px; }
.platform-column small{ display:block; color:#98a2b3; font-size:12.5px; line-height:1.5; }

/* Pricing and final CTA mirror the reference rhythm. */
#pricing{ background:#f9fafb; }
.price-card{ max-width:480px; border-radius:12px; padding:36px; background:#101828; box-shadow:0 16px 42px rgba(16,24,40,.18); }
.price-card::before{ opacity:.55; }
.enterprise-box{ max-width:480px; background:#fff; border-radius:12px; }
.final-cta--soft{ border:1px solid #dfe3ff; border-radius:12px; background:#eef2ff; color:var(--brand-navy); }
.final-cta--soft::before{ display:none; }
.final-cta--soft p{ color:var(--color-text-2); }
.final-cta--soft .btn--on-dark{ border-color:#d0d5dd; color:var(--brand-navy); background:#fff; }

@media(max-width:1000px){
  .product-rail{ grid-template-columns:repeat(2,1fr); }
  .rail-card:nth-child(3){ border-left:0; border-top:1px solid var(--color-border); }
  .rail-card:nth-child(4){ border-top:1px solid var(--color-border); }
  .why-layout{ gap:40px; }
  .platform-column{ padding-inline:36px; }
}
@media(max-width:760px){
  .hero{ padding:64px 0 72px; }
  .hero h1{ font-size:36px; line-height:1.22; }
  .hero p.lead{ font-size:16px; }
  .hero-badge{ max-width:calc(100vw - 48px); background:#eef2ff; }
  .hero-badge>span{ color:#4f46e5; }
  .mockup-wrap{ margin-inline:20px; padding:20px 14px 14px; }
  .showcase-copy{ padding-inline:6px; }
  .browser-tabs button{ background:#fff; border-color:var(--color-border); color:var(--color-text-2); }
  .browser-tabs button.is-active{ background:#e9edff; border-color:#c7d2fe; color:#4f46e5; }
  .product-rail{ grid-template-columns:1fr; }
  .rail-card{ padding:26px; }
  .rail-card+ .rail-card{ border-left:0; border-top:1px solid var(--color-border); }
  .rail-card p{ min-height:0; }
  .products-grid{ grid-template-columns:1fr; }
  .product-card{ min-height:0; }
  .why-layout,.platform-band__grid{ grid-template-columns:1fr; }
  .platform-band{ padding:64px 0; }
  .platform-column{ padding:0; }
  .platform-column:first-child{ padding:0 0 44px; border-right:0; border-bottom:1px solid rgba(255,255,255,.12); }
  .platform-column:last-child{ padding:44px 0 0; }
  .final-cta--soft{ padding:56px 24px; }
}

/* 2026 editorial pass — product-first composition, fewer builder-style cards. */
.hero{ padding:78px 0 90px; }
.hero-shell{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(360px,.78fr) minmax(0,1.22fr);
  gap:56px;
  align-items:center;
  width:min(100%,1320px);
  margin:0 auto;
  padding:0 28px;
}
.hero-inner{ max-width:none; margin:0; padding:0; text-align:left; }
.hero-badge{ margin-bottom:28px; }
.hero h1{ max-width:650px; margin:0 0 22px; font-size:clamp(43px,4.8vw,66px); line-height:1.04; }
.hero p.lead{ max-width:590px; margin:0 0 32px; }
.hero-actions{ justify-content:flex-start; }
.hero-fineprint{ justify-content:flex-start; margin-bottom:38px; gap:12px 20px; }
.hero-ledger{ border-top:1px solid var(--color-border); }
.hero-ledger>div{
  display:grid;
  grid-template-columns:44px 110px 1fr;
  align-items:center;
  gap:10px;
  min-height:45px;
  border-bottom:1px solid var(--color-border);
  font-size:12px;
}
.hero-ledger span{ color:var(--brand-indigo); font-size:10px; font-weight:800; letter-spacing:.1em; }
.hero-ledger b{ color:var(--brand-navy); font-size:12px; }
.hero-ledger em{ color:var(--color-text-3); font-style:normal; }
.hero .mockup-wrap{ width:100%; margin:0; padding:20px; border-radius:18px; }
.hero .showcase-copy{ display:grid; grid-template-columns:1fr auto; gap:4px 24px; max-width:none; margin-bottom:18px; }
.hero .showcase-copy .eyebrow{ grid-column:1/-1; }
.hero .showcase-copy h2{ margin:4px 0 0; font-size:clamp(22px,2.4vw,31px); }
.hero .showcase-copy p{ align-self:end; max-width:250px; font-size:12.5px; }
.hero .browser-bar{ align-items:flex-start; flex-wrap:wrap; }
.hero .browser-url{ max-width:250px; }
.hero .browser-tabs{ flex-basis:100%; justify-content:flex-start; }

.product-rail-section .section-head,
#products .section-head{ margin-left:0; text-align:left; }
.product-rail{
  grid-template-columns:repeat(2,1fr);
  border-width:1px 0;
  border-radius:0;
  background:transparent;
}
.rail-card{ display:grid; grid-template-columns:48px 1fr auto; grid-template-rows:auto auto; gap:4px 18px; padding:30px 24px; }
.rail-card:nth-child(odd){ border-left:0; }
.rail-card:nth-child(n+3){ border-top:1px solid var(--color-border); }
.rail-card__icon{ grid-row:1/3; margin:0; }
.rail-card h3{ margin:0; }
.rail-card p{ min-height:0; margin:3px 0 0; }
.rail-card>span:last-child{ grid-column:3; grid-row:1/3; align-self:center; white-space:nowrap; }
.products-grid{ gap:0 24px; }
.product-card,
.product-card--coming,
.product-card--new{
  min-height:236px;
  padding:30px 4px;
  border-width:1px 0 0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.product-card:hover{ transform:none; border-color:var(--brand-indigo); background:transparent; box-shadow:none; }
.product-card .ic{ border-radius:10px; }
.product-card__status{ right:4px; }

@media(max-width:1080px){
  .hero-shell{ grid-template-columns:1fr; max-width:980px; }
  .hero-inner{ text-align:center; }
  .hero h1,.hero p.lead{ margin-inline:auto; }
  .hero-actions,.hero-fineprint{ justify-content:center; }
  .hero-ledger{ max-width:650px; margin-inline:auto; text-align:left; }
}
@media(max-width:760px){
  .hero{ padding:54px 0 68px; }
  .hero-shell{ gap:40px; padding:0 20px; }
  .hero h1{ font-size:39px; line-height:1.08; }
  .hero .mockup-wrap{ padding:16px 12px 12px; }
  .hero .showcase-copy{ display:block; padding-inline:5px; }
  .hero .showcase-copy p{ max-width:none; margin-top:7px; }
  .hero-ledger>div{ grid-template-columns:42px 92px 1fr; }
  .product-rail{ grid-template-columns:1fr; }
  .rail-card{ grid-template-columns:42px 1fr; padding:24px 4px; }
  .rail-card+ .rail-card{ border-left:0; border-top:1px solid var(--color-border); }
  .rail-card>span:last-child{ grid-column:2; grid-row:auto; margin-top:8px; }
}

/* cloudflare.css */
/* ---------- Cloudflare section (dark) ---------- */
.cf-section{
  background:radial-gradient(900px 500px at 90% 0%, rgba(79,70,229,.28), transparent 60%),
    radial-gradient(800px 500px at 5% 100%, rgba(79,70,229,.24), transparent 55%),
    var(--ink);
  color:#fff; border-radius:var(--radius-2xl); overflow:hidden;
  position:relative;
}
.cf-inner{ padding:88px 48px; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
@media (max-width:900px){ .cf-inner{ grid-template-columns:1fr; padding:56px 28px; } }
.cf-copy .eyebrow{ color:#b8b3fb; }
.cf-copy h2{ font-size:clamp(26px,3.4vw,38px); color:#fff; margin:14px 0 16px; letter-spacing:-0.02em; }
.cf-copy > p{ color:#aab0c9; font-size:15.5px; margin:0 0 24px; }
.cf-list{ display:grid; gap:16px; }
.cf-item{ display:flex; gap:14px; align-items:flex-start; }
.cf-item .ic{
  width:38px; height:38px; border-radius:10px; flex:none; display:grid; place-items:center;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.1);
}
.cf-item .ic svg{ width:18px; height:18px; stroke:#fff; stroke-width:2; }
.cf-item h4{ font-size:14.5px; color:#fff; margin:0 0 3px; }
.cf-item p{ font-size:13px; color:#8b91ac; margin:0; }
.cf-visual{ position:relative; }
.cf-orbit{
  position:relative; aspect-ratio:1/1; border-radius:50%;
  border:1px dashed rgba(255,255,255,.14);
  display:grid; place-items:center;
}
.cf-orbit::before{
  content:""; position:absolute; inset:14%; border-radius:50%; border:1px dashed rgba(255,255,255,.1);
}
.cf-core{
  position:relative; width:96px; height:96px; border-radius:50%; background:var(--brand-gradient);
  display:grid; place-items:center; box-shadow:0 0 60px rgba(79,70,229,.45);
}
.cf-core::before{
  content:""; position:absolute; inset:-8px; border-radius:50%;
  border:1.5px solid rgba(255,255,255,.4); animation:cf-ping 2.6s var(--ease) infinite;
}
@keyframes cf-ping{ 0%{ transform:scale(1); opacity:.6; } 100%{ transform:scale(2.4); opacity:0; } }
.cf-core svg{ width:42px; height:42px; stroke:#fff; stroke-width:1.6; }
.cf-node{
  position:absolute; width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14); display:grid; place-items:center; backdrop-filter:blur(6px);
  animation: orbit-pulse 3.2s ease-in-out infinite;
}
.cf-node svg{ width:20px; height:20px; stroke:#e6e9ff; stroke-width:2; }
.cf-node--1{ top:2%; left:46%; animation-delay:0s; }
.cf-node--2{ top:44%; right:0%; animation-delay:.6s; }
.cf-node--3{ bottom:2%; left:46%; animation-delay:1.2s; }
.cf-node--4{ top:44%; left:0%; animation-delay:1.8s; }
@keyframes orbit-pulse{ 0%,100%{ transform:scale(1); opacity:.85; } 50%{ transform:scale(1.08); opacity:1; } }

/* ---------- Security ---------- */
.security-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media (max-width:1100px){ .security-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:900px){ .security-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .security-grid{ grid-template-columns:1fr; } }
.security-card{
  border:1px solid var(--color-border); border-radius:var(--radius-lg); padding:24px;
  background:var(--color-surface);
}
.security-card .ic{
  width:42px; height:42px; border-radius:var(--radius-md); display:grid; place-items:center;
  background:var(--brand-gradient); color:#fff; margin-bottom:16px;
}
.security-card .ic svg{ width:20px; height:20px; stroke-width:2; }
.security-card h4{ font-size:15px; margin:0 0 6px; }
.security-card p{ font-size:13.5px; color:var(--color-text-2); margin:0; }

/* pricing.css */
/* ---------- Performance metrics ---------- */
.metrics-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
@media (max-width:760px){ .metrics-grid{ grid-template-columns:repeat(2,1fr); } }
.metric-card{
  text-align:center; padding:32px 12px; border-radius:var(--radius-xl);
  border:1px solid var(--color-border); background:var(--color-surface);
  transition:transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.metric-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.metric-card b{
  display:block; font-size:clamp(32px,4.2vw,46px); font-weight:800; letter-spacing:-0.02em;
  background:var(--brand-gradient); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.metric-card span{ font-size:13.5px; color:var(--color-text-2); }

/* ---------- Pricing ---------- */
.pricing-wrap{ display:flex; flex-direction:column; align-items:center; gap:24px; }
.price-card{
  width:100%; max-width:520px; border-radius:var(--radius-2xl); padding:44px;
  background:var(--ink); color:#fff; position:relative; overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.price-card::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(500px 260px at 100% 0%, rgba(130,39,252,.35), transparent 60%);
}
.price-card > *{ position:relative; }
.price-card .plan{ font-size:14px; font-weight:700; color:#c9b8ff; margin-bottom:10px; }
.price-card .amount{ font-size:56px; font-weight:800; letter-spacing:-0.03em; margin-bottom:6px; }
.price-card .amount span{ font-size:16px; font-weight:600; color:#8b91ac; }
.price-card .desc{ color:#aab0c9; font-size:14.5px; margin-bottom:28px; }
.price-card ul{ list-style:none; margin:0 0 30px; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.price-card li{ display:flex; gap:8px; align-items:center; font-size:13.5px; color:#e6e9ff; }
.price-card li svg{ width:15px; height:15px; stroke:#5ee6a8; stroke-width:2.5; flex:none; }
@media (max-width:520px){ .price-card ul{ grid-template-columns:1fr; } }
.enterprise-box{
  width:100%; max-width:520px; border:1px solid var(--color-border); border-radius:var(--radius-xl);
  padding:26px 28px; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  background:var(--color-surface-2);
}
.enterprise-box h3{ font-size:15px; margin:0 0 4px; }
.enterprise-box p{ font-size:13px; color:var(--color-text-2); margin:0; }

/* ---------- FAQ ---------- */
.faq-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{
  border:1px solid var(--color-border); border-radius:var(--radius-lg); background:var(--color-surface);
  overflow:hidden;
}
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 22px; background:none; border:none; text-align:left; cursor:pointer;
  font-size:15.5px; font-weight:600; color:var(--color-text);
}
.faq-q svg{ width:18px; height:18px; stroke-width:2.25; flex:none; transition:transform var(--dur-base) var(--ease); color:var(--color-text-3); }
.faq-item.is-open .faq-q svg{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height var(--dur-base) var(--ease); }
.faq-a p{ margin:0; padding:0 22px 20px; font-size:14.5px; color:var(--color-text-2); }
.faq-item.is-open .faq-a{ max-height:220px; }

/* lightbox.css */
/* ---------- Product screenshot lightbox ---------- */
.is-zoomable{
  cursor:zoom-in;
  transition:filter var(--dur-fast),transform var(--dur-fast),box-shadow var(--dur-fast);
}
.is-zoomable:hover{ filter:brightness(1.035); }
.product-frame .is-zoomable:hover,.solution-shot .is-zoomable:hover{ transform:scale(1.006); }
.is-zoomable:focus-visible{ outline:3px solid color-mix(in srgb,var(--brand-purple) 72%,#fff); outline-offset:4px; }
.marquee-track .is-zoomable:hover{ border-color:rgba(178,153,255,.55); box-shadow:0 16px 40px rgba(0,0,0,.32); transform:translateY(-3px); }

.product-lightbox{
  width:100vw;
  max-width:none;
  height:100dvh;
  max-height:none;
  margin:0;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  overflow:hidden;
}
.product-lightbox[open]{ display:block; }
.product-lightbox::backdrop{ background:rgba(3,6,15,.88); backdrop-filter:blur(14px) saturate(.75); -webkit-backdrop-filter:blur(14px) saturate(.75); }
.product-lightbox__shell{
  position:relative;
  display:grid;
  grid-template-rows:56px minmax(0,1fr) auto;
  width:min(96vw,1680px);
  height:92dvh;
  margin:4dvh auto;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.15);
  border-radius:22px;
  background:rgba(8,12,23,.92);
  box-shadow:0 38px 110px rgba(0,0,0,.6),inset 0 1px rgba(255,255,255,.06);
}
.product-lightbox__toolbar{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  padding:0 12px 0 18px;
  border-bottom:1px solid rgba(255,255,255,.1);
  background:rgba(15,21,36,.9);
  backdrop-filter:blur(14px);
}
.product-lightbox__count{ flex:none; color:#929db4; font:750 11px ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing:.05em; }
.product-lightbox__title{ min-width:0; overflow:hidden; color:#e7ebf5; font-size:13px; font-weight:650; text-overflow:ellipsis; white-space:nowrap; }
.product-lightbox__actions{ display:flex; gap:7px; margin-left:auto; }
.product-lightbox__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid rgba(255,255,255,.14);
  border-radius:10px;
  background:rgba(255,255,255,.07);
  color:#e9edf8;
  cursor:pointer;
  transition:background var(--dur-fast),border-color var(--dur-fast),transform var(--dur-fast);
}
.product-lightbox__nav[hidden]{ display:none; }
.product-lightbox__button:hover{ border-color:rgba(255,255,255,.32); background:rgba(255,255,255,.14); transform:translateY(-1px); }
.product-lightbox__button svg{ width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round; }
.product-lightbox__stage{
  position:relative;
  display:grid;
  place-items:center;
  min-width:0;
  min-height:0;
  overflow:auto;
  padding:22px 66px;
  background:
    radial-gradient(620px 360px at 50% 46%,rgba(89,72,191,.14),transparent 72%),
    linear-gradient(135deg,rgba(255,255,255,.025),transparent 46%);
  overscroll-behavior:contain;
  scrollbar-color:#59647a #111827;
  scrollbar-width:thin;
}
.product-lightbox__image{
  display:block;
  width:auto;
  max-width:100%;
  height:auto;
  max-height:calc(92dvh - 126px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  background:#fff;
  box-shadow:0 26px 70px rgba(0,0,0,.46);
  cursor:zoom-in;
  user-select:none;
  -webkit-user-drag:none;
}
.product-lightbox__image.is-zoomed{ width:auto; max-width:none; height:auto; max-height:none; cursor:zoom-out; }
.product-lightbox__nav{
  position:absolute;
  z-index:2;
  top:50%;
  width:42px;
  height:52px;
  border-radius:13px;
  background:rgba(11,17,30,.78);
  transform:translateY(-50%);
  backdrop-filter:blur(10px);
}
.product-lightbox__nav:hover{ transform:translateY(-50%); }
.product-lightbox__prev{ left:12px; }
.product-lightbox__next{ right:12px; }
.product-lightbox__caption{
  min-height:46px;
  margin:0;
  padding:12px 20px;
  border-top:1px solid rgba(255,255,255,.09);
  background:rgba(15,21,36,.9);
  color:#aeb7ca;
  font-size:12.5px;
  line-height:1.45;
  text-align:center;
}
body.has-lightbox{ overflow:hidden; }

@media (max-width:760px){
  .product-lightbox__shell{ grid-template-rows:52px minmax(0,1fr) auto; width:100vw; height:100dvh; margin:0; border:0; border-radius:0; }
  .product-lightbox__toolbar{ padding-left:12px; }
  .product-lightbox__title{ font-size:12px; }
  .product-lightbox__stage{ padding:16px 12px 74px; }
  .product-lightbox__image{ max-height:calc(100dvh - 154px); border-radius:8px; }
  .product-lightbox__nav{ top:auto; bottom:12px; width:46px; height:44px; transform:none; }
  .product-lightbox__nav:hover{ transform:none; }
  .product-lightbox__prev{ left:calc(50% - 54px); }
  .product-lightbox__next{ right:calc(50% - 54px); }
  .product-lightbox__caption{ padding:10px 14px; font-size:11.5px; }
}

@media (prefers-reduced-motion:reduce){
  .is-zoomable,.product-lightbox__button{ transition:none; }
}

/* footer.css */
/* ---------- Final CTA ---------- */
.final-cta{
  position:relative; overflow:hidden; display:grid; grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  align-items:center; gap:48px; padding:58px 62px; border:1px solid #dfe3ff; border-radius:24px;
  background:
    radial-gradient(520px 280px at 6% 8%,rgba(79,70,229,.11),transparent 68%),
    radial-gradient(420px 260px at 96% 110%,rgba(124,58,237,.09),transparent 72%),
    linear-gradient(135deg,#fff 0%,#fbfaff 52%,#f3f5ff 100%);
  color:var(--brand-navy); text-align:left; box-shadow:0 24px 70px rgba(31,41,82,.10);
}
.final-cta::before{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.45;
  background-image:linear-gradient(rgba(79,70,229,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(79,70,229,.045) 1px,transparent 1px);
  background-size:48px 48px; mask-image:linear-gradient(90deg,#000,transparent 78%);
}
.final-cta::after{ content:""; position:absolute; width:210px; height:210px; right:-94px; top:-112px; border:1px solid rgba(79,70,229,.15); border-radius:50%; box-shadow:0 0 0 34px rgba(79,70,229,.025); }
.final-cta > *{ position:relative; z-index:1; }
.final-cta__eyebrow{ display:inline-flex; align-items:center; gap:9px; margin-bottom:16px; color:#4f46e5; font-size:11px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.final-cta__eyebrow i{ width:22px; height:1px; background:linear-gradient(90deg,#4f46e5,#8b5cf6); }
.final-cta h2{ max-width:650px; margin:0 0 13px; font-size:clamp(32px,4vw,48px); line-height:1.05; letter-spacing:-.045em; }
.final-cta p{ max-width:610px; margin:0; color:var(--color-text-2); font-size:16px; line-height:1.65; }
.final-cta__action-panel{ padding:22px; border:1px solid rgba(79,70,229,.13); border-radius:16px; background:rgba(255,255,255,.76); box-shadow:0 12px 32px rgba(51,45,121,.07); backdrop-filter:blur(12px); }
.final-cta-actions{ display:grid; grid-template-columns:1fr auto; gap:10px; }
.final-cta-actions .btn{ min-height:48px; border-radius:11px; justify-content:center; white-space:nowrap; }
.final-cta-actions .btn--gradient{ box-shadow:0 10px 24px rgba(79,70,229,.22); }
.final-cta-actions .btn--gradient span{ margin-left:5px; transition:transform var(--dur-fast); }
.final-cta-actions .btn--gradient:hover span{ transform:translateX(3px); }
.final-cta__secondary{ border:1px solid #d7dce8; background:#fff; color:var(--brand-navy); }
.final-cta__secondary:hover{ border-color:#b8c0d6; background:#f8f9ff; }
.final-cta__action-panel small{ display:block; margin-top:12px; color:var(--color-text-3); font-size:11.5px; text-align:center; }
@media(max-width:900px){
  .final-cta{ grid-template-columns:1fr; gap:28px; padding:48px 40px; }
  .final-cta__action-panel{ max-width:560px; }
}
@media(max-width:560px){
  .final-cta{ gap:24px; padding:34px 24px; border-radius:20px; }
  .final-cta h2{ font-size:32px; }
  .final-cta__action-panel{ padding:14px; }
  .final-cta-actions{ grid-template-columns:1fr; }
  .final-cta-actions .btn{ width:100%; }
}

/* ---------- Footer ---------- */
footer{ border-top:1px solid var(--color-border); padding:64px 0 32px; background:var(--color-surface-2); }
.foot-grid{ display:grid; grid-template-columns:1.4fr repeat(5,1fr); gap:32px; margin-bottom:48px; }
@media (max-width:900px){ .foot-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .foot-grid{ grid-template-columns:1fr; } }
.foot-brand .brand{ margin-bottom:14px; }
.foot-brand p{ font-size:13.5px; color:var(--color-text-2); max-width:280px; margin:0 0 16px; }
.foot-social{ display:flex; gap:10px; }
.foot-social a{
  width:34px; height:34px; border-radius:50%; border:1px solid var(--color-border);
  display:grid; place-items:center; text-decoration:none; color:var(--color-text-2);
  transition:background var(--dur-fast), color var(--dur-fast);
}
.foot-social a:hover{ background:var(--brand-gradient); border-color:transparent; color:#fff; }
.foot-social svg{ width:15px; height:15px; }
.foot-col h3{ font-size:13px; font-weight:700; color:var(--color-text-3); text-transform:uppercase; letter-spacing:.05em; margin:0 0 16px; }
.foot-col a{
  display:inline-block; font-size:14px; color:var(--color-text-2); text-decoration:none; margin-bottom:11px;
  background-image:var(--brand-gradient); background-size:0% 1.5px; background-repeat:no-repeat; background-position:0 100%;
  transition:color var(--dur-fast), background-size var(--dur-base) var(--ease);
}
.foot-col a:hover{ color:var(--color-text); background-size:100% 1.5px; }
.foot-col a small{ margin-left:4px; color:var(--brand-purple); font-size:9px; font-weight:800; text-transform:uppercase; }
.foot-bottom{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
  padding-top:28px; border-top:1px solid var(--color-border);
  font-size:13px; color:var(--color-text-3);
}
.foot-bottom .legal-links{ display:flex; gap:18px; }
.foot-bottom a{ color:var(--color-text-3); text-decoration:none; }
.foot-bottom a:hover{ color:var(--color-text); }

/* cookie-consent.css */
/* Cookie/analytics consent banner. Injected by script.js on every page
   (including /privacy and /terms) — loaded here as its own small
   stylesheet, same one-feature-one-file convention as marquee.css/hero.css. */

.consent-banner{
  position:fixed; right:20px; bottom:max(20px,env(safe-area-inset-bottom)); z-index:120;
  width:min(460px,calc(100vw - 40px)); overflow:hidden;
  display:grid; grid-template-columns:auto minmax(0,1fr); gap:15px; padding:18px;
  border:1px solid rgba(112,106,194,.22); border-radius:18px;
  background:rgba(255,255,255,.96); color:var(--brand-navy);
  box-shadow:0 24px 72px rgba(23,28,61,.18),0 4px 16px rgba(23,28,61,.07);
  backdrop-filter:blur(20px) saturate(1.15); -webkit-backdrop-filter:blur(20px) saturate(1.15);
  opacity:0; transform:translateY(22px) scale(.975); transform-origin:100% 100%;
  transition:opacity .28s ease,transform .42s cubic-bezier(.16,1,.3,1);
}
.consent-banner::before{ content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(280px 130px at 100% 0%,rgba(124,58,237,.10),transparent 74%); }
.consent-banner.is-visible{ opacity:1; transform:translateY(0) scale(1); }
.consent-banner__icon{ position:relative; z-index:1; display:grid; place-items:center; width:42px; height:42px; border:1px solid #dfe3ff; border-radius:12px; background:linear-gradient(145deg,#f7f8ff,#eef2ff); color:#4f46e5; box-shadow:inset 0 1px 0 #fff; }
.consent-banner__icon svg{ width:20px; height:20px; }
.consent-banner__content{ position:relative; z-index:1; min-width:0; }
.consent-banner__eyebrow{ display:block; margin-bottom:3px; color:#6558d8; font-size:9.5px; font-weight:850; letter-spacing:.11em; text-transform:uppercase; }
.consent-banner strong{ display:block; color:#101828; font-size:16px; letter-spacing:-.015em; }
.consent-banner p{ margin:8px 0 0; color:#667085; font-size:12.5px; line-height:1.58; }
.consent-banner a{ color:#4338ca; font-weight:700; text-decoration-thickness:1px; text-underline-offset:3px; }
.consent-banner__actions{ position:relative; z-index:1; grid-column:2; display:flex; justify-content:flex-end; gap:8px; }
.consent-banner__button{ min-height:44px; padding:0 14px; border-radius:10px; font:750 12px var(--font-display); cursor:pointer; transition:transform var(--dur-fast),border-color var(--dur-fast),background var(--dur-fast),box-shadow var(--dur-fast); }
.consent-banner__button:hover{ transform:translateY(-1px); }
.consent-banner__button--quiet{ border:1px solid #d7dce8; background:#fff; color:#475467; }
.consent-banner__button--quiet:hover{ border-color:#b8c0d6; background:#f9fafb; }
.consent-banner__button--accept{ display:inline-flex; align-items:center; justify-content:center; gap:7px; border:1px solid transparent; background:linear-gradient(135deg,#315efb,#7c3aed); color:#fff; box-shadow:0 8px 18px rgba(79,70,229,.2); }
.consent-banner__button--accept svg{ width:14px; height:14px; }

/* Reopens the banner to change a prior choice — lives in the footer next to
   Privacy/Terms. */
.consent-reopen{ background:none; border:0; padding:0; font:inherit; cursor:pointer; color:inherit; }
.consent-reopen:hover{ color:var(--color-text); }

@media (max-width:640px){
  .consent-banner{ right:10px; bottom:max(10px,env(safe-area-inset-bottom)); width:calc(100vw - 20px); max-width:calc(100vw - 20px); grid-template-columns:minmax(0,1fr); gap:9px; padding:12px; border-radius:14px; }
  .consent-banner__icon,.consent-banner__eyebrow{ display:none; }
  .consent-banner strong{ font-size:14.5px; line-height:1.35; }
  .consent-banner p{ margin-top:4px; font-size:11.5px; line-height:1.42; }
  .consent-banner__actions{ grid-column:1; display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.15fr); min-width:0; }
  .consent-banner__button{ width:100%; min-width:0; padding-inline:8px; white-space:normal; overflow-wrap:anywhere; }
}
@media(prefers-reduced-motion:reduce){
  .consent-banner{ transition:opacity .12s linear; transform:none; }
}

/* app-surface.css */
/* ===========================================================================
   HRlume public site — product-surface unification

   The marketing site should feel like the front door to the application:
   operational, structured and product-led. This final cascade layer removes
   the old landing-page-builder vocabulary (floating gradient cards, excessive
   pills and soft pink canvas) while preserving every route's content.
   ========================================================================== */

:root{
  --color-bg:#f5f6f8;
  --color-surface-2:#f8fafc;
  --color-border:#e2e6ed;
  --color-border-soft:rgba(15,23,42,.075);
  --radius-lg:10px;
  --radius-xl:12px;
  --radius-2xl:14px;
  --shadow-sm:0 2px 10px rgba(15,23,42,.045);
  --shadow-md:0 12px 28px rgba(15,23,42,.075);
  --shadow-lg:0 24px 56px rgba(15,23,42,.12);
}

body{
  background-color:var(--color-bg);
  background-image:linear-gradient(rgba(15,23,42,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(15,23,42,.025) 1px,transparent 1px);
  background-size:80px 80px;
}

.section,.page-section{ background-color:rgba(255,255,255,.97); }
.section--surface,.page-section--soft{ background-color:rgba(248,250,252,.97); }
.page-section--ink{ background-color:var(--brand-navy); }

.eyebrow,.page-kicker,.final-cta__eyebrow{
  font-family:var(--font-body);
  font-size:10px;
  font-weight:800;
  letter-spacing:.13em;
}
.eyebrow::before,.page-kicker::before{
  content:"";
  width:22px;
  height:1px;
  flex:none;
  background:currentColor;
}
.page-kicker{ display:inline-flex; align-items:center; gap:9px; }

.section-head{
  max-width:760px;
  margin:0 0 52px;
  text-align:left;
}
.section-head h2{ max-width:720px; letter-spacing:-.04em; }
.section-head p{ max-width:620px; }

.btn{
  border-radius:8px;
  box-shadow:none;
  font-weight:700;
}
.btn--gradient{
  background:var(--brand-indigo);
  box-shadow:0 7px 18px rgba(79,70,229,.18);
}
.btn--gradient:hover{ filter:none; background:#4338ca; box-shadow:0 10px 24px rgba(79,70,229,.24); }
.btn--liquid{ backdrop-filter:none; }
.btn--liquid::before{ display:none; }

/* Product-first home hero: two functional columns and an embedded workspace. */
.hero{
  background:rgba(245,246,248,.97);
  padding-top:72px;
}
.hero-grid{
  opacity:.72;
  background-size:80px 80px;
  mask-image:linear-gradient(#000,transparent 92%);
}
.hero-badge{
  border-radius:8px;
  border:1px solid #d9ddff;
  background:#f0f1ff;
  box-shadow:none;
}
.hero-badge b{ border-right:1px solid #cfd3ff; border-radius:0; padding-right:10px; }
.hero h1{ letter-spacing:-.055em; }
.hero .gradient-text--hero{ color:var(--brand-indigo); }
.hero-ledger>div{ min-height:49px; }
.hero .mockup-wrap{
  position:relative;
  border:1px solid #d9dee8;
  border-radius:14px;
  background:#fff;
  box-shadow:0 24px 64px rgba(15,23,42,.12);
}
.hero .mockup-wrap::before{
  content:"LIVE PRODUCT";
  position:absolute;
  top:0;
  right:20px;
  padding:7px 10px;
  color:#047857;
  border:1px solid #a7f3d0;
  border-top:0;
  background:#ecfdf5;
  font-size:9px;
  font-weight:900;
  letter-spacing:.12em;
}
.browser{ border-radius:10px; box-shadow:none; }
.browser-stage{ background:#eef1f5; }
.mock-screen.is-shot{ inset:12px; border-radius:7px; box-shadow:0 8px 20px rgba(15,23,42,.08); }

/* Connected ledgers instead of a wall of unrelated cards. */
.product-rail{ border-radius:10px; }
.rail-card{ position:relative; }
.rail-card:hover{ background:#f7f8ff; }
.rail-card__icon{ border-radius:7px; }
.products-grid{ gap:0; border-top:1px solid var(--color-border); }
.product-card,.product-card--new,.product-card--coming{
  min-height:250px;
  padding:30px 26px;
  border:0;
  border-bottom:1px solid var(--color-border);
  border-radius:0;
  background:#fff;
  box-shadow:none;
}
.product-card:not(:nth-child(3n+1)){ border-left:1px solid var(--color-border); }
.product-card:hover{ transform:none; border-color:var(--color-border); background:#f8f9ff; box-shadow:inset 0 3px 0 var(--brand-indigo); }
.product-card::before{ display:none; }
.product-card .ic{
  width:40px;
  height:40px;
  border:1px solid #d9ddff;
  border-radius:7px;
  background:#f0f1ff;
  color:var(--brand-indigo);
}
.product-card__status{ border:1px solid #d9ddff; border-radius:6px; }

.feature-visual,.shot,.team-photo,.choose-card,.compare,.way-card,.pricing-plan,.faq-item{
  border-radius:10px;
  box-shadow:none;
}
.shot{ position:relative; padding-top:28px; background:#eef1f5; }
.shot::before{
  content:"HRLUME WORKSPACE";
  position:absolute;
  top:0;
  right:0;
  left:0;
  height:28px;
  padding:8px 12px;
  border-bottom:1px solid var(--color-border);
  background:#fff;
  color:var(--color-text-3);
  font-size:8px;
  font-weight:800;
  letter-spacing:.12em;
  line-height:1;
}
.shot img{ width:calc(100% - 24px); margin:12px; border-radius:6px; box-shadow:none; }
.choose-card:hover{ transform:none; border-color:#c7d2fe; box-shadow:inset 3px 0 0 var(--brand-indigo); }
.choose-card .ic{ border-radius:7px; background:#f0f1ff; color:var(--brand-indigo); }

/* Content pages inherit the same workspace geometry. */
.page-hero,.solution-hero{
  background-color:rgba(245,246,248,.97);
  background-image:linear-gradient(rgba(15,23,42,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(15,23,42,.03) 1px,transparent 1px);
  background-size:80px 80px;
}
.page-hero::after,.solution-hero::after,.page-hero__glow,.solution-hero__glow{ display:none; }
.page-hero__inner,.solution-hero--text .solution-hero__copy{ text-align:left; margin-left:0; }
.solution-hero--text .breadcrumbs,.solution-hero--text .solution-hero__actions{ justify-content:flex-start; }
.page-hero h1,.solution-hero__copy h1{ letter-spacing:-.05em; }
/* Pricing and Security deliberately use the centred editorial hero. Keep the
   max-width container centred as one unit instead of pinning its left edge to
   the viewport while its children continue to centre themselves. */
.pricing-lume .page-hero__inner,
.page-hero--security .page-hero__inner{
  margin-inline:auto;
  text-align:center;
}
.closing-panel{
  border:1px solid var(--color-border);
  border-left:4px solid var(--brand-indigo);
  border-radius:10px;
  background:#fff;
  box-shadow:none;
}

/* Android product page — real current UI, framed as a native workspace rather
   than a decorative phone mockup. The secondary screens communicate depth
   without inventing product artwork. */
.android-hero{
  padding-top:64px;
  background-color:rgba(245,246,248,.97);
  background-image:linear-gradient(rgba(15,23,42,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(15,23,42,.03) 1px,transparent 1px);
  background-size:80px 80px;
}
.android-hero__copy h1{ letter-spacing:-.055em; }
.android-release-control{
  border-radius:10px;
  border-left:4px solid var(--brand-indigo);
  background:#fff;
  box-shadow:none;
}
.android-release-control .android-channel-toggle{ border-radius:7px; }
.android-device-stage{ min-height:720px; place-items:end center; }
.android-device-stage::before{
  inset:7% 0 4% 7%;
  border:1px solid rgba(79,70,229,.18);
  background:linear-gradient(135deg,rgba(79,70,229,.07),transparent 54%);
}
.android-build-stamp{
  grid-template-columns:40px 1fr;
  width:174px;
  border:1px solid var(--color-border);
  border-left:3px solid var(--brand-indigo);
  border-radius:8px;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}
.android-build-stamp__icon{
  grid-row:1/4;
  display:grid;
  width:32px;
  height:32px;
  place-items:center;
  border:1px solid #d9ddff;
  border-radius:7px;
  background:#f0f1ff;
}
.android-build-stamp__icon svg{ width:18px; height:18px; }
.android-device{
  width:min(398px,74%);
  margin-right:3%;
  border-radius:42px 42px 0 0;
  background:#0b1220;
  box-shadow:0 36px 72px rgba(15,23,42,.24);
}
.android-device__screen{ height:560px; border-radius:28px 28px 10px 10px; }
.android-device__screen img{ object-position:left top; }
.android-screen-peek{
  position:absolute;
  z-index:2;
  overflow:hidden;
  width:214px;
  padding-top:28px;
  border:1px solid var(--color-border);
  border-radius:9px;
  background:#fff;
  box-shadow:0 16px 34px rgba(15,23,42,.12);
}
.android-screen-peek>span{
  position:absolute;
  inset:0 0 auto;
  height:28px;
  padding:7px 10px;
  border-bottom:1px solid var(--color-border);
  color:var(--brand-navy);
  font-size:9px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.android-screen-peek img{ width:100%; aspect-ratio:16/9; object-fit:cover; object-position:top left; }
.android-screen-peek--people{ left:0; bottom:142px; transform:rotate(-2deg); }
.android-screen-peek--leave{ right:-2%; bottom:205px; transform:rotate(2deg); }
.android-native-note{
  grid-template-columns:38px 1fr;
  border-radius:8px;
  box-shadow:0 12px 28px rgba(15,23,42,.09);
}
.android-native-note>span{
  display:grid;
  width:30px;
  height:30px;
  place-items:center;
  border:1px solid #d9ddff;
  border-radius:7px;
  background:#f0f1ff;
}
.android-native-note>span svg{ width:17px; height:17px; }
.android-native-note--top{ top:128px; right:0; }
.android-native-note--bottom{ right:2%; bottom:68px; }
.android-proof-strip{ background:#fff; }
.android-proof-strip>div{ grid-template-columns:64px 1fr; gap:0 10px; min-height:86px; }
.android-operating-list article{ transition:background var(--dur-fast),padding var(--dur-fast); }
.android-operating-list article:hover{ padding-inline:14px; background:#f8f9ff; }
.android-capability-ledger article{ position:relative; background:#fff; transition:background var(--dur-fast); }
.android-capability-ledger article:hover{ background:#f8f9ff; }
.android-capability-ledger article::after{
  content:"→";
  position:absolute;
  top:24px;
  right:24px;
  color:#a5adbb;
  font-size:18px;
}
.android-version-section .android-version-row{ border-radius:8px; }

.final-cta{
  border-radius:12px;
  background:#fff;
  box-shadow:none;
}
.final-cta::before{ opacity:.7; mask-image:linear-gradient(90deg,#000,transparent 62%); }
.final-cta::after{ display:none; }
.final-cta__action-panel{
  border-radius:9px;
  background:#f8fafc;
  box-shadow:none;
  backdrop-filter:none;
}
footer{ background:#eef1f5; }
.foot-social a{ border-radius:7px; }

@media(max-width:980px){
  .product-card:not(:nth-child(3n+1)){ border-left:0; }
  .product-card:nth-child(even){ border-left:1px solid var(--color-border); }
  .android-screen-peek--people{ left:4%; }
  .android-screen-peek--leave{ right:4%; }
}
@media(max-width:640px){
  body{ background-size:56px 56px; }
  .section-head{ margin-bottom:38px; }
  .hero{ padding-top:48px; }
  .hero-badge{ align-items:flex-start; text-align:left; }
  .hero-badge b{ border-right:0; border-bottom:1px solid #cfd3ff; padding:0 0 6px; }
  .hero .mockup-wrap::before{ right:12px; }
  .products-grid{ border:0; }
  .product-card,.product-card:nth-child(even),.product-card:not(:nth-child(3n+1)){
    border:1px solid var(--color-border);
    border-radius:10px;
    margin-bottom:10px;
  }
  .page-hero__inner,.solution-hero--text .solution-hero__copy{ text-align:left; }
  .final-cta{ border-left:4px solid var(--brand-indigo); }
  .android-hero{ padding-top:44px; background-size:56px 56px; }
  .android-device-stage{ min-height:590px; }
  .android-device{ width:min(310px,84%); }
  .android-device__screen{ height:430px; }
  .android-screen-peek{ width:145px; }
  .android-screen-peek--people{ left:-12px; bottom:112px; }
  .android-screen-peek--leave{ right:-12px; bottom:170px; }
  .android-native-note{ width:178px; }
  .android-native-note--top{ top:90px; right:-8px; }
  .android-native-note--bottom{ right:-8px; bottom:40px; }
  .android-build-stamp{ left:-4px; }
}

@media(prefers-reduced-motion:reduce){
  .btn,.product-card,.choose-card{ transition:none; }
}
