:root {
    --black: #080808;
    --obsidian: #0e0e0e;
    --charcoal: #161616;
    --gold: #2ad3ea;
    --gold-light: #5de3f5;
    --gold-dim: rgba(42,211,234,0.15);
    --white: #EEF8FA;
    --grey: #7a9ea4;
    --grey-dim: #2a3c40;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: default;
  }
  ::selection { background: var(--gold); color: #050e10; }
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

  /* Noise overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
  }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes lineExpand {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }
  @keyframes waveAnim {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @keyframes scanline {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
  }
  @keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  @keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
    50%      { box-shadow: 0 0 20px 4px rgba(42,211,234,0.25); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* Global button */
  .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #050e10;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
  }
  .btn-gold:hover { background: var(--gold-light); }
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 13px 31px;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
  }
  .btn-outline:hover { background: var(--gold-dim); }

  /* Gold divider */
  .gold-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    transform-origin: left;
  }
  .section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }


/* ──────────────────────────────────────────────────────────────
   PRIMAL HZ V5 — Responsive overrides for the React landing theme
   These rules intentionally use !important because the landing page
   is generated with inline React styles. They keep desktop intact and
   make the whole theme usable on tablets and phones.
────────────────────────────────────────────────────────────── */
img, svg, canvas, video { max-width: 100%; }
#root { width: 100%; overflow-x: clip; }
#root * { min-width: 0; }
button, input, textarea, select { max-width: 100%; }

@media (max-width: 1100px) {
  #root [style*="grid-template-columns: repeat(6, 1fr)"] {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  #root [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  #root [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  #root [style*="grid-template-columns: 1fr 420px"] {
    grid-template-columns: 1fr !important;
  }
  #root [style*="position: sticky"] {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 900px) {
  html { font-size: 15px; }

  .primal-nav {
    height: 64px !important;
    padding: 0 16px !important;
    background: rgba(8,8,8,0.94) !important;
    border-bottom: 1px solid rgba(42,211,234,0.12) !important;
    backdrop-filter: blur(16px) !important;
  }
  .primal-nav-links { display: none !important; }
  .primal-mobile-toggle { display: inline-flex !important; }
  .primal-mobile-menu { display: flex !important; }

  #root [style*="padding: 120px 64px"],
  #root [style*="padding: 100px 64px"],
  #root [style*="padding: 80px 64px"],
  #root [style*="padding: 80px 64px 48px"],
  #root [style*="padding: 80px 64px 48px"],
  #root [style*="padding: 64px 64px 40px"],
  #root [style*="padding: 56px 64px"],
  #root [style*="padding: 48px 64px"],
  #root [style*="padding: 80px 64px"] {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  #root [style*="grid-template-columns: repeat(3, 1fr)"],
  #root [style*="grid-template-columns: repeat(2, 1fr)"],
  #root [style*="grid-template-columns: 80px 1fr"],
  #root [style*="grid-template-columns: 120px 1fr"],
  #root [style*="grid-template-columns: 1fr 1fr 1fr"],
  #root [style*="grid-template-columns: 1fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  #root [style*="grid-template-columns: repeat(6, 1fr)"],
  #root [style*="grid-template-columns: repeat(4, 1fr)"],
  #root [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  #root [style*="gap: 80px"] { gap: 36px !important; }
  #root [style*="gap: 48px"] { gap: 24px !important; }
  #root [style*="gap: 40px"] { gap: 24px !important; }

  #root [style*="min-height: 700px"] {
    min-height: 680px !important;
    height: auto !important;
    padding-top: 120px !important;
    padding-bottom: 80px !important;
  }

  #root [style*="width: 600px"][style*="height: 600px"] {
    width: 340px !important;
    height: 340px !important;
  }
  #root [style*="width: 480px"][style*="height: 480px"] {
    width: 300px !important;
    height: 300px !important;
  }
  #root [style*="width: 320px"][style*="height: 320px"] {
    width: 220px !important;
    height: 220px !important;
  }

  #root [style*="display: flex"][style*="justify-content: center"][style*="gap: 16px"],
  #root [style*="display: flex"][style*="gap: 16px"] {
    flex-wrap: wrap !important;
  }

  .btn-gold,
  .btn-outline {
    min-height: 48px;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
  }
}

