/* ============================================================
   edgentia · request-license page
   Built on colors_and_type.css tokens. Dark-first, light supported.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap');

:root {
  --grad-brand: linear-gradient(
    118deg,
    #7c3aed 0%,
    #5b43d6 33%,
    #2563eb 63%,
    #0891b2 100%
  );
  --font-display: 'Newsreader', 'Space Grotesk', Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
}
button {
  font-family: inherit;
}
::selection {
  background: var(--brand-soft-2);
  color: var(--text);
}

/* brand gradient hairline at top */
body::before {
  content: '';
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 200;
  background: linear-gradient(
    90deg,
    #a855f7,
    #6366f1,
    #3b82f6,
    #22d3ee,
    #5eead4
  );
}

.lic-wrap {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
}
.kicker .slash {
  color: var(--brand-strong);
}

/* ---- buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--dur-base) var(--ease-standard),
    border-color var(--dur-base) var(--ease-standard),
    transform var(--dur-fast) var(--ease-standard),
    color var(--dur-base) var(--ease-standard);
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--brand);
  color: var(--brand-on);
}
.btn-primary:hover {
  background: var(--brand-strong);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--line-strong);
  background: var(--bg-2);
}
.btn-block {
  width: 100%;
  padding: 15px 24px;
  font-size: 16px;
}
.btn svg {
  width: 17px;
  height: 17px;
}

/* ---- nav -------------------------------------------------- */
.lic-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.lic-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.lic-logo {
  height: 42px;
  width: auto;
}
.lic-logo.light-only,
.lic-foot-logo.light-only {
  display: none;
}
:root[data-theme='light'] .lic-logo.dark-only,
:root[data-theme='light'] .lic-foot-logo.dark-only {
  display: none;
}
:root[data-theme='light'] .lic-logo.light-only,
:root[data-theme='light'] .lic-foot-logo.light-only {
  display: block;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--text-dim);
  cursor: pointer;
  transition:
    color var(--dur-fast),
    border-color var(--dur-fast),
    background var(--dur-fast);
}
.theme-toggle:hover {
  color: var(--text);
  border-color: var(--line-strong);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}
:root[data-theme='dark'] .theme-toggle .icon-sun {
  display: block;
}
:root[data-theme='dark'] .theme-toggle .icon-moon {
  display: none;
}
:root[data-theme='light'] .theme-toggle .icon-sun {
  display: none;
}
:root[data-theme='light'] .theme-toggle .icon-moon {
  display: block;
}

/* ---- hero ------------------------------------------------- */
.lic-hero {
  position: relative;
  padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 7vw, 92px);
  overflow: hidden;
}
.lic-hero-bg {
  position: absolute;
  inset: -20% 0 auto 0;
  height: 620px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
      56% 70% at 50% 0%,
      color-mix(in srgb, var(--brand) 16%, transparent) 0%,
      transparent 62%
    ),
    radial-gradient(
      40% 50% at 84% 8%,
      color-mix(in srgb, var(--cat-4) 12%, transparent) 0%,
      transparent 60%
    );
}
.lic-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(
    70% 62% at 50% 16%,
    #000 0%,
    transparent 76%
  );
  mask-image: radial-gradient(70% 62% at 50% 16%, #000 0%, transparent 76%);
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
}
.lic-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.lic-hero-h1 {
  margin: 26px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}
/* typewriter wordmark — builds "edgentia" in beats: edge → n → ia */
.tw-line {
  display: inline-flex;
  align-items: baseline;
  min-height: 1em;
}
.tw {
  white-space: pre;
}
.tw .tw-edge {
  color: var(--cat-4);
}
.tw .tw-ai {
  color: var(--brand-strong);
}
:root[data-theme='light'] .tw .tw-ai {
  color: var(--brand);
}
.tw-caret {
  display: inline-block;
  width: 0.055em;
  height: 0.84em;
  margin-left: 0.04em;
  border-radius: 2px;
  background: var(--brand-strong);
  transform: translateY(0.05em);
}
:root[data-theme='light'] .tw-caret {
  background: var(--brand);
}
@media (prefers-reduced-motion: no-preference) {
  .tw-caret {
    animation: caretBlink 1s steps(1) infinite;
  }
}
@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

.lic-hero-sub {
  margin: 26px 0 0;
  max-width: 58ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--text-dim);
  text-wrap: pretty;
}
.lic-hero-sub strong {
  color: var(--text);
  font-weight: 600;
}
.lic-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  background: var(--surface);
  transition:
    border-color var(--dur-fast),
    color var(--dur-fast);
}
.lic-hero-scroll:hover {
  color: var(--text);
  border-color: var(--line-strong);
}
.lic-hero-scroll svg {
  width: 15px;
  height: 15px;
  animation: nudge 1.8s var(--ease-standard) infinite;
}
@keyframes nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

