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

/* pages.css */
/* ==========================================================================
   Standalone product, pricing and security pages
   ========================================================================== */

.page-hero{
  position:relative;
  overflow:hidden;
  padding:112px 0 84px;
  background:
    radial-gradient(900px 520px at 18% -12%, rgba(79,70,229,.08), transparent 62%),
    radial-gradient(760px 460px at 86% 10%, rgba(79,70,229,.06), transparent 60%),
    var(--color-bg);
  color:var(--color-text);
}
.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.5;
  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:72px 72px;
  mask-image:linear-gradient(to bottom, #000, transparent 88%);
}
.page-hero__glow{
  position:absolute;
  width:360px;
  height:360px;
  left:50%;
  top:12%;
  border-radius:50%;
  background:rgba(79,70,229,.1);
  filter:blur(110px);
  transform:translateX(-50%);
}
.page-hero__inner{ position:relative; z-index:1; text-align:center; max-width:980px; }
.page-kicker{
  display:inline-flex;
  padding:7px 13px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-full);
  background:var(--color-surface);
  box-shadow:var(--shadow-sm);
  color:var(--color-text-2);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.page-hero h1{
  margin:24px auto 22px;
  max-width:900px;
  font-size:clamp(42px,6vw,72px);
  line-height:1.03;
  letter-spacing:-.045em;
  color:var(--brand-navy);
}
.page-hero h1 span{
  background:var(--brand-gradient-hero);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.page-hero__inner > p{
  max-width:690px;
  margin:0 auto;
  color:var(--color-text-2);
  font-size:19px;
}
.page-hero__actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:34px;
}
.page-hero--compact{ padding-bottom:104px; }
.page-jump{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  margin:50px auto 0;
}
.page-jump a{
  padding:9px 14px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-full);
  color:var(--color-text-2);
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  transition:color var(--dur-fast), background var(--dur-fast), border-color var(--dur-fast);
}
.page-jump a:hover{ color:var(--color-text); background:var(--color-surface); border-color:transparent; box-shadow:var(--shadow-sm); }