@media (max-width: 640px) {
  html { font-size: 14px; }
  body { -webkit-text-size-adjust: 100%; }

  .section-label {
    font-size: 9px !important;
    gap: 8px !important;
    flex-wrap: wrap;
  }
  .section-label::before { width: 22px; }

  .btn-gold,
  .btn-outline {
    width: 100%;
    padding: 13px 16px !important;
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
  }

  #root [style*="padding: 120px 64px"],
  #root [style*="padding: 100px 64px"],
  #root [style*="padding: 80px 64px"],
  #root [style*="padding: 80px 64px 48px"],
  #root [style*="padding: 64px 64px 40px"],
  #root [style*="padding: 56px 64px"],
  #root [style*="padding: 48px 64px"],
  #root [style*="padding: 48px 40px"],
  #root [style*="padding: 40px 36px"],
  #root [style*="padding: 40px"],
  #root [style*="padding: 36px"],
  #root [style*="padding: 32px 24px"] {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  #root [style*="padding: 120px 64px"],
  #root [style*="padding: 100px 64px"],
  #root [style*="padding: 80px 64px"] {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  #root [style*="padding: 80px 64px 48px"] {
    padding-top: 48px !important;
    padding-bottom: 32px !important;
  }

  #root [style*="font-size: 148px"],
  #root h1 {
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  #root [style*="font-size: 52px"] { font-size: 40px !important; }
  #root [style*="font-size: 48px"] { font-size: 38px !important; }
  #root [style*="font-size: 46px"] { font-size: 36px !important; }
  #root [style*="font-size: 32px"] { font-size: 28px !important; }
  #root [style*="font-size: 28px"] { font-size: 24px !important; }

  #root [style*="margin-top: 60px"] { margin-top: 34px !important; }
  #root [style*="margin-top: 40px"] { margin-top: 28px !important; }
  #root [style*="margin-bottom: 64px"] { margin-bottom: 36px !important; }
  #root [style*="margin-bottom: 48px"] { margin-bottom: 30px !important; }

  #root [style*="display: flex"][style*="gap: 16px"],
  #root [style*="display: flex"][style*="gap: 12px"] {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  #root [style*="grid-template-columns"] {
    gap: 18px !important;
  }

  #root [style*="border-left"] {
    border-left: none !important;
  }
  #root [style*="border-right"] {
    border-right: none !important;
  }

  #root [style*="aspect-ratio: 1"] {
    min-height: 280px !important;
  }

  #root [style*="width: min(560px, 100%)"] {
    width: calc(100vw - 28px) !important;
    max-height: calc(100dvh - 28px) !important;
    overflow-y: auto !important;
    padding: 24px 18px !important;
  }

  #root [style*="position: absolute"][style*="top: 12px"][style*="right: 12px"] {
    position: static !important;
    display: inline-block !important;
    margin-bottom: 10px !important;
  }

  #root input,
  #root textarea {
    font-size: 16px !important;
  }

  footer [style*="justify-content: space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}

@media (max-width: 390px) {
  .primal-nav { padding: 0 12px !important; }
  .primal-nav span { font-size: 18px !important; letter-spacing: 0.11em !important; }
  #root [style*="padding"] { padding-left: 14px !important; padding-right: 14px !important; }
}

/* ──────────────────────────────────────────────────────────────
   PRIMAL HZ V6 — Full Mobile Responsiveness Stabilizer
   Purpose: fix the React landing across phones/tablets without requiring
   Elementor or Gutenberg editing. These rules override inline React styles
   only under responsive breakpoints.
────────────────────────────────────────────────────────────── */
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
#root { max-width: 100vw; }
#root * { box-sizing: border-box; }
#root a, #root button { -webkit-tap-highlight-color: transparent; }
#root p, #root span, #root div, #root h1, #root h2, #root h3 { overflow-wrap: anywhere; }
#root h1, #root h2, #root h3 { text-wrap: balance; }

@media (max-width: 1180px) {
  .phz-product-layout { grid-template-columns: 1fr !important; min-height: auto !important; }
  .phz-product-list { border-right: 0 !important; border-bottom: 1px solid rgba(42,211,234,0.08) !important; }
  .phz-product-detail { position: relative !important; top: auto !important; width: 100% !important; }
  .phz-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 900px) {
  :root { --mobile-pad: 22px; }
  .phz-hero { height: auto !important; min-height: 100svh !important; padding: 112px var(--mobile-pad) 78px !important; align-items: center !important; }
  .phz-hero > div[style*="max-width: 900"] { padding-left: 0 !important; padding-right: 0 !important; width: 100% !important; }
  .phz-hero h1 { font-size: clamp(58px, 18vw, 104px) !important; line-height: .86 !important; letter-spacing: .025em !important; }
  .phz-hero p { font-size: 15px !important; line-height: 1.65 !important; max-width: 92vw !important; }
  .phz-hero [style*="width: 600px"] { width: 82vw !important; height: 82vw !important; max-width: 420px !important; max-height: 420px !important; }
  .phz-hero [style*="width: 480px"] { width: 66vw !important; height: 66vw !important; max-width: 340px !important; max-height: 340px !important; }
  .phz-hero [style*="width: 320px"] { width: 48vw !important; height: 48vw !important; max-width: 240px !important; max-height: 240px !important; }

  .phz-frequency-strip { padding: 42px var(--mobile-pad) !important; }
  .phz-frequency-strip > div { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
  .phz-frequency-strip > div > div { border: 1px solid rgba(42,211,234,0.08) !important; padding: 22px 18px !important; background: rgba(255,255,255,0.015) !important; }

  .phz-system-section { padding: 72px var(--mobile-pad) !important; }
  #root section, #root main, #root footer { max-width: 100vw !important; }
  #root [style*="max-width: 1200"],
  #root [style*="max-width: 1100"],
  #root [style*="max-width: 1000"],
  #root [style*="max-width: 900"] { width: 100% !important; max-width: 100% !important; }

  #root [style*="padding: 80px 64px 48px"],
  #root [style*="padding: 80px 64px"],
  #root [style*="padding: 64px 64px"],
  #root [style*="padding: 56px 64px"],
  #root [style*="padding: 48px 64px"],
  #root [style*="padding: 120px 64px"],
  #root [style*="padding: 100px 64px"] { padding-left: var(--mobile-pad) !important; padding-right: var(--mobile-pad) !important; }

  #root [style*="display: grid"] { max-width: 100% !important; }
  #root [style*="grid-template-columns: repeat(3, 1fr)"],
  #root [style*="grid-template-columns: repeat(2, 1fr)"],
  #root [style*="grid-template-columns: 80px 1fr"],
  #root [style*="grid-template-columns: 120px 1fr"],
  #root [style*="grid-template-columns: 1fr 420px"],
  #root [style*="grid-template-columns: 1fr 1fr 1fr"],
  #root [style*="grid-template-columns: repeat(3, 1fr)"],
  #root [style*="grid-template-columns: repeat(4, 1fr)"],
  #root [style*="grid-template-columns: repeat(6, 1fr)"] { grid-template-columns: 1fr !important; }

  #root [style*="gap: 80px"] { gap: 38px !important; }
  #root [style*="gap: 64px"] { gap: 32px !important; }
  #root [style*="gap: 48px"] { gap: 26px !important; }
  #root [style*="gap: 40px"] { gap: 24px !important; }

  .phz-product-list { padding: 28px var(--mobile-pad) !important; }
  .phz-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
  .phz-product-card { padding: 24px 18px !important; min-height: 178px !important; display: flex !important; flex-direction: column !important; justify-content: space-between !important; }
  .phz-product-card [style*="position: absolute"][style*="top: 12px"] { position: static !important; display: inline-flex !important; align-self: flex-start !important; margin-bottom: 10px !important; }
  .phz-product-detail { padding: 32px var(--mobile-pad) 44px !important; }
  .phz-product-detail h2 { font-size: clamp(36px, 11vw, 48px) !important; }

  .phz-upsell-overlay { padding: 16px !important; align-items: flex-end !important; }
  .phz-upsell-modal { width: 100% !important; max-width: 560px !important; max-height: calc(100svh - 32px) !important; overflow-y: auto !important; padding: 28px 20px 22px !important; border-radius: 18px 18px 0 0 !important; }
  .phz-upsell-modal h3 { font-size: clamp(34px, 11vw, 46px) !important; }
  .phz-upsell-modal [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  :root { --mobile-pad: 16px; }
  .primal-nav { height: 62px !important; padding: 0 14px !important; }
  .primal-nav > button:first-child span { font-size: 19px !important; letter-spacing: .12em !important; }
  .primal-mobile-menu { left: 12px !important; right: 12px !important; top: 62px !important; max-height: calc(100svh - 74px) !important; overflow-y: auto !important; }

  .phz-hero { min-height: 100svh !important; padding-top: 96px !important; padding-bottom: 58px !important; }
  .phz-hero h1 { font-size: clamp(54px, 21vw, 86px) !important; max-width: 100% !important; }
  .phz-hero p { margin-top: 22px !important; font-size: 14px !important; }
  .phz-hero [style*="margin-top: 40px"] { margin-top: 28px !important; }
  .phz-hero [style*="margin-top: 60px"] { margin-top: 34px !important; }
  .phz-hero [style*="bottom: 36px"] { display: none !important; }

  .phz-frequency-strip > div { grid-template-columns: 1fr !important; }
  .phz-frequency-strip > div > div { padding: 20px 16px !important; }
  .phz-frequency-strip [style*="font-size: 28px"] { font-size: 25px !important; }

  .phz-product-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .phz-product-card { min-height: auto !important; padding: 22px 16px !important; }
  .phz-product-card [style*="font-size: 28px"] { font-size: 26px !important; }
  .phz-product-card [style*="font-size: 24px"] { font-size: 24px !important; }

  #root [style*="font-size: 88px"] { font-size: 58px !important; }
  #root [style*="font-size: 80px"] { font-size: 54px !important; }
  #root [style*="font-size: 64px"] { font-size: 44px !important; }
  #root [style*="font-size: 52px"] { font-size: 38px !important; }
  #root [style*="font-size: 48px"] { font-size: 36px !important; }
  #root [style*="font-size: 46px"] { font-size: 34px !important; }
  #root [style*="font-size: 32px"] { font-size: 26px !important; }
  #root [style*="font-size: 28px"] { font-size: 24px !important; }

  #root p { font-size: 14px !important; line-height: 1.72 !important; }
  #root [style*="line-height: 1.9"] { line-height: 1.72 !important; }
  #root [style*="line-height: 1.8"] { line-height: 1.68 !important; }
  #root [style*="padding: 56px 0"] { padding-top: 34px !important; padding-bottom: 34px !important; }
  #root [style*="padding: 32px 24px"] { padding: 22px 16px !important; }
  #root [style*="padding: 40px"] { padding: 24px 18px !important; }
  #root [style*="padding: 36px"] { padding: 24px 18px !important; }
  #root [style*="padding: 32px"] { padding: 22px 16px !important; }

  #root [style*="display: flex"][style*="justify-content: center"][style*="gap: 16px"],
  #root [style*="display: flex"][style*="gap: 16px"] { flex-direction: column !important; align-items: stretch !important; width: 100% !important; }
  #root [style*="display: flex"][style*="align-items: baseline"] { flex-direction: row !important; align-items: baseline !important; }
  #root .btn-gold, #root .btn-outline { width: 100% !important; justify-content: center !important; min-height: 48px !important; }

  #root [style*="display: grid"][style*="grid-template-columns: 1fr 1fr 1fr"] > div,
  #root [style*="display: grid"][style*="grid-template-columns: repeat(3, 1fr)"] > div,
  #root [style*="display: grid"][style*="grid-template-columns: repeat(3, 1fr)"] > div { min-width: 0 !important; }

  /* Matrix/table-like rows become readable stacked cards on phones */
  #root [style*="grid-template-columns: 1fr 1fr 1fr"][style*="padding: 16px 24px"] { display: none !important; }
  #root [style*="grid-template-columns: 1fr 1fr 1fr"][style*="padding: 20px 24px"] { grid-template-columns: 1fr !important; gap: 7px !important; padding: 18px 16px !important; }

  footer { padding-left: var(--mobile-pad) !important; padding-right: var(--mobile-pad) !important; }
  footer [style*="display: flex"] { flex-direction: column !important; align-items: flex-start !important; }
}

@media (max-width: 430px) {
  :root { --mobile-pad: 14px; }
  .phz-hero h1 { font-size: clamp(48px, 20vw, 76px) !important; }
  .section-label { font-size: 9px !important; letter-spacing: .14em !important; }
  .phz-product-detail { padding-left: 14px !important; padding-right: 14px !important; }
  .phz-upsell-modal { padding-left: 16px !important; padding-right: 16px !important; }
  #root [style*="letter-spacing: 0.2em"] { letter-spacing: .12em !important; }
}

/* ──────────────────────────────────────────────────────────────
   PRIMAL HZ V16 — Hero alignment + science/about mobile hardening
   Fixes the long PERFORMANCE STACK headline and strengthens responsive
   behavior for robust information pages on mobile.
────────────────────────────────────────────────────────────── */
.phz-performance-line {
  display: block !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  text-wrap: nowrap !important;
  font-size: clamp(54px, 9.6vw, 116px) !important;
  line-height: .88 !important;
  letter-spacing: .026em !important;
  transform: translateX(-0.01em);
}

#root h1 .phz-performance-line,
#root .phz-performance-line {
  overflow-wrap: normal !important;
  word-break: keep-all !important;
}

@media (min-width: 1200px) {
  .phz-performance-line {
    font-size: clamp(92px, 7.8vw, 118px) !important;
  }
}

@media (max-width: 1180px) {
  #root [style*="grid-template-columns: 0.9fr 1.1fr"],
  #root [style*="grid-template-columns: 1.05fr 0.95fr"],
  #root [style*="grid-template-columns: 1fr 360px"],
  #root [style*="grid-template-columns: 1fr 420px"],
  #root [style*="grid-template-columns: 1fr 1fr 1.2fr"],
  #root [style*="grid-template-columns: 1fr 1fr 1fr 1fr"],
  #root [style*="grid-template-columns: repeat(4, 1fr)"],
  #root [style*="grid-template-columns: repeat(3, 1fr)"],
  #root [style*="grid-template-columns: 140px 1fr"],
  #root [style*="grid-template-columns: 120px 1fr"],
  #root [style*="grid-template-columns: 90px 1fr"] {
    grid-template-columns: 1fr !important;
  }

  #root [style*="position: sticky"] {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 900px) {
  .phz-performance-line {
    font-size: clamp(44px, 12.5vw, 82px) !important;
    letter-spacing: .018em !important;
  }

  #root [style*="padding: 104px 64px 72px"],
  #root [style*="padding: 86px 64px"],
  #root [style*="padding: 96px 64px"],
  #root [style*="padding: 92px 64px"],
  #root [style*="padding: 104px 64px"],
  #root [style*="padding: 86px 64px"] {
    padding-left: var(--mobile-pad, 22px) !important;
    padding-right: var(--mobile-pad, 22px) !important;
  }

  #root [style*="margin-bottom: 92px"],
  #root [style*="margin-bottom: 86px"],
  #root [style*="margin: 92px 0"],
  #root [style*="margin-top: 96px"],
  #root [style*="margin-top: 92px"],
  #root [style*="margin-top: 86px"] {
    margin-top: 54px !important;
    margin-bottom: 54px !important;
  }

  #root [style*="padding: 38px"],
  #root [style*="padding: 40px"],
  #root [style*="padding: 46px 40px"] {
    padding: 28px 22px !important;
  }

  #root [style*="grid-template-columns: 1fr 1fr 1.2fr"] > div,
  #root [style*="grid-template-columns: 90px 1fr"] > div,
  #root [style*="grid-template-columns: 120px 1fr"] > div,
  #root [style*="grid-template-columns: 140px 1fr"] > div {
    min-width: 0 !important;
  }
}