/* ---- tiers ------------------------------------------------ */
.tiers {
  padding: clamp(48px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.tiers-head {
  max-width: 680px;
}
.tiers-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 16px 0 0;
}
.tiers-lede {
  margin: 16px 0 0;
  color: var(--text-dim);
  font-size: 16px;
  max-width: 56ch;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(36px, 4vw, 52px);
  align-items: start;
}
@media (max-width: 900px) {
  .tiers-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 26px 24px;
  box-shadow: var(--shadow-1);
  transition:
    border-color var(--dur-base) var(--ease-standard),
    box-shadow var(--dur-base) var(--ease-standard),
    transform var(--dur-base) var(--ease-standard);
}
.tier:hover {
  border-color: var(--line-2);
  box-shadow: var(--shadow-2);
  transform: translateY(-3px);
}
.tier.popular {
  border-color: var(--tone-brand-bd);
  box-shadow:
    var(--shadow-3),
    0 0 0 1px var(--tone-brand-bd);
}
.tier.selected {
  border-color: var(--brand);
  box-shadow:
    var(--shadow-2),
    0 0 0 2px var(--brand-soft-2);
}
.pop-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-on);
  background: var(--brand);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-2);
  white-space: nowrap;
}
.tier-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.tier-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}
.tier-desc {
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
}
/* trial label — a solid (opaque) badge ON the top edge of each card */
.tier-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  background: var(--success);
  color: #fff;
  border: 1px solid var(--success);
  box-shadow: var(--shadow-2);
}
.tier-label.brand {
  background: var(--brand);
  color: var(--brand-on);
  border-color: var(--brand);
}
.tier-label.muted {
  background: var(--text-faint);
  color: var(--bg);
  border-color: var(--text-faint);
}
/* form hint + small contact line */
.field-hint {
  font-size: 12px;
  color: var(--text-faint);
}
/* inline trial info note under the edition select (auto-updates) */
.trial-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0 0;
  font-size: 13px;
  color: var(--brand-strong);
  line-height: 1.45;
}
.trial-note .tn-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-strong);
  flex: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 16%, transparent);
}
.trial-note[data-empty='true'] {
  color: var(--text-faint);
}
.trial-note[data-empty='true'] .tn-dot {
  background: var(--text-faint);
  box-shadow: none;
}
.request-contact {
  margin: 22px 0 0;
  font-size: 14px;
  color: var(--text-dim);
}
.request-contact a,
.fs-mail,
.lic-foot-mail {
  color: var(--brand-strong);
  font-weight: 500;
}
:root[data-theme='light'] .request-contact a,
:root[data-theme='light'] .fs-mail,
:root[data-theme='light'] .lic-foot-mail {
  color: var(--brand);
}
.request-contact a:hover,
.fs-mail:hover,
.lic-foot-mail:hover {
  text-decoration: underline;
}

.tier-limits {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.tier-limits li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.tier-limits li:last-child {
  border-bottom: 0;
}
.tier-limits li span {
  color: var(--text-dim);
}
.tier-limits li span[title] {
  border-bottom: 1px dotted var(--line-strong);
  cursor: help;
}
.tier-limits li b {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.tier-feats {
  list-style: none;
  margin: 16px 0 22px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.tier-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
}
.tier-feats li .fi {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: relative;
}
.tier-feats li.yes {
  color: var(--text);
}
.tier-feats li.no {
  color: var(--text-faint);
}
.tier-feats li.yes .fi {
  background: var(--tone-success-bg);
}
.tier-feats li.no .fi {
  background: var(--tone-neutral-bg);
}
.tier-feats li .fi::before,
.tier-feats li .fi::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.tier-feats li.yes .fi {
  color: var(--tone-success-fg);
}
.tier-feats li.no .fi {
  color: var(--text-faint);
}
/* check mark (yes) */
.tier-feats li.yes .fi::before {
  width: 2px;
  height: 5px;
  transform: rotate(-45deg);
  left: 6px;
  top: 8px;
}
.tier-feats li.yes .fi::after {
  width: 2px;
  height: 9px;
  transform: rotate(40deg);
  left: 9.5px;
  top: 4px;
}
/* x mark (no) */
.tier-feats li.no .fi::before {
  width: 2px;
  height: 10px;
  transform: rotate(45deg);
  left: 8px;
  top: 4px;
}
.tier-feats li.no .fi::after {
  width: 2px;
  height: 10px;
  transform: rotate(-45deg);
  left: 8px;
  top: 4px;
}
.tier-feats li span[title] {
  border-bottom: 1px dotted var(--line-strong);
  cursor: help;
}

.tier-cta {
  margin-top: auto;
  width: 100%;
}

/* ---- request form ----------------------------------------- */
.request {
  padding: clamp(56px, 8vw, 104px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 84px;
}
.request-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .request-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.request-intro {
  position: sticky;
  top: 96px;
}
@media (max-width: 900px) {
  .request-intro {
    position: static;
  }
}
.request-intro h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 16px 0 0;
}
.request-lede {
  margin: 16px 0 0;
  color: var(--text-dim);
  font-size: 16px;
  max-width: 46ch;
}
.request-points {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.request-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.5;
}
.request-points .rp-ic {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-strong);
  margin-top: 1px;
}
.request-points .rp-ic svg {
  width: 13px;
  height: 13px;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-pop);
  position: relative;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.field-full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}
