/* ============================================================================
   product_home.css — shared modern homepage design system for the Forth* suite
   ----------------------------------------------------------------------------
   One light, premium design language used by the forthclear / forthmatch /
   forthroute / forthsource homepages, matching the light v2 chassis
   (tokens.css --surface). Scoped under `.ph-home` so it can never leak onto
   the shared nav/footer that marketing_base injects.

   The accent recolors itself per brand automatically:
     --accent      <- var(--brand)       (per-brand hue from tokens.css [data-brand])
     --accent-ink  <- var(--brand-dark)  (contrast-safe shade from the route context)
     --accent-soft <- var(--brand-soft)  (light tint from tokens.css)
   So the same stylesheet renders violet for forthclear, amber for forthmatch,
   emerald for forthroute and cyan for forthsource with no per-file overrides.

   Created 2026-06-20 — companion to the approved forthcast vK_green redesign.
   ========================================================================== */

.ph-home {
  /* neutral light palette */
  --bg:        #FFFFFF;
  --bg-2:      #F7F8FB;
  --bg-3:      #EEF1F6;
  --ink:       #0D1320;
  --ink-2:     #424A5C;
  --ink-3:     #6B7384;
  --line:      #E7EAF1;
  --line-2:    #D8DDE8;
  --white:     #FFFFFF;

  /* brand-driven accents (auto per [data-brand] + route context) */
  --accent:      var(--brand, #4F46E5);
  --accent-ink:  var(--brand-dark, #1D4ED8);
  --accent-soft: var(--brand-soft, #EEF0FF);
  --accent-glow: color-mix(in srgb, var(--brand, #4F46E5) 26%, transparent);
  --accent-tint: color-mix(in srgb, var(--brand, #4F46E5)  7%, #FFFFFF);
  --accent-line: color-mix(in srgb, var(--brand, #4F46E5) 38%, transparent);

  /* status colors */
  --ok:    #15A66B;  --ok-soft:    rgba(21,166,107,0.12);
  --warn:  #D98A00;  --warn-soft:  rgba(217,138,0,0.12);
  --bad:   #DE5050;  --bad-soft:   rgba(222,80,80,0.12);

  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(13,19,32,0.05), 0 2px 6px -2px rgba(13,19,32,0.06);
  --shadow-md: 0 10px 30px -14px rgba(13,19,32,0.22);
  --shadow-lg: 0 36px 70px -34px rgba(13,19,32,0.34);

  background: var(--bg);
  color: var(--ink);
  font-family: "Familjen Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 16px;
  overflow-x: clip;
}

.ph-home *, .ph-home *::before, .ph-home *::after { box-sizing: border-box; }

/* ---- layout ------------------------------------------------------------- */
.ph-wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.ph-section { position: relative; padding: 104px 0; }
.ph-section--tight { padding: 72px 0; }
.ph-section--alt { background: var(--bg-2); }
.ph-divider { border: 0; border-top: 1px solid var(--line); margin: 0; }

.ph-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.ph-head--left { margin-left: 0; text-align: left; }

.ph-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  padding: 6px 12px; border-radius: 999px;
}
.ph-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.ph-h1 {
  font-size: clamp(36px, 5.4vw, 60px); line-height: 1.05; font-weight: 700;
  letter-spacing: -0.03em; color: var(--ink); margin: 20px 0 0;
}
.ph-h1 em { font-style: normal; color: var(--accent-ink); }
.ph-h2 {
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1; font-weight: 700;
  letter-spacing: -0.025em; color: var(--ink); margin: 14px 0 0;
}
.ph-h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.ph-lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); margin-top: 18px; max-width: 560px; }
.ph-sub  { font-size: 17px; color: var(--ink-2); margin: 16px auto 0; max-width: 600px; }
.ph-head--left .ph-sub { margin-left: 0; }

/* ---- buttons ------------------------------------------------------------ */
.ph-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 600; font-size: 15.5px; cursor: pointer;
  padding: 13px 22px; border-radius: var(--r-sm); border: 1px solid transparent;
  text-decoration: none; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.ph-btn--primary {
  background: var(--accent-ink); color: #fff;
  box-shadow: 0 10px 24px -12px color-mix(in srgb, var(--accent-ink) 80%, transparent);
}
.ph-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px color-mix(in srgb, var(--accent-ink) 85%, transparent); }
.ph-btn--ghost { background: var(--white); color: var(--ink); border-color: var(--line-2); }
.ph-btn--ghost:hover { transform: translateY(-2px); border-color: var(--accent-line); color: var(--accent-ink); }
.ph-btn--block { width: 100%; }
.ph-btn--lg { padding: 15px 26px; font-size: 16.5px; }

/* ---- hero --------------------------------------------------------------- */
.ph-hero { position: relative; padding: 76px 0 88px; overflow: hidden; background: linear-gradient(180deg, var(--accent-tint), var(--bg) 70%); }
.ph-hero__glow { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ph-hero__glow::before, .ph-hero__glow::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55;
}
.ph-hero__glow::before { width: 560px; height: 560px; top: -180px; right: -120px; background: radial-gradient(circle, var(--accent-glow), transparent 70%); }
.ph-hero__glow::after  { width: 460px; height: 460px; bottom: -220px; left: -140px; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%); }

.ph-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 56px; align-items: center; }
.ph-hero__copy { max-width: 540px; }
.ph-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.ph-hero__meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; color: var(--ink-3); font-size: 14px; }
.ph-hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.ph-hero__meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.ph-hero__badges { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 24px; }
.ph-appstore { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; background: #5A31F4; color: #fff; padding: 9px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.01em; transition: transform .18s var(--ease), box-shadow .18s var(--ease); }
.ph-appstore:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(90,49,244,0.6); }
.ph-appstore svg { flex: none; }
.ph-stars { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-3); }
.ph-stars .s { display: inline-flex; gap: 1px; color: #F59E0B; }

/* ---- coded mockup primitives (used in hero + showcase) ------------------ */
.ph-mock {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.ph-mock__chrome { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.ph-mock__chrome i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); display: inline-block; }
.ph-mock__chrome i:nth-child(1) { background: #FF6058; } .ph-mock__chrome i:nth-child(2) { background: #FFBE2F; } .ph-mock__chrome i:nth-child(3) { background: #2BC840; }
.ph-mock__url { margin-left: 10px; font-family: "JetBrains Mono", monospace; font-size: 11.5px; color: var(--ink-3); }
.ph-mock__body { padding: 18px; }
.ph-mock__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.ph-mock__title { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.ph-mock__cap { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 16px; color: var(--ink-3); font-size: 12.5px; }
.ph-tag { font-family: "JetBrains Mono", monospace; font-size: 10.5px; padding: 3px 8px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--ink-3); }

.ph-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 999px; background: var(--bg-3); color: var(--ink-2); }
.ph-pill .pdot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-3); }
.ph-pill.is-good { background: var(--ok-soft); color: #0c7a4d; } .ph-pill.is-good .pdot { background: var(--ok); }
.ph-pill.is-warn { background: var(--warn-soft); color: #9a6200; } .ph-pill.is-warn .pdot { background: var(--warn); }
.ph-pill.is-bad  { background: var(--bad-soft);  color: #b83434; } .ph-pill.is-bad .pdot  { background: var(--bad); }
.ph-pill.is-brand { background: var(--accent-soft); color: var(--accent-ink); } .ph-pill.is-brand .pdot { background: var(--accent); }

.ph-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ph-kpi { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 12px; }
.ph-kpi .k-label { font-family: "JetBrains Mono", monospace; font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 7px; }
.ph-kpi .k-val { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.ph-kpi .k-val small { font-size: 12px; font-weight: 600; color: var(--ink-3); }
.ph-kpi.is-ok   .k-val { color: #0c7a4d; }
.ph-kpi.is-warn .k-val { color: #9a6200; }
.ph-kpi.is-brand .k-val { color: var(--accent-ink); }

.ph-rows { display: grid; gap: 8px; }
.ph-rowline { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 11px 12px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--white); }
.ph-rowline .rl-main { display: flex; align-items: center; gap: 10px; min-width: 0; }
.ph-rowline .rl-ava { width: 30px; height: 30px; border-radius: 8px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; font-weight: 700; font-size: 12px; flex: none; }
.ph-rowline .rl-name { font-weight: 600; font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-rowline .rl-meta { font-size: 11.5px; color: var(--ink-3); }
.ph-rowline .rl-val { font-weight: 700; font-size: 13.5px; text-align: right; white-space: nowrap; }

.ph-bar { height: 7px; border-radius: 999px; background: var(--bg-3); overflow: hidden; }
.ph-bar > span { display: block; height: 100%; border-radius: 999px; background: var(--accent); }
.ph-bar.is-ok > span  { background: var(--ok); }
.ph-bar.is-warn > span { background: var(--warn); }

.ph-gauge { --p: 86; position: relative; width: 116px; height: 116px; border-radius: 50%; flex: none;
  background: conic-gradient(var(--accent) calc(var(--p) * 1%), var(--bg-3) 0); display: grid; place-items: center; }
.ph-gauge::after { content: ""; position: absolute; inset: 12px; background: var(--white); border-radius: 50%; }
.ph-gauge .g-num { position: relative; z-index: 1; font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.ph-gauge .g-num small { font-size: 12px; color: var(--ink-3); }

.ph-steps2 { display: grid; gap: 12px; }
.ph-stepnode { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.ph-stepnode .sn-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); font-weight: 700; font-size: 12px; display: grid; place-items: center; flex: none; }
.ph-stepnode .sn-txt b { font-size: 13.5px; } .ph-stepnode .sn-txt p { font-size: 12.5px; color: var(--ink-3); margin: 2px 0 0; }

/* ---- trust strip -------------------------------------------------------- */
.ph-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ph-trust__item { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-2); font-size: 14px; font-weight: 500; }
.ph-trust__item svg { color: var(--accent-ink); flex: none; }

/* ---- stats band --------------------------------------------------------- */
.ph-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ph-stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.ph-stat__num { font-size: clamp(30px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.03em; color: var(--accent-ink); line-height: 1; }
.ph-stat__cap { color: var(--ink-2); font-size: 14px; margin-top: 10px; }

/* ---- how it works ------------------------------------------------------- */
.ph-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ph-step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.ph-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-line); }
.ph-step__num { font-family: "JetBrains Mono", monospace; font-size: 13px; font-weight: 600; color: var(--accent-ink); background: var(--accent-soft); width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 16px; }
.ph-step h3 { margin-bottom: 8px; }
.ph-step p { color: var(--ink-2); font-size: 14.5px; }

/* ---- features ----------------------------------------------------------- */
.ph-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ph-feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.ph-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-line); }
.ph-feature__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; margin-bottom: 16px; }
.ph-feature__icon svg { width: 23px; height: 23px; }
.ph-feature h3 { margin-bottom: 8px; }
.ph-feature p { color: var(--ink-2); font-size: 14.5px; }

/* ---- showcase / gallery ------------------------------------------------- */
.ph-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.ph-shot { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.ph-shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ph-shot--wide { grid-column: 1 / -1; }
.ph-shot img { width: 100%; display: block; border-bottom: 1px solid var(--line); }
.ph-shot figcaption { display: flex; align-items: center; gap: 9px; padding: 14px 18px; font-size: 14px; font-weight: 600; color: var(--ink); }
.ph-shot figcaption svg { color: var(--accent-ink); flex: none; }

/* ---- pricing ------------------------------------------------------------ */
.ph-pricing { display: grid; gap: 22px; justify-content: center; }
.ph-pricing--1 { grid-template-columns: minmax(0, 460px); }
.ph-pricing--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ph-price { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 32px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.ph-price.is-featured { border-color: var(--accent-line); box-shadow: var(--shadow-lg); background: linear-gradient(180deg, var(--accent-tint), var(--white) 55%); }
.ph-price__flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-family: "JetBrains Mono", monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; background: var(--accent-ink); padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.ph-price__name { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.ph-price__amt { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 4px; }
.ph-price__amt .big { font-size: 46px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.ph-price__amt .per { color: var(--ink-3); font-size: 15px; }
.ph-price__desc { color: var(--ink-2); font-size: 14px; margin-bottom: 20px; }
.ph-price__list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 11px; }
.ph-price__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.ph-price__list li svg { color: var(--ok); flex: none; margin-top: 2px; }
.ph-price .ph-btn { margin-top: auto; }
.ph-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.ph-chip { font-family: "JetBrains Mono", monospace; font-size: 11px; padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--ink-2); background: var(--bg-2); }
.ph-chip b { color: var(--accent-ink); font-weight: 700; }

/* ---- forthsuite cross-sell ---------------------------------------------- */
.ph-suite { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ph-suite__card { display: block; text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 20px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.ph-suite__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-line); }
.ph-suite__card.is-self { border-color: var(--accent-line); background: linear-gradient(180deg, var(--accent-tint), var(--white) 60%); }
.ph-suite__dot { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 14px; color: #fff; font-weight: 700; }
.ph-suite__card h3 { font-size: 16px; }
.ph-suite__card p { color: var(--ink-2); font-size: 13px; margin-top: 6px; }
.ph-suite__tag { display: inline-block; margin-top: 12px; font-family: "JetBrains Mono", monospace; font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }

/* ---- FAQ ---------------------------------------------------------------- */
.ph-faq { max-width: 800px; margin: 0 auto; }
details.ph-q { border-bottom: 1px solid var(--line); }
details.ph-q summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 22px 4px; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
details.ph-q summary::-webkit-details-marker { display: none; }
details.ph-q summary .q-ico { margin-left: auto; flex: none; color: var(--ink-3); transition: transform .3s var(--ease), color .3s var(--ease); }
details.ph-q[open] summary .q-ico { transform: rotate(45deg); color: var(--accent-ink); }
details.ph-q .ph-q__a { padding: 0 4px 24px; color: var(--ink-2); font-size: 15.5px; max-width: 700px; }
details.ph-q .ph-q__a a { color: var(--accent-ink); }

/* ---- final CTA ---------------------------------------------------------- */
.ph-cta { position: relative; overflow: hidden; text-align: center; color: #fff; border-radius: var(--r-xl); padding: 64px 28px;
  background: linear-gradient(135deg, var(--accent-ink), color-mix(in srgb, var(--accent) 70%, var(--accent-ink))); box-shadow: var(--shadow-lg); }
.ph-cta::before { content: ""; position: absolute; width: 420px; height: 420px; top: -200px; right: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%); }
.ph-cta__h { position: relative; font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; letter-spacing: -0.02em; }
.ph-cta__p { position: relative; margin: 14px auto 0; max-width: 560px; color: rgba(255,255,255,0.9); font-size: 17px; }
.ph-cta__actions { position: relative; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.ph-cta .ph-btn--primary { background: #fff; color: var(--accent-ink); }
.ph-cta .ph-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.ph-cta .ph-btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.ph-cta__note { position: relative; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.78); }

/* ---- speakable tldr (kept for SEO; styled to match) --------------------- */
.ph-home .speakable-tldr { max-width: 760px; margin: 22px auto 0; color: var(--ink-2); font-size: 16px; }

/* ---- scroll reveal ------------------------------------------------------ */
.ph-home.js-reveal .ph-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.ph-home.js-reveal .ph-reveal.is-in { opacity: 1; transform: none; }

/* ---- responsive --------------------------------------------------------- */
@media (max-width: 940px) {
  .ph-section { padding: 80px 0; }
  .ph-hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .ph-hero__copy { max-width: none; }
  .ph-stats { grid-template-columns: repeat(2, 1fr); }
  .ph-steps, .ph-features { grid-template-columns: 1fr 1fr; }
  .ph-suite { grid-template-columns: repeat(2, 1fr); }
  .ph-pricing--3 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 620px) {
  .ph-home { font-size: 15.5px; }
  .ph-section { padding: 64px 0; }
  .ph-wrap { padding: 0 18px; }
  .ph-stats, .ph-steps, .ph-features, .ph-showcase, .ph-suite { grid-template-columns: 1fr; }
  .ph-kpis { grid-template-columns: 1fr 1fr; }
  .ph-hero__actions .ph-btn { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .ph-home * { animation: none !important; transition: none !important; }
  .ph-home.js-reveal .ph-reveal { opacity: 1 !important; transform: none !important; }
}