@media (max-width: 640px) {
  .phz-performance-line {
    font-size: clamp(34px, 10.8vw, 52px) !important;
    letter-spacing: .01em !important;
  }

  .phz-hero h1 {
    font-size: clamp(48px, 17vw, 72px) !important;
  }

  #root [style*="font-size: clamp(58px, 8.5vw, 116px)"],
  #root [style*="font-size: clamp(58px, 9vw, 118px)"],
  #root [style*="font-size: clamp(48px, 6vw, 82px)"],
  #root [style*="font-size: clamp(48px, 6vw, 78px)"] {
    font-size: clamp(42px, 13.5vw, 62px) !important;
    line-height: .92 !important;
  }

  #root [style*="font-size: 72px"] { font-size: 52px !important; }
  #root [style*="font-size: 58px"] { font-size: 48px !important; }
  #root [style*="font-size: 52px"] { font-size: 42px !important; }
  #root [style*="font-size: 42px"] { font-size: 34px !important; }
  #root [style*="font-size: 40px"] { font-size: 32px !important; }
  #root [style*="font-size: 34px"] { font-size: 29px !important; }
  #root [style*="font-size: 30px"] { font-size: 26px !important; }

  #root [style*="grid-template-columns: 1fr 1fr 1.2fr"] {
    grid-template-columns: 1fr !important;
  }

  #root [style*="grid-template-columns: 1fr 1fr 1.2fr"] > div {
    padding: 16px !important;
  }

  #root [style*="grid-template-columns: 90px 1fr"],
  #root [style*="grid-template-columns: 120px 1fr"],
  #root [style*="grid-template-columns: 140px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  #root [style*="padding: 32px 24px"],
  #root [style*="padding: 32px"],
  #root [style*="padding: 28px"],
  #root [style*="padding: 24px 20px"],
  #root [style*="padding: 24px"] {
    padding: 20px 16px !important;
  }

  #root [style*="max-width: 890"],
  #root [style*="max-width: 900"],
  #root [style*="max-width: 860"],
  #root [style*="max-width: 760"] {
    max-width: 100% !important;
  }

  #root [style*="display: flex"][style*="flex-wrap: wrap"] {
    gap: 10px !important;
  }
}

@media (max-width: 430px) {
  .phz-performance-line {
    font-size: clamp(30px, 9.35vw, 40px) !important;
    letter-spacing: 0 !important;
  }
}

/* ─── V17 ROBUST SCIENCE + ABOUT PAGES ───────────────────────────────────── */
.phz-info-page {
  background: #080808;
  color: #F5F0E8;
  padding-top: 72px;
  overflow-x: hidden;
}

.phz-info-page * {
  box-sizing: border-box;
}

.phz-info-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phz-info-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 104px 0 82px;
  overflow: hidden;
  border-bottom: 1px solid rgba(42,211,234,0.10);
}

.phz-info-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 211, 234, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 211, 234, 0.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 65% 30%, black 0%, transparent 72%);
  opacity: 0.75;
  pointer-events: none;
}

.phz-info-hero-science {
  background:
    radial-gradient(circle at 78% 18%, rgba(42,211,234,0.17), transparent 33%),
    radial-gradient(circle at 14% 78%, rgba(255,215,0,0.10), transparent 34%),
    linear-gradient(180deg, #080808 0%, #101010 100%);
}

.phz-info-hero-about {
  background:
    radial-gradient(circle at 82% 18%, rgba(42,211,234,0.14), transparent 34%),
    radial-gradient(circle at 16% 76%, rgba(255,215,0,0.11), transparent 34%),
    linear-gradient(180deg, #080808 0%, #111 100%);
}

.phz-info-noise {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent, rgba(0,0,0,0.38));
  pointer-events: none;
}

.phz-info-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 64px;
  align-items: center;
}

.phz-info-title {
  font-family: var(--font-display);
  font-size: clamp(58px, 8.5vw, 116px);
  line-height: 0.86;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #F5F0E8;
  margin: 0;
  max-width: 980px;
}

.phz-info-title span,
.phz-info-subtitle span,
.phz-section-heading h2 span,
.phz-offer-card h2 span,
.phz-manifesto-long h2 span {
  color: #2ad3ea;
}

.phz-info-lead {
  max-width: 900px;
  margin: 30px 0 0;
  font-size: 19px;
  line-height: 1.9;
  color: rgba(245,240,232,0.64);
  font-weight: 300;
}

.phz-info-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.phz-quote-stack {
  display: grid;
  gap: 16px;
}

.phz-quote-card,
.phz-manifesto-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(42,211,234,0.13);
  background:
    radial-gradient(circle at top right, rgba(42,211,234,0.10), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: 0 28px 90px rgba(0,0,0,0.32);
}

.phz-quote-card.cyan { border-color: rgba(42,211,234,0.34); }
.phz-quote-card.gold { border-color: rgba(255,215,0,0.22); }

.phz-quote-card span,
.phz-manifesto-card span {
  display: block;
  font-family: var(--font-mono);
  color: #2ad3ea;
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.phz-quote-card.gold span { color: #FFD700; }

.phz-quote-card p,
.phz-manifesto-card p {
  margin: 0;
  color: rgba(245,240,232,0.70);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

.phz-manifesto-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.phz-manifesto-card p {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: 0.045em;
  color: #F5F0E8;
}

.phz-info-section {
  position: relative;
  padding: 96px 0;
  background: #080808;
}

.phz-dark-panel-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(42,211,234,0.08), transparent 36%),
    linear-gradient(180deg, #080808, #101010 48%, #080808);
  border-top: 1px solid rgba(42,211,234,0.08);
  border-bottom: 1px solid rgba(42,211,234,0.08);
}

.phz-section-heading {
  max-width: 860px;
  margin-bottom: 46px;
}

.phz-section-heading h2,
.phz-info-subtitle,
.phz-offer-card h2,
.phz-manifesto-long h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 86px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #F5F0E8;
  margin: 0 0 24px;
}

.phz-section-heading p,
.phz-copy,
.phz-copy-large {
  color: rgba(245,240,232,0.60);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
  margin: 0;
}

.phz-copy-large {
  font-size: 20px;
  line-height: 1.9;
  color: rgba(245,240,232,0.72);
  margin-bottom: 26px;
}

.phz-pillar-grid,
.phz-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.phz-pillar-card,
.phz-value-card {
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(42,211,234,0.11);
  background:
    radial-gradient(circle at top right, rgba(42,211,234,0.09), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.018));
}

.phz-card-number {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #2ad3ea;
  margin-bottom: 22px;
}

.phz-card-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,215,0,0.72);
  margin-bottom: 16px;
}

.phz-pillar-card h3,
.phz-value-card h3,
.phz-proof-card h3,
.phz-foundation-card h3,
.phz-audience-card h3,
.phz-journey-item h3,
.phz-small-offer-card h3,
.phz-faq-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: #F5F0E8;
  letter-spacing: 0.045em;
  line-height: 0.95;
  margin: 0 0 16px;
}

.phz-pillar-card h3,
.phz-value-card h3 { font-size: 36px; }
.phz-proof-card h3,
.phz-foundation-card h3,
.phz-audience-card h3,
.phz-journey-item h3,
.phz-small-offer-card h3,
.phz-faq-card h3 { font-size: 34px; }