.field label .req {
  color: var(--danger);
  font-weight: 600;
}
.field label .opt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 400;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 14.5px;
  color: var(--text);
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  padding: 11px 13px;
  transition:
    border-color var(--dur-fast),
    box-shadow var(--dur-fast);
  outline: none;
}
.field textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft-2);
}
.field.invalid input,
.field.invalid textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px var(--danger-soft);
}
.select-wrap {
  position: relative;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}
.select-caret {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--text-faint);
  pointer-events: none;
}
.field-err {
  font-size: 12px;
  color: var(--danger);
  display: none;
}
.field.invalid .field-err {
  display: block;
}
.turnstile-field {
  min-height: 0;
}
.turnstile-field #cf-widget {
  min-height: 65px;
  display: flex;
  justify-content: flex-end;
}
.ts-hint {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}
.ts-noscript {
  font-size: 12.5px;
  color: var(--warning);
  margin: 0;
}
/* form-level error banner (network / server failures) */
.form-error {
  margin: 16px 0 0;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  background: var(--tone-danger-bg);
  color: var(--tone-danger-fg);
  border: 1px solid var(--tone-danger-bd);
  font-size: 13px;
  line-height: 1.45;
}
.form-error[hidden] {
  display: none;
}
.form-foot-note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.5;
}
#submitBtn {
  margin-top: 22px;
}
#submitBtn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* success */
.form-success {
  text-align: center;
  padding: 18px 8px 8px;
}
.form-success .fs-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tone-success-bg);
  color: var(--tone-success-fg);
  border: 1px solid var(--tone-success-bd);
}
.form-success .fs-mark svg {
  width: 28px;
  height: 28px;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}
.form-success p {
  margin: 10px auto 22px;
  color: var(--text-dim);
  font-size: 15px;
  max-width: 42ch;
}

/* ---- footer ----------------------------------------------- */
.lic-footer {
  border-top: 1px solid var(--line);
  padding: 52px 0 36px;
  background: var(--bg-2);
}
.lic-foot-top {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 760px) {
  .lic-foot-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.lic-foot-logo {
  height: 30px;
  width: auto;
}
.lic-foot-tag {
  margin: 16px 0 0;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 32ch;
}
.lic-foot-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  align-items: flex-start;
}
@media (max-width: 560px) {
  .lic-foot-contact {
    gap: 20px;
  }
}
.lic-foot-item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  transition: color var(--dur-fast);
}
a.lic-foot-item:hover {
  color: var(--text);
}
a.lic-foot-item:hover .lfi-val {
  color: var(--brand-strong);
}
:root[data-theme='light'] a.lic-foot-item:hover .lfi-val {
  color: var(--brand);
}
.lfi-ic {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-strong);
}
:root[data-theme='light'] .lfi-ic {
  color: var(--brand);
}
.lfi-ic svg {
  width: 17px;
  height: 17px;
}
.lfi-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.lfi-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.lfi-val {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}
.lic-foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.lic-foot-copy,
.lic-foot-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}

/* ============================================================
   shared animated gradient backdrop — matches the marketing Home.
   The page canvas moves to <html>; <body> goes transparent so the
   blurred blob field shows through behind the form card.
   ============================================================ */
html {
  background: var(--bg);
}
body {
  background: transparent;
}
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.42;
  mix-blend-mode: screen;
  animation: blobDrift 26s ease-in-out infinite alternate;
  will-change: transform;
}
.bg-blobs .b1 { width: 620px; height: 620px; left: -6%; top: 4%;  background: radial-gradient(circle at 30% 30%, var(--cat-1), transparent 70%); animation-duration: 30s; }
.bg-blobs .b2 { width: 560px; height: 560px; right: -8%; top: 0%;  background: radial-gradient(circle at 30% 30%, var(--cat-5), transparent 70%); animation-duration: 34s; animation-delay: -6s; }
.bg-blobs .b3 { width: 720px; height: 720px; left: 30%; top: 38%;  background: radial-gradient(circle at 30% 30%, var(--brand), transparent 70%); animation-duration: 38s; animation-delay: -12s; }
.bg-blobs .b4 { width: 520px; height: 520px; left: -4%; bottom: 4%; background: radial-gradient(circle at 30% 30%, var(--cat-3), transparent 70%); animation-duration: 32s; animation-delay: -4s; }
.bg-blobs .b5 { width: 600px; height: 600px; right: -6%; bottom: 0%; background: radial-gradient(circle at 30% 30%, var(--cat-2), transparent 70%); animation-duration: 36s; animation-delay: -16s; }
@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(7vw, 5vh) scale(1.12); }
  66%  { transform: translate(-5vw, 8vh) scale(0.92); }
  100% { transform: translate(4vw, -6vh) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .bg-blobs .blob { animation: none; }
}
