/*
 * ztech-design.css — the frozen Z-Tech homepage design CSS. DO NOT hand-edit.
 * Regenerate with: node scripts/build-design-css.js
 *
 * Assembled in the exact order the approved design loaded it:
 *   1. Nocturne design-system base   (@import stripped)
 *   2. Page component CSS            (design <style>)
 *   3. Mood overrides                (#mood-css)
 *   4. Motion durations              (#motion-css)
 *
 * Enqueued only on hardcoded core templates (functions.php -> ztech_is_core_template()).
 */


/* ===================================================================
   1 - Nocturne design-system base
   =================================================================== */
/* Nocturne — design-system tokens and component classes. This file is the source of truth for the system's look; retune it here and see readme.md. */
:root {
  --color-bg: #161826;
  --color-surface: #232532;
  --color-text: #e9e9ed;
  --color-accent: #9184d9; /* review round 7 (Barron): the accent moves to
     the product's blurple — OKLCH hue 289.2, the hue of the app's own Pro
     accent (#9a8fe0, --om-accent-pro) — at the same lightness the steel
     accent held (L 0.660, so the documented ratios survive) and chroma
     in the product blurple's own range (its token sits at C 0.118; the
     accent takes 0.125, from the old steel's 0.030):
     the accent now reads as an accent rather than another neutral. */
  --color-accent-2: #a7a1db; /* the machine-derived stand-in follows: same
     hue, same L 0.734, chroma at the same 2:3 proportion it held */
  --color-divider: color-mix(in srgb, #e9e9ed 16%, transparent);

  /* Tonal ramps — generated in OKLCH on one shared lightness scale, so the
     same step of any role matches the others in visual value. */
  --color-neutral-100: #f3f5fe;
  --color-neutral-200: #e4e7f5;
  --color-neutral-300: #cfd3e5;
  --color-neutral-400: #b2b6ca;
  --color-neutral-500: #9397ab;
  --color-neutral-600: #75798c;
  --color-neutral-700: #595d6c;
  --color-neutral-800: #3f424d;
  --color-neutral-900: #292b31;

  --color-accent-100: #f5f4ff;
  --color-accent-200: #e7e5fe;
  --color-accent-300: #d2cefd;
  --color-accent-400: #b5abfc;
  --color-accent-500: #968ae0;
  --color-accent-600: #796cbf;
  --color-accent-700: #5d5294;
  --color-accent-800: #423a6a;
  --color-accent-900: #2b2741;

  --color-accent-2-100: #f5f4ff;
  --color-accent-2-200: #e7e5fe;
  --color-accent-2-300: #d2cefd;
  --color-accent-2-400: #b5afe8;
  --color-accent-2-500: #9690c9;
  --color-accent-2-600: #7972a9;
  --color-accent-2-700: #5c5783;
  --color-accent-2-800: #423e5d;
  --color-accent-2-900: #2b293a;

  /* Deck section-divider ground — review round 3: saturation as presence.
     Dividers take a saturated deep indigo (hue 277, the neutral ramp's own
     family; C 0.094 — written when the accent held C 0.030, before the
     round-7 blurple raised it past the ground's) with a lighter bloom and
     a ghost tint of the same hue, while the slide grounds stay
     desaturated. Deck-scale fills only — not interface colors. */
  --color-section: #262a60;
  --color-section-glow: #353b80;
  --color-section-ghost: #4c5397;

  --font-heading: "Inter", system-ui, sans-serif;
  --font-heading-weight: 500;
  --font-body: "Inter", system-ui, sans-serif;

  --space-1: 2.8px;
  --space-2: 5.6px;
  --space-3: 8.4px;
  --space-4: 11.2px;
  --space-6: 16.8px;
  --space-8: 22.4px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* Elevation — derived from the ground: soft ink-tinted shadows on a
     light theme, a hairline edge + ambient darkness on a dark one. */
  --shadow-sm: 0 0 0 1px #3f424d;
  --shadow-md: 0 0 0 1px #595d6c, 0 6px 18px rgba(0,0,0,0.55);
  --shadow-lg: 0 0 0 1px #9397ab, 0 16px 40px rgba(0,0,0,0.65);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); }

.lighten{mix-blend-mode:lighten;background-color:transparent}

/* ══════════════════════════════════════════════════════════════════════════
   Components — built with the tokens above. Plain CSS
   on plain HTML: no JavaScript, no build step. Each class is documented in
   readme.md and demonstrated in foundations/ and components/.
   ══════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-size: 15px; line-height: 1.55; font-weight: 400; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 var(--space-2);
}
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 25px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 13px; }
h6 { letter-spacing: 0.08em; text-transform: uppercase; }
p { margin: 0 0 var(--space-3); }
a { color: var(--color-accent); text-underline-offset: 3px; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
figcaption {
  font-size: 11px; margin-top: var(--space-1);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.text-muted { color: color-mix(in srgb, var(--color-text) 55%, transparent); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

/* — rules — */
/* Rules fade to transparent at both ends instead of stopping cleanly — a
   Nocturne signature. The ramp is 48px an end (one deck baseline unit),
   painted from the same divider token. Freestanding rules fade; box
   outlines, in-control separators, and short accent marks stay solid. */
.hr {
  height: 1px; border: 0; margin: var(--space-4) 0;
  background: linear-gradient(to right,
    transparent, var(--color-divider) 48px,
    var(--color-divider) calc(100% - 48px), transparent);
}

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 14px; line-height: 1.2; color: var(--color-text); /* matches the .input's 14px —
     the pair sits side by side in sign-up rows */
  background: transparent; border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
}
.btn svg { display: block; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary { color: var(--color-accent); border-color: var(--color-accent); }
.btn-primary:hover { background: color-mix(in srgb, var(--color-accent) 12%, transparent); }
.btn-primary:active { background: color-mix(in srgb, var(--color-accent) 22%, transparent); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.btn-secondary:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }
.btn-ghost { color: var(--color-accent); padding-inline: var(--space-1); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.btn-ghost:active { background: color-mix(in srgb, var(--color-accent) 18%, transparent); }
.btn-icon { width: 36px; height: 36px; padding: 0; }
.btn-block { width: 100%; margin-top: var(--space-2); }

/* — forms — */
.field > label {
  display: block; font-size: 12px; margin-bottom: 5px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.input {
  width: 100%; min-height: 36px; padding: 6px 10px; font: inherit;
  font-size: 14px; color: var(--color-text); caret-color: var(--color-accent);
  background: var(--color-surface);
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 90px; resize: vertical; }
.radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.radio input, .seg-opt input {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.radio .dot {
  width: 16px; height: 16px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--color-divider);
}
.radio:hover .dot { border-color: var(--color-accent); }
.radio input:checked + .dot {
  border-color: var(--color-accent); background: var(--color-accent);
  box-shadow: inset 0 0 0 4px var(--color-bg);
}
.radio input:focus-visible + .dot { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.seg {
  display: inline-flex; overflow: hidden;
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.seg-opt {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; font-size: 13px; cursor: pointer;
}
.seg-opt + .seg-opt { border-left: 1px solid var(--color-divider); }
.seg-opt:has(input:checked) { color: var(--color-accent); box-shadow: inset 0 0 0 1px var(--color-accent); }
.seg-opt:not(:has(input:checked)):hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.seg-opt:has(input:focus-visible) { outline: 2px solid var(--color-accent); outline-offset: -2px; }

/* — cards — */
.card {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3); border-radius: var(--radius-md); background: var(--color-surface);
}
.card-kicker { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.card-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 17px; line-height: 1.2;
}
.card-body { margin: 0; font-size: 13px; opacity: 0.8; flex: 1; }
.card-meta {
  display: flex; align-items: center; gap: 6px; font-size: 11px;
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
}
.elev-sm { box-shadow: var(--shadow-sm); }
.elev-md { box-shadow: var(--shadow-md); }
.elev-lg { box-shadow: var(--shadow-lg); }

/* — tags — */
.tag {
  display: inline-flex; align-items: center; font-size: 11px;
  letter-spacing: 0.02em; padding: 3px 10px;
  border-radius: calc(var(--radius-md) * 0.75);
}
.tag-accent { background: var(--color-accent-800); color: var(--color-accent-100); }
.tag-accent-2 { background: var(--color-accent-2-800); color: var(--color-accent-2-100); }
.tag-neutral { background: var(--color-neutral-800); color: var(--color-neutral-100); }
.tag-outline { border: 1px solid var(--color-accent); color: var(--color-accent); }

/* — navigation — */
.nav {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-bottom: none;
}
.nav-brand {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 18px; margin-right: auto;
}
.nav a { color: inherit; text-decoration: none; font-size: 14px; }
.nav a:hover, .nav a[aria-current='page'] { color: var(--color-accent); }

/* — tables — */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  padding: var(--space-2); border-bottom: 1px solid transparent; /* keeps layout; the row paints the fading rule */
}
.table td {
  padding: var(--space-2);
  border-bottom: 1px solid transparent;
}
/* Row rules as row-level strips so the end-fade spans the row, not each cell. */
.table thead tr {
  background: linear-gradient(to right,
    transparent, var(--color-divider) 48px,
    var(--color-divider) calc(100% - 48px), transparent) no-repeat bottom / 100% 1px;
}
.table tbody tr {
  background: linear-gradient(to right,
    transparent, color-mix(in srgb, var(--color-text) 8%, transparent) 48px,
    color-mix(in srgb, var(--color-text) 8%, transparent) calc(100% - 48px), transparent) no-repeat bottom / 100% 1px;
}
.table tbody tr:hover {
  /* the hover tint layers over the row rule, which keeps painting */
  background:
    linear-gradient(color-mix(in srgb, var(--color-text) 4%, transparent),
                    color-mix(in srgb, var(--color-text) 4%, transparent)) no-repeat 0 0 / 100% 100%,
    linear-gradient(to right,
      transparent, color-mix(in srgb, var(--color-text) 8%, transparent) 48px,
      color-mix(in srgb, var(--color-text) 8%, transparent) calc(100% - 48px), transparent) no-repeat bottom / 100% 1px;
}

/* — dialog — */
.dialog-backdrop {
  position: fixed; inset: 0; display: grid; place-items: center;
  padding: var(--space-4);
  background: color-mix(in srgb, var(--color-neutral-900) 50%, transparent);
}
.dialog {
  width: min(440px, 100%); display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-4); border-radius: var(--radius-lg);
  background: var(--color-surface); box-shadow: var(--shadow-lg);
}
.dialog-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 20px;
}
.dialog-body { font-size: 14px; opacity: 0.85; }
.dialog-actions { display: flex; justify-content: flex-end; gap: var(--space-2); margin-top: var(--space-2); }



/* ===================================================================
   2 - Page component CSS (design <style>)
   =================================================================== */
body{margin:0;background:#0c0d16;}
  @keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
  @keyframes marqueeRev{from{transform:translateX(-50%)}to{transform:translateX(0)}}
  @keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
  @keyframes pulseGlow{0%,100%{opacity:.55}50%{opacity:1}}
  @keyframes heroShift{0%,100%{background-position:20% 0%,90% 20%,50% 100%}50%{background-position:30% 10%,80% 30%,55% 90%}}
  @keyframes ringPulse{0%{box-shadow:0 0 0 0 rgba(47,143,208,.5)}100%{box-shadow:0 0 0 16px rgba(47,143,208,0)}}
  @keyframes stepPulse{0%,100%{box-shadow:0 0 0 4px rgba(55,224,216,.08),0 0 18px rgba(55,224,216,.35)}50%{box-shadow:0 0 0 7px rgba(55,224,216,.14),0 0 26px rgba(55,224,216,.55)}}
  .step-orb-glow{position:absolute;inset:0;border-radius:50%;background:linear-gradient(#9184d9,#2f8fd0,#37e0d8);animation:orbRotate 16s linear infinite;}
  .step-orb-glow.b1{filter:blur(6px);}
  .step-orb-glow.b2{filter:blur(18px);opacity:.85;}
  @keyframes orbRotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
  .diag-glow-wrap{background:linear-gradient(115deg,#2f8fd0,#37e0d8,#5e96ea,#2f8fd0);background-size:300% 300%;animation:diagBorderShift 8s ease infinite;}
  .diag-glow-wrap::before{content:'';position:absolute;inset:-2px;border-radius:26px;background:linear-gradient(115deg,#2f8fd0,#37e0d8,#5e96ea,#2f8fd0);background-size:300% 300%;animation:diagBorderShift 8s ease infinite;filter:blur(18px);opacity:.55;z-index:-1;}
  @keyframes diagBorderShift{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
  @keyframes wordCycle{
    0%,19%{transform:translateY(0)}
    22%,41%{transform:translateY(-1.15em)}
    44%,63%{transform:translateY(-2.3em)}
    66%,85%{transform:translateY(-3.45em)}
    88%,100%{transform:translateY(-4.6em)}
  }
  .glow-btn{position:relative;overflow:hidden;}
  .glow-btn::before{content:'';position:absolute;top:0;left:-60%;width:40%;height:100%;background:linear-gradient(120deg,transparent,rgba(255,255,255,.25),transparent);transform:skewX(-20deg);transition:left .5s;}
  .glow-btn:hover::before{left:130%;}
  @keyframes bgDrift{0%{transform:translate(0,0) scale(1)}50%{transform:translate(1.5%,-2%) scale(1.03)}100%{transform:translate(0,0) scale(1)}}
  .reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s ease;}
  .reveal.in-view{opacity:1;transform:none;}
  .nav-u{position:relative;}
  .nav-u::after{content:'';position:absolute;left:12px;right:12px;bottom:4px;height:2px;background:linear-gradient(90deg,#2f8fd0,#37e0d8);transform:scaleX(0);transform-origin:left;transition:transform .25s;}
  .nav-u:hover::after{transform:scaleX(1);}
  .link-u{position:relative;display:inline-block;}
  .link-u::after{content:'';position:absolute;left:0;right:0;bottom:-2px;height:1.5px;background:linear-gradient(90deg,#2f8fd0,#37e0d8);transform:scaleX(0);transform-origin:left;transition:transform .25s ease;}
  .link-u:hover::after{transform:scaleX(1);}
  .btn-primary-x{background:linear-gradient(120deg,#1e6fd9,#37e0d8);border:none;color:#08131f;box-shadow:0 8px 28px rgba(55,224,216,.35),0 0 0 1px rgba(55,224,216,.25) inset;align-items:center;justify-content:center;gap:8px;text-align:center;}
  .btn-primary-x:hover{box-shadow:0 10px 34px rgba(55,224,216,.5),0 0 0 1px rgba(55,224,216,.4) inset;transform:translateY(-2px);}
  .btn-secondary-x{background:rgba(55,224,216,.06);border:1.5px solid #2f8fd0;color:#bfe9ff;align-items:center;justify-content:center;gap:8px;text-align:center;}
  .btn-secondary-x:hover{background:rgba(55,224,216,.14);border-color:#37e0d8;}
  .btn-ghost-x{background:transparent;border:none;color:#8fd8e0;align-items:center;justify-content:center;gap:8px;text-align:center;}
  .btn-ghost-x:hover{color:#37e0d8;}
  .flip-card{perspective:1200px;}
  .flip-inner{position:relative;width:100%;height:100%;min-height:168px;transition:transform .6s cubic-bezier(.4,.2,.2,1);transform-style:preserve-3d;}
  .flip-card:hover .flip-inner{transform:rotateY(180deg);}
  .flip-front,.flip-back{position:absolute;inset:0;backface-visibility:hidden;border-radius:14px;overflow:hidden;}
  .flip-back{transform:rotateY(180deg);}
  @keyframes borderSpin{to{--a:360deg;}}
  .svc-card{position:relative;border-radius:14px;padding:1px;background:linear-gradient(140deg,rgba(47,143,208,.25),rgba(255,255,255,.05) 40%,rgba(55,224,216,.25));cursor:pointer;transition:transform .25s;}
  .svc-card:hover{transform:translateY(-5px);}
  .svc-card::before{content:'';position:absolute;inset:-1px;border-radius:14px;background:conic-gradient(from 0deg,#2f8fd0,#37e0d8,#2f8fd0);opacity:0;transition:opacity .3s;z-index:0;}
  .svc-card:hover::before{opacity:.5;}
  .svc-inner{position:relative;z-index:1;background:#141527;border-radius:13px;height:100%;}
  .brand-chip{transition:filter .3s;filter:saturate(.4);animation:chipBorder 9s ease-in-out infinite;}
  @keyframes chipBorder{0%,100%{border-color:rgba(47,143,208,.4)}50%{border-color:rgba(55,224,216,.45)}}
  .gpu-card{position:relative;border-radius:14px;overflow:hidden;background:#141527;box-shadow:0 0 3px 1px rgba(0,0,0,.5);}
  .gpu-card::before{content:'';position:absolute;top:50%;left:50%;width:150%;height:340px;margin-left:-75%;margin-top:-170px;background:linear-gradient(#2f8fd0,#37e0d8);opacity:.55;animation:gpuRotate 11s linear infinite;}
  .gpu-card::after{content:'';position:absolute;inset:2px;border-radius:12px;background:#141527cc;backdrop-filter:blur(30px);}
  .gpu-content{position:relative;z-index:1;}
  @keyframes gpuRotate{to{transform:rotate(360deg)}}
  .accordion-body{display:grid;grid-template-rows:0fr;overflow:hidden;transition:grid-template-rows .38s cubic-bezier(0.4,0,0.2,1);}
  .accordion-body.open{grid-template-rows:1fr;}
  .accordion-body-inner{min-height:0;overflow:hidden;opacity:0;transition:opacity .25s ease .05s;}
  .accordion-body.open .accordion-body-inner{opacity:1;}
  .lang-drop{opacity:0;transform:translateY(-6px) scale(.98);pointer-events:none;transition:opacity .2s ease,transform .2s ease;transform-origin:top right;}
  .lang-drop.open{opacity:1;transform:translateY(0) scale(1);pointer-events:auto;}
  .mobile-menu-drop{display:grid;grid-template-rows:0fr;overflow:hidden;transition:grid-template-rows .35s cubic-bezier(0.4,0,0.2,1);margin-top:-12px;}
  .mobile-menu-drop.open{grid-template-rows:1fr;}
  .mobile-menu-drop-inner{min-height:0;overflow:hidden;opacity:0;transition:opacity .22s ease .04s;}
  .mobile-menu-drop.open .mobile-menu-drop-inner{opacity:1;}
  .accordion-chevron{transition:transform .4s cubic-bezier(0.4,0,0.2,1);}
  .accordion-chevron.open{transform:rotate(180deg);}
  .h-scroll{display:flex;gap:14px;overflow-x:auto;overflow-y:visible;scroll-snap-type:x proximity;padding:10px 4px 13px;cursor:grab;}
  .h-scroll::-webkit-scrollbar{height:6px;}
  .h-scroll::-webkit-scrollbar-thumb{background:rgba(47,143,208,.3);border-radius:999px;}
  .h-scroll>*{scroll-snap-align:start;flex-shrink:0;}
  ::selection{background:rgba(47,143,208,.35)}
  .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;}
  .lp-wrap{padding:22px 26px;position:relative;background:#0d0f22;background-image:radial-gradient(rgba(94,234,212,.22) 1px,transparent 1.5px);background-size:20px 20px;animation:lpBorderGlow 6s ease-in-out infinite;border-radius:18px;overflow:hidden;}
  @keyframes lpBorderGlow{0%,100%{box-shadow:inset 0 0 0 1px rgba(94,234,212,.14),0 0 0 rgba(94,234,212,0);}50%{box-shadow:inset 0 0 0 1px rgba(94,234,212,.3),0 0 40px rgba(94,234,212,.12);}}
  .lp-wrap::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(15,16,35,.88),rgba(15,16,35,.5));}
  .lp-row{position:relative;display:grid;row-gap:19px;}
  .lp-tile{padding:0 19px;border-left:1px solid rgba(94,234,212,.18);text-align:left;transition:transform .35s cubic-bezier(.16,1,.3,1),background .3s;}
  .lp-tile:hover{background:rgba(94,234,212,.04);transform:translateY(-3px);}
  .lp-eyebrow{font:700 9.5px ui-monospace,monospace;letter-spacing:.07em;line-height:1.45;margin-bottom:10px;display:flex;align-items:flex-start;gap:6px;text-transform:uppercase;min-height:2.9em;}
  .lp-eyebrow::before{content:'';width:4px;height:4px;border-radius:50%;background:currentColor;box-shadow:0 0 8px currentColor;flex-shrink:0;margin-top:5px;}
  .lp-val{font-size:clamp(26px,3.4vw,38px);font-weight:700;color:#f2fbfa;font-family:var(--font-heading,Inter);line-height:1;animation:lpNumGlow 3.4s ease-in-out infinite;}
  @keyframes lpNumGlow{0%,100%{text-shadow:0 0 14px rgba(94,234,212,.25);}50%{text-shadow:0 0 26px rgba(94,234,212,.55),0 0 46px rgba(94,234,212,.2);}}
  .lp-underline{position:relative;height:2px;border-radius:2px;background:rgba(255,255,255,.08);margin-top:11px;overflow:hidden;}
  .lp-underline::after{content:'';position:absolute;top:0;left:-45%;width:45%;height:100%;background:linear-gradient(90deg,transparent,currentColor,transparent);animation:lpSweep 3.2s ease-in-out infinite;filter:brightness(1.6);}
  @keyframes lpSweep{0%,45%,100%{transform:translateX(0);opacity:0;}55%{opacity:1;}85%{transform:translateX(320%);opacity:0;}}

/* ===================================================================
   3 - Mood overrides (#mood-css)
   =================================================================== */
.btn-primary-x{background:linear-gradient(120deg,#1e6fd9,#37e0d8) !important;} .diag-glow-wrap{background:linear-gradient(115deg,#2f8fd0,#37e0d8,#5e96ea,#2f8fd0) !important;} .diag-glow-wrap::before{background:linear-gradient(115deg,#2f8fd0,#37e0d8,#5e96ea,#2f8fd0) !important;} .gpu-card::before{background:linear-gradient(#2f8fd0,#37e0d8) !important;} #main-header-bar{background:linear-gradient(180deg,#2a3050,#212640) !important;}

/* ===================================================================
   4 - Motion durations (#motion-css)
   =================================================================== */
.motion-bgdrift{animation-duration:60.00s !important;} .motion-marquee-usp{animation-duration:32.00s !important;} .motion-wordcycle{animation-duration:9.00s !important;} .motion-pulse{animation-duration:1.60s !important;} .motion-marquee-brand1{animation-duration:220.00s !important;} .motion-marquee-brand2{animation-duration:200.00s !important;} .motion-marquee-testimonials{animation-duration:152.00s !important;} .motion-ringpulse{animation-duration:2.00s !important;} .step-orb-glow{animation-duration:16.00s !important;} .diag-glow-wrap{animation-duration:8.00s !important;} .gpu-card::before{animation-duration:11.00s !important;} .brand-chip{animation-duration:9.00s !important;}