.phz-pillar-card p,
.phz-value-card p,
.phz-proof-card p,
.phz-foundation-card p,
.phz-audience-card p,
.phz-journey-item p,
.phz-small-offer-card p,
.phz-faq-card p,
.phz-method-card p {
  color: rgba(245,240,232,0.58);
  font-size: 14.5px;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
}

.phz-pillar-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
}

.phz-pillar-card li {
  position: relative;
  color: rgba(245,240,232,0.50);
  font-size: 12px;
  line-height: 1.55;
  padding-left: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.phz-pillar-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ad3ea;
  box-shadow: 0 0 16px rgba(42,211,234,0.45);
}

.phz-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}

.phz-proof-grid,
.phz-foundation-grid {
  display: grid;
  gap: 14px;
}

.phz-proof-card,
.phz-foundation-card,
.phz-journey-item,
.phz-small-offer-card,
.phz-faq-card {
  border: 1px solid rgba(42,211,234,0.10);
  background: rgba(255,255,255,0.035);
  padding: 26px;
}

.phz-proof-card span,
.phz-foundation-card span,
.phz-audience-card span,
.phz-journey-item span {
  display: block;
  font-family: var(--font-mono);
  color: #2ad3ea;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.phz-method-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(42,211,234,0.08);
  background: rgba(42,211,234,0.08);
}

.phz-method-card {
  position: relative;
  min-height: 390px;
  padding: 30px;
  background: #0d0d0d;
}

.phz-method-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(42,211,234,0.30);
  color: #2ad3ea;
  font-family: var(--font-mono);
  font-size: 12px;
  margin-bottom: 30px;
}

.phz-method-card h3 {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: 0.045em;
  font-weight: 400;
  color: #F5F0E8;
  margin: 0 0 18px;
}

.phz-method-card strong {
  display: block;
  margin-top: 22px;
  color: rgba(42,211,234,0.80);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.phz-matrix-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(42,211,234,0.06), transparent 42%),
    #080808;
}

.phz-frequency-table {
  display: grid;
  border: 1px solid rgba(42,211,234,0.12);
}

.phz-frequency-row {
  display: grid;
  grid-template-columns: 58px minmax(180px, 0.8fr) minmax(260px, 1.3fr) minmax(220px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border-bottom: 1px solid rgba(42,211,234,0.09);
  background: rgba(255,255,255,0.025);
}

.phz-frequency-row:last-child { border-bottom: none; }

.phz-row-index {
  font-family: var(--font-mono);
  color: rgba(42,211,234,0.90);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.phz-row-name {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: 0.045em;
  color: #F5F0E8;
}

.phz-row-copy strong {
  display: block;
  color: #F5F0E8;
  font-size: 15px;
  margin-bottom: 8px;
}

.phz-row-copy span,
.phz-row-use {
  display: block;
  color: rgba(245,240,232,0.55);
  font-size: 14px;
  line-height: 1.72;
}

.phz-offer-section {
  padding-top: 58px;
}

.phz-offer-card {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(42,211,234,0.32);
  background:
    radial-gradient(circle at 90% 0%, rgba(42,211,234,0.18), transparent 36%),
    linear-gradient(180deg, rgba(42,211,234,0.08), rgba(255,255,255,0.025));
}

.phz-offer-card p {
  max-width: 720px;
  color: rgba(245,240,232,0.62);
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}

.phz-offer-price {
  border: 1px solid rgba(42,211,234,0.18);
  background: rgba(8,8,8,0.58);
  padding: 24px;
  text-align: center;
}

.phz-was-price {
  display: block;
  position: relative;
  width: max-content;
  margin: 0 auto 4px;
  color: rgba(245,240,232,0.38);
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.04em;
}

.phz-was-price::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: 50%;
  height: 2px;
  background: rgba(255,90,90,0.8);
  transform: rotate(-8deg);
}

.phz-offer-price strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 76px;
  line-height: 1;
  color: #2ad3ea;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.phz-offer-price .btn-gold {
  width: 100%;
  justify-content: center;
}

.phz-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.phz-disclaimer {
  color: rgba(245,240,232,0.38);
  font-size: 12px;
  line-height: 1.75;
  margin: 42px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(42,211,234,0.09);
}

.phz-values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.phz-value-card {
  min-height: 310px;
}

.phz-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.phz-audience-card {
  min-height: 350px;
  padding: 32px;
  border: 1px solid rgba(42,211,234,0.11);
  background:
    radial-gradient(circle at top right, rgba(42,211,234,0.08), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.014));
}

.phz-audience-card strong {
  display: block;
  color: rgba(42,211,234,0.78);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.phz-journey-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(255,215,0,0.07), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(42,211,234,0.08), transparent 34%),
    #0b0b0b;
}

.phz-journey-list {
  display: grid;
  gap: 14px;
}

.phz-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.phz-small-offer-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #2ad3ea;
  font-weight: 400;
  margin: 12px 0 14px;
}

.phz-manifesto-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(42,211,234,0.10), transparent 34%),
    linear-gradient(180deg, #080808, #101010);
}

.phz-manifesto-long {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px;
  border: 1px solid rgba(42,211,234,0.18);
  background:
    radial-gradient(circle at top right, rgba(42,211,234,0.12), transparent 38%),
    rgba(255,255,255,0.035);
}

.phz-manifesto-long p {
  color: rgba(245,240,232,0.68);
  font-size: 18px;
  line-height: 1.95;
  font-weight: 300;
  margin: 0 0 24px;
}

.phz-manifesto-long .btn-gold {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .phz-info-hero-grid,
  .phz-two-col,
  .phz-offer-card {
    grid-template-columns: 1fr;
  }

  .phz-pillar-grid,
  .phz-method-timeline,
  .phz-offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phz-values-grid,
  .phz-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phz-offer-price {
    width: min(100%, 360px);
  }
}

@media (max-width: 820px) {
  .phz-info-page {
    padding-top: 64px;
  }

  .phz-info-wrap {
    width: min(100% - 28px, 1180px);
  }

  .phz-info-hero {
    min-height: auto;
    padding: 84px 0 62px;
  }

  .phz-info-title {
    font-size: clamp(54px, 16vw, 86px);
    line-height: 0.88;
    word-break: normal;
    overflow-wrap: normal;
  }

  .phz-info-lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .phz-info-actions,
  .phz-info-actions .btn-gold,
  .phz-info-actions .btn-outline {
    width: 100%;
  }

  .phz-info-actions .btn-gold,
  .phz-info-actions .btn-outline {
    justify-content: center;
  }

  .phz-info-section {
    padding: 72px 0;
  }

  .phz-section-heading {
    margin-bottom: 32px;
  }

  .phz-section-heading h2,
  .phz-info-subtitle,
  .phz-offer-card h2,
  .phz-manifesto-long h2 {
    font-size: clamp(44px, 14vw, 68px);
    line-height: 0.9;
  }

  .phz-pillar-grid,
  .phz-method-timeline,
  .phz-values-grid,
  .phz-audience-grid,
  .phz-offer-grid,
  .phz-faq-grid {
    grid-template-columns: 1fr;
  }

  .phz-pillar-card,
  .phz-method-card,
  .phz-value-card,
  .phz-audience-card {
    min-height: auto;
    padding: 24px;
  }

  .phz-frequency-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  .phz-row-name {
    font-size: 36px;
  }

  .phz-offer-card {
    padding: 26px;
  }

  .phz-offer-price {
    width: 100%;
  }

  .phz-manifesto-long {
    padding: 28px;
  }

  .phz-manifesto-long p {
    font-size: 16px;
    line-height: 1.85;
  }
}

@media (max-width: 480px) {
  .phz-info-title {
    font-size: clamp(48px, 17vw, 72px);
  }

  .phz-quote-card,
  .phz-manifesto-card,
  .phz-proof-card,
  .phz-foundation-card,
  .phz-journey-item,
  .phz-small-offer-card,
  .phz-faq-card {
    padding: 22px;
  }

  .phz-pillar-card h3,
  .phz-value-card h3,
  .phz-proof-card h3,
  .phz-foundation-card h3,
  .phz-audience-card h3,
  .phz-journey-item h3,
  .phz-small-offer-card h3,
  .phz-faq-card h3 {
    font-size: 32px;
  }

  .phz-method-card h3 {
    font-size: 36px;
  }

  .phz-offer-price strong {
    font-size: 64px;
  }

  .phz-copy-large {
    font-size: 18px;
  }
}


/* ──────────────────────────────────────────────────────────────
   PRIMAL HZ V21 — Premium information-page alignment stabilizer
   Purpose: prevent content overlap, stop incomplete word wrapping, and
   keep Science/About hero statements as clean intentional lines.
────────────────────────────────────────────────────────────── */
#root .phz-info-rich,
#root .phz-info-rich * {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  min-width: 0 !important;
}

#root .phz-info-rich {
  overflow-x: clip !important;
}

#root .phz-info-rich .hero {
  overflow: visible !important;
  min-height: auto !important;
  padding-top: 150px !important;
  padding-bottom: 108px !important;
}

#root .phz-info-rich .hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 44px !important;
  align-items: start !important;
}

