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

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

/* legal.css */
/* Legal pages (/privacy, /terms) — long-form prose. Loaded only by those two
   pages, never by the homepage (see build.js). Tokens from base.css only. */

.legal{ padding-top:calc(var(--section-y) * .7); }

/* Narrower than .container: prose wants ~70 characters a line, not the full
   grid width the marketing sections are built for. */
.legal-wrap{ max-width:760px; }

.legal-back{
  display:inline-block; margin-bottom:28px;
  color:var(--color-text-2); font-size:15px; text-decoration:none;
}
.legal-back:hover{ color:var(--color-text); }

.legal h1{ font-size:clamp(30px,4vw,44px); line-height:1.15; margin:0 0 10px; }
.legal-meta{ color:var(--color-text-3); font-size:15px; margin:0 0 32px; }

.legal h2{
  font-size:21px; line-height:1.3;
  margin:44px 0 14px; padding-top:20px;
  border-top:1px solid var(--color-border-soft);
}
.legal h2:first-of-type{ border-top:0; padding-top:0; }

.legal p,
.legal li{ color:var(--color-text-2); font-size:16.5px; line-height:1.75; }
.legal p{ margin:0 0 16px; }
.legal ul{ margin:0 0 20px; padding-left:22px; }
.legal li{ margin:0 0 10px; }
.legal strong{ color:var(--color-text); font-weight:600; }
.legal a{ color:var(--brand-blue); text-underline-offset:3px; }

/* The draft banner. Deliberately loud: this page is not yet reviewed by a
   lawyer, and nobody should mistake it for one that has been. */
.legal-notice{
  margin:0 0 36px; padding:18px 20px;
  border:1px solid #f5c451; border-left-width:4px;
  border-radius:var(--radius-md);
  background:#fff8e6; color:#6b4e00;
  font-size:15.5px; line-height:1.65;
}
.legal-notice strong{ color:#6b4e00; display:block; margin-bottom:4px; }
.legal-notice code{
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:.92em;
  background:rgba(107,78,0,.1); padding:1px 5px; border-radius:5px;
}

@media (max-width:640px){
  .legal h2{ font-size:19px; margin-top:36px; }
  .legal p, .legal li{ font-size:16px; }
}
