/* ================================================================
   PHAGIX Microsite — Component Library
   Loads after: ../assets/colors_and_type.css + ../assets/site.css
   ================================================================ */

/* ─── NAV ──────────────────────────────────────────────────────── */
.ph-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.ph-nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.ph-nav-left { display: flex; align-items: center; gap: 14px; }
.ph-nav-kynad img { height: 32px; width: auto; display: block; }
.ph-nav-sep { width: 1px; height: 28px; background: var(--border-subtle); flex-shrink: 0; }
.ph-nav-logo img { height: 20px; width: auto; display: block; }
.ph-nav-links {
  display: flex; align-items: center; list-style: none; padding: 0; margin: 0;
}
.ph-nav-links > li { position: relative; }
.ph-nav-links > li > a,
.ph-drop-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 0 14px; height: 72px;
  color: var(--charcoal); text-decoration: none;
  font-family: var(--font-body); font-size: 14px; font-weight: var(--fw-body-bold);
  border-bottom: 2px solid transparent;
  transition: color var(--dur-quick), border-color var(--dur-quick);
  background: none; border-left: none; border-right: none; border-top: none; cursor: pointer;
  white-space: nowrap;
}
.ph-nav-links > li > a:hover,
.ph-drop-btn:hover { color: var(--kynad-green); border-bottom-color: var(--kynad-green); }
.ph-nav-links > li > a[aria-current="page"] { color: var(--kynad-green); border-bottom-color: var(--kynad-green); }
.ph-drop-btn svg { transition: transform var(--dur-quick); flex-shrink: 0; }
.ph-has-drop.open .ph-drop-btn svg { transform: rotate(180deg); }
.ph-has-drop.open .ph-drop-btn { color: var(--kynad-green); }

/* Dropdown panel */
.ph-dropdown {
  position: absolute; top: 72px; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); box-shadow: var(--shadow-pop);
  padding: 20px 24px; display: flex; gap: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 150ms var(--ease-out), transform 150ms var(--ease-out);
  min-width: 280px; z-index: 200;
}
.ph-has-drop.open .ph-dropdown {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.ph-drop-col { display: flex; flex-direction: column; gap: 2px; min-width: 120px; }
.ph-drop-head {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid-gray); font-weight: var(--fw-body-bold);
  padding: 6px 8px 4px; display: block; margin-top: 4px;
}
.ph-drop-head:first-child { margin-top: 0; }
.ph-dropdown a {
  display: block; padding: 7px 10px; height: auto; border: none;
  border-radius: var(--radius-sm); font-size: 14px; color: var(--charcoal);
  white-space: nowrap; text-decoration: none;
  transition: background var(--dur-quick), color var(--dur-quick);
}
.ph-dropdown a:hover { background: var(--kynad-green-bg); color: var(--kynad-green); }