#root .phz-info-rich .hero-grid > div:first-child {
  max-width: 1080px !important;
  width: 100% !important;
}

#root .phz-info-rich h1,
#root .phz-info-rich .hero-title {
  max-width: 1080px !important;
  font-size: clamp(56px, 6.8vw, 104px) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.04em !important;
  text-wrap: balance !important;
}

#root .phz-info-rich .title-line {
  display: block !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

#root .phz-info-rich .lead {
  max-width: 880px !important;
}

#root .phz-info-rich .quote-stack {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
  margin-top: 10px !important;
  position: relative !important;
  z-index: 2 !important;
}

#root .phz-info-rich .quote-card,
#root .phz-info-rich .card,
#root .phz-info-rich .callout,
#root .phz-info-rich .profile-side,
#root .phz-info-rich .step,
#root .phz-info-rich .stat,
#root .phz-info-rich .final {
  overflow: visible !important;
}

#root .phz-info-rich .profile-side {
  position: relative !important;
  top: auto !important;
}

#root .phz-info-rich .section,
#root .phz-info-rich .section.alt {
  overflow: visible !important;
}

#root .phz-info-rich .grid-2,
#root .phz-info-rich .grid-3,
#root .phz-info-rich .grid-4,
#root .phz-info-rich .profile,
#root .phz-info-rich .steps {
  align-items: stretch !important;
}

#root .phz-info-rich .grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

#root .phz-info-rich .stat strong,
#root .phz-info-rich .tags span,
#root .phz-info-rich .num,
#root .phz-info-rich .kicker,
#root .phz-info-rich th,
#root .phz-info-rich td:first-child {
  white-space: nowrap !important;
}

#root .phz-info-rich .stat strong {
  font-size: clamp(42px, 4.4vw, 72px) !important;
  line-height: 0.95 !important;
}

#root .phz-info-rich .table-wrap {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  max-width: 100% !important;
}

#root .phz-info-rich table {
  min-width: 1080px !important;
}

#root .phz-info-rich td,
#root .phz-info-rich th {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

@media (min-width: 981px) {
  #root .phz-science-rich .hero .quote-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  #root .phz-about-rich .hero .quote-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  #root .phz-info-rich .hero {
    padding-top: 128px !important;
    padding-bottom: 84px !important;
  }

  #root .phz-info-rich .hero-grid {
    gap: 34px !important;
  }

  #root .phz-info-rich .quote-stack {
    grid-template-columns: 1fr !important;
  }

  #root .phz-info-rich .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  #root .phz-info-rich .hero {
    padding-top: 108px !important;
    padding-bottom: 64px !important;
  }

  #root .phz-info-rich h1,
  #root .phz-info-rich .hero-title {
    font-size: clamp(34px, 9.25vw, 58px) !important;
    line-height: 0.94 !important;
    letter-spacing: 0.03em !important;
  }

  #root .phz-about-rich h1,
  #root .phz-about-rich .hero-title {
    font-size: clamp(30px, 8.2vw, 52px) !important;
    line-height: 0.95 !important;
    letter-spacing: 0.026em !important;
  }

  #root .phz-info-rich .title-line {
    white-space: nowrap !important;
    display: block !important;
  }

  #root .phz-info-rich .section-head h2,
  #root .phz-info-rich .callout h3,
  #root .phz-info-rich .final h2 {
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    text-wrap: balance !important;
  }

  #root .phz-info-rich .grid-4,
  #root .phz-info-rich .grid-3,
  #root .phz-info-rich .grid-2 {
    grid-template-columns: 1fr !important;
  }

  #root .phz-info-rich .stat strong {
    font-size: clamp(40px, 13vw, 62px) !important;
    white-space: nowrap !important;
  }

  #root .phz-info-rich .card h3,
  #root .phz-info-rich .profile-side h3,
  #root .phz-info-rich .step h3 {
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 390px) {
  #root .phz-science-rich h1,
  #root .phz-science-rich .hero-title {
    font-size: clamp(30px, 8.65vw, 42px) !important;
  }

  #root .phz-about-rich h1,
  #root .phz-about-rich .hero-title {
    font-size: clamp(25px, 7.5vw, 36px) !important;
  }
}


/* ──────────────────────────────────────────────────────────────
   PRIMAL HZ V22 — Final premium balance pass
   Goal: stabilize Science/About containers, prevent overlap,
   preserve complete words, and create a more editorial premium flow.
────────────────────────────────────────────────────────────── */
#root .phz-info-rich {
  --phz-container: 1120px;
  --phz-wide: 1220px;
  --phz-narrow: 900px;
  overflow-x: clip !important;
  isolation: isolate !important;
}

#root .phz-info-rich,
#root .phz-info-rich * {
  box-sizing: border-box !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

#root .phz-info-rich .wrap {
  width: min(var(--phz-container), calc(100% - 64px)) !important;
  max-width: var(--phz-container) !important;
  margin-inline: auto !important;
  position: relative !important;
  z-index: 2 !important;
}

#root .phz-info-rich .hero .wrap,
#root .phz-info-rich .final .wrap {
  width: min(var(--phz-wide), calc(100% - 72px)) !important;
  max-width: var(--phz-wide) !important;
}

#root .phz-info-rich .hero {
  overflow: hidden !important;
  min-height: auto !important;
  padding: 156px 0 118px !important;
  display: block !important;
}

#root .phz-info-rich .hero::before {
  z-index: 0 !important;
  pointer-events: none !important;
}

#root .phz-info-rich .hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr) !important;
  gap: clamp(34px, 4.4vw, 74px) !important;
  align-items: center !important;
  position: relative !important;
  z-index: 2 !important;
}

#root .phz-info-rich .hero-grid > * {
  min-width: 0 !important;
  position: relative !important;
}

#root .phz-info-rich .hero-grid > div:first-child {
  max-width: 760px !important;
  width: 100% !important;
}

#root .phz-info-rich .hero-title,
#root .phz-info-rich h1 {
  max-width: 760px !important;
  font-size: clamp(60px, 6.35vw, 104px) !important;
  line-height: 0.89 !important;
  letter-spacing: 0.045em !important;
  text-wrap: balance !important;
  margin: 0 !important;
}

#root .phz-info-rich .title-line {
  display: block !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

#root .phz-info-rich .lead {
  max-width: 680px !important;
  font-size: clamp(16px, 1.25vw, 19px) !important;
  line-height: 1.78 !important;
  text-wrap: pretty !important;
}

#root .phz-info-rich .quote-stack {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 440px !important;
  justify-self: end !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 3 !important;
}

#root .phz-info-rich .quote-card {
  position: relative !important;
  min-height: auto !important;
  padding: clamp(20px, 2.4vw, 28px) !important;
  overflow: hidden !important;
}

#root .phz-info-rich .quote-card p {
  font-size: clamp(15px, 1.15vw, 18px) !important;
  line-height: 1.62 !important;
  text-wrap: pretty !important;
}

#root .phz-info-rich .quote-card span {
  display: block !important;
  margin-top: 14px !important;
}

#root .phz-info-rich .section {
  overflow: hidden !important;
  padding: clamp(84px, 8vw, 132px) 0 !important;
  position: relative !important;
}

#root .phz-info-rich .section.alt {
  overflow: hidden !important;
}

#root .phz-info-rich .section-head {
  max-width: var(--phz-narrow) !important;
  margin-bottom: clamp(38px, 4vw, 58px) !important;
}

#root .phz-info-rich .section-head.center {
  max-width: 960px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

#root .phz-info-rich .section-head h2,
#root .phz-info-rich .final h2,
#root .phz-info-rich .callout h3 {
  font-size: clamp(48px, 5.8vw, 92px) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.045em !important;
  max-width: 980px !important;
  text-wrap: balance !important;
}

#root .phz-info-rich .section-head.center h2,
#root .phz-info-rich .section-head.center p {
  margin-left: auto !important;
  margin-right: auto !important;
}

#root .phz-info-rich .section-head p,
#root .phz-info-rich .copy,
#root .phz-info-rich .callout p,
#root .phz-info-rich .manifesto p,
#root .phz-info-rich .final p {
  max-width: 860px !important;
  font-size: clamp(15.5px, 1.15vw, 18px) !important;
  line-height: 1.78 !important;
  text-wrap: pretty !important;
}

#root .phz-info-rich .grid-2,
#root .phz-info-rich .grid-3,
#root .phz-info-rich .grid-4,
#root .phz-info-rich .steps {
  display: grid !important;
  gap: clamp(18px, 2vw, 26px) !important;
  align-items: stretch !important;
}

#root .phz-info-rich .grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

#root .phz-info-rich .grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

#root .phz-info-rich .grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

#root .phz-info-rich .steps {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

#root .phz-info-rich .profile {
  display: grid !important;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr) !important;
  gap: clamp(28px, 4vw, 58px) !important;
  align-items: start !important;
}

#root .phz-info-rich .profile-side {
  position: sticky !important;
  top: 104px !important;
  align-self: start !important;
  overflow: hidden !important;
}

#root .phz-info-rich .card,
#root .phz-info-rich .step,
#root .phz-info-rich .stat,
#root .phz-info-rich .callout,
#root .phz-info-rich .profile-side,
#root .phz-info-rich .final {
  padding: clamp(22px, 2.4vw, 34px) !important;
  overflow: hidden !important;
  min-width: 0 !important;
}