.page-section{ padding:112px 0; scroll-margin-top:70px; }
.page-section--soft{ background:var(--color-surface-2); }
.page-section--ink{ background:var(--brand-navy); color:#fff; }
.page-section--ink .section-head p{ color:#aab0c9; }
.page-section--ink .eyebrow{ color:#b8b3fb; }

.feature-spotlight{
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
  align-items:center;
  gap:72px;
}
.feature-spotlight--reverse{ grid-template-columns:minmax(0,1.18fr) minmax(0,.82fr); }
.feature-spotlight--reverse .feature-spotlight__copy{ order:2; }
.feature-spotlight__copy h2{
  margin:14px 0 18px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.1;
  letter-spacing:-.035em;
}
.feature-spotlight__copy > p{ margin:0 0 24px; color:var(--color-text-2); font-size:17px; }
.check-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.check-list li{ position:relative; padding-left:28px; color:var(--color-text-2); font-size:14.5px; }
.check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.32em;
  width:16px;
  height:16px;
  border-radius:50%;
  background:
    linear-gradient(135deg, transparent 42%, #fff 43% 52%, transparent 53%) 5px 6px/7px 5px no-repeat,
    var(--brand-gradient);
}
.product-frame{
  min-width:0;
  max-width:100%;
  margin:0;
  overflow:hidden;
  border:1px solid var(--color-border);
  border-radius:var(--radius-xl);
  background:#fff;
  box-shadow:var(--shadow-lg);
}
.product-frame > img{
  display:block;
  width:90%;
  height:auto;
  margin:5% auto;
  border:1px solid var(--color-border);
  border-radius:var(--radius-lg);
  box-shadow:0 10px 28px rgba(16,24,40,.07);
}
.product-frame figcaption{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  line-height:1.3;
}
.product-frame figcaption b{ font-family:var(--font-display); font-size:15px; }
.product-frame figcaption span{ color:var(--color-text-3); font-size:13px; }

.capability-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.capability-card{
  min-height:260px;
  padding:30px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-xl);
  background:linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
}
.capability-card > span{ color:#b8b3fb; font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.capability-card h3{ margin:54px 0 12px; font-size:22px; line-height:1.2; }
.capability-card p{ margin:0; color:#9da3bd; font-size:14.5px; }
.capability-card--coming{ border-color:rgba(124,111,240,.34); }
.capability-card--coming a{ display:inline-flex; margin-top:18px; color:#b8b3fb; font-size:13px; font-weight:700; text-decoration:none; }

/* Live automations product. Keep the hero light so long copy and screenshots
   retain strong contrast in both colour schemes. */
.automation-hero--live{
  color:var(--color-text);
  background:
    radial-gradient(760px 460px at 88% 14%,rgba(124,111,240,.14),transparent 70%),
    radial-gradient(640px 380px at 3% 80%,rgba(30,102,245,.09),transparent 72%),
    linear-gradient(180deg,#fafaff,#f5f7fc);
}
.solution-hero.automation-hero--live .solution-hero__copy h1{ color:#101828; }
.solution-hero.automation-hero--live .solution-hero__copy > p{ color:#475467; }
.solution-hero.automation-hero--live .breadcrumbs{ color:#667085; }
.solution-hero.automation-hero--live .breadcrumbs a{ color:#667085; }
.solution-hero.automation-hero--live .breadcrumbs a:hover,
.solution-hero.automation-hero--live .breadcrumbs b{ color:#101828; }
.automation-proof{ display:flex; flex-wrap:wrap; gap:8px; margin-top:24px; }
.automation-proof span{ display:inline-flex; align-items:center; gap:7px; padding:7px 10px; border:1px solid rgba(79,70,229,.13); border-radius:999px; background:rgba(255,255,255,.75); color:#475467; font-size:11px; font-weight:750; box-shadow:0 5px 16px rgba(33,42,71,.04); }
.automation-proof span:first-child{ color:#087a55; border-color:rgba(8,122,85,.16); background:#effbf6; }
.automation-proof i{ width:6px; height:6px; border-radius:50%; background:#10b981; box-shadow:0 0 0 4px rgba(16,185,129,.12); }
.product-frame--1080 img{ width:100%; aspect-ratio:16/9; object-fit:cover; object-position:top left; }
.page-kicker--coming{ border-color:rgba(197,170,255,.32); background:rgba(79,70,229,.16); color:#e0d2ff; }
.automation-disclaimer{ max-width:720px!important; margin:26px auto 0!important; padding:12px 16px; border:1px solid rgba(255,255,255,.12); border-radius:12px; background:rgba(255,255,255,.05); color:#bec3d6!important; font-size:13px!important; }
.automation-disclaimer strong{ color:#fff; }
.automation-builder{ position:relative; padding:18px; overflow:hidden; border:1px solid var(--color-border); border-radius:24px; background:linear-gradient(150deg,#fff,#f5f3ff 62%,#eef4ff); box-shadow:var(--shadow-lg); }
.automation-builder::before{ content:""; position:absolute; inset:0; opacity:.45; background-image:radial-gradient(circle at 1px 1px,#c8cce0 1px,transparent 0); background-size:22px 22px; pointer-events:none; }
.automation-builder > *{ position:relative; }
.automation-builder__bar{ display:grid; grid-template-columns:76px 1fr auto; align-items:center; gap:12px; margin:-18px -18px 18px; padding:14px 18px; border-bottom:1px solid var(--color-border); background:rgba(255,255,255,.88); }
.automation-builder__bar > span{ display:flex; gap:5px; }
.automation-builder__bar i{ width:8px; height:8px; border-radius:50%; background:#d9dce8; }
.automation-builder__bar b{ overflow:hidden; color:var(--color-text); font-size:12px; text-overflow:ellipsis; white-space:nowrap; }
.automation-builder__bar em{ padding:5px 8px; border-radius:999px; background:#fff3d9; color:#9a6300; font-size:9px; font-style:normal; font-weight:800; text-transform:uppercase; }
.automation-node{ display:grid; grid-template-columns:76px 42px 1fr; align-items:center; gap:12px; max-width:440px; margin:auto; padding:14px; border:1px solid #e0e3ee; border-radius:15px; background:rgba(255,255,255,.94); box-shadow:0 8px 24px rgba(30,38,75,.08); }
.automation-node > span{ color:#8b92a8; font-size:9px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.automation-node__icon{ display:grid; width:42px; height:42px; place-items:center; border-radius:12px; background:#edf3ff; color:#2e63e9; font-size:12px; font-weight:900; }
.automation-node--ai .automation-node__icon{ background:#f2eaff; color:#7c3aed; }
.automation-node--google .automation-node__icon{ background:#e9f8ef; color:#16864a; }
.automation-node b,.automation-node small{ display:block; }
.automation-node b{ color:var(--color-text); font-size:13px; }
.automation-node small{ margin-top:3px; color:var(--color-text-3); font-size:10px; }
.automation-connector{ display:grid; height:32px; place-items:center; }
.automation-connector span{ width:2px; height:100%; background:linear-gradient(#cbd2e7,#9b7df4); }
.automation-message{ max-width:400px; margin:auto; padding:18px; border:1px solid #e2dcfb; border-radius:17px; background:linear-gradient(145deg,#fff 18%,#f9f5ff); box-shadow:0 12px 30px rgba(83,51,151,.1); }
.automation-message > div{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:18px; }
.automation-message span{ color:#7b8298; font-size:9px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.automation-message button{ padding:6px 9px; border:1px solid #ddd7f3; border-radius:8px; background:#fff; color:#6d4bc3; font-size:9px; font-weight:700; }
.automation-message strong{ display:block; font-size:17px; }
.automation-message p{ margin:8px 0 14px; color:var(--color-text-2); font-size:12px; line-height:1.5; }
.automation-message small{ color:#8a6fd0; font-size:9px; font-weight:700; }
.automation-capability-grid{ grid-template-columns:repeat(3,1fr); }
.automation-closing{ border-color:color-mix(in srgb,var(--brand-purple) 24%,var(--color-border)); }
.visual-pair{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.app-screen-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.app-screen-grid .product-frame{
  min-width:0;
  margin:0;
}
.app-screen-grid .product-frame > img{
  aspect-ratio:2400/1334;
  object-fit:cover;
}

.closing-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:48px;
  padding:48px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-2xl);
  background:
    radial-gradient(420px 200px at 92% 0%, rgba(79,70,229,.12), transparent 70%),
    var(--color-surface);
  box-shadow:var(--shadow-sm);
}
.closing-panel h2{ margin:12px 0 10px; font-size:clamp(28px,3.4vw,40px); }
.closing-panel p{ max-width:680px; margin:0; color:var(--color-text-2); font-size:16px; }
.closing-panel .btn{ flex:none; }

.pricing-page{ margin-top:-54px; padding-top:0; position:relative; z-index:2; }
.pricing-page__grid{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(300px,.55fr);
  align-items:start;
  gap:24px;
}
.pricing-plan{
  padding:36px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-2xl);
  background:var(--color-surface);
  box-shadow:var(--shadow-md);
}
.pricing-plan--primary{
  padding:42px;
  background:
    radial-gradient(520px 260px at 100% 0%, rgba(79,70,229,.16), transparent 62%),
    var(--ink);
  color:#fff;
  border-color:rgba(255,255,255,.08);
  box-shadow:var(--shadow-lg);
}
.pricing-plan__top{ display:flex; justify-content:space-between; gap:32px; }
.plan-label{ display:block; margin-bottom:10px; color:var(--brand-purple); font-size:12px; font-weight:800; letter-spacing:.08em; }
.pricing-plan--primary .plan-label{ color:#b8b3fb; }
.pricing-plan h2{ margin:0 0 10px; font-size:30px; }
.pricing-plan p{ margin:0; color:var(--color-text-2); font-size:14.5px; }
.pricing-plan--primary p{ color:#9da3bd; }
.plan-price{ flex:none; text-align:right; }
.plan-price b{ display:block; font-family:var(--font-display); font-size:58px; line-height:1; letter-spacing:-.05em; }
.plan-price span{ color:#8b91ac; font-size:13px; }
.plan-divider{ height:1px; margin:32px 0; background:rgba(255,255,255,.1); }
.plan-columns{ display:grid; grid-template-columns:1fr 1fr; gap:20px 36px; margin-bottom:32px; }
.pricing-plan--primary .check-list li{ color:#d9dcef; }
.pricing-plan:not(.pricing-plan--primary) .check-list{ margin:28px 0 32px; }
.plan-note{ margin-top:14px !important; text-align:center; font-size:12px !important; }
.text-link{ display:block; margin-top:18px; color:var(--color-text-2); font-size:13px; text-align:center; text-decoration:none; }
.text-link:hover{ color:var(--brand-purple); }
.pricing-faq{ padding-top:112px; }

.security-detail-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.detail-card{
  min-height:250px;
  padding:28px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-xl);
  background:var(--color-surface);
  transition:transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.detail-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.detail-card__number{ color:var(--brand-purple); font-size:12px; font-weight:800; letter-spacing:.08em; }
.detail-card h3{ margin:48px 0 10px; font-size:20px; }
.detail-card p{ margin:0; color:var(--color-text-2); font-size:14px; }
.operational-assurance__grid{ display:grid; grid-template-columns:minmax(0,.82fr) minmax(480px,1.18fr); align-items:center; gap:68px; }
.operational-assurance__copy h2{ max-width:560px; margin:14px 0 18px; font-size:clamp(31px,4vw,48px); line-height:1.08; }
.operational-assurance__copy > p{ margin:0 0 24px; color:var(--color-text-2); font-size:16px; }
.operational-assurance__copy .check-list{ margin:0 0 24px; }
.operational-assurance__note{ padding-top:18px; border-top:1px solid var(--color-border); color:var(--color-text-3)!important; font-size:12.5px!important; }
.control-plane-visual{ overflow:hidden; border:1px solid #20253b; border-radius:24px; color:#eef0fa; background:#090b15; box-shadow:0 28px 72px rgba(25,26,55,.2); }
.control-plane-visual__bar{ display:flex; align-items:center; min-height:46px; padding:0 16px; border-bottom:1px solid rgba(255,255,255,.07); color:#abb1c9; font-size:10px; }
.control-plane-visual__bar > span{ display:flex; gap:5px; margin-right:14px; }
.control-plane-visual__bar > span i{ width:7px; height:7px; border-radius:50%; background:#33394f; }
.control-plane-visual__bar b{ color:#dce0ef; font-size:10.5px; letter-spacing:.02em; }
.control-plane-visual__bar em{ margin-left:auto; padding:4px 8px; border:1px solid rgba(16,185,129,.18); border-radius:999px; color:#5ee0ad; background:rgba(16,185,129,.08); font-size:8px; font-style:normal; font-weight:800; letter-spacing:.07em; text-transform:uppercase; }
.control-plane-visual__body{ display:grid; grid-template-columns:58px 1fr; min-height:390px; }
.control-plane-visual__body > aside{ display:flex; flex-direction:column; align-items:center; gap:16px; padding:18px 10px; border-right:1px solid rgba(255,255,255,.07); background:#101321; }
.control-plane-visual__body > aside strong{ display:grid; place-items:center; width:30px; height:30px; border-radius:9px; background:var(--brand-gradient); color:#fff; font-size:10px; }
.control-plane-visual__body > aside i{ width:28px; height:28px; border:1px solid rgba(255,255,255,.07); border-radius:8px; background:rgba(255,255,255,.025); }
.control-plane-visual__body > aside i.is-active{ border-color:rgba(139,92,246,.3); background:linear-gradient(135deg,rgba(79,70,229,.55),rgba(79,70,229,.6)); box-shadow:0 8px 18px rgba(80,45,190,.2); }
.control-plane-visual__workspace{ padding:24px; background:radial-gradient(420px 240px at 100% 0%,rgba(79,70,229,.13),transparent 70%),#0d0f1b; }
.control-plane-visual__heading{ display:flex; align-items:center; justify-content:space-between; gap:18px; margin-bottom:22px; padding:18px; border:1px solid rgba(255,255,255,.07); border-radius:16px; background:rgba(255,255,255,.025); }
.control-plane-visual__heading > div{ display:flex; flex-direction:column; }
.control-plane-visual__heading small{ margin-bottom:5px; color:#7c6ff0; font-size:7px; font-weight:800; letter-spacing:.13em; }
.control-plane-visual__heading b{ font-size:17px; }
.control-plane-visual__heading > span{ display:flex; align-items:center; gap:7px; color:#9da4bd; font-size:8.5px; }
.control-plane-visual__heading > span i{ width:6px; height:6px; border-radius:50%; background:#10b981; box-shadow:0 0 0 4px rgba(16,185,129,.09); }
.control-plane-visual__stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:14px; }
.control-plane-visual__stats article{ position:relative; min-height:92px; padding:15px; overflow:hidden; border:1px solid rgba(255,255,255,.07); border-radius:14px; background:#111421; }
.control-plane-visual__stats small{ display:block; max-width:80px; color:#747c99; font-size:7.5px; line-height:1.3; }
.control-plane-visual__stats b{ display:block; margin-top:12px; font-size:22px; }
.control-plane-visual__stats i{ position:absolute; top:14px; right:14px; width:6px; height:6px; border-radius:50%; background:#7c6ff0; box-shadow:0 0 12px rgba(130,114,255,.65); }
.control-plane-visual__stats article:nth-child(2) i{ background:#10b981; box-shadow:0 0 12px rgba(16,185,129,.55); }
.control-plane-visual__stats article:nth-child(3) i{ background:#f59e0b; box-shadow:0 0 12px rgba(245,158,11,.5); }
.control-plane-visual__rows{ display:grid; gap:8px; }
.control-plane-visual__rows div{ display:flex; align-items:center; justify-content:space-between; min-height:42px; padding:0 14px; border:1px solid rgba(255,255,255,.06); border-radius:11px; color:#8b93af; background:rgba(255,255,255,.02); font-size:8.5px; }
.control-plane-visual__rows b{ color:#bec4d8; font-size:8px; font-weight:700; }
.architecture-grid{ display:grid; grid-template-columns:.9fr 1.1fr; align-items:center; gap:72px; }
.architecture-copy h2{ margin:14px 0 18px; font-size:clamp(32px,4vw,48px); line-height:1.1; }
.architecture-copy p{ margin:0; color:#aab0c9; font-size:16.5px; }
.architecture-stack{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.stack-card{
  min-height:150px;
  padding:24px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.05);
}
.stack-card b{ display:block; margin-bottom:34px; color:#fff; font-family:var(--font-display); font-size:20px; }
.stack-card span{ color:#9399b5; font-size:13px; }
.deployment-panel{
  display:grid;
  grid-template-columns:1fr .9fr;
  align-items:center;
  gap:72px;
  padding:58px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-2xl);
  background:var(--color-surface-2);
}
.deployment-panel__copy h2{ margin:14px 0 16px; font-size:clamp(30px,4vw,46px); line-height:1.1; }
.deployment-panel__copy > p{ margin:0 0 24px; color:var(--color-text-2); font-size:16px; }
.deployment-panel__copy .check-list{ margin-bottom:30px; }
.deployment-flow{ display:flex; flex-direction:column; align-items:stretch; }
.deployment-flow > div{
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-lg);
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.deployment-flow > div > span{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  flex:none;
  border-radius:50%;
  background:var(--brand-gradient);
  color:#fff;
  font-size:13px;
  font-weight:800;
}
.deployment-flow p{ display:flex; flex-direction:column; margin:0; }
.deployment-flow b{ font-size:14px; }
.deployment-flow small{ color:var(--color-text-3); font-size:12px; }
.deployment-flow > i{ width:1px; height:28px; margin:0 0 0 37px; background:var(--color-border); }

/* ---------- Search-focused solution pages ---------- */
.solution-hero{
  position:relative;
  overflow:hidden;
  padding:92px 0 82px;
  color:var(--color-text);
  background:
    radial-gradient(760px 480px at 10% 10%, rgba(79,70,229,.08), transparent 66%),
    radial-gradient(760px 520px at 90% 0%, rgba(79,70,229,.06), transparent 65%),
    var(--color-bg);
}
.solution-hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.4;
  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:68px 68px;
  mask-image:linear-gradient(to bottom, #000, transparent 92%);
}
.solution-hero__glow{
  position:absolute;
  width:520px;
  height:520px;
  top:-240px;
  left:44%;
  border-radius:50%;
  background:rgba(79,70,229,.12);
  filter:blur(100px);
}
.solution-hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
  align-items:center;
  gap:64px;
}
.solution-hero__copy{ position:relative; z-index:1; }
.solution-hero--text .solution-hero__copy{ max-width:860px; margin:0 auto; text-align:center; }
.solution-hero--text .breadcrumbs{ justify-content:center; }
.solution-hero__copy h1{
  margin:22px 0 20px;
  font-size:clamp(38px,5vw,62px);
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--brand-navy);
}
.solution-hero__copy > p{ margin:0; max-width:660px; color:var(--color-text-2); font-size:18px; }
.solution-hero--text .solution-hero__copy > p{ margin-inline:auto; }
.solution-hero__actions{ display:flex; align-items:center; flex-wrap:wrap; gap:12px; margin-top:32px; }
.solution-hero--text .solution-hero__actions{ justify-content:center; }
.breadcrumbs{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 24px;
  color:var(--color-text-3);
  font-size:12px;
}
.breadcrumbs a{ color:var(--color-text-2); text-decoration:none; }
.breadcrumbs a:hover{ color:var(--color-text); }
.breadcrumbs b{ color:var(--color-text); font-weight:600; }
.solution-shot{
  margin:0;
  overflow:hidden;
  transform:perspective(1200px) rotateY(-4deg) rotateX(1deg);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-xl);
  background:#fff;
  box-shadow:0 32px 90px rgba(16,24,40,.18), 0 0 70px rgba(79,70,229,.1);
}
.solution-shot img{
  display:block;
  width:90%;
  height:auto;
  margin:5% auto;
  border:1px solid var(--color-border);
  border-radius:var(--radius-lg);
  box-shadow:0 10px 28px rgba(16,24,40,.07);
}

/* Product-native previews for modules that do not yet have public screenshots. */
.module-preview{
  position:relative;
  min-width:0;
  overflow:hidden;
  transform:perspective(1200px) rotateY(-3deg) rotateX(1deg);
  border:1px solid var(--color-border);
  border-radius:var(--radius-xl);
  background:linear-gradient(150deg,#fff 15%,#f8f8ff);
  box-shadow:0 32px 90px rgba(16,24,40,.16),0 0 70px rgba(79,70,229,.08);
}
.module-preview::before{ content:""; position:absolute; width:260px; height:260px; right:-90px; top:-120px; border-radius:50%; background:rgba(99,102,241,.12); filter:blur(45px); pointer-events:none; }
.module-preview__bar{ position:relative; display:grid; grid-template-columns:68px 1fr auto; align-items:center; gap:12px; padding:16px 20px; border-bottom:1px solid var(--color-border); background:rgba(255,255,255,.78); }
.module-preview__bar > span{ display:flex; gap:5px; }
.module-preview__bar i{ width:7px; height:7px; border-radius:50%; background:#d9dce7; }
.module-preview__bar b{ color:var(--color-text); font-size:13px; }
.module-preview__bar em{ padding:5px 9px; border-radius:999px; background:#eef2ff; color:var(--brand-indigo); font-size:9px; font-style:normal; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.module-preview__footer{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px 20px; border-top:1px solid var(--color-border); background:#fff; }
.module-preview__footer span{ color:var(--color-text-3); font-size:10px; font-weight:600; }
.module-preview__footer button{ border:0; border-radius:9px; padding:9px 14px; background:var(--brand-gradient); color:#fff; font:700 10px var(--font-body); }
.timesheet-summary{ position:relative; display:grid; grid-template-columns:1fr 1fr auto; align-items:center; gap:12px; margin:20px; padding:16px; border:1px solid var(--color-border); border-radius:14px; background:#fff; box-shadow:var(--shadow-sm); }
.timesheet-summary div{ display:flex; flex-direction:column; gap:3px; }
.timesheet-summary small{ color:var(--color-text-3); font-size:9px; }
.timesheet-summary strong{ font-size:17px; }
.timesheet-summary > span{ padding:6px 9px; border-radius:999px; background:#fff7e6; color:#9a6300; font-size:9px; font-weight:800; }
.timesheet-table{ position:relative; margin:0 20px 20px; overflow:hidden; border:1px solid var(--color-border); border-radius:14px; background:#fff; }
.timesheet-row{ display:grid; grid-template-columns:1fr 70px 1.3fr; align-items:center; gap:12px; min-height:42px; padding:0 15px; border-bottom:1px solid var(--color-border); }
.timesheet-row:last-child{ border-bottom:0; }
.timesheet-row span,.timesheet-row strong,.timesheet-row small,.timesheet-row b{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.timesheet-row span{ color:var(--color-text-2); font-size:10px; }
.timesheet-row strong{ display:inline-flex; width:46px; padding:6px 8px; border:1px solid var(--color-border); border-radius:8px; font-size:10px; }
.timesheet-row small{ color:var(--color-text-3); font-size:9px; }
.timesheet-row--head{ min-height:34px; background:var(--color-surface-2); }
.timesheet-row--head b{ color:var(--color-text-3); font-size:8px; letter-spacing:.07em; text-transform:uppercase; }
.comp-current{ position:relative; margin:20px; padding:22px; border:1px solid #dcdcff; border-radius:16px; background:linear-gradient(145deg,#fff,#f2f1ff); }
.comp-current small,.comp-current strong,.comp-current p{ display:block; }
.comp-current small{ color:var(--color-text-3); font-size:9px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.comp-current strong{ margin-top:10px; font-size:30px; letter-spacing:-.04em; }
.comp-current strong span{ color:var(--color-text-3); font-size:12px; font-weight:600; letter-spacing:0; }
.comp-current p{ margin:7px 0 0; color:var(--color-text-2); font-size:10px; }
.comp-history-title{ display:flex; align-items:center; justify-content:space-between; margin:0 20px 10px; }
.comp-history-title b{ font-size:12px; }
.comp-history-title span{ color:var(--color-text-3); font-size:9px; }
.comp-history{ margin:0 20px 20px; overflow:hidden; border:1px solid var(--color-border); border-radius:14px; background:#fff; }
.comp-history > div{ display:grid; grid-template-columns:34px 1fr auto; align-items:center; gap:10px; padding:12px; border-bottom:1px solid var(--color-border); }
.comp-history > div:last-child{ border-bottom:0; }
.comp-history i{ display:grid; width:30px; height:30px; place-items:center; border-radius:9px; background:#eef2ff; color:var(--brand-indigo); font-size:8px; font-style:normal; font-weight:800; }
.comp-history p{ min-width:0; margin:0; }
.comp-history p strong,.comp-history p small{ display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.comp-history p strong{ font-size:10px; }
.comp-history p small{ margin-top:3px; color:var(--color-text-3); font-size:8px; }
.comp-history > div > b{ font-size:10px; white-space:nowrap; }
.precision-note{ position:relative; overflow:hidden; padding:44px; border:1px solid var(--color-border); border-radius:var(--radius-2xl); background:linear-gradient(145deg,#fff,#f5f3ff); box-shadow:var(--shadow-md); }
.precision-note::after{ content:""; position:absolute; width:180px; height:180px; right:-70px; bottom:-90px; border-radius:50%; background:rgba(79,70,229,.12); }
.precision-note span{ display:block; margin-bottom:40px; color:var(--brand-indigo); font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.precision-note strong{ position:relative; display:block; max-width:440px; font-family:var(--font-display); font-size:clamp(28px,3.4vw,42px); line-height:1.08; letter-spacing:-.035em; }
.precision-note p{ position:relative; max-width:480px; margin:18px 0 0; color:var(--color-text-2); font-size:15px; }
.solution-intro{ display:grid; grid-template-columns:.9fr 1.1fr; gap:88px; align-items:start; }
.solution-intro h2{ margin:14px 0 0; font-size:clamp(32px,4vw,48px); line-height:1.1; }
.solution-intro > div:last-child{ padding-top:24px; }
.solution-intro p{ margin:0 0 16px; color:var(--color-text-2); font-size:17px; }
.seo-capability-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.seo-capability-grid article{
  min-height:250px;
  padding:28px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-xl);
  background:var(--color-surface);
}
.seo-capability-grid article > span{ color:var(--brand-purple); font-size:12px; font-weight:800; letter-spacing:.08em; }
.seo-capability-grid h3{ margin:48px 0 10px; font-size:20px; }
.seo-capability-grid p{ margin:0; color:var(--color-text-2); font-size:14px; }

/* ---------- Bento capability grid ("Lume Precision" pattern) ---------- */
.bento-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:20px;
}
.bento-card{
  grid-column:span 12;
  padding:32px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-xl);
  background:var(--color-surface);
  box-shadow:var(--shadow-sm);
  transition:border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.bento-card:hover{ border-color:var(--brand-indigo); box-shadow:var(--shadow-glow); transform:translateY(-2px); }
@media (min-width:900px){
  .bento-card--lg{ grid-column:span 8; }
  .bento-card--md{ grid-column:span 6; }
  .bento-card--sm{ grid-column:span 4; }
}
.bento-card__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  margin-bottom:24px;
  border-radius:var(--radius-md);
  background:color-mix(in srgb, var(--brand-indigo) 12%, var(--color-surface));
  color:var(--brand-indigo);
  flex:none;
}
.bento-card__icon svg{ width:22px; height:22px; stroke-width:1.8; }
.bento-card h3{ margin:0 0 10px; font-size:19px; }
.bento-card > p{ margin:0; color:var(--color-text-2); font-size:14.5px; }
.bento-card .check-list{ margin-top:20px; padding-top:20px; border-top:1px solid var(--color-border); }
.bento-card--row{ display:flex; align-items:center; gap:32px; }
.bento-card--row > div:first-child{ flex:1; min-width:0; }
.bento-card--row figure{ flex:none; width:min(280px,42%); margin:0; overflow:hidden; border-radius:var(--radius-lg); border:1px solid var(--color-border); }
.bento-card--row img{ display:block; width:100%; height:auto; }
@media (max-width:640px){ .bento-card--row{ flex-direction:column; } .bento-card--row figure{ width:100%; } }
.bento-card__shot{ margin-top:24px; overflow:hidden; border-radius:var(--radius-lg); border:1px solid var(--color-border); background:var(--color-surface-2); }
.bento-card__shot img{
  display:block;
  width:90%;
  height:auto;
  margin:5% auto;
  border:1px solid var(--color-border);
  border-radius:calc(var(--radius-lg) - 4px);
  box-shadow:0 8px 22px rgba(16,24,40,.06);
}
.bento-card--cta{
  grid-column:span 12;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:40px;
  text-align:center;
  color:#fff;
  background:
    radial-gradient(360px 220px at 100% 0%, rgba(255,255,255,.08), transparent 70%),
    var(--brand-navy);
  border:none;
}
.bento-card--cta:hover{ transform:none; box-shadow:none; }
.bento-card--cta h3{ font-size:22px; color:#fff; }
.bento-card--cta p{ max-width:420px; color:#c4cbe0; }
@media (min-width:900px){ .bento-card--cta{ grid-column:span 4; } }
.bento-card--cta.bento-card--wide{ grid-column:span 12; flex-direction:row; justify-content:space-between; align-items:center; text-align:left; gap:32px; }
.bento-card--cta.bento-card--wide > div{ max-width:640px; }
@media (max-width:768px){ .bento-card--cta.bento-card--wide{ flex-direction:column; text-align:center; } }
.bento-provider-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:24px; }
.bento-provider{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  min-height:76px; padding:14px; border:1px solid transparent; border-radius:var(--radius-md);
  background:var(--color-surface-2); color:var(--color-text-2); font-size:12.5px; font-weight:700;
  transition:border-color var(--dur-fast), color var(--dur-fast);
}
.bento-card:hover .bento-provider{ border-color:var(--color-border); }
.bento-provider svg{ width:24px; height:24px; stroke-width:1.8; }
@media (max-width:640px){ .bento-provider-grid{ grid-template-columns:1fr 1fr; } }
/* Dark skin for a bento grid sitting inside a .page-section--ink band. */
.bento-card--dark{ background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.1); box-shadow:none; }
.bento-card--dark:hover{ border-color:rgba(124,111,240,.4); box-shadow:0 16px 40px rgba(0,0,0,.2); }
.bento-card--dark .bento-card__icon{ background:rgba(124,111,240,.18); color:#b8b3fb; }
.bento-card--dark h3{ color:#fff; }
.bento-card--dark > p{ color:#aab0c9; }
.bento-card--dark .page-kicker{ background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.14); color:#d7daf0; }
.workflow-story{ display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.workflow-story__copy h2{ margin:14px 0 18px; font-size:clamp(32px,4vw,48px); line-height:1.1; }
.workflow-story__copy > p{ margin:0 0 24px; color:var(--color-text-2); font-size:16.5px; }
.workflow-map{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  padding:34px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-2xl);
  background:var(--color-surface-2);
}
.workflow-map b{
  grid-column:1/-1;
  padding:24px;
  border-radius:var(--radius-lg);
  color:#fff;
  background:var(--brand-gradient);
  font-family:var(--font-display);
  font-size:20px;
  text-align:center;
}
.workflow-map span{
  padding:18px 8px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-md);
  background:#fff;
  color:var(--color-text-2);
  font-size:12px;
  font-weight:700;
  text-align:center;
}
.related-panel{ display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:80px; }
.related-panel h2{ margin:14px 0 0; max-width:620px; font-size:clamp(28px,3.5vw,42px); line-height:1.12; }
.related-links{ display:flex; flex-direction:column; border-top:1px solid rgba(255,255,255,.12); }
.related-links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:17px 2px;
  border-bottom:1px solid rgba(255,255,255,.12);
  color:#d9dcef;
  font-size:14.5px;
  font-weight:600;
  text-decoration:none;
}
.related-links a span{ color:#b8b3fb; transition:transform var(--dur-fast); }
.related-links a:hover span{ transform:translateX(4px); }
.process-steps{ display:grid; grid-template-columns:.72fr 1.28fr; gap:88px; align-items:start; }
.process-steps__head h2{ margin:14px 0 12px; font-size:clamp(32px,4vw,46px); line-height:1.1; }
.process-steps__head p{ margin:0; color:var(--color-text-2); font-size:16px; }
.process-steps ol{ list-style:none; margin:0; padding:0; border-top:1px solid var(--color-border); }
.process-steps li{ display:grid; grid-template-columns:54px 1fr; gap:18px; padding:22px 0; border-bottom:1px solid var(--color-border); }
.process-steps li > span{ color:var(--brand-purple); font-size:12px; font-weight:800; letter-spacing:.08em; }
.process-steps h3{ margin:0 0 5px; font-size:18px; }
.process-steps li p{ margin:0; color:var(--color-text-2); font-size:14px; }
.page-section--ink .process-steps__head h2,.page-section--ink .process-steps h3{ color:#fff; }
.page-section--ink .process-steps__head p,.page-section--ink .process-steps li p{ color:#aeb5ca; }
.page-section--ink .process-steps ol,.page-section--ink .process-steps li{ border-color:rgba(255,255,255,.12); }

/* Data migration */
.migration-public-hero{ background:radial-gradient(720px 420px at 86% 18%,rgba(39,103,246,.12),transparent 70%),linear-gradient(180deg,#fbfcff,#f5f7fc); }
.migration-console{ position:relative; padding:20px; color:var(--color-text); overflow:hidden; background:linear-gradient(145deg,#fff,#f6f7ff); }
.migration-console::before{ content:""; position:absolute; inset:0; opacity:.4; background-image:radial-gradient(circle at 1px 1px,#c8ccdd 1px,transparent 0); background-size:22px 22px; pointer-events:none; }
.migration-console > *{ position:relative; }
.migration-console__head{ display:flex; align-items:center; gap:10px; padding-bottom:15px; border-bottom:1px solid var(--color-border); }
.migration-console__head span{ margin-right:auto; color:var(--color-text-3); font-size:11px; font-weight:750; text-transform:uppercase; letter-spacing:.08em; }
.migration-console__head b{ font-size:13px; }
.migration-console__head em{ padding:5px 8px; border-radius:999px; background:#eaf9f3; color:#087a55; font-size:9px; font-style:normal; font-weight:850; text-transform:uppercase; }
.migration-console__steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin:15px 0; }
.migration-console__steps span{ display:flex; align-items:center; gap:7px; padding:9px; border:1px solid var(--color-border); border-radius:11px; background:rgba(255,255,255,.86); color:var(--color-text-2); font-size:10px; font-weight:700; }
.migration-console__steps b{ color:var(--brand-blue); font-size:9px; }
.migration-console__preview{ display:flex; align-items:center; justify-content:space-between; gap:18px; padding:18px; border:1px solid rgba(16,185,129,.19); border-radius:15px; background:linear-gradient(135deg,#effbf6,#fff); }
.migration-console__preview small,.migration-console__preview strong,.migration-console__preview p{ display:block; }
.migration-console__preview small{ color:#087a55; font-size:9px; font-weight:850; text-transform:uppercase; letter-spacing:.07em; }
.migration-console__preview strong{ margin-top:4px; font-size:14px; }
.migration-console__preview p{ margin:3px 0 0; color:var(--color-text-3); font-size:10px; }
.migration-console__preview > b{ color:#087a55; font-size:18px; white-space:nowrap; }
.migration-console__stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin-top:10px; }
.migration-console__stats span{ padding:12px 8px; border:1px solid var(--color-border); border-radius:11px; background:rgba(255,255,255,.9); color:var(--color-text-3); font-size:9px; }
.migration-console__stats b{ display:block; margin-bottom:3px; color:var(--color-text); font-size:15px; }
.migration-console__actions{ display:flex; justify-content:flex-end; gap:8px; margin-top:14px; }
.migration-console__actions button{ padding:9px 13px; border:1px solid var(--color-border); border-radius:10px; color:var(--color-text-2); background:#fff; font:inherit; font-size:10px; font-weight:750; }
.migration-console__actions button:last-child{ border-color:transparent; color:#fff; background:linear-gradient(135deg,#2a63e8,#5946de); box-shadow:0 8px 18px rgba(54,76,191,.18); }
.migration-provider-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.migration-provider-grid article{ display:grid; grid-template-columns:52px 1fr; gap:14px; min-height:164px; padding:18px; border:1px solid var(--color-border); border-radius:18px; background:var(--color-surface); box-shadow:0 9px 30px rgba(28,38,72,.04); }
.migration-provider-grid article > img{ width:52px; height:52px; padding:9px; border:1px solid var(--color-border); border-radius:14px; background:#fff; object-fit:contain; }
.migration-provider-grid article > div{ min-width:0; }
.migration-provider-grid h3{ margin:3px 0 6px; font-size:16px; }
.migration-provider-grid p{ margin:0; color:var(--color-text-3); font-size:11.5px; line-height:1.5; }
.migration-provider-grid article > span{ grid-column:1/-1; align-self:end; justify-self:start; padding:5px 8px; border-radius:999px; background:#f3f4f8; color:#767e94; font-size:9px; font-weight:850; text-transform:uppercase; letter-spacing:.05em; }
.migration-provider-grid article.is-live{ border-color:rgba(16,185,129,.24); background:linear-gradient(145deg,#fff,#f2fbf7); }
.migration-provider-grid article.is-live > span{ color:#087a55; background:#e5f8f0; }
.migration-stage-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.migration-stage-grid article{ position:relative; min-height:220px; padding:28px; border:1px solid var(--color-border); border-radius:20px; background:var(--color-surface); overflow:hidden; }
.migration-stage-grid article > span{ display:grid; width:36px; height:36px; place-items:center; border-radius:11px; color:var(--brand-blue); background:#edf3ff; font-size:10px; font-weight:850; }
.migration-stage-grid h3{ margin:36px 0 10px; font-size:21px; }
.migration-stage-grid p{ margin:0; color:var(--color-text-2); font-size:14px; line-height:1.65; }
.migration-screen{ margin-top:34px; }

/* Employee referrals */
.referral-preview{ padding:18px; background:linear-gradient(145deg,#fff,#f6f7ff); }
.referral-preview__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; padding:4px 3px 13px; border-bottom:1px solid var(--color-border); color:var(--color-text-3); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.07em; }
.referral-preview__head b{ color:var(--brand-blue); }
.referral-preview article{ display:grid; grid-template-columns:40px 1fr auto; align-items:center; gap:12px; margin-top:9px; padding:13px; border:1px solid var(--color-border); border-radius:14px; background:#fff; }
.referral-preview article > span{ display:grid; width:40px; height:40px; place-items:center; border-radius:12px; color:#fff; background:linear-gradient(135deg,#2c64e9,#744ce5); font-size:10px; font-weight:850; }
.referral-preview article b,.referral-preview article small{ display:block; }
.referral-preview article b{ font-size:13px; }
.referral-preview article small{ margin-top:4px; color:var(--color-text-3); font-size:10px; }
.referral-preview article em{ color:var(--brand-blue); font-size:10px; font-style:normal; font-weight:750; }
.document-architecture .stack-card{ background:var(--ink); }
.document-architecture .architecture-copy p{ color:var(--color-text-2); }
.integration-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.integration-grid article{
  display:grid;
  grid-template-columns:50px 1fr;
  gap:18px;
  padding:26px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-xl);
  background:var(--color-surface);
}
.integration-mark{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:14px;
  background:linear-gradient(135deg,#fbbc04,#ea4335);
  color:#fff;
  font-family:var(--font-display);
  font-size:18px;
  font-weight:800;
}
.integration-mark--blue{ background:linear-gradient(135deg,#4f46e5,#38bdf8); }
.integration-mark--violet{ background:linear-gradient(135deg,#4a154b,#4f46e5); }
.integration-mark--dark{ background:linear-gradient(135deg,#111827,#475569); font-size:12px; }
.integration-grid h3{ margin:1px 0 6px; font-size:18px; }
.integration-grid p{ margin:0 0 12px; color:var(--color-text-2); font-size:13.5px; }
.integration-grid small{ color:var(--brand-purple); font-size:11px; font-weight:800; letter-spacing:.07em; text-transform:uppercase; }
.deployment-resource-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.deployment-resource-grid article{
  min-height:190px;
  padding:26px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-xl);
  background:var(--color-surface);
}
.deployment-resource-grid b{ display:block; margin-bottom:54px; font-family:var(--font-display); font-size:19px; }
.deployment-resource-grid p{ margin:0; color:var(--color-text-2); font-size:13.5px; }
.custody-panel{ display:grid; grid-template-columns:1.1fr .9fr; gap:88px; align-items:end; }
.custody-panel h2{ margin:14px 0 0; font-size:clamp(30px,4vw,46px); line-height:1.12; }
.custody-panel > p{ margin:0; color:#aab0c9; font-size:16px; }
.topic-link-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.topic-link-grid a{
  min-height:250px;
  padding:28px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-xl);
  background:var(--color-surface);
  color:inherit;
  text-decoration:none;
  transition:transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.topic-link-grid a:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.topic-link-grid span{ color:var(--brand-purple); font-size:12px; font-weight:800; letter-spacing:.07em; text-transform:uppercase; }
.topic-link-grid h3{ margin:36px 0 9px; font-size:19px; }
.topic-link-grid p{ margin:0 0 22px; color:var(--color-text-2); font-size:13.5px; }
.topic-link-grid b{ color:var(--brand-purple); font-size:12.5px; }

/* ---------- Contact ---------- */
.contact-page{
  position:relative;
  overflow:hidden;
  min-height:calc(100vh - 72px);
  padding:88px 0 96px;
  background:
    linear-gradient(115deg,rgba(79,70,229,.07),transparent 38%),
    radial-gradient(900px 560px at 92% 4%,rgba(79,70,229,.1),transparent 66%),
    #f7f9fc;
}
.contact-page::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.42;
  background-image:
    linear-gradient(rgba(15,23,42,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(15,23,42,.035) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom,#000,transparent 78%);
}
.contact-page__glow{ position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; }
.contact-page__glow--one{ width:340px; height:340px; top:-180px; left:-100px; background:rgba(79,70,229,.15); }
.contact-page__glow--two{ width:360px; height:360px; right:-140px; bottom:-170px; background:rgba(79,70,229,.13); }
.contact-page__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(520px,1.18fr);
  align-items:center;
  gap:clamp(54px,7vw,112px);
}
.contact-page__intro{ max-width:540px; }
.contact-page__intro .breadcrumbs{ margin-bottom:38px; }
.contact-page__intro .breadcrumbs a,.contact-page__intro .breadcrumbs b{ color:#26344d; }
.contact-page__intro .breadcrumbs span{ color:#7d89a0; }
.contact-page__intro > .page-kicker{
  border-color:rgba(67,56,202,.2);
  background:rgba(255,255,255,.72);
  color:#4338ca;
  box-shadow:0 7px 22px rgba(73,52,176,.08);
  backdrop-filter:blur(12px);
}
.contact-page__intro h1{
  margin:20px 0 22px;
  font-size:clamp(42px,5vw,64px);
  line-height:1.02;
  letter-spacing:-.05em;
}
.contact-page__intro h1 span{ color:transparent; background:var(--brand-gradient); background-clip:text; -webkit-background-clip:text; }
.contact-page__intro > p{ max-width:510px; margin:0; color:var(--color-text-2); font-size:17px; line-height:1.7; }
.contact-trust{ display:grid; gap:14px; margin:42px 0 32px; }
.contact-trust--cards article{
  display:grid;
  grid-template-columns:48px 1fr;
  align-items:flex-start;
  gap:16px;
  padding:20px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-lg);
  background:var(--color-surface);
  box-shadow:var(--shadow-sm);
  transition:border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.contact-trust--cards article:hover{ border-color:var(--brand-indigo); box-shadow:var(--shadow-glow); }
.contact-trust__icon{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:50%;
  color:var(--brand-indigo);
  background:color-mix(in srgb, var(--brand-indigo) 12%, var(--color-surface));
}
.contact-trust__icon svg{ width:22px; height:22px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.contact-trust b{ display:block; margin-bottom:3px; font-size:14px; }
.contact-trust small{ color:var(--color-text-3); font-size:12.5px; line-height:1.45; }
.contact-card{
  overflow:hidden;
  border:1px solid var(--color-border);
  border-radius:var(--radius-xl);
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(18px);
}
.contact-card__head{
  padding:32px 32px 8px;
}
.contact-card__head span{ color:var(--brand-indigo); font-size:10px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.contact-card__head h2{ margin:6px 0 0; font-size:28px; letter-spacing:-.025em; font-family:var(--font-display); }
.contact-form{ position:relative; display:grid; grid-template-columns:1fr 1fr; gap:19px 16px; padding:24px 32px 32px; }
.contact-form__field{ display:flex; min-width:0; flex-direction:column; gap:8px; }
.contact-form__field--full,.contact-form__consent,.contact-form__footer{ grid-column:1/-1; }
.contact-form__field label{ color:var(--color-text); font-size:12.5px; font-weight:750; }
.contact-form__field label span{ color:var(--color-text-3); font-weight:500; }
.contact-form__field input,.contact-form__field select,.contact-form__field textarea{
  width:100%;
  min-height:49px;
  padding:12px 14px;
  border:1px solid #dce3ed;
  border-radius:var(--radius-md);
  outline:none;
  background:#fff;
  color:var(--color-text);
  font:inherit;
  font-size:14px;
  transition:border-color var(--dur-fast),box-shadow var(--dur-fast),background var(--dur-fast);
}
.contact-form__field select{ appearance:auto; cursor:pointer; }
.contact-topic{ position:relative; }
.contact-topic__trigger{
  display:grid;
  grid-template-columns:12px 1fr 20px;
  align-items:center;
  gap:11px;
  width:100%;
  min-height:49px;
  padding:11px 13px;
  border:1px solid #dce3ed;
  border-radius:var(--radius-md);
  color:var(--color-text);
  background:#fff;
  font:inherit;
  font-size:14px;
  font-weight:650;
  text-align:left;
  cursor:pointer;
  transition:border-color var(--dur-fast),box-shadow var(--dur-fast),background var(--dur-fast);
}
.contact-topic__trigger:hover{ border-color:#c5cfde; background:#fbfcff; }
.contact-topic__trigger:focus-visible,.contact-topic.is-open .contact-topic__trigger{ outline:none; border-color:rgba(79,70,229,.62); box-shadow:0 0 0 4px rgba(79,70,229,.09); }
.contact-topic__trigger-mark{ width:9px; height:9px; border-radius:3px; background:var(--brand-gradient); box-shadow:0 0 0 4px rgba(66,74,248,.09); }
.contact-topic__trigger svg{ width:19px; height:19px; fill:none; stroke:#78859a; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; transition:transform var(--dur-fast); }
.contact-topic.is-open .contact-topic__trigger svg{ transform:rotate(180deg); }
.contact-topic__menu{
  position:absolute;
  z-index:30;
  top:calc(100% + 9px);
  left:0;
  right:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px;
  padding:9px;
  border:1px solid rgba(132,145,169,.24);
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.98);
  box-shadow:0 22px 60px rgba(15,23,42,.18),0 4px 14px rgba(15,23,42,.08);
  opacity:0;
  visibility:hidden;
  transform:translateY(-5px) scale(.985);
  transform-origin:top;
  transition:opacity var(--dur-fast),transform var(--dur-fast),visibility var(--dur-fast);
  backdrop-filter:blur(18px);
}
.contact-topic.is-open .contact-topic__menu{ opacity:1; visibility:visible; transform:none; }
.contact-topic__menu button{
  min-width:0;
  padding:11px 12px;
  border:1px solid transparent;
  border-radius:12px;
  color:var(--color-text);
  background:transparent;
  font:inherit;
  text-align:left;
  cursor:pointer;
  transition:background var(--dur-fast),border-color var(--dur-fast),transform var(--dur-fast);
}
.contact-topic__menu button:hover,.contact-topic__menu button:focus-visible{ outline:none; border-color:rgba(79,70,229,.12); background:#f3f7ff; transform:translateY(-1px); }
.contact-topic__menu button[aria-selected="true"]{ border-color:rgba(79,70,229,.18); background:linear-gradient(135deg,rgba(79,70,229,.09),rgba(127,40,255,.07)); }
.contact-topic__menu span{ display:block; overflow:hidden; color:var(--color-text); font-size:12.5px; font-weight:750; text-overflow:ellipsis; white-space:nowrap; }
.contact-topic__menu small{ display:block; margin-top:3px; overflow:hidden; color:var(--color-text-3); font-size:10.5px; font-weight:500; text-overflow:ellipsis; white-space:nowrap; }
.contact-topic__native{ position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; clip:rect(0 0 0 0)!important; clip-path:inset(50%)!important; overflow:hidden!important; white-space:nowrap!important; }
.contact-form__field textarea{ min-height:132px; resize:vertical; line-height:1.55; }
.contact-form__field input::placeholder,.contact-form__field textarea::placeholder{ color:#9da8ba; }
.contact-form__field input:focus,.contact-form__field select:focus,.contact-form__field textarea:focus{
  border-color:rgba(79,70,229,.62);
  box-shadow:0 0 0 4px rgba(79,70,229,.09);
}
.contact-form__field small{ color:var(--color-text-3); font-size:11px; line-height:1.4; }
.contact-form__consent{ display:grid; grid-template-columns:18px 1fr; align-items:start; gap:10px; color:var(--color-text-2); font-size:11.5px; line-height:1.55; cursor:pointer; }
.contact-form__consent input{ width:16px; height:16px; margin:1px 0 0; accent-color:var(--brand-blue); }
.contact-form__consent a{ color:var(--brand-blue); font-weight:650; }
.contact-form__footer{ display:flex; flex-direction:column; align-items:stretch; gap:12px; padding-top:3px; }
.contact-form__status{ margin:0; text-align:center; color:var(--color-text-3); font-size:12px; line-height:1.45; }
.contact-form__status.is-error{ color:#c93737; }
.contact-form__status.is-success{ color:#07835c; font-weight:650; }
.contact-form__submit{ width:100%; gap:9px; border:0; cursor:pointer; }
.contact-form__submit svg{ width:17px; height:17px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; transition:transform var(--dur-fast); }
.contact-form__submit:hover svg{ transform:translate(2px,-2px); }
.contact-form__submit:disabled{ cursor:wait; opacity:.68; transform:none; }
.contact-form__honeypot{ position:absolute!important; left:-10000px!important; width:1px!important; height:1px!important; overflow:hidden!important; }

@media (max-width:900px){
  .feature-spotlight,.feature-spotlight--reverse,.architecture-grid,.deployment-panel,.operational-assurance__grid{ grid-template-columns:1fr; gap:42px; }
  .feature-spotlight--reverse .feature-spotlight__copy{ order:0; }
  .capability-grid,.security-detail-grid{ grid-template-columns:repeat(2,1fr); }
  .pricing-page__grid{ grid-template-columns:1fr; }
  .solution-hero__grid,.solution-intro,.workflow-story,.related-panel,.process-steps,.custody-panel{ grid-template-columns:1fr; gap:42px; }
  .solution-shot,.module-preview{ transform:none; }
  .seo-capability-grid,.deployment-resource-grid,.topic-link-grid{ grid-template-columns:repeat(2,1fr); }
  .contact-page__grid{ grid-template-columns:1fr; gap:48px; }
  .contact-page__intro{ max-width:680px; }
  .migration-provider-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:680px){
  .page-hero{ padding:88px 0 64px; }
  .page-hero h1{ font-size:40px; }
  .page-hero__inner > p{ font-size:17px; }
  .page-jump{ display:none; }
  .page-section{ padding:76px 0; }
  .capability-grid,.security-detail-grid,.visual-pair,.app-screen-grid,.architecture-stack,.plan-columns{ grid-template-columns:1fr; }
  .capability-card,.detail-card{ min-height:auto; }
  .capability-card h3,.detail-card h3{ margin-top:30px; }
  .closing-panel{ align-items:flex-start; flex-direction:column; padding:30px; gap:28px; }
  .pricing-page{ margin-top:-28px; }
  .pricing-plan,.pricing-plan--primary{ width:100%; min-width:0; max-width:100%; padding:28px; }
  .pricing-plan__top{ flex-direction:column; }
  .pricing-plan__top>*{ min-width:0; max-width:100%; }
  .page-hero__actions,.solution-hero__actions{ width:100%; }
  .page-hero__actions .btn,.solution-hero__actions .btn{ min-width:0; max-width:100%; white-space:normal; text-align:center; }
  .plan-price{ text-align:left; }
  .deployment-panel{ padding:30px; }
  .product-frame figcaption{ align-items:flex-start; flex-direction:column; }
  .solution-hero{ padding:72px 0 62px; }
  .solution-hero__copy h1{ font-size:39px; }
  .solution-hero__copy > p{ font-size:16.5px; }
  .module-preview__bar{ grid-template-columns:48px 1fr auto; padding:14px 15px; }
  .timesheet-summary{ grid-template-columns:1fr 1fr; margin:14px; }
  .timesheet-summary > span{ grid-column:1/-1; justify-self:start; }
  .timesheet-table{ margin:0 14px 14px; }
  .timesheet-row{ grid-template-columns:1fr 54px 1fr; gap:8px; padding:0 10px; }
  .comp-current,.comp-history{ margin-left:14px; margin-right:14px; }
  .comp-history-title{ margin-left:14px; margin-right:14px; }
  .precision-note{ padding:30px; }
  .seo-capability-grid,.deployment-resource-grid,.integration-grid,.topic-link-grid{ grid-template-columns:1fr; }
  .seo-capability-grid article,.deployment-resource-grid article{ min-height:auto; }
  .seo-capability-grid h3,.deployment-resource-grid b{ margin-top:28px; margin-bottom:10px; }
  .workflow-map{ grid-template-columns:repeat(2,1fr); padding:22px; }
  .process-steps li{ grid-template-columns:42px 1fr; }
  .automation-node{ grid-template-columns:42px 1fr; }
  .automation-node > span{ grid-column:1/-1; }
  .control-plane-visual__body{ grid-template-columns:46px 1fr; min-height:0; }
  .control-plane-visual__body > aside{ padding-inline:8px; }
  .control-plane-visual__body > aside i{ width:25px; height:25px; }
  .control-plane-visual__workspace{ padding:16px; }
  .control-plane-visual__heading{ align-items:flex-start; flex-direction:column; }
  .control-plane-visual__stats{ grid-template-columns:1fr; }
  .control-plane-visual__stats article{ min-height:78px; }
  .contact-page{ padding:64px 0 72px; }
  .contact-page__intro .breadcrumbs{ margin-bottom:28px; }
  .contact-page__intro h1{ font-size:40px; }
  .contact-page__intro > p{ font-size:16px; }
  .contact-trust{ margin-top:34px; }
  /* backdrop-filter creates a containing block for fixed descendants in
     mobile WebKit/Chromium. Disable it here so the topic sheet stays anchored
     to the viewport instead of the tall form card. */
  .contact-card{ border-radius:22px; backdrop-filter:none; -webkit-backdrop-filter:none; }
  .contact-card__head{ padding:23px 21px 21px; }
  .contact-form{ grid-template-columns:1fr; gap:17px; padding:24px 20px 22px; }
  .contact-form__field--full,.contact-form__consent,.contact-form__footer{ grid-column:auto; }
  .contact-form__footer{ align-items:stretch; flex-direction:column; }
  .contact-form__submit{ width:100%; min-height:50px; }
  .contact-topic__menu{ position:fixed; z-index:1001; top:auto; right:16px; bottom:18px; left:16px; grid-template-columns:1fr; max-height:min(68vh,560px); padding:10px; border-radius:22px; overflow:auto; transform:translateY(12px) scale(.985); }
  .contact-topic__menu button{ padding:13px 14px; }
  .contact-topic__menu span{ font-size:14px; }
  .contact-topic__menu small{ font-size:11px; }
  .contact-topic.is-open::before{ content:""; position:fixed; z-index:1000; inset:0; background:rgba(12,18,30,.42); backdrop-filter:blur(3px); }
  .migration-provider-grid,.migration-stage-grid{ grid-template-columns:1fr; }
  .migration-provider-grid article{ min-height:144px; }
  .migration-console{ padding:14px; }
  .migration-console__steps{ grid-template-columns:1fr; }
  .migration-console__stats{ grid-template-columns:repeat(2,1fr); }
  .migration-console__preview{ align-items:flex-start; flex-direction:column; }
  .referral-preview article{ grid-template-columns:38px 1fr; }
  .referral-preview article em{ grid-column:2; }
}

/* /android-app/ — release-channel segmented toggle (Release/Beta) above the
   download button, and the version-history list further down the page. */
.android-channel-toggle{
  display:inline-flex; gap:2px; padding:3px; margin-bottom:18px;
  background:var(--color-surface-2); border:1px solid var(--color-border); border-radius:var(--radius-full);
}
.android-channel-toggle__btn{
  border:0; background:transparent; color:var(--color-text-muted,#6b7280);
  font-size:14px; font-weight:600; padding:8px 18px; border-radius:var(--radius-full);
  cursor:pointer; transition:background .18s ease, color .18s ease;
}
.android-channel-toggle__btn:hover{ color:var(--ink); }
.android-channel-toggle__btn.is-active{ background:var(--ink); color:#fff; }

.android-version-list{ display:flex; flex-direction:column; gap:12px; }
.android-version-row{
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  padding:18px 20px; border:1px solid var(--color-border); border-radius:var(--radius-lg);
  background:var(--color-surface); transition:border-color .18s ease;
}
.android-version-row:hover{ border-color:var(--ink); }
.android-version-row__meta{ display:flex; flex-direction:column; gap:4px; min-width:0; }
.android-version-row__version{ font-weight:700; font-size:16px; color:var(--ink); }
.android-version-row__version .badge--latest{
  margin-left:8px; font-size:11px; font-weight:700; letter-spacing:.02em; text-transform:uppercase;
  padding:2px 8px; border-radius:var(--radius-full); background:var(--brand-gradient); color:#fff;
}
.android-version-row__date{ font-size:13px; color:var(--color-text-muted,#6b7280); }
.android-version-row__changelog{ font-size:14px; color:var(--color-text); margin:2px 0 0; }
@media (max-width:640px){
  .android-version-row{ flex-direction:column; align-items:flex-start; }
}

/* /android-app/ — device dossier, release controls and native capability ledger. */
.android-hero{
  overflow:hidden;
  padding:72px 0 0;
  background:
    linear-gradient(90deg,rgba(16,24,40,.035) 1px,transparent 1px) 50% 0/72px 100%,
    radial-gradient(640px 500px at 85% 18%,rgba(79,70,229,.16),transparent 68%),
    var(--color-bg);
}
.android-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,.94fr) minmax(420px,1.06fr);
  align-items:center;
  gap:68px;
}
.android-hero__copy{ position:relative; z-index:2; padding-bottom:72px; }
.android-hero__copy h1{
  max-width:680px;
  margin:22px 0 22px;
  color:var(--brand-navy);
  font-size:clamp(44px,4.4vw,58px);
  line-height:1.01;
  letter-spacing:-.055em;
}
.android-hero__copy>p{ max-width:610px; margin:0; color:var(--color-text-2); font-size:17px; }
.android-release-control{ max-width:610px; margin-top:34px; padding:18px; border:1px solid var(--color-border); background:rgba(255,255,255,.82); box-shadow:0 16px 44px rgba(16,24,40,.07); }
.android-release-control__label{ display:flex; align-items:baseline; justify-content:space-between; gap:16px; margin-bottom:12px; }
.android-release-control__label span{ color:var(--brand-navy); font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.android-release-control__label small{ color:var(--color-text-3); font-size:11px; }
.android-release-control .android-channel-toggle{ margin:0 10px 0 0; vertical-align:middle; background:#f2f4f7; }
.android-release-control .solution-hero__actions{ display:inline-flex; margin:0; vertical-align:middle; }
.android-release-control .btn{ min-width:230px; }
.android-release-control__note{ margin:13px 0 0!important; color:var(--color-text-3)!important; font-size:11px!important; letter-spacing:.02em; }
.android-device-stage{ position:relative; display:grid; min-height:690px; place-items:end center; }
.android-device-stage::before{ content:""; position:absolute; inset:10% 2% 0 10%; border-left:1px solid rgba(79,70,229,.18); border-top:1px solid rgba(79,70,229,.18); }
.android-build-stamp{ position:absolute; z-index:2; top:34px; left:24px; display:flex; flex-direction:column; width:148px; padding:15px; border-left:3px solid var(--brand-indigo); background:#fff; box-shadow:0 14px 40px rgba(16,24,40,.09); }
.android-build-stamp span,.android-native-note span{ color:var(--brand-indigo); font-size:9px; font-weight:900; letter-spacing:.12em; }
.android-build-stamp b{ margin:8px 0 2px; color:var(--brand-navy); font-size:14px; }
.android-build-stamp small,.android-native-note small{ color:var(--color-text-3); font-size:10px; }
.android-device{ position:relative; z-index:1; width:min(380px,72%); margin-right:6%; padding:10px; border:1px solid #2c3445; border-radius:46px 46px 0 0; background:#101828; box-shadow:0 34px 80px rgba(16,24,40,.24); }
.android-device__bar{ display:flex; align-items:center; justify-content:space-between; height:38px; padding:0 15px; color:#fff; font-size:9px; font-weight:700; }
.android-device__bar i{ width:54px; height:16px; border-radius:999px; background:#050913; }
.android-device__screen{ overflow:hidden; height:548px; border-radius:30px 30px 12px 12px; background:#f8fafc; }
.android-device__screen img{ width:auto; max-width:none; height:100%; object-fit:cover; object-position:18% top; }
.android-device__nav{ display:grid; height:25px; place-items:center; }
.android-device__nav i{ width:72px; height:3px; border-radius:99px; background:rgba(255,255,255,.5); }
.android-native-note{ position:absolute; z-index:3; display:grid; grid-template-columns:44px 1fr; width:208px; padding:14px 16px; border:1px solid var(--color-border); background:#fff; box-shadow:0 16px 38px rgba(16,24,40,.1); }
.android-native-note span{ grid-row:1/3; }
.android-native-note b{ color:var(--brand-navy); font-size:12px; }
.android-native-note--top{ top:180px; right:0; }
.android-native-note--bottom{ right:7%; bottom:74px; }
.android-proof-strip{ display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--color-border); border-bottom:1px solid var(--color-border); }
.android-proof-strip>div{ display:grid; grid-template-columns:38px 1fr; padding:22px 24px; }
.android-proof-strip>div+div{ border-left:1px solid var(--color-border); }
.android-proof-strip span{ grid-row:1/3; color:var(--brand-indigo); font-size:10px; font-weight:900; letter-spacing:.1em; }
.android-proof-strip b{ color:var(--brand-navy); font-size:13px; }
.android-proof-strip small{ color:var(--color-text-3); font-size:11px; }

.android-operating-grid{ display:grid; grid-template-columns:.72fr 1.28fr; gap:88px; align-items:start; }
.android-operating-head{ position:sticky; top:110px; }
.android-operating-head h2,.android-capabilities__heading h2,.android-version-heading h2{ margin:14px 0 16px; font-size:clamp(34px,4vw,50px); line-height:1.05; letter-spacing:-.04em; }
.android-operating-head p,.android-capabilities__heading p,.android-version-heading p{ margin:0; color:var(--color-text-2); }
.android-operating-list{ border-top:1px solid var(--color-border); }
.android-operating-list article{ display:grid; grid-template-columns:48px 1fr auto; gap:22px; padding:28px 0; border-bottom:1px solid var(--color-border); }
.android-operating-list article>span{ color:var(--brand-indigo); font-size:10px; font-weight:900; letter-spacing:.1em; }
.android-operating-list b{ display:block; margin-bottom:7px; color:var(--brand-navy); font-family:var(--font-display); font-size:20px; }
.android-operating-list p{ max-width:600px; margin:0; color:var(--color-text-2); font-size:14px; }
.android-operating-list em{ color:var(--color-text-3); font-size:9px; font-style:normal; font-weight:800; letter-spacing:.14em; }
.android-capabilities__heading{ display:grid; grid-template-columns:1fr 1fr; align-items:end; gap:14px 80px; margin-bottom:52px; }
.android-capabilities__heading .eyebrow{ grid-column:1/-1; }
.android-capability-ledger{ display:grid; grid-template-columns:repeat(12,1fr); border-top:1px solid var(--color-border); }
.android-capability-ledger article{ grid-column:span 4; min-height:240px; padding:28px 24px; border-bottom:1px solid var(--color-border); }
.android-capability-ledger article+article{ border-left:1px solid var(--color-border); }
.android-capability-ledger article:nth-child(4){ grid-column:3/span 4; border-left:1px solid var(--color-border); }
.android-capability-ledger span{ display:block; color:var(--brand-indigo); font-size:9px; font-weight:900; letter-spacing:.13em; }
.android-capability-ledger b{ display:block; margin:62px 0 9px; color:var(--brand-navy); font-family:var(--font-display); font-size:19px; }
.android-capability-ledger p{ margin:0; color:var(--color-text-2); font-size:13px; }
.android-version-layout{ display:grid; grid-template-columns:.68fr 1.32fr; gap:80px; align-items:start; }
.android-version-heading h2{ color:#fff; }
.android-version-heading p{ color:#aab0c9; }
.android-version-section .android-version-row{ border-color:rgba(255,255,255,.14); background:#fff; border-radius:0; }
.android-version-section .android-version-list{ gap:8px; }

@media(max-width:1000px){
  .android-hero__grid{ grid-template-columns:minmax(0,1fr); gap:0; }
  .android-hero__grid>*{ min-width:0; }
  .android-hero__copy{ max-width:780px; }
  .android-device-stage{ min-height:620px; }
  .android-operating-grid,.android-version-layout{ grid-template-columns:1fr; gap:48px; }
  .android-operating-head{ position:static; max-width:700px; }
}
@media(max-width:700px){
  .android-hero{ padding-top:52px; }
  .android-hero__grid{ width:100%; max-width:100%; }
  .android-hero__copy{ width:100%; padding-bottom:56px; }
  .android-hero__copy h1{ max-width:100%; font-size:40px; overflow-wrap:anywhere; }
  .android-release-control{ width:100%; max-width:100%; }
  .android-release-control__label{ align-items:flex-start; flex-direction:column; gap:3px; }
  .android-release-control .android-channel-toggle{ display:flex; width:100%; margin:0 0 10px; }
  .android-release-control .android-channel-toggle__btn{ flex:1; }
  .android-release-control .solution-hero__actions,.android-release-control .btn{ width:100%; min-width:0; }
  .android-device-stage{ min-height:540px; }
  .android-device{ width:min(330px,86%); margin:0; }
  .android-device__screen{ height:420px; }
  .android-build-stamp{ top:12px; left:0; }
  .android-native-note--top{ top:130px; right:-10px; }
  .android-native-note--bottom{ right:-4px; bottom:42px; }
  .android-proof-strip{ grid-template-columns:1fr; }
  .android-proof-strip>div+div{ border-top:1px solid var(--color-border); border-left:0; }
  .android-operating-list article{ grid-template-columns:34px 1fr; }
  .android-operating-list em{ display:none; }
  .android-capabilities__heading{ grid-template-columns:1fr; gap:10px; }
  .android-capability-ledger{ grid-template-columns:1fr; }
  .android-capability-ledger article,.android-capability-ledger article:nth-child(4){ grid-column:auto; min-height:auto; padding:26px 4px; border-left:0; }
  .android-capability-ledger article+article{ border-left:0; }
  .android-capability-ledger b{ margin-top:34px; }
}

/* pricing-lume.css */
/* Pricing — light Lume Precision system, scoped to the pricing page. */
.pricing-lume{ background:#fcfcfd; }
.pricing-lume .page-hero{
  background:
    radial-gradient(760px 360px at 20% 0%,rgba(79,70,229,.09),transparent 65%),
    radial-gradient(680px 340px at 84% 20%,rgba(124,58,237,.07),transparent 62%),
    #fcfcfd;
  border-bottom:1px solid var(--color-border);
}
.pricing-lume .page-hero__glow{ display:none; }
.pricing-lume .page-kicker{ background:#eef2ff; border-color:#dfe3ff; color:var(--brand-indigo); }
.pricing-lume .page-hero h1{ max-width:920px; margin-inline:auto; font-size:clamp(42px,6vw,72px); letter-spacing:-.04em; }
.pricing-lume .page-hero h1 span{ color:var(--brand-indigo); -webkit-text-fill-color:initial; background:none; }
.pricing-lume .page-hero__inner>p{ max-width:670px; color:var(--color-text-2); }
.pricing-lume .page-section.pricing-page{ padding-top:80px; background:#fcfcfd; }
.pricing-lume .pricing-page__grid{ align-items:stretch; gap:20px; }
.pricing-lume .pricing-plan{
  border:1px solid var(--color-border); border-radius:16px; background:#fff;
  color:var(--color-text); box-shadow:0 14px 38px rgba(16,24,40,.06);
}
.pricing-lume .pricing-plan--primary{ border-color:#c7d2fe; box-shadow:0 24px 60px rgba(79,70,229,.10); }
.pricing-lume .pricing-plan h2{ color:var(--brand-navy); letter-spacing:-.025em; }
.pricing-lume .pricing-plan p,.pricing-lume .plan-note{ color:var(--color-text-2); }
.pricing-lume .plan-label{ display:inline-flex; padding:5px 9px; border-radius:999px; background:#eef2ff; color:var(--brand-indigo); font-size:10px; letter-spacing:.08em; }
.pricing-lume .plan-price b{ color:var(--brand-navy); }
.pricing-lume .plan-price span{ color:var(--color-text-3); }
.pricing-lume .plan-divider{ background:var(--color-border); }
.pricing-lume .pricing-plan .check-list li{ color:var(--color-text); }
.pricing-lume .pricing-plan .check-list li::before{ background-color:#ecfdf3; color:#027a48; }
.pricing-lume .pricing-plan .btn--primary{ background:var(--brand-navy); color:#fff; border-color:var(--brand-navy); }
.pricing-lume .text-link{ color:var(--brand-indigo); }
.pricing-lume .pricing-faq{ padding-top:96px; }
.pricing-lume .pricing-faq .section-head{ text-align:left; margin-left:0; }
.pricing-lume .faq-item{ border:1px solid var(--color-border); border-radius:12px; background:#fff; overflow:hidden; }
.pricing-lume .faq-item.is-open{ border-color:#c7d2fe; }
.pricing-lume .faq-q{ color:var(--brand-navy); }
.pricing-lume .faq-a p{ color:var(--color-text-2); }
.pricing-lume>.page-section:last-child{ background:#fff; border-top:1px solid var(--color-border); }
@media(max-width:680px){
  .pricing-lume .page-section.pricing-page{ padding-top:56px; }
  .pricing-lume .pricing-faq{ padding-top:68px; }
}

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