.ph-btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 18px; flex-shrink: 0;
  background: var(--kynad-green); color: var(--white);
  font-family: var(--font-heading); font-weight: var(--fw-heading-semi); font-size: 14px;
  border-radius: var(--radius-sm); text-decoration: none;
  transition: background var(--dur-quick);
  white-space: nowrap;
}
.ph-btn-nav:hover { background: color-mix(in srgb, var(--kynad-green) 88%, #000); color: var(--white); }

/* ─── HERO ─────────────────────────────────────────────────────── */
.ph-hero {
  padding: 72px 0 64px;
  background: var(--kynad-green-deep);
  color: var(--white);
  position: relative; overflow: hidden;
}
.ph-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 88% 15%, rgba(45,125,58,.35), transparent 55%);
}
.ph-hero.light {
  background: var(--bg-page); color: var(--charcoal);
  border-bottom: 1px solid var(--border-subtle);
  padding: 56px 0 48px;
}
.ph-hero.light::before { display: none; }
.ph-hero.dark-blue { background: var(--calyx-blue-dark); }
.ph-hero.dark-blue::before { background: radial-gradient(ellipse at 90% 10%, rgba(66,165,245,.2), transparent 60%); }
.ph-hero-grid { display: grid; grid-template-columns: 1.2fr .85fr; gap: 64px; align-items: center; }
.ph-hero-eye {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: var(--fw-body-bold);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 14px;
}
.ph-hero.light .ph-hero-eye { color: var(--mid-gray); }
.ph-hero-eye .bar { width: 20px; height: 2px; background: var(--kynad-green-light); flex-shrink: 0; }
.ph-hero.light .ph-hero-eye .bar { background: var(--kynad-green); }
.ph-hero h1 {
  font-size: clamp(34px, 4.8vw, 62px); line-height: 1.02; letter-spacing: -.02em;
  color: var(--white); margin: 0 0 14px; font-weight: var(--fw-heading-extra); text-wrap: balance;
}
.ph-hero.light h1 { color: var(--charcoal); }
.ph-hero h1 .accent { color: var(--kynad-green-light); }
.ph-hero.light h1 .accent { color: var(--kynad-green); }
.ph-hero .strap { font-size: 17px; color: rgba(255,255,255,.72); margin: 0 0 28px; line-height: 1.55; max-width: 540px; }
.ph-hero.light .strap { color: var(--mid-gray); }
.ph-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.ph-btn-wht {
  display: inline-flex; align-items: center; gap: 6px;
  height: 48px; padding: 0 22px;
  background: var(--white); color: var(--kynad-green);
  font-family: var(--font-heading); font-weight: var(--fw-heading-semi); font-size: 15px;
  border-radius: var(--radius-sm); text-decoration: none; border: none;
  transition: background var(--dur-quick);
}
.ph-btn-wht:hover { background: var(--kynad-green-bg); color: var(--kynad-green); }
.ph-btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  height: 48px; padding: 0 22px;
  background: transparent; color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.3);
  font-family: var(--font-heading); font-weight: var(--fw-heading-semi); font-size: 15px;
  border-radius: var(--radius-sm); text-decoration: none;
  transition: border-color var(--dur-quick), color var(--dur-quick);
}
.ph-btn-outline:hover { border-color: rgba(255,255,255,.7); color: var(--white); }
.ph-hero.light .ph-btn-wht { background: var(--kynad-green); color: var(--white); }
.ph-hero.light .ph-btn-wht:hover { background: color-mix(in srgb, var(--kynad-green) 88%, #000); }
.ph-hero.light .ph-btn-outline { color: var(--charcoal); border-color: var(--border-subtle); }
.ph-hero.light .ph-btn-outline:hover { border-color: var(--kynad-green); color: var(--kynad-green); }

/* Wordmark card (hero right panel) */
.ph-wm-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md); padding: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.ph-wm-card img { max-width: 180px; filter: brightness(0) invert(1); }
.ph-wm-pills { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.ph-wm-pill {
  background: rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 13px; color: rgba(255,255,255,.85); font-weight: var(--fw-body-bold);
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.ph-wm-pill .v { font-family: var(--font-heading); font-weight: var(--fw-heading-bold); color: var(--kynad-green-light); font-size: 14px; white-space: nowrap; }

/* ─── SECTION LABEL ────────────────────────────────────────────── */
.sec-label {
  display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid-gray); font-weight: var(--fw-body-bold); margin-bottom: 6px;
}
.sec-label.green { color: var(--kynad-green); }
.lead-row h2 { color: var(--charcoal); font-size: clamp(26px,3vw,38px); }
.lead-row h2 em { color: var(--kynad-green); font-style: normal; }

/* ─── PILLARS ──────────────────────────────────────────────────── */
.ph-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ph-pillar {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 28px;
  border-top: 3px solid var(--kynad-green);
}
.ph-pillar .pnum {
  font-family: var(--font-heading); font-weight: var(--fw-heading-extra);
  color: var(--kynad-green); font-size: 42px; line-height: 1; letter-spacing: -.02em; margin-bottom: 14px;
}
.ph-pillar h4 { font-size: 17px; color: var(--charcoal); margin-bottom: 8px; font-family: var(--font-heading); font-weight: var(--fw-heading-bold); }
.ph-pillar p { font-size: 14px; color: var(--fg-1); line-height: 1.6; margin: 0; }

/* ─── LYTIC CYCLE ──────────────────────────────────────────────── */
.ph-lytic { display: flex; }
.ph-lytic-step {
  flex: 1; padding: 22px 16px; text-align: center; position: relative;
  background: var(--white); border: 1px solid var(--border-subtle); border-right: none;
}
.ph-lytic-step:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.ph-lytic-step:last-child { border-right: 1px solid var(--border-subtle); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.ph-step-n {
  width: 30px; height: 30px; background: var(--kynad-green); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: var(--fw-heading-bold); font-size: 14px;
  margin: 0 auto 10px;
}
.ph-lytic-step h5 { font-size: 13px; color: var(--charcoal); margin-bottom: 6px; font-family: var(--font-heading); font-weight: var(--fw-heading-bold); }
.ph-lytic-step p { font-size: 12px; color: var(--mid-gray); line-height: 1.5; margin: 0; }

/* ─── PRODUCT MATRIX ───────────────────────────────────────────── */
.ph-matrix { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.ph-matrix-card {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; color: inherit;
  transition: box-shadow var(--dur-base), transform var(--dur-base), border-color var(--dur-base);
}
.ph-matrix-card:hover { box-shadow: var(--shadow-pop); transform: translateY(-2px); border-color: var(--kynad-green); }
.ph-matrix-card.aqua:hover { border-color: var(--calyx-blue); }
.ph-mc-tag { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--mid-gray); font-weight: var(--fw-body-bold); }
.ph-mc-name { font-family: var(--font-heading); font-weight: var(--fw-heading-extra); color: var(--kynad-green); font-size: 19px; line-height: 1.1; }
.ph-matrix-card.aqua .ph-mc-name { color: var(--calyx-blue); }
.ph-mc-proc .ph-mc-name { color: var(--charcoal); }
.ph-mc-target { font-size: 13px; color: var(--fg-1); line-height: 1.45; flex-grow: 1; }
.ph-mc-foot {
  font-size: 12px; color: var(--mid-gray); border-top: 1px solid var(--border-subtle);
  padding-top: 10px; display: flex; justify-content: space-between; align-items: center;
}
.ph-mc-foot .arrow { color: var(--kynad-green); }
.ph-matrix-card.aqua .ph-mc-foot .arrow { color: var(--calyx-blue); }

/* ─── EVIDENCE BADGES ──────────────────────────────────────────── */
.ev-badge {
  display: inline-flex; align-items: center; height: 24px; padding: 0 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: var(--fw-body-bold);
  font-size: 10px; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap;
}
.ev-badge.validated { background: var(--kynad-green-bg); color: var(--kynad-green); border: 1px solid rgba(45,125,58,.25); }
.ev-badge.vitro { background: #E0F7FA; color: #006064; border: 1px solid rgba(0,96,100,.2); }
.ev-badge.platform { background: var(--light-gray); color: var(--mid-gray); border: 1px solid var(--border-subtle); }
.ev-badge.backbone { background: #E8F5E9; color: var(--kynad-green); border: 1px solid rgba(45,125,58,.35); }

/* ─── EVIDENCE QUALIFIER (mandatory compliance box) ────────────── */
.ev-qualifier {
  background: #FFFBF0; border: 1px solid #E8D090;
  border-left: 4px solid #C9940A;
  border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 20px;
}
.ev-qualifier .eq-head {
  font-family: var(--font-heading); font-weight: var(--fw-heading-bold);
  font-size: 11px; color: #7A5800; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 6px;
}
.ev-qualifier p { font-size: 13px; color: #5C4200; line-height: 1.55; margin: 0; }
.ev-qualifier strong { color: #3D2800; }

/* ─── SPECS GRID (This Enables) ────────────────────────────────── */
.ph-specs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.ph-spec {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 18px 20px;
}
.ph-spec.green { border-left: 3px solid var(--kynad-green); }
.ph-sk {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--mid-gray); font-weight: var(--fw-body-bold); margin-bottom: 6px; display: block;
}
.ph-sv {
  font-family: var(--font-heading); font-weight: var(--fw-heading-bold);
  font-size: 16px; color: var(--charcoal); line-height: 1.3;
}
.ph-sv small { font-size: 12px; color: var(--mid-gray); font-weight: var(--fw-body); display: block; margin-top: 3px; }

/* ─── APPLICATIONS ──────────────────────────────────────────────── */
.ph-apps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.ph-app {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 24px;
}
.ph-app .ap-name { font-family: var(--font-heading); font-weight: var(--fw-heading-extra); color: var(--kynad-green); font-size: 18px; font-style: italic; margin-bottom: 6px; line-height: 1; }
.ph-app h4 { font-size: 15px; color: var(--charcoal); margin-bottom: 10px; font-family: var(--font-heading); font-weight: var(--fw-heading-bold); }
.ph-app ul { margin: 0; padding: 0 0 0 16px; }
.ph-app ul li { font-size: 13px; color: var(--fg-1); line-height: 1.55; margin-bottom: 4px; }

/* ─── EVIDENCE CARDS ────────────────────────────────────────────── */
.ph-ev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 24px; }
.ph-ev-card {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; gap: 10px;
}
.ph-ev-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.ph-ev-title { font-family: var(--font-heading); font-weight: var(--fw-heading-bold); font-size: 15px; color: var(--charcoal); line-height: 1.3; }
.ph-ev-meta { font-size: 12px; color: var(--mid-gray); line-height: 1.45; }
.ph-ev-num { font-family: var(--font-heading); font-weight: var(--fw-heading-extra); font-size: 40px; color: var(--kynad-green); line-height: 1; letter-spacing: -.02em; }
.ph-ev-num small { font-size: 16px; color: var(--mid-gray); font-weight: var(--fw-heading-bold); margin-left: 2px; }
.ph-ev-num-lbl { font-size: 13px; color: var(--charcoal); font-weight: var(--fw-body-bold); margin-top: 2px; }
.ph-ev-text { font-size: 13px; color: var(--fg-1); line-height: 1.6; flex-grow: 1; }
.ph-ev-cite { font-size: 11px; color: var(--mid-gray); font-style: italic; border-top: 1px solid var(--border-subtle); padding-top: 10px; margin-top: auto; }

/* ─── PERFORMANCE TABLE ─────────────────────────────────────────── */
.ph-perf-wrap { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; }
.ph-perf-table { width: 100%; border-collapse: collapse; }
.ph-perf-table th {
  padding: 12px 16px; background: var(--light-gray);
  font-family: var(--font-heading); font-weight: var(--fw-heading-semi);
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--mid-gray);
  border-bottom: 1px solid var(--border-subtle); text-align: center;
}
.ph-perf-table th:first-child { text-align: left; }
.ph-perf-table td { padding: 12px 16px; font-size: 13px; border-bottom: 1px solid var(--border-subtle); text-align: center; color: var(--fg-1); }
.ph-perf-table td:first-child { text-align: left; color: var(--charcoal); font-weight: var(--fw-body-bold); }
.ph-perf-table td.pos { color: var(--kynad-green); font-weight: var(--fw-body-bold); font-family: var(--font-heading); }
.ph-perf-table td.na { color: var(--mid-gray); font-style: italic; }
.ph-perf-table tr:last-child td { border-bottom: 0; }
.ph-perf-table .src-row td { font-size: 11px; color: var(--mid-gray); font-style: italic; background: var(--light-gray); }

/* ─── TRIAL BLOCK (validation page) ────────────────────────────── */
.ph-trial {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 32px; margin-bottom: 24px;
}
.ph-trial-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.ph-trial-head h3 { font-size: 20px; color: var(--charcoal); margin-bottom: 4px; font-family: var(--font-heading); font-weight: var(--fw-heading-bold); }
.ph-trial-head .tm { font-size: 13px; color: var(--mid-gray); line-height: 1.5; }
.ph-trial-head .tr-right { text-align: right; flex-shrink: 0; }
.ph-trial-design {
  background: var(--light-gray); border-radius: var(--radius-sm); padding: 14px 18px;
  font-size: 13px; color: var(--fg-1); line-height: 1.55; margin-bottom: 18px;
}
.ph-trial-design strong { color: var(--charcoal); }
.ph-ttable { width: 100%; border-collapse: collapse; }
.ph-ttable th {
  text-align: left; padding: 11px 14px;
  font-family: var(--font-heading); font-weight: var(--fw-heading-semi);
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--mid-gray);
  border-bottom: 1px solid var(--charcoal);
}
.ph-ttable th.hl { color: var(--kynad-green); }
.ph-ttable td { padding: 11px 14px; font-size: 13px; border-bottom: 1px solid var(--border-subtle); color: var(--fg-1); line-height: 1.4; }
.ph-ttable td.metric { font-weight: var(--fw-body-bold); color: var(--charcoal); }
.ph-ttable td.phagix { color: var(--kynad-green); font-weight: var(--fw-body-bold); background: var(--kynad-green-bg); }
.ph-ttable tr:last-child td { border-bottom: 0; }
.ph-trial-cite { font-size: 12px; color: var(--mid-gray); font-style: italic; margin-top: 14px; }

/* ─── STATS ROW ─────────────────────────────────────────────────── */
.ph-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ph-stat { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 22px 18px; }
.ph-stat .sn { font-family: var(--font-heading); font-weight: var(--fw-heading-extra); color: var(--kynad-green); font-size: 36px; line-height: 1; letter-spacing: -.02em; }
.ph-stat .sn small { font-size: 15px; color: var(--mid-gray); font-weight: var(--fw-heading-bold); }
.ph-stat .sl { font-size: 13px; color: var(--charcoal); font-weight: var(--fw-body-bold); margin-top: 6px; line-height: 1.3; }
.ph-stat .sm { font-size: 11px; color: var(--mid-gray); margin-top: 4px; line-height: 1.35; }

/* ─── CTA BAND ──────────────────────────────────────────────────── */
.ph-cta { background: var(--kynad-green-deep); color: var(--white); padding: 72px 0; }
.ph-cta-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; }
.ph-cta .eyebrow { color: rgba(255,255,255,.51); }
.ph-cta .eyebrow .bar { background: var(--kynad-green-light); }
.ph-cta h2 { color: var(--white); font-size: clamp(26px,3.2vw,42px); line-height: 1.1; letter-spacing: -.02em; margin: 14px 0 0; }
.ph-cta h2 em { font-style: normal; color: var(--kynad-green-light); }
.ph-cta p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.6; margin: 0 0 24px; }
.ph-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ph-btn-cta { display: inline-flex; align-items: center; gap: 8px; height: 48px; padding: 0 24px; background: var(--white); color: var(--kynad-green); font-family: var(--font-heading); font-weight: var(--fw-heading-semi); font-size: 15px; border-radius: var(--radius-sm); text-decoration: none; transition: background var(--dur-quick); }
.ph-btn-cta:hover { background: var(--kynad-green-bg); color: var(--kynad-green); }
.ph-btn-cta-ghost { display: inline-flex; align-items: center; gap: 8px; height: 48px; padding: 0 24px; background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.3); font-family: var(--font-heading); font-weight: var(--fw-heading-semi); font-size: 15px; border-radius: var(--radius-sm); text-decoration: none; transition: border-color var(--dur-quick), color var(--dur-quick); }
.ph-btn-cta-ghost:hover { border-color: rgba(255,255,255,.7); color: var(--white); }