#root .phz-info-rich .card h3,
#root .phz-info-rich .step h3,
#root .phz-info-rich .profile-side h3 {
  font-size: clamp(30px, 3.1vw, 48px) !important;
  line-height: 0.98 !important;
  text-wrap: balance !important;
  max-width: 100% !important;
}

#root .phz-info-rich .card p,
#root .phz-info-rich .step p,
#root .phz-info-rich .profile-side p,
#root .phz-info-rich li,
#root .phz-info-rich td {
  font-size: clamp(14px, 1vw, 16px) !important;
  line-height: 1.68 !important;
  text-wrap: pretty !important;
}

#root .phz-info-rich .tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  max-width: 100% !important;
}

#root .phz-info-rich .tags span,
#root .phz-info-rich .num,
#root .phz-info-rich .kicker,
#root .phz-info-rich th,
#root .phz-info-rich td:first-child,
#root .phz-info-rich .stat strong {
  white-space: nowrap !important;
}

#root .phz-info-rich .stat {
  min-height: 170px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

#root .phz-info-rich .stat strong {
  display: block !important;
  font-size: clamp(42px, 4.1vw, 68px) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.04em !important;
}

#root .phz-info-rich .stat span {
  display: block !important;
  max-width: 100% !important;
  line-height: 1.5 !important;
}

#root .phz-info-rich .table-wrap {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  border: 1px solid rgba(42,211,234,0.16) !important;
  background: rgba(255,255,255,0.018) !important;
}

#root .phz-info-rich table {
  min-width: 1060px !important;
  width: 100% !important;
  border-collapse: collapse !important;
}

#root .phz-info-rich th,
#root .phz-info-rich td {
  vertical-align: top !important;
}

#root .phz-info-rich .final {
  max-width: 1060px !important;
  margin-inline: auto !important;
  text-align: center !important;
}

#root .phz-info-rich .final .actions {
  justify-content: center !important;
}

#root .phz-info-rich .disclaimer {
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
  color: rgba(245,240,232,0.42) !important;
}

@media (min-width: 1280px) {
  #root .phz-info-rich .hero-grid {
    grid-template-columns: minmax(0, 760px) minmax(340px, 440px) !important;
    justify-content: space-between !important;
  }
}

@media (max-width: 1120px) {
  #root .phz-info-rich .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  #root .phz-info-rich .hero-grid > div:first-child,
  #root .phz-info-rich .hero-title,
  #root .phz-info-rich h1,
  #root .phz-info-rich .lead {
    max-width: 880px !important;
  }

  #root .phz-info-rich .quote-stack {
    max-width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    justify-self: stretch !important;
  }

  #root .phz-about-rich .quote-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #root .phz-info-rich .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #root .phz-info-rich .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  #root .phz-info-rich .wrap,
  #root .phz-info-rich .hero .wrap,
  #root .phz-info-rich .final .wrap {
    width: min(100% - 40px, 760px) !important;
    max-width: 760px !important;
  }

  #root .phz-info-rich .hero {
    padding-top: 126px !important;
    padding-bottom: 82px !important;
  }

  #root .phz-info-rich .quote-stack,
  #root .phz-about-rich .quote-stack,
  #root .phz-info-rich .grid-2,
  #root .phz-info-rich .grid-3,
  #root .phz-info-rich .profile {
    grid-template-columns: 1fr !important;
  }

  #root .phz-info-rich .profile-side {
    position: relative !important;
    top: auto !important;
  }

  #root .phz-info-rich .section-head h2,
  #root .phz-info-rich .final h2,
  #root .phz-info-rich .callout h3 {
    font-size: clamp(42px, 8.2vw, 72px) !important;
  }
}

@media (max-width: 680px) {
  #root .phz-info-rich .wrap,
  #root .phz-info-rich .hero .wrap,
  #root .phz-info-rich .final .wrap {
    width: min(100% - 28px, 560px) !important;
    max-width: 560px !important;
  }

  #root .phz-info-rich .hero {
    padding-top: 110px !important;
    padding-bottom: 66px !important;
  }

  #root .phz-info-rich .hero-title,
  #root .phz-info-rich h1 {
    font-size: clamp(33px, 9.2vw, 56px) !important;
    line-height: 0.96 !important;
    letter-spacing: 0.03em !important;
    max-width: 100% !important;
  }

  #root .phz-about-rich .hero-title,
  #root .phz-about-rich h1 {
    font-size: clamp(27px, 7.6vw, 46px) !important;
  }

  #root .phz-info-rich .title-line {
    white-space: nowrap !important;
    max-width: 100% !important;
  }

  #root .phz-info-rich .lead {
    font-size: 15.5px !important;
    line-height: 1.72 !important;
    margin-top: 22px !important;
  }

  #root .phz-info-rich .actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #root .phz-info-rich .btn,
  #root .phz-info-rich button.btn,
  #root .phz-info-rich a.btn {
    width: 100% !important;
    justify-content: center !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    text-align: center !important;
  }

  #root .phz-info-rich .section {
    padding: 72px 0 !important;
  }

  #root .phz-info-rich .section-head {
    margin-bottom: 32px !important;
  }

  #root .phz-info-rich .section-head h2,
  #root .phz-info-rich .final h2,
  #root .phz-info-rich .callout h3 {
    font-size: clamp(36px, 11.5vw, 56px) !important;
    line-height: 0.96 !important;
  }

  #root .phz-info-rich .card,
  #root .phz-info-rich .step,
  #root .phz-info-rich .stat,
  #root .phz-info-rich .callout,
  #root .phz-info-rich .profile-side,
  #root .phz-info-rich .quote-card,
  #root .phz-info-rich .final {
    padding: 22px !important;
  }

  #root .phz-info-rich .card h3,
  #root .phz-info-rich .step h3,
  #root .phz-info-rich .profile-side h3 {
    font-size: clamp(28px, 9vw, 40px) !important;
    line-height: 1 !important;
  }

  #root .phz-info-rich .grid-4,
  #root .phz-info-rich .steps {
    grid-template-columns: 1fr !important;
  }

  #root .phz-info-rich .stat {
    min-height: auto !important;
  }

  #root .phz-info-rich .stat strong {
    font-size: clamp(38px, 13vw, 58px) !important;
  }

  #root .phz-info-rich .tags span {
    white-space: normal !important;
  }

  #root .phz-info-rich table {
    min-width: 980px !important;
  }
}

@media (max-width: 390px) {
  #root .phz-info-rich .wrap,
  #root .phz-info-rich .hero .wrap,
  #root .phz-info-rich .final .wrap {
    width: calc(100% - 24px) !important;
  }

  #root .phz-science-rich .hero-title,
  #root .phz-science-rich h1 {
    font-size: clamp(29px, 8.5vw, 38px) !important;
    letter-spacing: 0.025em !important;
  }

  #root .phz-about-rich .hero-title,
  #root .phz-about-rich h1 {
    font-size: clamp(24px, 7vw, 34px) !important;
    letter-spacing: 0.022em !important;
  }

  #root .phz-info-rich .section-head h2,
  #root .phz-info-rich .final h2,
  #root .phz-info-rich .callout h3 {
    font-size: clamp(32px, 10vw, 46px) !important;
  }
}


/* --------------------------------------------------------------------------
   V23 PREMIUM INFORMATION PAGE LAYOUT FIX
   Fixes: hero overlap, narrow quote columns, clipped display words, grid balance,
   and mobile/tablet readability across Science and About pages.
-------------------------------------------------------------------------- */
#root .phz-info-rich,
#root .phz-info-rich * {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

#root .phz-info-rich .wrap,
#root .phz-info-rich .hero .wrap,
#root .phz-info-rich .final .wrap {
  width: min(100% - 64px, 1180px) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#root .phz-info-rich .hero {
  min-height: auto !important;
  padding-top: clamp(132px, 11vw, 182px) !important;
  padding-bottom: clamp(76px, 8vw, 116px) !important;
}

#root .phz-info-rich .hero-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(34px, 4.6vw, 58px) !important;
  align-items: start !important;
  max-width: 1180px !important;
}

#root .phz-info-rich .hero-grid > div:first-child {
  max-width: 1080px !important;
  min-width: 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

#root .phz-info-rich h1.hero-title,
#root .phz-info-rich .hero-title,
#root .phz-info-rich h1 {
  max-width: 1120px !important;
  font-size: clamp(58px, 7.35vw, 118px) !important;
  line-height: 0.88 !important;
  letter-spacing: 0.04em !important;
  position: relative !important;
  z-index: 3 !important;
}

#root .phz-about-rich h1.hero-title,
#root .phz-about-rich .hero-title,
#root .phz-about-rich h1 {
  max-width: 1120px !important;
  font-size: clamp(54px, 6.85vw, 108px) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.038em !important;
}

#root .phz-info-rich .title-line {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  white-space: nowrap !important;
}

#root .phz-info-rich .lead {
  max-width: 820px !important;
  font-size: clamp(16px, 1.35vw, 19px) !important;
  line-height: 1.78 !important;
}

#root .phz-info-rich .quote-stack,
#root .phz-about-rich .quote-stack {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)) !important;
  gap: clamp(16px, 2vw, 24px) !important;
  width: 100% !important;
  max-width: 1180px !important;
  justify-self: stretch !important;
  align-items: stretch !important;
}

#root .phz-about-rich .quote-stack {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)) !important;
  max-width: 920px !important;
}

#root .phz-info-rich .quote-card {
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  padding: clamp(22px, 2.2vw, 30px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  overflow: hidden !important;
}

#root .phz-info-rich .quote-card p {
  font-size: clamp(16px, 1.35vw, 20px) !important;
  line-height: 1.55 !important;
  max-width: 100% !important;
  text-wrap: pretty !important;
}

#root .phz-info-rich .quote-card span {
  margin-top: auto !important;
  padding-top: 12px !important;
}

#root .phz-info-rich .callout {
  overflow: hidden !important;
}

#root .phz-info-rich .callout h3,
#root .phz-info-rich .section-head h2,
#root .phz-info-rich .final h2 {
  max-width: 1060px !important;
  font-size: clamp(46px, 5.75vw, 92px) !important;
  line-height: 0.94 !important;
  letter-spacing: 0.04em !important;
}

#root .phz-info-rich .grid-2,
#root .phz-info-rich .grid-3,
#root .phz-info-rich .grid-4,
#root .phz-info-rich .steps {
  width: 100% !important;
  min-width: 0 !important;
}

#root .phz-info-rich .grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)) !important;
}

#root .phz-info-rich .grid-4 .card {
  min-height: 178px !important;
}

#root .phz-info-rich .grid-4 .card h3 {
  font-size: clamp(30px, 2.55vw, 40px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0.032em !important;
  white-space: nowrap !important;
  max-width: 100% !important;
}

#root .phz-info-rich .card,
#root .phz-info-rich .stat,
#root .phz-info-rich .step,
#root .phz-info-rich .profile-side,
#root .phz-info-rich .final {
  min-width: 0 !important;
}

#root .phz-info-rich .card h3,
#root .phz-info-rich .step h3,
#root .phz-info-rich .profile-side h3 {
  overflow: visible !important;
}

#root .phz-info-rich .profile {
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr) !important;
  gap: clamp(28px, 4.2vw, 60px) !important;
}

#root .phz-info-rich .profile-side {
  position: sticky !important;
  top: 104px !important;
  max-width: 390px !important;
}

#root .phz-info-rich .profile-side h3 {
  font-size: clamp(38px, 4vw, 62px) !important;
  line-height: 0.96 !important;
}

#root .phz-info-rich .table-wrap {
  max-width: 100% !important;
  overflow-x: auto !important;
}

@media (max-width: 1180px) {
  #root .phz-info-rich .wrap,
  #root .phz-info-rich .hero .wrap,
  #root .phz-info-rich .final .wrap {
    width: min(100% - 48px, 980px) !important;
    max-width: 980px !important;
  }

  #root .phz-info-rich h1.hero-title,
  #root .phz-info-rich .hero-title,
  #root .phz-info-rich h1 {
    font-size: clamp(52px, 8.2vw, 94px) !important;
  }

  #root .phz-info-rich .profile {
    grid-template-columns: 1fr !important;
  }

  #root .phz-info-rich .profile-side {
    position: relative !important;
    top: auto !important;
    max-width: 100% !important;
  }
}

@media (max-width: 900px) {
  #root .phz-info-rich .wrap,
  #root .phz-info-rich .hero .wrap,
  #root .phz-info-rich .final .wrap {
    width: min(100% - 36px, 720px) !important;
    max-width: 720px !important;
  }

  #root .phz-info-rich .hero {
    padding-top: 118px !important;
    padding-bottom: 74px !important;
  }

  #root .phz-info-rich .quote-stack,
  #root .phz-about-rich .quote-stack {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
  }

  #root .phz-info-rich .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #root .phz-info-rich .grid-4 .card h3 {
    font-size: clamp(30px, 5.8vw, 42px) !important;
  }
}

@media (max-width: 680px) {
  #root .phz-info-rich .wrap,
  #root .phz-info-rich .hero .wrap,
  #root .phz-info-rich .final .wrap {
    width: calc(100% - 28px) !important;
    max-width: 560px !important;
  }

  #root .phz-info-rich .hero {
    padding-top: 104px !important;
    padding-bottom: 62px !important;
  }

  #root .phz-info-rich h1.hero-title,
  #root .phz-info-rich .hero-title,
  #root .phz-info-rich h1 {
    font-size: clamp(33px, 10.1vw, 54px) !important;
    line-height: 0.96 !important;
    letter-spacing: 0.028em !important;
  }

  #root .phz-about-rich h1.hero-title,
  #root .phz-about-rich .hero-title,
  #root .phz-about-rich h1 {
    font-size: clamp(31px, 9.1vw, 50px) !important;
  }

  #root .phz-info-rich .section-head h2,
  #root .phz-info-rich .callout h3,
  #root .phz-info-rich .final h2 {
    font-size: clamp(35px, 11.8vw, 56px) !important;
    line-height: 0.98 !important;
  }

  #root .phz-info-rich .grid-4,
  #root .phz-info-rich .grid-3,
  #root .phz-info-rich .grid-2,
  #root .phz-info-rich .steps {
    grid-template-columns: 1fr !important;
  }

  #root .phz-info-rich .grid-4 .card h3 {
    white-space: normal !important;
    font-size: clamp(32px, 10vw, 44px) !important;
  }

  #root .phz-info-rich .quote-card p {
    font-size: 16px !important;
    line-height: 1.62 !important;
  }
}

@media (max-width: 420px) {
  #root .phz-info-rich .title-line {
    white-space: normal !important;
  }

  #root .phz-info-rich h1.hero-title,
  #root .phz-info-rich .hero-title,
  #root .phz-info-rich h1 {
    font-size: clamp(30px, 9.2vw, 42px) !important;
  }

  #root .phz-info-rich .section-head h2,
  #root .phz-info-rich .callout h3,
  #root .phz-info-rich .final h2 {
    font-size: clamp(32px, 10.4vw, 46px) !important;
  }
}


/* ================================
   V24 — Science/About layout repair
   Fixes: step cards showing as empty columns, clipped stat words,
   oversized text inside containers, and container balance.
   ================================ */
#root .phz-info-rich .grid-2 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  align-items: stretch !important;
}

#root .phz-info-rich .steps {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  align-items: stretch !important;
  width: 100% !important;
}

#root .phz-info-rich .step {
  display: grid !important;
  grid-template-columns: 62px minmax(0, 1fr) !important;
  min-height: auto !important;
  height: auto !important;
  padding: 18px 20px !important;
  gap: 16px !important;
  align-items: start !important;
  overflow: visible !important;
}

#root .phz-info-rich .step::before {
  font-size: clamp(42px, 3.2vw, 56px) !important;
  line-height: 0.9 !important;
  align-self: start !important;
}

#root .phz-info-rich .step > div {
  display: block !important;
  min-width: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}

#root .phz-info-rich .step h3 {
  display: block !important;
  font-size: clamp(28px, 2.3vw, 34px) !important;
  line-height: 0.98 !important;
  margin: 0 0 8px !important;
  white-space: normal !important;
  overflow: visible !important;
  text-wrap: balance !important;
}

#root .phz-info-rich .step p {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.62 !important;
  margin: 0 !important;
  color: rgba(245,240,232,.62) !important;
  white-space: normal !important;
  overflow: visible !important;
  text-wrap: pretty !important;
}

#root .phz-info-rich .callout .grid-4,
#root .phz-info-rich .grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(14px, 1.55vw, 22px) !important;
}

#root .phz-info-rich .stat {
  min-width: 0 !important;
  overflow: hidden !important;
  padding: clamp(20px, 2vw, 28px) clamp(14px, 1.5vw, 22px) !important;
}

#root .phz-info-rich .stat strong {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: clamp(32px, 3vw, 54px) !important;
  line-height: 0.96 !important;
  letter-spacing: 0.035em !important;
}

#root .phz-info-rich .callout .stat strong {
  font-size: clamp(30px, 2.55vw, 46px) !important;
  letter-spacing: 0.03em !important;
}

#root .phz-info-rich .stat span {
  max-width: 100% !important;
  font-size: 13px !important;
  line-height: 1.48 !important;
}

#root .phz-info-rich .card,
#root .phz-info-rich .callout,
#root .phz-info-rich .final,
#root .phz-info-rich .profile-side {
  min-width: 0 !important;
  max-width: 100% !important;
}

#root .phz-info-rich .card h3 {
  white-space: normal !important;
  overflow: visible !important;
  text-wrap: balance !important;
}

#root .phz-info-rich .callout h3 {
  max-width: 980px !important;
  white-space: normal !important;
  overflow: visible !important;
  text-wrap: balance !important;
}

@media (max-width: 1180px) {
  #root .phz-info-rich .grid-2 {
    grid-template-columns: 1fr !important;
  }

  #root .phz-info-rich .callout .grid-4,
  #root .phz-info-rich .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #root .phz-info-rich .callout .stat strong,
  #root .phz-info-rich .stat strong {
    font-size: clamp(34px, 5vw, 58px) !important;
  }
}