/* ─── CROSS-LINKS ───────────────────────────────────────────────── */
.ph-crosslinks { display: flex; gap: 14px; flex-wrap: wrap; }
.ph-crosslink {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit; flex: 1; min-width: 240px;
  transition: box-shadow var(--dur-base), border-color var(--dur-base);
}
.ph-crosslink:hover { box-shadow: var(--shadow-pop); border-color: var(--kynad-green); }
.ph-cl-glyph { font-family: var(--font-heading); font-weight: var(--fw-heading-extra); color: var(--kynad-green); font-size: 30px; line-height: 1; flex-shrink: 0; }
.ph-cl-name { font-family: var(--font-heading); font-weight: var(--fw-heading-bold); font-size: 15px; color: var(--charcoal); }
.ph-cl-desc { font-size: 12px; color: var(--mid-gray); margin-top: 2px; }
.ph-cl-arr { margin-left: auto; color: var(--kynad-green); font-size: 18px; }

/* ─── FOOTER ────────────────────────────────────────────────────── */
.ph-footer { background: var(--charcoal); color: rgba(255,255,255,.55); padding: 56px 0 32px; }
.ph-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ph-footer-brand img { height: 34px; margin-bottom: 12px; filter: brightness(0) invert(1); display: block; }
.ph-footer-brand p { font-size: 12px; line-height: 1.6; margin: 0 0 4px; }
.ph-fc h2 { font-family: var(--font-heading); font-weight: var(--fw-heading-bold); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.88); margin-bottom: 12px; }
.ph-fc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.ph-fc ul li a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; transition: color var(--dur-quick); }
.ph-fc ul li a:hover { color: var(--white); }
.ph-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ph-footer-bottom > span { font-size: 12px; }
.ph-footer-meta { display: flex; gap: 20px; }
.ph-footer-meta a { font-size: 12px; color: rgba(255,255,255,.6); text-decoration: none; }
.ph-footer-meta a:hover { color: rgba(255,255,255,.75); }