@media (max-width: 680px) {
  #root .phz-info-rich .step {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    padding: 16px !important;
    gap: 14px !important;
  }

  #root .phz-info-rich .step::before {
    font-size: 42px !important;
  }

  #root .phz-info-rich .callout .grid-4,
  #root .phz-info-rich .grid-4 {
    grid-template-columns: 1fr !important;
  }

  #root .phz-info-rich .stat strong,
  #root .phz-info-rich .callout .stat strong {
    font-size: clamp(42px, 12vw, 58px) !important;
  }
}


/* ─── Anime.js site-wide cinematic motion layer ───────────────────────────── */
.phz-anime-ready .phz-anime-pending:not(.phz-anime-done) {
  opacity: 0 !important;
  transform: translate3d(0, 32px, 0) scale(0.985);
  filter: blur(8px);
}

.phz-anime-ready .phz-anime-done,
.phz-anime-ready .reveal.visible {
  opacity: 1 !important;
  filter: blur(0) !important;
}

.phz-anime-ready .primal-nav,
.phz-anime-ready .phz-hero .section-label,
.phz-anime-ready .phz-hero h1,
.phz-anime-ready .phz-hero p,
.phz-anime-ready .phz-hero .btn-gold,
.phz-anime-ready .phz-hero .btn-outline,
.phz-anime-ready .phz-hero .phz-animate-visual,
.phz-anime-ready .phz-info-rich .hero .kicker,
.phz-anime-ready .phz-info-rich .hero h1,
.phz-anime-ready .phz-info-rich .hero .lead,
.phz-anime-ready .phz-info-rich .hero .quote-card,
.phz-anime-ready .phz-info-hero .section-label,
.phz-anime-ready .phz-info-title,
.phz-anime-ready .phz-info-lead,
.phz-anime-ready .phz-product-layout,
.phz-anime-ready .phz-product-card,
.phz-anime-ready .phz-product-detail,
.phz-anime-ready .phz-product-list > button,
.phz-anime-ready .phz-pillar-card,
.phz-anime-ready .phz-faq-card,
.phz-anime-ready .phz-quote-card,
.phz-anime-ready .phz-info-rich .section-head,
.phz-anime-ready .phz-info-rich .card,
.phz-anime-ready .phz-info-rich .stat,
.phz-anime-ready .phz-info-rich .step,
.phz-anime-ready .phz-info-rich .callout,
.phz-anime-ready .phz-info-rich .table-wrap,
.phz-anime-ready .phz-info-rich .final,
.phz-anime-ready .phz-site-footer > div > div {
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.phz-anime-ready .phz-info-rich .card,
.phz-anime-ready .phz-product-card,
.phz-anime-ready .phz-pillar-card,
.phz-anime-ready .phz-faq-card,
.phz-anime-ready .phz-quote-card {
  transform-origin: center center;
}

.phz-anime-ready .btn-gold,
.phz-anime-ready .btn-outline,
.phz-anime-ready .phz-info-rich .btn {
  will-change: transform, box-shadow, background-color, color;
}

.phz-anime-ready .btn-gold:hover,
.phz-anime-ready .btn-outline:hover,
.phz-anime-ready .phz-info-rich .btn:hover {
  transform: translateY(-2px) scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
  .phz-anime-pending,
  .phz-animate-hero-eyebrow,
  .phz-animate-hero-title,
  .phz-animate-hero-copy,
  .phz-animate-cta,
  .phz-animate-visual,
  .phz-animate-line,
  .phz-animate-page-title,
  .phz-animate-page-copy,
  .reveal,
  .phz-info-rich .card,
  .phz-info-rich .stat,
  .phz-info-rich .step,
  .phz-product-card,
  .phz-pillar-card,
  .phz-faq-card,
  .phz-quote-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* ─── V27 Blog Article Visibility + Native Blog System Fix ──────────────────
   Articles must remain visible even if Anime.js, IntersectionObserver, cache,
   or third-party optimization delays animation execution. Animation should
   enhance the page, never hide the content. */
#root .reveal,
.wp-content .reveal,
.phz-native-blog .reveal,
.phz-native-single .reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

#root.phz-anime-ready .phz-anime-pending:not(.phz-anime-done) {
  opacity: 0 !important;
  transform: translate3d(0, 32px, 0) scale(0.985);
  filter: blur(8px);
}

#root.phz-anime-ready .phz-anime-done,
#root.phz-anime-ready .reveal.visible,
#root:not(.phz-anime-ready) .reveal {
  opacity: 1 !important;
  transform: none;
  filter: none !important;
}

.phz-native-blog,
.phz-native-single {
  --cyan: #2ad3ea;
  --cream: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.62);
  --line: rgba(42, 211, 234, 0.14);
  background:
    radial-gradient(circle at 75% 10%, rgba(42,211,234,0.12), transparent 34%),
    #080808;
  color: var(--cream);
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  padding-top: 72px;
  overflow-x: hidden;
}

.phz-native-blog *,
.phz-native-single * {
  box-sizing: border-box;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.phz-native-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.phz-native-hero {
  position: relative;
  padding: 96px 0 68px;
  border-bottom: 1px solid var(--line);
}

.phz-native-hero::before,
.phz-native-blog::before,
.phz-native-single::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(42, 211, 234, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 211, 234, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.42;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  z-index: 0;
}

.phz-native-hero > *,
.phz-native-blog-list,
.phz-native-single-body {
  position: relative;
  z-index: 1;
}

.phz-native-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.phz-native-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--cyan);
}

.phz-native-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(62px, 9vw, 118px);
  line-height: 0.86;
  letter-spacing: 0.045em;
  color: var(--cream);
  margin: 0;
  max-width: 980px;
  text-wrap: balance;
}

.phz-native-title span {
  color: var(--cyan);
}

.phz-native-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(245,240,232,0.66);
  font-size: 18px;
  line-height: 1.85;
  text-wrap: pretty;
}

.phz-native-blog-list {
  padding: 76px 0 96px;
}

.phz-native-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.phz-native-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  text-decoration: none;
  color: inherit;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 0%, rgba(42,211,234,0.10), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: 0 28px 90px rgba(0,0,0,0.32);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.phz-native-card:hover {
  transform: translateY(-7px);
  border-color: rgba(42,211,234,0.36);
  background:
    radial-gradient(circle at 85% 0%, rgba(42,211,234,0.16), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.024));
}

.phz-native-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 34px;
}

.phz-native-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(42,211,234,0.24);
  background: rgba(42,211,234,0.065);
  color: var(--cyan);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phz-native-date {
  color: rgba(245,240,232,0.36);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phz-native-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.94;
  letter-spacing: 0.045em;
  color: var(--cream);
  margin: 0 0 18px;
  text-wrap: balance;
}

.phz-native-card p {
  color: rgba(245,240,232,0.58);
  font-size: 15px;
  line-height: 1.78;
  margin: 0;
  text-wrap: pretty;
}

.phz-native-read {
  margin-top: auto;
  padding-top: 28px;
  color: var(--cyan);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.phz-native-single .phz-native-hero {
  padding-bottom: 56px;
}

.phz-native-single-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.phz-native-single-body p,
.phz-native-single-body li {
  color: rgba(245,240,232,0.68);
  font-size: 18px;
  line-height: 1.95;
  font-weight: 300;
  margin: 0 0 28px;
  text-wrap: pretty;
}

.phz-native-single-body h2,
.phz-native-single-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--cream);
  letter-spacing: 0.045em;
  line-height: 0.92;
  margin: 56px 0 22px;
}

.phz-native-single-body h2 { font-size: clamp(44px, 6vw, 72px); }
.phz-native-single-body h3 { font-size: clamp(36px, 5vw, 56px); color: var(--cyan); }

.phz-native-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.phz-native-cta {
  margin-top: 60px;
  padding: 34px;
  border: 1px solid rgba(42,211,234,0.32);
  background:
    radial-gradient(circle at 90% 0%, rgba(42,211,234,0.16), transparent 40%),
    linear-gradient(180deg, rgba(42,211,234,0.08), rgba(255,255,255,0.02));
}

.phz-native-cta h3 {
  margin-top: 0;
}

.phz-native-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 26px;
  border: 1px solid var(--cyan);
  background: var(--cyan);
  color: #061012;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .phz-native-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .phz-native-wrap {
    width: min(100% - 28px, 1180px);
  }

  .phz-native-hero {
    padding: 78px 0 48px;
  }

  .phz-native-title {
    font-size: clamp(58px, 18vw, 84px);
  }

  .phz-native-lead {
    font-size: 15.5px;
    line-height: 1.78;
  }

  .phz-native-blog-list {
    padding: 48px 0 72px;
  }

  .phz-native-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .phz-native-card {
    min-height: auto;
    padding: 22px;
  }

  .phz-native-card h2 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .phz-native-single-body {
    padding: 52px 14px 76px;
  }

  .phz-native-single-body p,
  .phz-native-single-body li {
    font-size: 16px;
    line-height: 1.85;
  }

  .phz-native-back,
  .phz-native-button {
    width: 100%;
  }
}