/* ─── INFO BOX ──────────────────────────────────────────────────── */
.ph-infobox {
  background: var(--kynad-green-bg); border: 1px solid rgba(45,125,58,.2);
  border-left: 4px solid var(--kynad-green);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 24px;
  font-size: 14px; color: var(--charcoal); line-height: 1.6;
}
.ph-infobox strong { color: var(--kynad-green-deep); }

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ph-matrix { grid-template-columns: repeat(2,1fr); }
  .ph-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .ph-cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .ph-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ph-ev-grid { grid-template-columns: 1fr 1fr; }
  .ph-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .ph-pillars, .ph-apps, .ph-ev-grid { grid-template-columns: 1fr; }
  .ph-specs-grid { grid-template-columns: 1fr 1fr; }
  .ph-lytic { flex-direction: column; }
  .ph-lytic-step { border-right: 1px solid var(--border-subtle); border-bottom: none; }
  .ph-lytic-step:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .ph-lytic-step:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md); border-bottom: 1px solid var(--border-subtle); }
  .ph-nav-links { display: none; }
}
@media (max-width: 600px) {
  .ph-matrix, .ph-specs-grid, .ph-stats { grid-template-columns: 1fr; }
  .ph-footer-grid { grid-template-columns: 1fr; }
}

/* ── BATCH 21 — mobile table overflow (phagix microsite) ── */
@media (max-width: 768px){
  .ph-ttable.ph-ttable,
  .ph-perf-table.ph-perf-table{
    display:block;
    width:100%;
    max-width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
}
