/*
Theme Name: Launchpad by E11
Theme URI: https://e11group.com/launchpad
Author: E11 Group
Author URI: https://e11group.com
Description: Child theme of Launchpad for the Launchpad marketing site. Dark "Cobalt" design system — near-black backgrounds with neon cyan/sky/violet accents, DM Sans body and Space Grotesk display type.
Template: launchpad
Tags: block-theme, full-site-editing, child-theme
Version: 0.1.0
Text Domain: launchpad-mkt
Repository: E11-Group/launchpad-mkt
*/

/* =========================================================
   Cobalt token bridge
   ---------------------------------------------------------
   The design system (designs/foundation.css in launchpad-design)
   speaks a working vocabulary: --bg, --ink, --cyan, --neon…
   theme.json is the source of truth for the values; this block
   maps the working names onto the generated WP custom properties
   so component CSS ports from the designs without rewrites.
   ========================================================= */
:root {
  --bg: var(--wp--preset--color--base);
  --bg-2: var(--wp--preset--color--surface);
  --bg-3: var(--wp--preset--color--neutral);
  --ink-bright: var(--wp--custom--ink-bright);
  --ink: var(--wp--preset--color--contrast);
  --ink-64: var(--wp--preset--color--muted);
  --ink-46: var(--wp--custom--ink-46);
  --ink-32: var(--wp--custom--ink-32);
  --line: var(--wp--custom--line);
  --line-soft: var(--wp--custom--line-soft);
  --cyan: var(--wp--preset--color--primary);
  --sky: var(--wp--preset--color--secondary);
  --sky-deep: var(--wp--preset--color--primary-dark);
  --violet: var(--wp--preset--color--accent);
  --violet-text: var(--wp--preset--color--accent-light);
  --amber: var(--wp--preset--color--highlight);
  --neon: var(--wp--preset--gradient--neon);
  --mono: var(--wp--custom--mono);

  --font-primary: var(--wp--preset--font-family--primary);
  --font-display: var(--wp--preset--font-family--secondary);
  --font-secondary: var(--font-display);

  --spacing-small: var(--wp--preset--spacing--small);
  --spacing-medium: var(--wp--preset--spacing--medium);
  --spacing-large: var(--wp--preset--spacing--large);
  --spacing-x-large: var(--wp--preset--spacing--x-large);
  --spacing-xx-large: var(--wp--preset--spacing--xx-large);

  --radius-sm: var(--wp--custom--radius--sm);
  --radius: var(--wp--custom--radius--md);
  --radius-lg: var(--wp--custom--radius--lg);
  --radius-pill: var(--wp--custom--radius--pill);

  --color-primary-light: var(--wp--preset--color--primary-light);
  --color-primary-hover: color-mix(in srgb, var(--cyan) 80%, #FFFFFF);
  --color-primary-active: var(--sky-deep);
}

/* =========================================================
   Base
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

::selection {
  background: rgba(34, 211, 238, 0.28);
  color: #fff;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-underline-offset: 3px;
  transition: color 0.15s;
}
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 2px;
}

/* The parent underlines EVERY link inside page/post content via TWO selectors —
   .wp-block-post-content a:not(.wp-block-button__link) AND .entry-content
   a:not(.wp-block-button__link) (both 0,2,1) — loaded AFTER the child, so a plain
   specificity match only ties and the parent wins. Two overrides:
   1. UI link types (buttons, arrow links, nav, TOC, login, CTA actions) are UI,
      never underlined. Justified !important: the parent rule is (0,2,1) and loads
      AFTER the child, so the CLAUDE.md "double a class" remedy reaches only (0,2,1)
      — a tie the later-loading parent still wins. Beating it by specificity would
      mean re-scoping every UI-link type under both content wrappers at (0,3,1)+,
      more fragile than this one reset.
   2. Other links inside our marketing/legal .page-* wrappers aren't underlined
      either (the design styles them cyan/UI); covers both content wrappers.
   Blog post bodies (.article a) are NOT .page-* / UI links, so authored
   body-copy underlines are unaffected. */
a.btn, a.link-arrow, .site-nav a, .faq-toc-list a, a[data-toc],
.btn-login, .cta-actions a, .cta-actions-demo a {
  text-decoration: none !important;
}
.wp-block-post-content [class*="page-"] a:not(.wp-block-button__link),
.entry-content [class*="page-"] a:not(.wp-block-button__link) {
  text-decoration: none;
}

small {
  font-size: 0.875em;
  color: var(--ink-46);
}

code {
  font-size: 0.875em;
  background-color: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.125em 0.375em;
  color: var(--ink);
  font-family: var(--mono);
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================================================
   Type utilities (Cobalt signatures)
   ========================================================= */
.mono {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-46);
}

/* Eyebrow — the single global label token. ONE size everywhere (the hero
   eyebrow size). Section-subtitle rules that target a bare <p> inside a
   *-head container MUST use p:not(.eyebrow), or they resize this token. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-64);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  flex: none;
}

/* =========================================================
   Layout utilities
   ========================================================= */
.section {
  width: 100%;
  padding: var(--spacing-xx-large) var(--spacing-large);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* Neon beam divider */
.beam {
  position: relative;
  height: 1px;
  background: var(--line);
}
.beam::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
  opacity: 0.55;
}

/* Section color combos */
.section-base     { background-color: var(--bg);   color: var(--ink-64); }
.section-panel    { background-color: var(--bg-2); color: var(--ink-64); }
.section-elevated { background-color: var(--bg-3); color: var(--ink-64); }
.section-tint     { background-color: var(--color-primary-light); color: var(--ink-64); }

.section-glow {
  background-color: var(--bg);
  color: var(--ink-64);
  position: relative;
  overflow: hidden;
}
.section-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 50% 120%, rgba(56,189,248,0.22), transparent 60%),
    radial-gradient(40% 60% at 50% 120%, rgba(124,58,237,0.16), transparent 65%);
}
.section-glow > * {
  position: relative;
  z-index: 1;
}

/* =========================================================
   Buttons
   ---------------------------------------------------------
   .btn utilities serve custom markup (header CTA, wizard).
   The core button block maps onto the same system:
     default            -> btn-neon (dark face, neon ring, glow)
     .is-style-outline  -> btn-line (hairline)
     .is-style-solid    -> btn-solid (cyan fill, dark text)
     .is-style-ghost    -> btn-ghost (text-only)
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.7;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.25s;
}
.btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn-neon,
.btn-primary {
  position: relative;
  background: var(--bg-3);
  color: var(--ink-bright);
  box-shadow: var(--wp--custom--glow--cyan-ring);
}
.btn-neon::before,
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  padding: 1px;
  background: var(--neon);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn-neon:hover, .btn-neon:focus-visible,
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--wp--custom--glow--cyan-ring-hover);
  color: #FFFFFF;
}
.btn-neon:active,
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.55), 0 6px 20px -10px rgba(34,211,238,0.4);
}
.btn-neon--sm {
  font-size: 0.8125rem;
  padding: 0.55rem 1.05rem;
}

.btn-line,
.btn-outline {
  background: transparent;
  color: var(--ink);
  font-weight: 500;
  border: 1px solid var(--line);
}
.btn-line:hover, .btn-line:focus-visible,
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: rgba(34,211,238,0.5);
  background: rgba(34,211,238,0.06);
  color: #FFFFFF;
}
.btn-line:active,
.btn-outline:active {
  border-color: var(--sky-deep);
  background: rgba(34,211,238,0.1);
}

.btn-solid,
.btn-accent {
  background: var(--cyan);
  color: var(--bg);
}
.btn-solid:hover, .btn-solid:focus-visible,
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--color-primary-hover);
  color: var(--bg);
}
.btn-solid:active,
.btn-accent:active {
  background: var(--sky-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  color: var(--ink-bright);
}
.btn-ghost:active {
  color: var(--sky-deep);
}

/* Core wp:button shares the design system's 1.7 line-height (same as .btn) so a core
   button renders the same height as the wizard / utility buttons instead of 10px shorter. */
.wp-block-button__link { line-height: 1.7; }

/* Core button block -> Cobalt neon (default style) */
.wp-block-button:not([class*="is-style-"]) .wp-block-button__link {
  position: relative;
  box-shadow: var(--wp--custom--glow--cyan-ring);
  transition: transform 0.18s ease, background-color 0.18s, color 0.18s, box-shadow 0.25s;
}
.wp-block-button:not([class*="is-style-"]) .wp-block-button__link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  padding: 1px;
  background: var(--neon);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.wp-block-button:not([class*="is-style-"]) .wp-block-button__link:hover,
.wp-block-button:not([class*="is-style-"]) .wp-block-button__link:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--wp--custom--glow--cyan-ring-hover);
}
.wp-block-button:not([class*="is-style-"]) .wp-block-button__link:active {
  transform: translateY(0);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.55), 0 6px 20px -10px rgba(34,211,238,0.4);
}

/* Core button block -> hairline (built-in outline style; base look via theme.json) */
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus-visible {
  border-color: rgba(34,211,238,0.5);
  background: rgba(34,211,238,0.06);
  color: #FFFFFF;
}
.wp-block-button.is-style-outline .wp-block-button__link:active {
  border-color: var(--sky-deep);
  background: rgba(34,211,238,0.1);
}

/* Core button block -> solid cyan (registered in functions.php) */
.wp-block-button.is-style-solid .wp-block-button__link {
  background: var(--cyan);
  color: var(--bg);
}
.wp-block-button.is-style-solid .wp-block-button__link:hover,
.wp-block-button.is-style-solid .wp-block-button__link:focus-visible {
  background: var(--color-primary-hover);
  color: var(--bg);
}
.wp-block-button.is-style-solid .wp-block-button__link:active {
  background: var(--sky-deep);
}

/* Core button block -> ghost (registered in functions.php) */
.wp-block-button.is-style-ghost .wp-block-button__link {
  background: transparent;
  color: var(--cyan);
  box-shadow: none;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.wp-block-button.is-style-ghost .wp-block-button__link:hover,
.wp-block-button.is-style-ghost .wp-block-button__link:focus-visible {
  color: var(--ink-bright);
}
.wp-block-button.is-style-ghost .wp-block-button__link:active {
  color: var(--sky-deep);
}

.wp-block-button__link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* Arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: gap 0.18s, filter 0.18s;
}
.link-arrow:hover, .link-arrow:focus-visible {
  gap: 0.75rem;
  filter: brightness(1.2);
}
.link-arrow:active {
  color: var(--sky-deep);
}

/* =========================================================
   Forms
   ========================================================= */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--ink);
  background-color: rgba(9, 9, 11, 0.55);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: var(--ink-32);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: rgba(34,211,238,0.6);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.15);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* =========================================================
   Card
   ========================================================= */
.card {
  background-color: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover {
  border-color: rgba(34,211,238,0.35);
  transform: translateY(-2px);
}
.card-body {
  padding: var(--spacing-medium);
}

/* =========================================================
   Badge
   ========================================================= */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
}
.badge-primary   { background-color: var(--cyan);   color: var(--bg); }
.badge-accent    { background-color: var(--violet); color: #FFFFFF; }
.badge-neutral   { background-color: var(--bg-3);   color: var(--ink-64); }
.badge-highlight { background-color: var(--amber);  color: var(--bg); }
.badge-outline   {
  background-color: rgba(34,211,238,0.10);
  border: 1px solid rgba(34,211,238,0.25);
  color: var(--cyan);
}

/* =========================================================
   Reveal-on-scroll (behavior in assets/js/site.js)
   Opt a whole page out by adding the "no-reveal" class to the
   body (Additional CSS class on the page) or data-no-reveal
   on a wrapping element — legal / informational pages.
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
[data-no-reveal] .reveal,
body.no-reveal .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Editor: never hide revealed content in the canvas */
.editor-styles-wrapper .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* =========================================================
   Sticky TOC active state (scroll-spy in assets/js/site.js)
   ========================================================= */
.legal-toc a.is-active,
[data-toc].is-active {
  color: var(--cyan);
  font-weight: 600;
}
.legal-toc li:has(a.is-active)::before {
  color: var(--cyan);
}

/* =========================================================
   Guarantees — reusable risk-reversal block
   ========================================================= */
.guarantees { padding: clamp(3.5rem, 7vw, 5rem) 0; position: relative; }
.guarantees-inner { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }
.guarantees-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(2rem, 4vw, 2.75rem); }
.guarantees-head h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); margin: 0 0 0.75rem; }
.guarantees-head p:not(.eyebrow) { color: var(--ink-64); font-size: 1rem; line-height: 1.65; margin: 0; }
.guarantee-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 701px) { .guarantee-grid { grid-template-columns: 1fr 1fr; } }
.guarantee-card {
  display: flex;
  gap: 1.125rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.06), rgba(34, 211, 238, 0.015));
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 16px;
  transition: border-color 0.25s, transform 0.25s;
}
.guarantee-card:hover { border-color: rgba(34, 211, 238, 0.5); transform: translateY(-2px); }
.guarantee-card .g-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.3);
  display: grid;
  place-items: center;
  color: var(--cyan);
}
.guarantee-card .g-icon svg { width: 20px; height: 20px; }
.guarantee-card h3 { font-size: 1.0625rem; margin: 0 0 0.4rem; letter-spacing: -0.01em; }
.guarantee-card p { margin: 0; font-size: 0.875rem; line-height: 1.6; color: var(--ink-64); }
.guarantee-card .g-fine {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-32);
}

/* =========================================================
   Header
   ---------------------------------------------------------
   The header pattern is a wp:group.site-header wrapping
   .header-inner (logo / wp:navigation.site-nav / .header-right).
   Menu content is WP-managed; chrome and mobile menu match the
   design system (mobile menu is injected by assets/js/site.js).
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
body.admin-bar .site-header { top: var(--wp-admin--admin-bar--height, 32px); }
/* The header is fixed and floats over content; offset in-page anchor jumps
   (FAQ TOC, #links) so their targets land below the header, not under it. */
html { scroll-padding-top: 5.5rem; }

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.0625rem clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-logo img {
  display: block;
  height: 18px;
  width: auto;
}
.site-footer .site-logo img { height: 22px; }

/* wp:navigation with className "site-nav" (overlayMenu: never) */
.site-nav { font-size: 0.875rem; }
.site-nav .wp-block-navigation__container,
.site-nav ul {
  display: flex;
  gap: clamp(1.25rem, 2.4vw, 1.875rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--ink-64);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: #FFFFFF; }
.site-nav a:active { color: var(--cyan); }
.site-nav .current-menu-item > a,
.site-nav a[aria-current="page"] { color: var(--cyan); }
/* Beat WP core's doubled-class .wp-block-navigation-item__content{color:inherit} at (0,3,0). */
.site-nav a[aria-current="page"].wp-block-navigation-item__content { color: var(--cyan); }

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
/* Login link is a native, editable wp:paragraph wrapper (was a bare <a>).
   display:contents drops the <p> box so .btn-login is a direct flex child of
   .header-right, sitting inline exactly like the original anchor. */
.header-right .btn-login-wrap { display: contents; }
.btn-login {
  color: var(--ink-64);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
  white-space: nowrap;
}
.btn-login:hover,
.btn-login:focus-visible { color: #FFFFFF; }
.btn-login:active { color: var(--cyan); }

/* Below 860px the desktop nav and login hide; site.js injects the
   hamburger + full-screen menu (same behavior as the designs). */
@media (max-width: 860px) {
  .site-header .site-nav,
  .site-header .btn-login { display: none; }
}

/* Parent templates add className "site-header"/"site-footer" to the
   template-part wrapper, nesting it around our pattern's own element.
   The OUTER wrapper carries the chrome; neutralize the inner copy so
   backgrounds, blurs, and borders never double up. */
.wp-block-template-part.site-header .site-header {
  position: static;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
}
.wp-block-template-part.site-footer .site-footer {
  border-top: 0;
  padding: 0;
}

/* =========================================================
   Footer
   ========================================================= */
/* Footer is a top-level block after <main> in .wp-site-blocks; WordPress adds
   a block-gap margin above it. Kill it so the footer sits flush. */
.wp-site-blocks > .site-footer { margin-block-start: 0; }

/* The header/footer inner groups are flex rows, but WP still applies flow
   block-gap margins to their children — a 24px margin-top on the nav + CTA
   pushes them below the logo. Zero them so all children align on the flex
   center line. */
.site-header .header-inner > *,
.site-footer .footer-inner > * { margin-block-start: 0; margin-block-end: 0; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 2.5rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 32ch;
  color: var(--ink-46);
  margin: 0.875rem 0 0;
}
.footer-col h5 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin: 0 0 1.125rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-col a {
  color: var(--ink-64);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer-col a:hover,
.footer-col a:focus-visible { color: #FFFFFF; }
.footer-col a:active { color: var(--cyan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--ink-32);
}
.footer-bottom a { color: var(--ink-46); }
.footer-bottom .links { display: flex; gap: 1.5rem; }
.footer-bottom .links a {
  color: var(--ink-32);
  text-decoration: none;
}
.footer-bottom .links a:hover,
.footer-bottom .links a:focus-visible { color: var(--cyan); }
@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =========================================================
   Editor fixes
   ========================================================= */
/* Decorative pseudo-elements with masks can misrender in the
   editor iframe; keep button previews simple there. */
.editor-styles-wrapper .wp-block-button:not([class*="is-style-"]) .wp-block-button__link::before {
  display: none;
}
/* The sticky header should not stick inside the editor canvas. */
.editor-styles-wrapper .site-header {
  position: static;
}

/* ── "Request a demo" modal (footer-rendered GF form, opened by site.js) ── */
.lp-modal[hidden] { display: none; }
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lp-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lp-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(34, 211, 238, 0.12);
}
.lp-modal-card .eyebrow { justify-content: center; margin-bottom: 0.75rem; }
.lp-modal-title { font-size: clamp(1.5rem, 3vw, 1.875rem); text-align: center; margin: 0 0 0.5rem; }
.lp-modal-sub {
  text-align: center;
  color: var(--ink-64);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0 auto 1.5rem;
  max-width: 34ch;
}
.lp-modal-x {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: 0;
  color: var(--ink-46);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.15s;
}
.lp-modal-x:hover, .lp-modal-x:focus-visible { color: var(--ink); }
body.lp-modal-open { overflow: hidden; }

/* ── Info tooltips (feature tables, etc.) — reusable, JS-positioned popover ──
   Trigger is a focusable button; the popover (.tip-pop) is hoisted to <body> by
   assets/js/site.js (initTips) and positioned fixed, so it never clips inside a
   scrolling/overflow container. Pure-CSS fallback keeps it hidden without JS. */
.tip { position: relative; display: inline-flex; vertical-align: middle; margin-left: 0.3rem; }
.tip-btn {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink-46);
  font: italic 600 10px/1 Georgia, "Times New Roman", serif;
  cursor: help;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.tip-btn::before { content: "i"; }
.tip-btn:hover,
.tip-btn:focus-visible,
.tip-btn[aria-expanded="true"] {
  color: var(--bg-2);
  background: var(--cyan);
  border-color: var(--cyan);
}
.tip-btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.tip-pop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: max-content;
  max-width: 264px;
  padding: 0.625rem 0.75rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 34px -10px rgba(0, 0, 0, 0.6);
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  text-align: left;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.12s ease;
}
.tip-pop.is-shown { opacity: 1; visibility: visible; }

/* Balance heading line breaks across the marketing pages: prevents one-word
   widows and keeps colored .ntext punchlines from splitting mid-phrase.
   Responsive and self-adjusting, unlike a hard <br>. (Client QA items 2, 6.) */
.page-home h1, .page-home h2,
.page-platform h1, .page-platform h2,
.page-grow h1, .page-grow h2,
.page-build-process h1, .page-build-process h2,
.page-pricing h1, .page-pricing h2,
.page-samples h1, .page-samples h2,
.page-about h1, .page-about h2,
.page-faq h1, .page-faq h2,
.page-contact h1, .page-contact h2 { text-wrap: balance; }

/* ═════════════ PAGE CSS (generated — edit here, fragments are gone) ═════════════ */

/* ── home ──────────────────────────────────────────────── */
/* ══ Page: home ══ */

/* WP flow-layout gap neutralizer — spacing owned by ported design margins */
.page-home :where(.wp-block-group) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.page-home h1, .page-home h2, .page-home h3,
.page-home h4, .page-home h5, .page-home h6 { margin: 0 0 0.5em; }

.page-home p { margin: 0 0 1em; }

.page-home p:last-child { margin-bottom: 0; }

/* ---------- Page scaffold ----------
   Port of the design's body.rails (two vertical hairlines) onto the
   page wrapper, plus flush section stacking and stacking context so
   sections paint above the rails. */
.wp-block-group.page-home { position: relative; }

.wp-block-group.page-home::before,
.wp-block-group.page-home::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-soft);
  pointer-events: none;
  z-index: 0;
}

.wp-block-group.page-home::before { left: max(0px, calc(50% - 540px)); }

.wp-block-group.page-home::after  { right: max(0px, calc(50% - 540px)); }

.wp-block-group.page-home > * {
  position: relative;
  z-index: 1;
  margin-block-start: 0;
  margin-block-end: 0;
}

/* ---------- Shared design utilities (page scope) ----------
   Order matters: .dim declared after .gtext so the cta's
   "dim gtext" span renders dim, exactly as in the design. */
.page-home .gtext {
  background: linear-gradient(180deg, var(--ink-bright) 0%, var(--ink-64) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.page-home .ntext {
  background: var(--neon);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.page-home .dim { color: var(--ink-46); }

.page-home section { position: relative; z-index: 1; }

.page-home .divide { border-top: 1px solid var(--line); }

.page-home .eyebrow { margin-top: 0; margin-bottom: 1.25rem; }

.page-home .eyebrow--center { justify-content: center; }

.page-home .link-arrow::after { content: '→'; transition: transform 0.18s; }

.page-home .link-arrow:hover::after,
.page-home .link-arrow:focus-visible::after { transform: translateX(3px); }

/* Hero eyebrow live dot: the global .eyebrow::before dot gets a ping ring
   (design's .live-dot span, drawn in CSS so the paragraph stays plain text) */
.page-home .eyebrow-live::before { box-shadow: 0 0 8px var(--cyan); }

@media (prefers-reduced-motion: no-preference) {
  .page-home .eyebrow-live::before { animation: lphome-livePing 2s ease-out infinite; }
}

@keyframes lphome-livePing {
  0%   { box-shadow: 0 0 8px var(--cyan), 0 0 0 0 rgba(34,211,238,0.9); }
  100% { box-shadow: 0 0 8px var(--cyan), 0 0 0 8px rgba(34,211,238,0); }
}

/* ===================== Hero (orbital) ===================== */
.page-home .hero { position: relative; padding: clamp(4.5rem,11vw,8rem) 0 clamp(3.5rem,7vw,5.5rem); overflow: hidden; isolation: isolate; }

.page-home .hero__space { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.page-home .hero__space::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(75% 60% at 50% -8%, rgba(56,189,248,0.22), transparent 62%),
    radial-gradient(50% 50% at 82% 18%, rgba(124,58,237,0.16), transparent 65%),
    radial-gradient(45% 45% at 12% 88%, rgba(34,211,238,0.10), transparent 65%);
}

.page-home .hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.page-home #starfield { position: absolute; inset: 0; z-index: 1; display: block; }

.page-home .hero__cursor {
  position: absolute; width: 460px; height: 460px; left: 0; top: 0; z-index: 1;
  margin: -230px 0 0 -230px; border-radius: 50%; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(56,189,248,0.16), rgba(124,58,237,0.06) 45%, transparent 70%);
  transition: opacity 0.4s; will-change: transform;
}

.page-home .hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem);
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem,5vw,4rem); align-items: center;
}

.page-home .hero h1 { font-size: clamp(2.25rem,5.2vw,3.75rem); font-weight: 300; color: var(--ink-bright); line-height: 1.05; margin: 0 0 1.375rem; max-width: 18ch; }

.page-home .hero h1 .ln { display: block; }

.page-home .hero h1 .ntext { display: block; margin-top: 0.15em; }

.page-home .hero-sub { font-size: clamp(1.0625rem,1.5vw,1.1875rem); color: var(--ink-64); line-height: 1.6; max-width: 38ch; margin: 0 0 2rem; }

/* .hero-cta row layout is now owned by the native flex-layout group (blockGap 0.75rem, wrap, center). */
.page-home .hero-cta .play { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: var(--ink); margin-right: 0.5rem; }

.page-home .hero-trust { margin: 1.375rem 0 0; font-size: 0.875rem; color: var(--ink-46); max-width: 44ch; }

.page-home .hero-trust a { color: var(--ink-64); text-decoration: underline; text-underline-offset: 3px; transition: color 0.15s ease; }

.page-home .hero-trust a:hover { color: var(--ink-bright); }

.page-home .hero-trust a:focus-visible { color: var(--ink-bright); outline: 2px solid currentColor; outline-offset: 3px; border-radius: 2px; }

.page-home .hero-trust a:active { opacity: 0.8; }

/* Hero pricing pill (native groups; divider drawn on the second column) */
.page-home .hero-price {
  display: inline-flex; align-items: stretch; gap: 0; margin: 0 0 1.75rem;
  padding: 0.875rem 0; border: 1px solid rgba(34,211,238,0.25); border-radius: 14px;
  background: linear-gradient(180deg, rgba(34,211,238,0.06), rgba(34,211,238,0.02));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-home .hero-price p { margin: 0; }

.page-home .hero-price .hp-col { display: flex; flex-direction: column; gap: 0.3rem; padding: 0.125rem 1.5rem; }

.page-home .hero-price .hp-col + .hp-col { position: relative; }

.page-home .hero-price .hp-col + .hp-col::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(34,211,238,0.4), transparent);
}

.page-home .hero-price .hp-label { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.14em; color: var(--ink-46); text-transform: uppercase; }

.page-home .hero-price .hp-value { font-family: var(--font-display); font-size: clamp(1.375rem, 2vw, 1.75rem); font-weight: 600; color: var(--ink); letter-spacing: -0.01em; line-height: 1; }

.page-home .hero-price .hp-suffix { color: var(--cyan); font-weight: 500; font-size: 0.875em; margin-left: 0.1em; }

@media (max-width: 540px) {
  .page-home .hero-price { width: 100%; flex-wrap: wrap; }
  .page-home .hero-price .hp-col + .hp-col::before { display: none; }
  .page-home .hero-price .hp-col { padding: 0.625rem 1.25rem; flex: 1 1 50%; }
}

/* Orbital system */
.page-home .hero-orbit { position: relative; width: 100%; aspect-ratio: 1/1; max-width: 600px; margin: 0 auto; will-change: transform; }

.page-home .orbit-ring { position: absolute; left: 50%; top: 50%; border-radius: 50%; border: 1px solid rgba(125,185,232,0.14); transform: translate(-50%,-50%); }

.page-home .orbit-ring.r2 { width: 74%; height: 74%; }

.page-home .orbit-ring.r3 { width: 92%; height: 92%; }

.page-home .orbit-ring.r4 { width: 104%; height: 104%; border-color: rgba(125,185,232,0.08); }

.page-home .orbit-ring .spin { position: absolute; inset: 0; border-radius: 50%; }

.page-home .pos { position: absolute; inset: 0; transform: rotate(var(--a)); }

.page-home .node { position: absolute; left: 50%; top: 0; transform: translate(-50%,-50%); pointer-events: auto; }

.page-home .unt { display: block; transform: rotate(calc(var(--a) * -1)); }

.page-home .cspin { display: block; position: relative; }

.page-home .hero-orbit .badge {
  width: 46px; height: 46px; border-radius: 50%; padding: 0;
  display: grid; place-items: center;
  background: rgba(11,13,20,0.72); border: 1px solid rgba(34,211,238,0.30);
  color: var(--ink); cursor: pointer;
  box-shadow: 0 0 0 4px rgba(9,9,11,0.55), 0 0 14px -4px rgba(34,211,238,0.40);
  transition: border-color .2s, box-shadow .2s, color .2s, background .2s, transform .2s;
}

.page-home .hero-orbit .badge svg { width: 20px; height: 20px; display: block; }

.page-home .node:hover .badge {
  border-color: var(--cyan); color: var(--ink-bright); background: rgba(34,211,238,0.16);
  box-shadow: 0 0 0 4px rgba(9,9,11,0.55), 0 0 24px -2px rgba(34,211,238,0.9);
  transform: scale(1.12);
}

.page-home .lbl {
  position: absolute; left: 50%; top: calc(100% + 8px); transform: translateX(-50%);
  font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap;
  background: rgba(11,13,20,0.92); border: 1px solid var(--line);
  padding: 0.22rem 0.5rem; border-radius: 6px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}

.page-home .node:hover .lbl { opacity: 1; }

.page-home .orbit-core { position: absolute; left: 50%; top: 50%; width: 60%; transform: translate(-50%,-50%); z-index: 3; }

.page-home .orbit-core .core-glow { position: absolute; inset: -16%; border-radius: 50%; background: radial-gradient(circle, rgba(34,211,238,0.20), rgba(124,58,237,0.08) 50%, transparent 70%); z-index: -1; pointer-events: none; }

.page-home .core-frame { position: relative; border-radius: 12px; overflow: hidden; background: var(--bg-2); border: 1px solid rgba(34,211,238,0.35); box-shadow: 0 30px 70px -28px rgba(0,0,0,0.9), 0 0 60px -16px rgba(34,211,238,0.45); }

.page-home .core-frame .cf-bar { display: flex; align-items: center; gap: 5px; padding: 7px 9px; border-bottom: 1px solid var(--line-soft); }

.page-home .core-frame .cf-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.16); }

.page-home .core-frame .cf-bar .u { margin-left: auto; font-family: var(--mono); font-size: 0.5rem; color: var(--ink-32); letter-spacing: 0.06em; }

.page-home .core-frame svg { display: block; width: 100%; height: auto; }

.page-home .rocket { position: absolute; left: 50%; top: 0; width: 150px; transform: translate(-50%,-50%) rotate(var(--lead, -90deg)); color: var(--cyan); filter: drop-shadow(0 0 12px rgba(34,211,238,0.5)); pointer-events: auto; }

.page-home .rocket svg { display: block; width: 100%; height: auto; }

.page-home .rocket:hover { filter: drop-shadow(0 0 20px rgba(34,211,238,0.85)); }

@media (prefers-reduced-motion: no-preference) {
  .page-home .r2 .spin { animation: lphome-spinCCW 64s linear infinite; }
  .page-home .r3 .spin { animation: lphome-spinCW 84s linear infinite; }
  .page-home .r4 .spin { animation: lphome-spinCCW 64s linear infinite; }
  .page-home .r2 .cspin { animation: lphome-spinCW 64s linear infinite; }
  .page-home .r3 .cspin { animation: lphome-spinCCW 84s linear infinite; }
  .page-home .r4 .cspin { animation: lphome-spinCW 64s linear infinite; }
  .page-home .orbit-core { animation: lphome-float 7s ease-in-out infinite; }
}

@keyframes lphome-spinCW { to { transform: rotate(360deg); } }

@keyframes lphome-spinCCW { to { transform: rotate(-360deg); } }

@keyframes lphome-float { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,calc(-50% - 8px))} }

@media (max-width: 880px) {
  .page-home .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  /* !important kept from the design: beats the inline transform set by the
     parallax JS so the orbit can never arrive tilted on small screens */
  .page-home .hero-orbit { max-width: 340px; transform: none !important; }
  .page-home .hero h1 { max-width: 20ch; }
  .page-home .hero-sub { max-width: 48ch; }
  .page-home .orbit-ring.r4 { display: none; }
}

/* ===================== Metric strip ===================== */
.page-home .metrics { padding: 1.25rem 0; }

.page-home .metrics-inner { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); display: flex; flex-wrap: wrap; align-items: stretch; }

.page-home .metric { flex: 1 1 auto; min-width: 180px; display: flex; align-items: baseline; gap: 0.625rem; margin: 0; padding: 0.5rem 1.75rem; border-left: 1px solid var(--line); font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.06em; color: var(--ink-46); text-transform: uppercase; }

.page-home .metric:first-child { border-left: 0; padding-left: 0; }

.page-home .metric strong, .page-home .metric b { font-family: var(--font-primary); font-weight: 600; font-size: 1.0625rem; letter-spacing: -0.01em; color: var(--ink-bright); text-transform: none; }

@media (max-width: 720px) { .page-home .metric { flex-basis: 100%; border-left: 0; padding: 0.4rem 0; } }

.page-home .metrics::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(34,211,238,0.45) 30%, rgba(124,58,237,0.4) 60%, transparent 100%);
  filter: blur(0.5px);
}

/* ===================== Features (3-up + wide) ===================== */
.page-home .features { position: relative; isolation: isolate; overflow: hidden; padding: clamp(4rem,8vw,6rem) 0 clamp(3rem,6vw,5rem); }

.page-home .features::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 14% 12%, rgba(124,58,237,0.14), transparent 60%),
    radial-gradient(55% 50% at 88% 88%, rgba(34,211,238,0.10), transparent 62%),
    radial-gradient(45% 50% at 70% 6%, rgba(56,189,248,0.08), transparent 60%);
}

.page-home .features::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.6;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1.4px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 95% 90% at 50% 50%, #000 40%, transparent 88%);
  mask-image: radial-gradient(ellipse 95% 90% at 50% 50%, #000 40%, transparent 88%);
}

.page-home .feat-head, .page-home .feature-grid, .page-home .feat-wide { position: relative; z-index: 1; }

.page-home .feat-head { max-width: 1080px; margin: 0 auto clamp(2rem,4vw,3rem); padding: 0 clamp(1.25rem,4vw,2rem); }

.page-home .feat-head .eyebrow { margin-bottom: 0.75rem; }

.page-home .feat-head h2 { font-size: clamp(1.75rem,3.6vw,2.5rem); margin: 0; max-width: 20ch; }

.page-home .feat-head .feat-sub { color: var(--ink-64); max-width: 640px; margin: 1rem 0 0; line-height: 1.65; font-size: clamp(0.9375rem,1.4vw,1.0625rem); }

.page-home .feature-grid { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem,2.5vw,2.25rem); align-items: start; }

.page-home .feature { position: relative; display: flex; flex-direction: column; border: none; padding: clamp(1rem,2vw,1.5rem) 0; background: transparent; transition: transform 0.25s; }

.page-home .feature:hover { transform: translateY(-3px); }

.page-home .feature h3 { font-size: clamp(1.25rem,2.2vw,1.5rem); margin: 0 0 0.5rem; }

.page-home .feature p { margin: 0 0 1.75rem; font-size: 0.9375rem; line-height: 1.6; color: var(--ink-64); max-width: 38ch; }

.page-home .feature p.feature-link { margin: auto 0 0; align-self: flex-start; }

/* .stage / .fw-illo wrappers were replaced by the decoration block; their layout
   is re-pointed onto .lp-decoration in the reconversion block at the end of this file. */
.page-home .feat-wide { max-width: 1180px; margin: clamp(2.5rem,5vw,4rem) auto 0; padding: 0 clamp(1.25rem,4vw,2rem); display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: center; }

.page-home .feat-wide .fw-text h3 { font-size: clamp(1.5rem,2.6vw,1.875rem); margin: 0.625rem 0 0.5rem; }

.page-home .feat-wide .fw-text p { color: var(--ink-64); line-height: 1.65; margin: 0 0 1.5rem; max-width: 38ch; font-size: 1rem; }

.page-home .fw-text p.fw-link { margin: 0; }

@media (max-width: 960px) { .page-home .feature-grid { grid-template-columns: 1fr 1fr; } }

@media (max-width: 720px) {
  .page-home .feature-grid { grid-template-columns: 1fr; }
  .page-home .feat-wide { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Blueprint feature illustrations (the .bp SVG now lives inside the decoration
   block wrapper; positioning is in the reconversion block at end of file). */
.page-home .bp .dim { stroke-opacity: .30; }

.page-home .bp .mid { stroke-opacity: .55; }

.page-home .bp .ink { stroke-opacity: .95; }

.page-home .bp .fillc { fill: currentColor; stroke: none; }

.page-home .bp .scatter { stroke-opacity: .16; }

.page-home .bp .scatter circle { fill-opacity: .3; }

.page-home .bp .glow { filter: drop-shadow(0 0 4px rgba(34,211,238,0.95)); }

/* Default state: violet elements show cyan-neutral (no purple at rest) */
.page-home .bp .glowv { color: var(--cyan); filter: drop-shadow(0 0 3px rgba(34,211,238,0.55)); transition: color 0.45s ease, filter 0.45s ease; }

.page-home .bp .pen-glyph { color: var(--cyan); filter: drop-shadow(0 0 5px rgba(34,211,238,0.85)); }

@media (prefers-reduced-motion: reduce) { .page-home .bp .pen-glyph { display: none; } }

.page-home .bp .hi { opacity: 0.30; transition: opacity 0.45s ease, color 0.45s ease, filter 0.45s ease; }

.page-home .bp .hi.v { color: var(--ink-64); }

/* Hover: cyan elements intensify; violet elements become purple + pulse */
.page-home .feature:hover .bp .hi, .page-home .feat-wide:hover .bp .hi { opacity: 1; filter: drop-shadow(0 0 4px rgba(34,211,238,0.85)); }

.page-home .feature:hover .bp .hi.v, .page-home .feat-wide:hover .bp .hi.v { color: var(--violet-text); filter: drop-shadow(0 0 6px rgba(124,58,237,0.95)); }

.page-home .feature:hover .bp .glowv, .page-home .feat-wide:hover .bp .glowv { color: var(--violet-text); }

.page-home .feature:hover .bp .glow, .page-home .feat-wide:hover .bp .glow { filter: drop-shadow(0 0 8px rgba(34,211,238,1)); }

.page-home .feature:hover .bp .blip, .page-home .feat-wide:hover .bp .blip { stroke-opacity: 0.85; }

.page-home .bp .hover-extra { opacity: 0; transform: translateY(8px); transition: opacity 0.35s ease, transform 0.35s ease; }

.page-home .feature:hover .bp .hover-extra, .page-home .feat-wide:hover .bp .hover-extra { opacity: 1; transform: translateY(0); }

.page-home .bp .pen-glyph { transition: opacity 0.35s ease; }

@media (prefers-reduced-motion: no-preference) {
  .page-home .bp .draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: lphome-bpdraw var(--d,3.4s) ease-in-out infinite; animation-delay: var(--dl,0s); }
  .page-home .bp .flow { stroke-dasharray: 3 9; animation: lphome-bpflow 1.4s linear infinite; }
  .page-home .bp .blip { transform-box: fill-box; transform-origin: center; animation: lphome-bpping var(--d,2.4s) ease-out infinite; animation-delay: var(--dl,0s); }
  .page-home .bp .caret { animation: lphome-bpcaret 1.1s steps(1) infinite; }
  .page-home .bp .seq > * { opacity: .2; animation: lphome-bpseq 4.4s ease-in-out infinite; }
  .page-home .bp .seq > *:nth-child(2){ animation-delay: .6s; }
  .page-home .bp .seq > *:nth-child(3){ animation-delay: 1.2s; }
  .page-home .bp .seq > *:nth-child(4){ animation-delay: 1.8s; }
  .page-home .bp .seq > *:nth-child(5){ animation-delay: 2.4s; }
  /* 3-col card slowdowns (50% of base for elements without inline --d) */
  .page-home .feature .bp .flow  { animation-duration: 2.8s; }
  .page-home .feature .bp .caret { animation-duration: 2.2s; }
  .page-home .feature .bp .seq > * { animation-duration: 8.8s; }
  .page-home .feature .bp .seq > *:nth-child(2){ animation-delay: 1.2s; }
  .page-home .feature .bp .seq > *:nth-child(3){ animation-delay: 2.4s; }
  .page-home .feature .bp .seq > *:nth-child(4){ animation-delay: 3.6s; }
  .page-home .feature .bp .seq > *:nth-child(5){ animation-delay: 4.8s; }
  /* Wide card: background bar charts pulse heights (subtle ambient) */
  .page-home .bp .bg-bars .bgbar {
    transform-box: fill-box; transform-origin: bottom;
    animation: lphome-bgbarpulse 4s ease-in-out infinite;
    animation-delay: var(--dly, 0s);
  }
  /* Wide card: word labels slide horizontally as a marquee */
  .page-home .bp .word-track {
    animation: lphome-wordfloat var(--d, 24s) linear infinite;
    animation-delay: var(--dly, 0s);
    transition: color 0.35s ease, filter 0.35s ease;
  }
  /* Hover: freeze ALL cyan/neutral animations where they are (clean unhover) */
  .page-home .feature:hover .bp .draw,
  .page-home .feature:hover .bp .flow,
  .page-home .feature:hover .bp .blip,
  .page-home .feature:hover .bp .caret,
  .page-home .feature:hover .bp .seq > *,
  .page-home .feat-wide:hover .bp .draw,
  .page-home .feat-wide:hover .bp .flow,
  .page-home .feat-wide:hover .bp .blip,
  .page-home .feat-wide:hover .bp .caret,
  .page-home .feat-wide:hover .bp .seq > *,
  .page-home .feat-wide:hover .bp .bgbar { animation-play-state: paused; }
  /* Pen-glyph uses SMIL (CSS can't pause it) — fade it out on hover instead */
  .page-home .feature:hover .bp .pen-glyph, .page-home .feat-wide:hover .bp .pen-glyph { opacity: 0; }
  /* Wide card hover: all word-track labels become purple with glow */
  .page-home .feat-wide:hover .bp .word-track {
    color: var(--violet-text);
    filter: drop-shadow(0 0 6px rgba(124,58,237,0.95)) drop-shadow(0 0 2px rgba(124,58,237,0.7));
  }
  /* Hover: ONLY the purple elements stay alive — dramatic multi-prop pulse */
  .page-home .feature:hover .bp .glowv, .page-home .feat-wide:hover .bp .glowv,
  .page-home .feature:hover .bp .hi.v,  .page-home .feat-wide:hover .bp .hi.v {
    transform-box: fill-box; transform-origin: center;
  }
  .page-home .feature:hover .bp .glowv, .page-home .feat-wide:hover .bp .glowv { animation: lphome-bpvpulse 1.3s ease-in-out infinite; }
  .page-home .feature:hover .bp .hi.v,  .page-home .feat-wide:hover .bp .hi.v  { animation: lphome-bpvpulse 1.6s ease-in-out infinite; }
  /* Stroked purple shapes additionally pulse stroke-width */
  .page-home .feature:hover .bp path.glowv,  .page-home .feat-wide:hover .bp path.glowv,
  .page-home .feature:hover .bp circle.hi.v, .page-home .feat-wide:hover .bp circle.hi.v {
    animation: lphome-bpvpulse 1.6s ease-in-out infinite, lphome-bpvstroke 1.6s ease-in-out infinite;
  }
  /* Stagger pulse delays on wide-card word-track glowing boxes so they feel random */
  .page-home .feat-wide:hover .bp .word-track:nth-child(2) .glowv { animation-delay: 0.4s, 0.4s; }
  .page-home .feat-wide:hover .bp .word-track:nth-child(4) .glowv { animation-delay: 0.9s, 0.9s; }
  .page-home .feat-wide:hover .bp .word-track:nth-child(5) .glowv { animation-delay: 1.3s, 1.3s; }
  /* Rect-shaped .hi.v (hero block on Card 1) — animate fill-opacity for fill flicker */
  .page-home .feature:hover .bp rect.hi.v, .page-home .feat-wide:hover .bp rect.hi.v {
    animation: lphome-bpvpulse 1.6s ease-in-out infinite, lphome-bpvfill 1.6s ease-in-out infinite;
  }
}

@keyframes lphome-bpvpulse {
  0%, 100% { transform: scale(1);    opacity: 0.55; filter: drop-shadow(0 0 4px  rgba(124,58,237,0.45)); }
  50%      { transform: scale(1.15); opacity: 1;    filter: drop-shadow(0 0 22px rgba(124,58,237,1)) drop-shadow(0 0 8px rgba(124,58,237,0.7)); }
}

@keyframes lphome-bpvstroke {
  0%, 100% { stroke-width: 1.0; }
  50%      { stroke-width: 2.8; }
}

@keyframes lphome-bpvfill {
  0%, 100% { fill-opacity: 0.18; }
  50%      { fill-opacity: 0.55; }
}

@keyframes lphome-bgbarpulse {
  0%, 100% { transform: scaleY(0.18); }
  50%      { transform: scaleY(1);    }
}

@keyframes lphome-wordfloat {
  0%   { transform: translateX(-180px); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(720px);  opacity: 0; }
}

@keyframes lphome-bpdraw  { 0%{stroke-dashoffset:1} 48%{stroke-dashoffset:0} 84%{stroke-dashoffset:0} 100%{stroke-dashoffset:1} }

@keyframes lphome-bpflow  { to { stroke-dashoffset: -24; } }

@keyframes lphome-bpping  { 0%{opacity:.7;transform:scale(.35)} 100%{opacity:0;transform:scale(1)} }

@keyframes lphome-bpcaret { 50%{opacity:0} }

@keyframes lphome-bpseq   { 0%,72%{opacity:.2} 14%,52%{opacity:1} }

/* ===================== Ambient section lighting ===================== */
.page-home .proof, .page-home .compare, .page-home .faq,
.page-home .marquee, .page-home .metrics { position: relative; overflow: hidden; isolation: isolate; }

.page-home .proof > .proof-inner { position: relative; z-index: 2; }

.page-home .compare > .compare-inner, .page-home .faq > .faq-inner,
.page-home .marquee > *, .page-home .metrics > * { position: relative; z-index: 2; }

/* Compare: cyan/violet aurora + scattered sparkle dots */
.page-home .compare::before {
  content: ''; position: absolute; inset: -12%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(36% 40% at 50% 8%, rgba(34,211,238,0.22), transparent 62%),
    radial-gradient(24% 28% at 8% 76%, rgba(124,58,237,0.20), transparent 62%),
    radial-gradient(22% 26% at 95% 42%, rgba(56,189,248,0.14), transparent 65%);
  filter: blur(36px);
}

.page-home .compare::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.6) 50%, transparent 100%),
    radial-gradient(1px 1px at 88% 12%, rgba(34,211,238,0.7) 50%, transparent 100%),
    radial-gradient(1.2px 1.2px at 76% 78%, rgba(255,255,255,0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 22% 88%, rgba(124,58,237,0.7) 50%, transparent 100%),
    radial-gradient(0.8px 0.8px at 92% 56%, rgba(255,255,255,0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 58% 24%, rgba(56,189,248,0.6) 50%, transparent 100%);
}

/* FAQ: single soft aurora */
.page-home .faq::before {
  content: ''; position: absolute; inset: -15%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 38% at 50% 0%, rgba(34,211,238,0.18), transparent 65%),
    radial-gradient(22% 26% at 8% 60%, rgba(124,58,237,0.16), transparent 65%);
  filter: blur(36px);
}

/* Marquee: gradient sweep behind the scrolling band */
.page-home .marquee::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(34,211,238,0.08), transparent 70%),
    linear-gradient(90deg, var(--bg) 0%, rgba(124,58,237,0.05) 30%, rgba(34,211,238,0.05) 70%, var(--bg) 100%);
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .compare::before { animation: lphome-auroraDrift 26s ease-in-out infinite reverse; }
  .page-home .compare::after { animation: lphome-sparkleFlicker 5.5s ease-in-out infinite; }
  .page-home .faq::before { animation: lphome-auroraDrift 28s ease-in-out infinite; }
}

@keyframes lphome-auroraDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33%      { transform: translate3d(2%, 3%, 0) scale(1.05); }
  66%      { transform: translate3d(-3%, -2%, 0) scale(1.02); }
}

@keyframes lphome-sparkleFlicker {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1;   }
}

/* ===================== Proof: built on Launchpad ===================== */
.page-home .proof { padding: clamp(4rem,8vw,7rem) 0; }

.page-home .proof::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0; background: radial-gradient(60% 50% at 20% 12%, rgba(34,211,238,0.07), transparent 60%), radial-gradient(45% 50% at 82% 88%, rgba(124,58,237,0.06), transparent 65%); }

.page-home .proof-inner { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-home .proof-head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); }

.page-home .proof-head .eyebrow { justify-content: center; }

.page-home .proof-head h2 { font-size: clamp(2rem,4.5vw,3.25rem); margin: 0.75rem 0 1rem; line-height: 1.05; }

.page-home .proof-head h2 em { color: var(--cyan); font-style: normal; }

.page-home .proof-head .sub { color: var(--ink-64); line-height: 1.65; }

.page-home .proof-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1rem,2vw,1.5rem); }

@media (min-width: 720px) { .page-home .proof-grid { grid-template-columns: 1fr 1fr; } }

.page-home .site-card { display: block; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.2)); overflow: hidden; transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.35s ease; }

.page-home .site-card:hover { border-color: rgba(34,211,238,0.45); transform: translateY(-3px); box-shadow: 0 30px 60px -32px rgba(34,211,238,0.3); }

.page-home .site-card:focus-within { outline: 2px solid var(--cyan); outline-offset: 3px; border-color: rgba(34,211,238,0.45); }

.page-home .site-bar { display: flex; align-items: center; gap: 5px; padding: 0.625rem 0.875rem; background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--line-soft); }

.page-home .site-bar .site-url { margin-left: auto; font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.06em; color: var(--ink-46); }

.page-home .site-card .wp-block-image { margin: 0; }

.page-home .site-shot a { display: block; }

.page-home .site-shot a:focus-visible { outline: 2px solid var(--cyan); outline-offset: -2px; }

.page-home .site-card img { display: block; width: 100%; aspect-ratio: 7 / 5; object-fit: cover; object-position: top; }

.page-home .site-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 0.875rem 1.125rem; border-top: 1px solid var(--line-soft); }

.page-home .site-meta p { margin: 0; }

.page-home .site-name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink-bright); letter-spacing: -0.01em; }

.page-home .site-name a { color: var(--ink-bright); text-decoration: none; transition: color 0.15s ease; }

.page-home .site-name a:hover { color: var(--cyan); text-decoration: none; }

.page-home .site-name a:focus-visible { color: var(--cyan); outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: 2px; }

.page-home .site-name a:active { color: var(--sky-deep); }

.page-home .site-desc { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-46); text-align: right; }

/* Testimonial (wp:quote port of the design's figure.proof-quote) */
.page-home .proof-quote { margin: clamp(2.5rem,5vw,3.5rem) auto 0; max-width: 680px; text-align: center; position: relative; border: none; padding: 0; }

.page-home .proof-quote p { margin: 0 0 1rem; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.25rem,2.6vw,1.625rem); line-height: 1.45; letter-spacing: -0.01em; color: var(--ink); }

.page-home .proof-quote p::before { content: '\201C'; color: var(--cyan); }

.page-home .proof-quote p::after { content: '\201D'; color: var(--cyan); }

.page-home .proof-quote cite { display: block; font-family: var(--mono); font-style: normal; font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-46); }

.page-home .proof-cta { text-align: center; margin-top: clamp(2rem,4vw,2.5rem); }

.page-home .proof-cta p { margin: 0; }

/* ===================== Comparison table ===================== */
.page-home .compare { padding: clamp(4rem,8vw,7rem) 0; }

.page-home .compare-inner { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-home .compare-head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); }

.page-home .compare-head .eyebrow { justify-content: center; }

.page-home .compare-head h2 { font-size: clamp(2rem,4.5vw,3.25rem); margin: 0.75rem 0 1rem; line-height: 1.05; }

.page-home .compare-head h2 em { color: var(--cyan); font-style: normal; }

.page-home .compare-head .sub { color: var(--ink-64); line-height: 1.65; }

.page-home .compare-table { overflow-x: auto; border-radius: 14px; border: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.22); }

.page-home .compare-table table { width: 100%; border-collapse: collapse; min-width: 800px; margin: 0; }

.page-home .compare-table th, .page-home .compare-table td { padding: 0.875rem 1rem; text-align: left; font-size: 0.875rem; border-bottom: 1px solid rgba(255,255,255,0.06); }

.page-home .compare-table thead th { color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; }

/* Column title + its descriptor are one header unit: drop the divider between the
   two header rows so the descriptor doesn't butt against a border, and give it a
   little breathing room below the title. The header/body divider is the 1.5px
   border under the .sub row. */
.page-home .compare-table thead tr:first-child th { border-bottom: none; padding-bottom: 0.25rem; }

.page-home .compare-table thead tr.sub th { font-family: var(--mono); font-size: 0.625rem; color: var(--ink-46); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; padding-top: 0.3rem; border-bottom: 1.5px solid rgba(255,255,255,0.12); }

.page-home .compare-table td.crit { color: var(--ink); font-weight: 500; }

.page-home .compare-table td { color: var(--ink-64); }

.page-home .compare-table th.us, .page-home .compare-table td.us { background: rgba(34,211,238,0.07); color: var(--cyan); font-weight: 600; }

.page-home .compare-table thead th.us { color: var(--cyan); }

.page-home .compare-table tbody tr:last-child td { border-bottom: none; }

.page-home .compare-table th.us { box-shadow: inset 0 -2px 0 rgba(34,211,238,0.5); }

.page-home .compare-table thead th.us { text-shadow: 0 0 12px rgba(34,211,238,0.5); }

.page-home .compare-cta { text-align: center; margin-top: 2.5rem; }

/* ===================== Membership benefits ===================== */
.page-home .membership { padding: clamp(2.5rem,5vw,4rem) clamp(1rem,3vw,1.5rem); position: relative; isolation: isolate; }

.page-home .membership .wope-box {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(1.25rem,2.5vw,2rem) 0 clamp(3rem,6vw,5rem);
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.05);
}

/* Bottom glow only — subtle purple+teal matching the rest of the page */
.page-home .membership .wope-box::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(55% 45% at 50% 100%, rgba(124,58,237,0.38), transparent 65%),
    radial-gradient(32% 36% at 14% 100%, rgba(34,211,238,0.26), transparent 65%),
    radial-gradient(32% 36% at 86% 100%, rgba(34,211,238,0.26), transparent 65%),
    radial-gradient(40% 40% at 50% 92%, rgba(168,85,247,0.18), transparent 65%);
  filter: blur(10px);
}

/* Sparkles inside the box, distributed in the open middle */
.page-home .membership .wope-box::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(1px 1px at 8% 36%, rgba(255,255,255,0.90) 50%, transparent 100%),
    radial-gradient(1.2px 1.2px at 24% 42%, rgba(220,228,240,0.85) 50%, transparent 100%),
    radial-gradient(1px 1px at 42% 48%, rgba(255,255,255,0.75) 50%, transparent 100%),
    radial-gradient(1px 1px at 58% 36%, rgba(220,228,240,0.75) 50%, transparent 100%),
    radial-gradient(1.4px 1.4px at 76% 44%, rgba(255,255,255,0.85) 50%, transparent 100%),
    radial-gradient(1px 1px at 88% 52%, rgba(200,208,224,0.70) 50%, transparent 100%),
    radial-gradient(0.8px 0.8px at 16% 56%, rgba(255,255,255,0.60) 50%, transparent 100%),
    radial-gradient(1px 1px at 68% 60%, rgba(220,228,240,0.65) 50%, transparent 100%),
    radial-gradient(1px 1px at 36% 64%, rgba(200,208,224,0.55) 50%, transparent 100%),
    radial-gradient(0.8px 0.8px at 92% 64%, rgba(255,255,255,0.50) 50%, transparent 100%),
    radial-gradient(1.2px 1.2px at 4% 54%, rgba(220,228,240,0.55) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 70%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 70%, transparent 100%);
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .membership .wope-box::after { animation: lphome-sparkleFlicker 6s ease-in-out infinite; }
}

/* Circuit band (silver curvy traces + teal streaking currents) */
.page-home .membership .circuit-band {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  height: clamp(80px, 12vw, 140px);
  z-index: 2;
  pointer-events: none;
  display: block;
}

.page-home .membership .circuit-bottom { bottom: 0; }

.page-home .circuit-band .currents { filter: blur(0.6px); }

.page-home .circuit-band .zoom-outer,
.page-home .circuit-band .zoom-mid,
.page-home .circuit-band .zoom { fill: none; stroke-linecap: round; opacity: 0; }

.page-home .circuit-band .zoom-outer { stroke: rgba(34,211,238,0.30); stroke-width: 2.4; }

.page-home .circuit-band .zoom-mid   { stroke: rgba(34,211,238,0.65); stroke-width: 1.6; }

.page-home .circuit-band .zoom       { stroke: rgba(34,211,238,1);    stroke-width: 1; }

@media (prefers-reduced-motion: no-preference) {
  .page-home .circuit-band .zoom-outer,
  .page-home .circuit-band .zoom-mid,
  .page-home .circuit-band .zoom { animation: lphome-zoomSwoosh linear infinite; }
  .page-home .circuit-band .zoom-1, .page-home .circuit-band .zoom-1.zoom-mid, .page-home .circuit-band .zoom-1.zoom-outer { animation-duration: 5s;   animation-delay: -0.6s; }
  .page-home .circuit-band .zoom-2, .page-home .circuit-band .zoom-2.zoom-mid, .page-home .circuit-band .zoom-2.zoom-outer { animation-duration: 5.5s; animation-delay: -2.8s; }
  .page-home .circuit-band .zoom-3, .page-home .circuit-band .zoom-3.zoom-mid, .page-home .circuit-band .zoom-3.zoom-outer { animation-duration: 6s;   animation-delay: -1.4s; }
  .page-home .circuit-band .zoom-4, .page-home .circuit-band .zoom-4.zoom-mid, .page-home .circuit-band .zoom-4.zoom-outer { animation-duration: 4.5s; animation-delay: -3.6s; }
  .page-home .circuit-band .zoom-5, .page-home .circuit-band .zoom-5.zoom-mid, .page-home .circuit-band .zoom-5.zoom-outer { animation-duration: 5s;   animation-delay: -0.2s; }
}

@keyframes lphome-zoomSwoosh {
  0%   { opacity: 0; stroke-dashoffset: calc(var(--start, 0) * 1px); }
  8%   { opacity: 1; stroke-dashoffset: calc((var(--start, 0) - 4)  * 1px); }
  22%  { opacity: 1; stroke-dashoffset: calc((var(--start, 0) - 26) * 1px); }
  36%  { opacity: 0; stroke-dashoffset: calc((var(--start, 0) - 52) * 1px); }
  100% { opacity: 0; stroke-dashoffset: calc((var(--start, 0) - 52) * 1px); }
}

.page-home .membership-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-home .membership .wope-box > .membership-inner { position: relative; z-index: 3; max-width: 1120px; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-home .membership-head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); }

.page-home .membership-head .eyebrow { justify-content: center; }

.page-home .membership-head h2 { font-size: clamp(2rem,4.5vw,3.25rem); margin: 0.75rem 0; line-height: 1.05; }

.page-home .membership-head h2 em { color: var(--cyan); font-style: normal; }

/* Icon grid with thin dividers between cells */
.page-home .membership-grid { display: grid; grid-template-columns: 1fr; gap: 0; }

@media (min-width: 720px) { .page-home .membership-grid { grid-template-columns: 1fr 1fr; } }

@media (min-width: 1080px) { .page-home .membership-grid { grid-template-columns: repeat(4, 1fr); } }

.page-home .benefit {
  padding: clamp(1.5rem,2.5vw,2rem) clamp(1.25rem,2vw,1.75rem);
  background: transparent;
  border: none;
  border-radius: 0;
  transition: background 0.3s ease;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (min-width: 1080px) {
  .page-home .benefit:nth-child(4n) { border-right: none; }
  .page-home .benefit:nth-last-child(-n+4) { border-bottom: none; }
}

@media (min-width: 720px) and (max-width: 1079px) {
  .page-home .benefit:nth-child(2n) { border-right: none; }
  .page-home .benefit:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 719px) {
  .page-home .benefit { border-right: none; }
  .page-home .benefit:last-child { border-bottom: none; }
}

.page-home .benefit:hover { background: linear-gradient(180deg, rgba(220,228,240,0.05), rgba(148,156,176,0.04)); }

.page-home .benefit .b-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(220,228,240,0.14), rgba(148,156,176,0.10));
  border: 1px solid rgba(220,228,240,0.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 0 14px -2px rgba(180,188,204,0.35);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.125rem;
  color: rgb(225,230,240);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.page-home .benefit:hover .b-icon {
  background: linear-gradient(140deg, rgba(124,58,237,0.28), rgba(34,211,238,0.18));
  border-color: rgba(34,211,238,0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 18px -2px rgba(124,58,237,0.50), 0 0 10px -2px rgba(34,211,238,0.50);
  color: var(--cyan);
}

.page-home .benefit h3 { font-size: 1.0625rem; line-height: 1.3; margin: 0 0 0.5rem; color: var(--ink); font-weight: 600; }

.page-home .benefit p { color: var(--ink-64); font-size: 0.875rem; line-height: 1.55; margin: 0; }

/* ===================== Marquee ===================== */
.page-home .marquee { padding: clamp(2.5rem,5vw,4rem) 0; }

.page-home .marquee__head { text-align: center; margin-bottom: 1.75rem; }

.page-home .marquee__head p.mono { margin: 0; }

.page-home .marquee__sub { text-align: center; color: var(--ink-64); font-size: 0.9375rem; line-height: 1.6; max-width: 54ch; margin: 0.75rem auto 0; }

.page-home .marquee__mask { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); mask-image: linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); }

.page-home .marquee__track { display: flex; width: max-content; }

.page-home .marquee__group { display: flex; align-items: center; gap: 3.5rem; padding-right: 3.5rem; flex: none; }

@media (prefers-reduced-motion: no-preference) {
  .page-home .marquee__track { animation: lphome-scrollx 120s linear infinite; }
}

@keyframes lphome-scrollx { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.page-home .marquee__item { font-family: var(--mono); font-size: 0.875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-46); white-space: nowrap; display: flex; align-items: center; gap: 0.55rem; }

.page-home .marquee__item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }

/* ===================== FAQ ===================== */
.page-home .faq { padding: clamp(4rem,8vw,7rem) 0; }

.page-home .faq-inner { max-width: 880px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-home .faq-head { text-align: center; margin-bottom: clamp(2.5rem,5vw,3.5rem); }

.page-home .faq-head .eyebrow { justify-content: center; }

.page-home .faq-head h2 { font-size: clamp(2rem,4.5vw,3.25rem); margin: 0.75rem 0 0.75rem; line-height: 1.05; }

.page-home .faq-head h2 em { color: var(--cyan); font-style: normal; }

.page-home .faq-head .sub { color: var(--ink-64); }

.page-home .faq-list { display: grid; gap: 0.75rem; }

.page-home .faq-item { border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; background: rgba(255,255,255,0.015); overflow: hidden; transition: border-color 0.25s ease, background 0.25s ease; }

.page-home .faq-item[open] { border-color: rgba(34,211,238,0.35); background: rgba(34,211,238,0.02); }

.page-home .faq-item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.125rem 1.5rem; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; color: var(--ink); transition: color 0.2s ease; }

.page-home .faq-item summary::-webkit-details-marker { display: none; }

.page-home .faq-item summary:hover { color: var(--cyan); }

.page-home .faq-item summary:focus-visible { outline: 2px solid var(--cyan); outline-offset: -2px; border-radius: 12px; }

/* The design's summary .q-icon span, drawn in CSS so the wp:details
   summary stays plain editable text */
.page-home .faq-item summary::after {
  content: '';
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background-image:
    linear-gradient(var(--ink-64), var(--ink-64)),
    linear-gradient(var(--ink-64), var(--ink-64));
  background-size: 12px 1.5px, 1.5px 12px;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.page-home .faq-item[open] summary::after {
  transform: rotate(45deg);
  border-color: var(--cyan);
  background-image:
    linear-gradient(var(--cyan), var(--cyan)),
    linear-gradient(var(--cyan), var(--cyan));
}

.page-home .faq-item p { padding: 0 1.5rem 1.5rem; color: var(--ink-64); line-height: 1.65; margin: 0; font-size: 0.9375rem; }

/* ===================== Guarantees (global .guarantees CSS; margin re-asserts
   because the page-scoped base h/p rules win specificity ties) ===================== */
.page-home .guarantees-head .eyebrow { justify-content: center; }

.page-home .guarantees-head h2 { margin: 0 0 0.75rem; }

.page-home .guarantees-head p { margin: 0; }

.page-home .guarantee-card .g-body { min-width: 0; }

.page-home .guarantee-card h3 { margin: 0 0 0.4rem; }

.page-home .guarantee-card p { margin: 0; }

.page-home .guarantee-card p.g-fine { margin: 0.55rem 0 0; }

/* ===================== Final CTA ===================== */
.page-home .cta { padding: clamp(5rem,10vw,8rem) 0 clamp(4.5rem,9vw,7rem); text-align: center; position: relative; overflow: hidden; }

.page-home .cta::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 80% at 50% 120%, rgba(56,189,248,0.22), transparent 60%), radial-gradient(40% 60% at 50% 120%, rgba(124,58,237,0.16), transparent 65%); }

.page-home .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-home .cta h2 { font-size: clamp(2.25rem,5.5vw,3.75rem); line-height: 1.02; margin: 0 0 1rem; }

.page-home .cta p:not(.eyebrow):not(.cta-meta) { font-size: 1.0625rem; color: var(--ink-64); margin: 0 auto 2rem; max-width: 40ch; line-height: 1.6; }

/* .cta-actions row layout is now owned by the native flex-layout group (blockGap 0.75rem, wrap, center-justified); page-specific margin re-asserted in the reconversion block below. */
.page-home .cta p.cta-meta { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-32); margin: 0; }

.page-home .cta-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }

.page-home .cta-meta span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }

/* ═══════════════════════════════════════════════════════════════════
   Reconversion: Custom-HTML → native/custom blocks (editor/frontend parity)
   Removed wp:html for: hero backdrop hooks, hero + bottom CTAs, the three
   feature blueprints + growth chart + membership circuit (decoration block),
   the four site-bars, and the benefit/guarantee card icons (drawn below).
   ═══════════════════════════════════════════════════════════════════ */

/* Hero + bottom CTA rows are native flex-layout groups now; WP's flex layout
   owns display/gap/wrap/justify, so the old custom flex is dropped. Only the
   page-specific bottom margin on .cta-actions remains. */
.page-home .cta-actions { margin-bottom: 2.25rem; }

.page-home .hero-cta-demo { margin: 0; }

/* Beat .page-home .cta p:not(.eyebrow):not(.cta-meta) {margin:0 auto 2rem}

. That guard
   is (0,4,1) once the two :not()s are counted, so this override must out-specify it —
   mirror the guard's :not()s and add the class for (0,5,1). Otherwise the 2rem bottom
   margin + auto side margins break vertical centering against the taller button in the
   flex CTA row. */
.page-home .cta p.cta-actions-demo:not(.eyebrow):not(.cta-meta) { margin: 0; }

.page-home .hero-cta-demo a { text-decoration: none; }

/* .play chip keeps its bordered circle (see .hero-cta .play); the play
   triangle that used to be an inline <svg> is now a pure-CSS triangle. */
.page-home .hero-cta .play::before {
  content: ''; width: 0; height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 1px;
}

/* Decoration block wrappers replace the old .stage / .fw-illo DOM. Give the
   feature/growth wrappers the size + positioning context the .bp SVGs need
   (the .bp internal element + animation rules are class-scoped and still apply). */
.page-home .feature .lp-decoration { order: -1; position: relative; height: 200px; margin: 0.25rem 0 1.25rem; overflow: hidden; border-radius: 10px; }

.page-home .feature .lp-decoration .bp { position: absolute; inset: 0; width: 100%; height: 100%; display: block; color: var(--cyan); }

.page-home .feat-wide .lp-decoration--blueprint-4 { position: relative; height: clamp(220px, 28vw, 320px); }

@media (max-width: 720px) { .page-home .feat-wide .lp-decoration--blueprint-4 { height: 240px; } }

/* Membership circuit: the .circuit-band SVG keeps its own absolute positioning
   (still class-matched to .membership .circuit-band/.circuit-bottom) and anchors
   to .wope-box. The decoration wrapper must stay a neutral, unpositioned
   pass-through so the SVG escapes to .wope-box exactly as before. */
.page-home .membership .wope-box > .lp-decoration--membership-circuit { display: contents; }

/* site-bar: native group + .site-url paragraph; the three browser dots (no
   semantic content) are drawn from CSS. .site-url stays pushed to the right. */
.page-home .site-bar::before {
  content: ''; flex: none; width: 31px; height: 7px;
  background-image: radial-gradient(circle 3.5px at 3.5px 3.5px, rgba(255,255,255,0.14) 96%, transparent);
  background-size: 12px 7px; background-repeat: repeat-x; background-position: left center;
}

.page-home .site-bar .site-url { margin: 0 0 0 auto; }

/* Benefit card icons — out of wp:html and onto the .b-icon chip's ::before.
   A CSS mask painted with currentColor reproduces each stroked glyph and keeps
   the hover recolor (the chip flips to color:var(--cyan) on :hover). */
.page-home .benefit .b-icon::before {
  content: ''; display: block; width: 18px; height: 18px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}

.page-home .membership-grid .benefit:nth-child(1) .b-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M17.5%2019a4.5%204.5%200%201%200-1.5-8.75A6%206%200%200%200%204%2012.5%22%2F%3E%3Cpath%20d%3D%22M6%2019h11.5%22%2F%3E%3Cpath%20d%3D%22M12%208v6m0%200l-2-2m2%202l2-2%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M17.5%2019a4.5%204.5%200%201%200-1.5-8.75A6%206%200%200%200%204%2012.5%22%2F%3E%3Cpath%20d%3D%22M6%2019h11.5%22%2F%3E%3Cpath%20d%3D%22M12%208v6m0%200l-2-2m2%202l2-2%22%2F%3E%3C%2Fsvg%3E"); }

.page-home .membership-grid .benefit:nth-child(2) .b-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%2012c0-4.97%204.03-8%209-8s9%203.03%209%208-4.03%208-9%208c-1.32%200-2.58-.22-3.74-.62L3%2021l1.6-4.18A8.6%208.6%200%200%201%203%2012z%22%2F%3E%3Ccircle%20cx%3D%228.5%22%20cy%3D%2212%22%20r%3D%220.8%22%20fill%3D%22%23000%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%220.8%22%20fill%3D%22%23000%22%2F%3E%3Ccircle%20cx%3D%2215.5%22%20cy%3D%2212%22%20r%3D%220.8%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%2012c0-4.97%204.03-8%209-8s9%203.03%209%208-4.03%208-9%208c-1.32%200-2.58-.22-3.74-.62L3%2021l1.6-4.18A8.6%208.6%200%200%201%203%2012z%22%2F%3E%3Ccircle%20cx%3D%228.5%22%20cy%3D%2212%22%20r%3D%220.8%22%20fill%3D%22%23000%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%220.8%22%20fill%3D%22%23000%22%2F%3E%3Ccircle%20cx%3D%2215.5%22%20cy%3D%2212%22%20r%3D%220.8%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E"); }

.page-home .membership-grid .benefit:nth-child(3) .b-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%222.5%22%2F%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%222.5%22%2F%3E%3Ccircle%20cx%3D%226%22%20cy%3D%2218%22%20r%3D%222.5%22%2F%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M8.5%206h7M6%208.5v7M18%208.5v7M8.5%2018h7%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%222.5%22%2F%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%222.5%22%2F%3E%3Ccircle%20cx%3D%226%22%20cy%3D%2218%22%20r%3D%222.5%22%2F%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M8.5%206h7M6%208.5v7M18%208.5v7M8.5%2018h7%22%2F%3E%3C%2Fsvg%3E"); }

.page-home .membership-grid .benefit:nth-child(4) .b-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%2020h18%22%2F%3E%3Cpath%20d%3D%22M5%2020V12M9%2020V8M13%2020V14M17%2020V6%22%2F%3E%3Cpath%20d%3D%22M5%2012l4-4%204%206%204-8%22%2F%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%226%22%20r%3D%221.4%22%20fill%3D%22%23000%22%20stroke%3D%22none%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%2020h18%22%2F%3E%3Cpath%20d%3D%22M5%2020V12M9%2020V8M13%2020V14M17%2020V6%22%2F%3E%3Cpath%20d%3D%22M5%2012l4-4%204%206%204-8%22%2F%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%226%22%20r%3D%221.4%22%20fill%3D%22%23000%22%20stroke%3D%22none%22%2F%3E%3C%2Fsvg%3E"); }

.page-home .membership-grid .benefit:nth-child(5) .b-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cellipse%20cx%3D%2212%22%20cy%3D%226%22%20rx%3D%228%22%20ry%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M4%206v6c0%201.4%203.6%202.5%208%202.5s8-1.1%208-2.5V6%22%2F%3E%3Cpath%20d%3D%22M4%2012v6c0%201.4%203.6%202.5%208%202.5%22%2F%3E%3Cpath%20d%3D%22M19%2016l-3%203%203%203%22%2F%3E%3Cpath%20d%3D%22M16%2019a4%204%200%200%201%204-4%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cellipse%20cx%3D%2212%22%20cy%3D%226%22%20rx%3D%228%22%20ry%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M4%206v6c0%201.4%203.6%202.5%208%202.5s8-1.1%208-2.5V6%22%2F%3E%3Cpath%20d%3D%22M4%2012v6c0%201.4%203.6%202.5%208%202.5%22%2F%3E%3Cpath%20d%3D%22M19%2016l-3%203%203%203%22%2F%3E%3Cpath%20d%3D%22M16%2019a4%204%200%200%201%204-4%22%2F%3E%3C%2Fsvg%3E"); }

.page-home .membership-grid .benefit:nth-child(6) .b-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%202.5L4%205.5v6c0%205%203.5%208.5%208%2010%204.5-1.5%208-5%208-10v-6l-8-3z%22%2F%3E%3Cpath%20d%3D%22M9%2012l2%202%204-4.5%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%202.5L4%205.5v6c0%205%203.5%208.5%208%2010%204.5-1.5%208-5%208-10v-6l-8-3z%22%2F%3E%3Cpath%20d%3D%22M9%2012l2%202%204-4.5%22%2F%3E%3C%2Fsvg%3E"); }

.page-home .membership-grid .benefit:nth-child(7) .b-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%2013a9%209%200%201%201%2018%200%22%2F%3E%3Cpath%20d%3D%22M12%2013l4.5-4.5%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2213%22%20r%3D%221.6%22%20fill%3D%22%23000%22%20stroke%3D%22none%22%2F%3E%3Cpath%20d%3D%22M3%2017h2M19%2017h2M12%2020v1%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%2013a9%209%200%201%201%2018%200%22%2F%3E%3Cpath%20d%3D%22M12%2013l4.5-4.5%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2213%22%20r%3D%221.6%22%20fill%3D%22%23000%22%20stroke%3D%22none%22%2F%3E%3Cpath%20d%3D%22M3%2017h2M19%2017h2M12%2020v1%22%2F%3E%3C%2Fsvg%3E"); }

.page-home .membership-grid .benefit:nth-child(8) .b-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%2016l5-5%204%204%205-7%22%2F%3E%3Cpath%20d%3D%22M19%208h-3M19%208v3%22%2F%3E%3Cpath%20d%3D%22M4%2020h16%22%2F%3E%3Ccircle%20cx%3D%2214%22%20cy%3D%2215%22%20r%3D%220.8%22%20fill%3D%22%23000%22%20stroke%3D%22none%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%2016l5-5%204%204%205-7%22%2F%3E%3Cpath%20d%3D%22M19%208h-3M19%208v3%22%2F%3E%3Cpath%20d%3D%22M4%2020h16%22%2F%3E%3Ccircle%20cx%3D%2214%22%20cy%3D%2215%22%20r%3D%220.8%22%20fill%3D%22%23000%22%20stroke%3D%22none%22%2F%3E%3C%2Fsvg%3E"); }

/* Guarantee card icons — same technique on the .g-icon chip (cyan by default). */
.page-home .guarantee-card .g-icon::before {
  content: ''; display: block; width: 20px; height: 20px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}

.page-home .guarantee-grid .guarantee-card:nth-child(1) .g-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22M12%207.5v4.5l3%202%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22M12%207.5v4.5l3%202%22%2F%3E%3C%2Fsvg%3E"); }

.page-home .guarantee-grid .guarantee-card:nth-child(2) .g-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203l7%203v5c0%204-3%207.5-7%208.5-4-1-7-4.5-7-8.5V6z%22%2F%3E%3Cpath%20d%3D%22M9%2012l2%202%204-4%22%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203l7%203v5c0%204-3%207.5-7%208.5-4-1-7-4.5-7-8.5V6z%22%2F%3E%3Cpath%20d%3D%22M9%2012l2%202%204-4%22%2F%3E%3C%2Fsvg%3E"); }

/* ── platform ──────────────────────────────────────────── */
/* ══ Page: platform ══ */

/* WP flow-layout gap neutralizer — spacing owned by ported design margins */
.page-platform :where(.wp-block-group) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.page-platform h1, .page-platform h2, .page-platform h3,
.page-platform h4, .page-platform h5, .page-platform h6 { margin: 0 0 0.5em; }

.page-platform p { margin: 0 0 1em; }

.page-platform p:last-child { margin-bottom: 0; }

.page-platform .gtext {
  background: linear-gradient(180deg, var(--ink-bright) 0%, var(--ink-64) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.page-platform .ntext {
  background: var(--neon);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.page-platform .eyebrow { margin-bottom: 1.25rem; }

.page-platform .eyebrow--center { justify-content: center; }

.page-platform section { position: relative; z-index: 1; }

.page-platform .divide { border-top: 1px solid var(--line); }

.page-platform .link-arrow::after { content: '→'; transition: transform 0.18s; }

.page-platform .link-arrow:hover::after, .page-platform .link-arrow:focus-visible::after { transform: translateX(3px); }

/* ===== Hero (interior) ===== */
.page-platform .hero { position: relative; padding: clamp(4.5rem,11vw,8rem) 0 clamp(3.5rem,7vw,5.5rem); overflow: hidden; isolation: isolate; }

.page-platform .hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(75% 60% at 50% -8%, rgba(56,189,248,0.22), transparent 62%),
    radial-gradient(50% 50% at 82% 18%, rgba(124,58,237,0.16), transparent 65%),
    radial-gradient(45% 45% at 12% 88%, rgba(34,211,238,0.10), transparent 65%);
}

.page-platform .hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.page-platform .hero--interior { padding: clamp(5rem,10vw,8rem) 0 clamp(3rem,6vw,5rem); }

.page-platform .hero--interior .hero-inner {
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem);
  text-align: center; display: block;
}

.page-platform .hero--interior .hero-inner .eyebrow { justify-content: center; }

.page-platform .hero--interior h1 {
  font-size: clamp(2.5rem,6vw,4.25rem);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  max-width: 20ch;
  margin-left: auto; margin-right: auto;
  letter-spacing: -0.025em;
}

.page-platform .hero--interior .hero-sub {
  font-size: clamp(1.0625rem,1.5vw,1.1875rem);
  color: var(--ink-64); line-height: 1.6;
  max-width: 56ch; margin: 0 auto 2.25rem;
}

/* .hero-cta row alignment/gap now owned by the native flex group (wizard-button + .btn-line link).
   display:contents promotes the secondary link to a direct flex child so the native gap/justify apply. */
.page-platform .hero-cta .cta-secondary { display: contents; }

/* ===== Section base ===== */
.page-platform .section { padding: clamp(4rem,8vw,6rem) 0; position: relative; }

.page-platform .section-inner { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-platform .section-head { max-width: 720px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); text-align: center; }

.page-platform .section-head .eyebrow { justify-content: center; }

.page-platform .section-head h2 { font-size: clamp(1.875rem,4vw,2.75rem); margin: 0; max-width: 22ch; margin-left: auto; margin-right: auto; }

.page-platform .section-head p:not(.eyebrow) { margin: 1.125rem auto 0; max-width: 56ch; font-size: 1rem; line-height: 1.65; color: var(--ink-64); }

.page-platform .section-grid::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.45;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 30%, transparent 80%);
}

.page-platform .section-grid > .section-inner { position: relative; z-index: 1; }

/* ===== Perks band ===== */
.page-platform .perks-band { padding: 1.75rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.page-platform .perks-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 0 clamp(1.25rem,4vw,2rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 2rem 3rem;
}

.page-platform .perk {
  display: inline-flex; align-items: center; gap: 0.625rem;
  font-family: var(--mono); font-size: 0.6875rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-46); margin: 0;
}

.page-platform .perk::before {
  content: ''; width: 14px; height: 14px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ===== What's included stack ===== */
.page-platform .stack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

@media (max-width: 880px) { .page-platform .stack-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 540px) { .page-platform .stack-grid { grid-template-columns: 1fr; } }

.page-platform .stack-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.25s, transform 0.25s;
}

.page-platform .stack-card:hover { border-color: rgba(34,211,238,0.35); transform: translateY(-2px); }

/* Card icon: box + inline SVG (data-URI) rendered as a ::before, was a wp:html .stack-icon */
.page-platform .stack-card::before {
  content: '';
  display: block;
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(34,211,238,0.25);
  margin-bottom: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  background-color: rgba(34,211,238,0.10);
}

.page-platform .stack-card:nth-child(1)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 1v6m0 6v6m11-7h-6m-6 0H1'/%3E%3C/svg%3E"); }

.page-platform .stack-card:nth-child(2)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 18 22 12 16 6'/%3E%3Cpolyline points='8 6 2 12 8 18'/%3E%3C/svg%3E"); }

.page-platform .stack-card:nth-child(3)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='8' y1='13' x2='16' y2='13'/%3E%3Cline x1='8' y1='17' x2='13' y2='17'/%3E%3C/svg%3E"); }

.page-platform .stack-card:nth-child(4)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 2L11 13'/%3E%3Cpath d='M22 2l-7 20-4-9-9-4 20-7z'/%3E%3C/svg%3E"); }

.page-platform .stack-card:nth-child(5)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.5-4.5'/%3E%3C/svg%3E"); }

.page-platform .stack-card:nth-child(6)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='20' x2='18' y2='10'/%3E%3Cline x1='12' y1='20' x2='12' y2='4'/%3E%3Cline x1='6' y1='20' x2='6' y2='14'/%3E%3C/svg%3E"); }

.page-platform .stack-card:nth-child(7)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M3 5v14a9 3 0 0 0 18 0V5'/%3E%3Cpath d='M3 12a9 3 0 0 0 18 0'/%3E%3C/svg%3E"); }

.page-platform .stack-card:nth-child(8)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 1 1-6.7-8.7'/%3E%3Cpolyline points='21 4 12 13 9 10'/%3E%3C/svg%3E"); }

.page-platform .stack-card h4 { font-size: 1.0625rem; margin: 0 0 0.4rem; letter-spacing: -0.01em; }

.page-platform .stack-card p { margin: 0; font-size: 0.8125rem; line-height: 1.55; color: var(--ink-64); }

/* ===== Core vs Pro table ===== */
.page-platform .cvp-table-wrap { overflow-x: auto; }

.page-platform .cvp-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 640px; }

.page-platform .cvp-table thead th {
  text-align: left; padding: 1.125rem 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: -0.01em; color: var(--ink-bright);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.page-platform .cvp-table thead th.center { text-align: center; width: 17%; }

.page-platform .cvp-table thead th .th-sub {
  display: block; font-family: var(--mono); font-weight: 500;
  font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-46); margin-top: 0.375rem;
}

.page-platform .cvp-table thead th.pro-col {
  background: rgba(124,58,237,0.08);
  border-top: 1px solid rgba(124,58,237,0.35);
  border-left: 1px solid rgba(124,58,237,0.25);
  border-right: 1px solid rgba(124,58,237,0.25);
  border-radius: 10px 10px 0 0;
}

.page-platform .cvp-table thead th.pro-col .th-sub { color: var(--violet-text, #B794FF); }

.page-platform .cvp-section-row td {
  padding: 1.5rem 1rem 0.625rem;
  font-family: var(--mono); font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-46);
}

.page-platform .cvp-table tbody tr.line-row td {
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem; color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}

.page-platform .cvp-table tbody tr.line-row td small { display: block; font-size: 0.75rem; color: var(--ink-46); margin-top: 0.125rem; }

.page-platform .cvp-table tbody tr.line-row td.cell { text-align: center; color: var(--ink-64); }

.page-platform .cvp-table tbody td.cell.pro {
  background: rgba(124,58,237,0.06);
  border-left: 1px solid rgba(124,58,237,0.25);
  border-right: 1px solid rgba(124,58,237,0.25);
}

.page-platform .cvp-table tbody tr:last-child td.cell.pro { border-bottom: 1px solid rgba(124,58,237,0.25); border-radius: 0 0 10px 10px; }

.page-platform .cvp-yes {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(34,211,238,0.12); color: var(--cyan);
}

.page-platform .cvp-yes svg { width: 11px; height: 11px; }

.page-platform .cvp-yes.violet { background: rgba(124,58,237,0.18); color: var(--violet-text, #B794FF); }

.page-platform .cvp-dash { color: var(--ink-32); }

.page-platform .cvp-foot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem;
}

.page-platform .cvp-foot p { margin: 0; font-size: 0.875rem; color: var(--ink-46); max-width: 56ch; }

.page-platform .cvp-foot .cvp-link { max-width: none; }

/* ===== Health & alerts dashboard ===== */
.page-platform .stats { position: relative; isolation: isolate; overflow: hidden; padding: clamp(4rem,9vw,7rem) 0; }

.page-platform .stats::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 16% 14%, rgba(124,58,237,0.20), transparent 60%),
    radial-gradient(55% 50% at 86% 82%, rgba(34,211,238,0.16), transparent 62%),
    radial-gradient(60% 60% at 72% 8%, rgba(56,189,248,0.14), transparent 60%);
}

.page-platform .stats::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.85;
  background-image:
    radial-gradient(1.6px 1.6px at 12% 22%, rgba(255,255,255,0.85), transparent 60%),
    radial-gradient(1px 1px at 28% 66%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1.4px 1.4px at 46% 14%, rgba(186,212,255,0.7), transparent 60%),
    radial-gradient(1.4px 1.4px at 63% 48%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1px 1px at 78% 28%, rgba(160,220,255,0.6), transparent 60%),
    radial-gradient(1px 1px at 88% 70%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 36% 86%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1.4px 1.4px at 7% 78%, rgba(196,186,255,0.55), transparent 60%),
    radial-gradient(1px 1px at 55% 76%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 70% 90%, rgba(180,225,255,0.5), transparent 60%),
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 100% 100%,100% 100%,100% 100%,100% 100%,100% 100%,100% 100%,100% 100%,100% 100%,100% 100%,100% 100%, 62px 62px, 62px 62px;
  -webkit-mask-image: radial-gradient(ellipse 92% 82% at 50% 46%, #000 36%, transparent 82%);
  mask-image: radial-gradient(ellipse 92% 82% at 50% 46%, #000 36%, transparent 82%);
}

@media (prefers-reduced-motion: no-preference) {
  .page-platform .stats::after { animation: lpplat-twinkle 6.5s ease-in-out infinite; }
  .page-platform .rdr-sweep { animation: lpplat-radar 4.4s linear infinite; }
  .page-platform .rdr-ping { animation: lpplat-ping 2.4s ease-out infinite; }
  .page-platform .stats-wire { animation: lpplat-statfloat 8s ease-in-out infinite; }
}

@keyframes lpplat-twinkle { 0%,100%{opacity:.65} 50%{opacity:1} }

@keyframes lpplat-radar { to { transform: rotate(360deg); } }

@keyframes lpplat-ping { 0%{opacity:.75;transform:scale(.35)} 100%{opacity:0;transform:scale(1)} }

@keyframes lpplat-statfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

.page-platform .rdr-sweep { transform-box: view-box; transform-origin: 160px 190px; }

.page-platform .rdr-ping { transform-box: fill-box; transform-origin: center; }

.page-platform .stats-inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: "head wire" "spec spec"; column-gap: clamp(2rem,5vw,4.5rem); row-gap: clamp(2rem,4vw,3rem); align-items: center; }

.page-platform .stats-head { grid-area: head; }

.page-platform .stats-wire { grid-area: wire; position: relative; }

.page-platform .stats h2 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.045em; font-size: clamp(1.5rem,3.2vw,2.125rem); line-height: 1.15; color: #fff; margin: 0; max-width: 18ch; }

.page-platform .stats h2 em { font-style: normal; color: var(--cyan); }

.page-platform .stats-head .eyebrow { justify-content: flex-start; }

.page-platform .stats-head .sub { margin: 1.125rem 0 0; font-size: 0.9375rem; line-height: 1.65; color: var(--ink-64); max-width: 44ch; }

.page-platform .spec { grid-area: spec; position: relative; display: flex; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 1.75rem; color: var(--cyan); }

.page-platform .spec::before, .page-platform .spec::after { content: ''; position: absolute; top: -5px; width: 10px; height: 10px; opacity: 0.6;
  background: linear-gradient(currentColor,currentColor) center/10px 1px no-repeat, linear-gradient(currentColor,currentColor) center/1px 10px no-repeat; }

.page-platform .spec::before { left: -3px; }

.page-platform .spec::after { right: -3px; }

.page-platform .spec .cell { flex: 1 1 0; min-width: 130px; padding: 0 clamp(1rem,2.6vw,2rem); position: relative; }

.page-platform .spec .cell:first-child { padding-left: 0; }

.page-platform .spec .cell + .cell { border-left: 1px solid var(--line); }

.page-platform .spec .cell + .cell::before { content: ''; position: absolute; top: calc(-1.75rem - 5px); left: -5px; width: 10px; height: 10px; opacity: 0.45;
  background: linear-gradient(currentColor,currentColor) center/10px 1px no-repeat, linear-gradient(currentColor,currentColor) center/1px 10px no-repeat; }

.page-platform .spec .lab { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-46); margin: 0; }

.page-platform .spec .num { font-family: var(--font-display); font-weight: 300; font-size: clamp(2rem,4.2vw,3rem); line-height: 1; color: #fff; margin-top: 0.9rem; display: flex; align-items: baseline; gap: 0.16em; letter-spacing: -0.01em; }

.page-platform .spec .num small { font-family: var(--mono); font-weight: 500; font-size: 0.46em; color: var(--ink-46); letter-spacing: 0.04em; }

.page-platform .spec .num em { font-style: normal; color: var(--cyan); }

.page-platform .stats-wire svg { display: block; width: 100%; height: auto; color: var(--cyan); filter: drop-shadow(0 0 16px rgba(34,211,238,0.22)); }

@media (max-width: 880px) {
  .page-platform .stats-inner { grid-template-columns: 1fr; grid-template-areas: "head" "wire" "spec"; row-gap: 2.25rem; }
  .page-platform .stats-wire { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 560px) {
  /* 3 stats wrapped 2+1 (orphaning "Open alerts") and the horizontal-row
     cross-markers stranded mid-layout. Stack them cleanly instead. */
  .page-platform .spec { flex-direction: column; padding-top: 1.5rem; }
  .page-platform .spec .cell { flex: none; width: 100%; min-width: 0; padding: 1.25rem 0 0; }
  .page-platform .spec .cell:first-child { padding: 0; }
  .page-platform .spec .cell + .cell { border-left: 0; border-top: 1px solid var(--line); }
  .page-platform .spec .cell + .cell::before { display: none; }
}

/* ===== Team band ===== */
.page-platform .team-band { padding: clamp(3.5rem,7vw,5rem) 0; text-align: center; }

.page-platform .team-band .inner { max-width: 760px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-platform .team-band p.statement {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.25rem,2.6vw,1.625rem); line-height: 1.45;
  letter-spacing: -0.01em; color: var(--ink); margin: 0 0 1.25rem;
}

.page-platform .team-band p.statement strong { color: var(--ink-bright); font-weight: 600; }

.page-platform .team-band .sub { font-size: 0.9375rem; color: var(--ink-46); margin: 0; }

.page-platform .team-band .sub a { color: var(--cyan); text-decoration: none; }

.page-platform .team-band .sub a:hover, .page-platform .team-band .sub a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }

/* ===== Pointer cards + trio (group + stretched link) ===== */
.page-platform .pointers { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

@media (max-width: 720px) { .page-platform .pointers { grid-template-columns: 1fr; } }

.page-platform .trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

@media (max-width: 820px) { .page-platform .trio { grid-template-columns: 1fr; } }

.page-platform .trio .pointer-card .trio-num { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-46); margin: 0 0 0.875rem; }

.page-platform .trio .pointer-card .trio-num strong { color: var(--cyan); font-weight: 500; }

.page-platform .pointer-card {
  position: relative; display: block;
  padding: clamp(1.75rem,3vw,2.25rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--line); border-radius: 16px;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.35s;
  overflow: hidden; isolation: isolate;
}

.page-platform .pointer-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(70% 60% at 80% 0%, rgba(34,211,238,0.10), transparent 70%);
  transition: opacity 0.4s ease;
}

.page-platform .pointer-card:hover { border-color: rgba(34,211,238,0.35); transform: translateY(-3px); box-shadow: 0 30px 60px -32px rgba(34,211,238,0.30); }

.page-platform .pointer-card:hover::before { opacity: 1; }

.page-platform .pointer-card .mono { display: block; margin: 0 0 0.875rem; color: var(--cyan); }

.page-platform .pointer-card h3 { font-size: clamp(1.375rem,2.4vw,1.75rem); margin: 0 0 0.5rem; }

.page-platform .pointer-card p { margin: 0 0 1.25rem; font-size: 0.9375rem; line-height: 1.6; color: var(--ink-64); }

.page-platform .pointer-card .pointer-link { margin: 0; }

.page-platform .pointer-card .pointer-link a::before { content: ''; position: absolute; inset: 0; }

.page-platform .pointer-card:focus-within { border-color: rgba(34,211,238,0.5); }

/* ===== Final CTA ===== */
.page-platform .cta { padding: clamp(5rem,10vw,8rem) 0 clamp(4.5rem,9vw,7rem); text-align: center; position: relative; overflow: hidden; }

.page-platform .cta::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 80% at 50% 120%, rgba(56,189,248,0.22), transparent 60%), radial-gradient(40% 60% at 50% 120%, rgba(124,58,237,0.16), transparent 65%); }

.page-platform .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-platform .cta h2 { font-size: clamp(2.25rem,5.5vw,3.75rem); line-height: 1.02; margin: 0 0 1rem; }

.page-platform .cta p:not(.eyebrow):not(.cta-meta) { font-size: 1.0625rem; color: var(--ink-64); margin: 0 auto 2rem; max-width: 40ch; line-height: 1.6; }

/* .cta-actions: flex row now owned by the native flex group; keep only the page-specific bottom gap.
   display:contents promotes the secondary link to a direct flex child so the native gap/justify apply. */
.page-platform .cta-actions { margin-bottom: 2.25rem; }

.page-platform .cta-actions .cta-secondary { display: contents; }

.page-platform .cta p.cta-meta { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-32); margin: 0; max-width: none; }

.page-platform .cta-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }

.page-platform .cta-meta span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }

/* ── grow ──────────────────────────────────────────────── */
/* ══ Page: grow ══ */

/* WP flow-layout gap neutralizer — spacing owned by ported design margins */
.page-grow :where(.wp-block-group) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.page-grow h1, .page-grow h2, .page-grow h3,
.page-grow h4, .page-grow h5, .page-grow h6 { margin: 0 0 0.5em; }

.page-grow p { margin: 0 0 1em; }

.page-grow p:last-child { margin-bottom: 0; }

.page-grow .gtext {
  background: linear-gradient(180deg, var(--ink-bright) 0%, var(--ink-64) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.page-grow .ntext {
  background: var(--neon);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.page-grow .eyebrow { margin-bottom: 1.25rem; }

.page-grow .eyebrow--center { justify-content: center; }

.page-grow section { position: relative; z-index: 1; }

.page-grow .divide { border-top: 1px solid var(--line); }

.page-grow .link-arrow::after { content: '→'; transition: transform 0.18s; }

.page-grow .link-arrow:hover::after, .page-grow .link-arrow:focus-visible::after { transform: translateX(3px); }

/* ===== Hero (interior) ===== */
.page-grow .hero { position: relative; padding: clamp(5rem,10vw,8rem) 0 clamp(3rem,6vw,5rem); overflow: hidden; isolation: isolate; }

.page-grow .hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(75% 60% at 50% -8%, rgba(56,189,248,0.22), transparent 62%),
    radial-gradient(50% 50% at 82% 18%, rgba(124,58,237,0.16), transparent 65%),
    radial-gradient(45% 45% at 12% 88%, rgba(34,211,238,0.10), transparent 65%);
}

.page-grow .hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.page-grow .hero-inner {
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem);
  text-align: center;
}

.page-grow .hero-inner .eyebrow { justify-content: center; }

.page-grow .hero h1 {
  font-size: clamp(2.5rem,6vw,4.25rem); font-weight: 300; color: #FFFFFF;
  line-height: 1.05; margin: 0 0 1.5rem; max-width: 20ch;
  margin-left: auto; margin-right: auto; letter-spacing: -0.025em;
}

.page-grow .hero-sub { font-size: clamp(1.0625rem,1.5vw,1.1875rem); color: var(--ink-64); line-height: 1.6; max-width: 56ch; margin: 0 auto 2.25rem; }

.page-grow .hero-cta { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* Friction-reducing microcopy under the hero CTA (CRO landing pages). */
.page-grow .hero-note { margin: 1rem auto 0; font-size: 0.8125rem; color: var(--ink-46); }

/* ===== Section base (page-scoped override of the global .section utility) ===== */
.page-grow .section { padding: clamp(4rem,8vw,6rem) 0; position: relative; }

.page-grow .section-inner { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-grow .section-head { max-width: 720px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); text-align: center; }

.page-grow .section-head .eyebrow { justify-content: center; }

.page-grow .section-head h2 { font-size: clamp(1.875rem,4vw,2.75rem); margin: 0; max-width: 22ch; margin-left: auto; margin-right: auto; }

.page-grow .section-head p:not(.eyebrow) { margin: 1.125rem auto 0; max-width: 56ch; font-size: 1rem; line-height: 1.65; color: var(--ink-64); }

.page-grow .section-grid::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.45;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 30%, transparent 80%);
}

.page-grow .section-grid > .section-inner { position: relative; z-index: 1; }

/* ===== Perks band ===== */
.page-grow .perks-band { padding: 1.75rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.page-grow .perks-inner { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem 3rem; }

.page-grow .perk { display: inline-flex; align-items: center; gap: 0.625rem; font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-46); margin: 0; }

.page-grow .perk::before {
  content: ''; width: 14px; height: 14px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ===== Capability cards ===== */
.page-grow .cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

@media (max-width: 880px) { .page-grow .cap-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 540px) { .page-grow .cap-grid { grid-template-columns: 1fr; } }

.page-grow .cap-card { position: relative; padding: 1.75rem 1.5rem; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; transition: border-color 0.25s, transform 0.25s; }

.page-grow .cap-card:hover { border-color: rgba(34,211,238,0.35); transform: translateY(-2px); }

/* Fixed capability icon drawn from CSS (was an inline SVG in a .cap-icon box).
   The ::before is the 36px tinted box; the icon is its centered 18px background. */
.page-grow .cap-card::before {
  content: ''; display: block; width: 36px; height: 36px; margin-bottom: 1rem;
  border-radius: 8px; background-color: rgba(34,211,238,0.10); border: 1px solid rgba(34,211,238,0.25);
  background-repeat: no-repeat; background-position: center; background-size: 18px 18px;
}

.page-grow .cap-grid .cap-card:nth-child(1)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.5-4.5'/%3E%3C/svg%3E"); }

.page-grow .cap-grid .cap-card:nth-child(2)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='M7 14l4-4 3 3 5-6'/%3E%3C/svg%3E"); }

.page-grow .cap-grid .cap-card:nth-child(3)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }

.page-grow .cap-grid .cap-card:nth-child(4)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='8' y1='13' x2='16' y2='13'/%3E%3Cline x1='8' y1='17' x2='13' y2='17'/%3E%3C/svg%3E"); }

.page-grow .cap-grid .cap-card:nth-child(5)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 2a10 10 0 0 1 10 10h-10z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }

.page-grow .cap-grid .cap-card:nth-child(6)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='20' x2='18' y2='10'/%3E%3Cline x1='12' y1='20' x2='12' y2='4'/%3E%3Cline x1='6' y1='20' x2='6' y2='14'/%3E%3C/svg%3E"); }

.page-grow .cap-card h3 { font-size: 1.0625rem; margin: 0 0 0.4rem; letter-spacing: -0.01em; }

.page-grow .cap-card p { margin: 0; font-size: 0.8125rem; line-height: 1.55; color: var(--ink-64); }

/* ===== Growth loop ===== */
.page-grow .loop-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }

@media (max-width: 860px) { .page-grow .loop-wrap { grid-template-columns: 1fr; } }

.page-grow .loop-svg { width: 100%; max-width: 440px; height: auto; display: block; margin: 0 auto; color: var(--cyan); filter: drop-shadow(0 0 18px rgba(34,211,238,0.18)); }

@media (prefers-reduced-motion: no-preference) {
  .page-grow .loop-rotate { transform-box: view-box; transform-origin: 200px 200px; animation: lpgrow-loopspin 18s linear infinite; }
}

@media (prefers-reduced-motion: reduce) {
  .page-grow .loop-rotate { animation: none; }
}

@keyframes lpgrow-loopspin { to { transform: rotate(360deg); } }

.page-grow .loop-steps { display: flex; flex-direction: column; gap: 0.5rem; }

.page-grow .loop-step { display: flex; gap: 1rem; padding: 1rem 1.125rem; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(0,0,0,0.16)); transition: border-color 0.25s; }

.page-grow .loop-step:hover { border-color: rgba(34,211,238,0.35); }

.page-grow .loop-step .n { flex: none; font-family: var(--mono); font-size: 0.625rem; font-weight: 500; letter-spacing: 0.12em; color: var(--cyan); padding-top: 0.2rem; margin: 0; }

.page-grow .loop-step h4 { font-size: 1rem; margin: 0 0 0.2rem; letter-spacing: -0.01em; }

.page-grow .loop-step p { margin: 0; font-size: 0.8125rem; line-height: 1.5; color: var(--ink-64); }

/* ===== Growth dial ===== */
.page-grow .dial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

@media (max-width: 760px) { .page-grow .dial-grid { grid-template-columns: 1fr; } }

.page-grow .dial-card { position: relative; display: flex; flex-direction: column; padding: 1.75rem 1.5rem; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.2)); transition: border-color 0.25s, transform 0.25s; }

.page-grow .dial-card:hover { border-color: rgba(34,211,238,0.35); transform: translateY(-3px); }

.page-grow .dial-card.is-mid { border-color: rgba(34,211,238,0.45); box-shadow: 0 0 50px -16px rgba(34,211,238,0.3); }

/* Tier meter drawn from CSS (was three <i> bars in a .dial-meter div).
   Three equal ticks (flex:1 + 4px gaps) as three positioned background
   layers; the tier class lights the leading ticks with the neon gradient. */
.page-grow .dial-card::before {
  content: ''; display: block; height: 5px; margin-bottom: 1.125rem; align-self: stretch;
  border-radius: 999px;
  background-repeat: no-repeat;
  background-size: calc((100% - 8px) / 3) 100%;
  background-position: left center, center center, right center;
  background-image:
    linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)),
    linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)),
    linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1));
}

.page-grow .dial-card.dial-l1::before {
  background-image:
    var(--neon),
    linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)),
    linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1));
}

.page-grow .dial-card.dial-l2::before {
  background-image:
    var(--neon),
    var(--neon),
    linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1));
}

.page-grow .dial-card.dial-l3::before {
  background-image: var(--neon), var(--neon), var(--neon);
}

.page-grow .dial-card h3 { font-size: 1.25rem; margin: 0 0 0.2rem; }

.page-grow .dial-card .dial-tag { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-46); margin: 0 0 1rem; display: block; }

.page-grow .dial-card p { margin: 0 0 1rem; font-size: 0.875rem; line-height: 1.6; color: var(--ink-64); }

.page-grow .dial-card ul { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: 0.5rem; flex: 1; }

.page-grow .dial-card li { position: relative; padding-left: 1.5rem; font-size: 0.8125rem; line-height: 1.5; color: var(--ink-64); }

.page-grow .dial-card li::before { content: ''; position: absolute; left: 0; top: 0.4em; width: 11px; height: 6px; border-left: 1.5px solid var(--cyan); border-bottom: 1.5px solid var(--cyan); transform: rotate(-45deg); }

.page-grow .dial-card .dial-price { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-top: auto; margin-bottom: 0; }

.page-grow .dial-more { text-align: center; margin: 2rem 0 0; }

/* ===== Team band ===== */
.page-grow .team-band { padding: clamp(3.5rem,7vw,5rem) 0; text-align: center; }

.page-grow .team-band .inner { max-width: 760px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-grow .team-band p.statement { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.25rem,2.6vw,1.625rem); line-height: 1.45; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 1.25rem; }

.page-grow .team-band p.statement strong { color: var(--ink-bright); font-weight: 600; }

.page-grow .team-band .sub { font-size: 0.9375rem; color: var(--ink-46); margin: 0; }

.page-grow .team-band .sub a { color: var(--cyan); text-decoration: none; }

.page-grow .team-band .sub a:hover, .page-grow .team-band .sub a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }

/* ===== Pointer cards (group + stretched link keeps the whole card clickable) ===== */
.page-grow .pointers { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

@media (max-width: 720px) { .page-grow .pointers { grid-template-columns: 1fr; } }

.page-grow .pointer-card { position: relative; display: block; padding: clamp(1.75rem,3vw,2.25rem); background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%); border: 1px solid var(--line); border-radius: 16px; text-decoration: none; transition: border-color 0.25s, transform 0.25s, box-shadow 0.35s; overflow: hidden; isolation: isolate; }

.page-grow .pointer-card::before { content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0; background: radial-gradient(70% 60% at 80% 0%, rgba(34,211,238,0.10), transparent 70%); transition: opacity 0.4s ease; }

.page-grow .pointer-card:hover { border-color: rgba(34,211,238,0.35); transform: translateY(-3px); box-shadow: 0 30px 60px -32px rgba(34,211,238,0.30); }

.page-grow .pointer-card:hover::before { opacity: 1; }

.page-grow .pointer-card .mono { display: block; margin: 0 0 0.875rem; color: var(--cyan); }

.page-grow .pointer-card h3 { font-size: clamp(1.375rem,2.4vw,1.75rem); margin: 0 0 0.5rem; }

.page-grow .pointer-card p { margin: 0 0 1.25rem; font-size: 0.9375rem; line-height: 1.6; color: var(--ink-64); }

.page-grow .pointer-card .pointer-link { margin: 0; }

.page-grow .pointer-card .pointer-link a::before { content: ''; position: absolute; inset: 0; }

.page-grow .pointer-card:focus-within { border-color: rgba(34,211,238,0.5); }

/* ===== Final CTA ===== */
.page-grow .cta { padding: clamp(5rem,10vw,8rem) 0 clamp(4.5rem,9vw,7rem); text-align: center; position: relative; overflow: hidden; }

.page-grow .cta::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 80% at 50% 120%, rgba(56,189,248,0.22), transparent 60%), radial-gradient(40% 60% at 50% 120%, rgba(124,58,237,0.16), transparent 65%); }

.page-grow .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-grow .cta h2 { font-size: clamp(2.25rem,5.5vw,3.75rem); line-height: 1.02; margin: 0 0 1rem; }

.page-grow .cta p:not(.eyebrow):not(.cta-meta) { font-size: 1.0625rem; color: var(--ink-64); margin: 0 auto 2rem; max-width: 40ch; line-height: 1.6; }

.page-grow .cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ── build-process ─────────────────────────────────────── */
/* ══ Page: build-process ══ */

/* Page scope reset. The parent theme has no blockGap support, so spans
   converted to paragraph blocks would keep UA margins; zero them at
   0 specificity and let the design classes below supply all spacing. */
:where(.page-build-process) :where(h1, h2, h3, p, ul) { margin: 0; }

/* Shared v2 text effects used on this page */
.page-build-process .gtext {
  background: linear-gradient(180deg, var(--ink-bright) 0%, var(--ink-64) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.page-build-process .ntext {
  background: var(--neon);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Section base */
.page-build-process section { position: relative; z-index: 1; }

.page-build-process .section { padding: clamp(4rem, 8vw, 6rem) 0; position: relative; }

.page-build-process .section-inner { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }

.page-build-process .section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center; }

.page-build-process .section-head h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); margin: 0 auto; max-width: 22ch; }

.page-build-process .section-head p:not(.eyebrow) { margin: 1.125rem auto 0; max-width: 54ch; font-size: 1rem; line-height: 1.65; color: var(--ink-64); }

.page-build-process .section-grid::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.45;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 30%, transparent 80%);
}

.page-build-process .section-grid > .section-inner { position: relative; z-index: 1; }

/* Interior hero */
.page-build-process .hero {
  position: relative;
  padding: clamp(4.5rem, 11vw, 8rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
}

.page-build-process .hero--interior { padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem); }

/* The design's .hero__space / .hero__grid decorator divs, folded into pseudo-elements */
.page-build-process .hero--interior::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(75% 60% at 50% -8%, rgba(56,189,248,0.22), transparent 62%),
    radial-gradient(50% 50% at 82% 18%, rgba(124,58,237,0.16), transparent 65%),
    radial-gradient(45% 45% at 12% 88%, rgba(34,211,238,0.10), transparent 65%);
}

.page-build-process .hero--interior::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.page-build-process .hero--interior .hero-inner {
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center; display: block;
}

.page-build-process .hero--interior h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 300;
  color: var(--ink-bright);
  line-height: 1.05;
  margin: 0 auto 1.5rem;
  max-width: 20ch;
  letter-spacing: -0.025em;
}

.page-build-process .hero--interior .hero-sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--ink-64); line-height: 1.6;
  max-width: 58ch; margin: 0 auto 2.25rem;
}

/* Native wp:group flex layout supplies display/flex-wrap/justify-content;
   keep only the page-specific gap. */
.page-build-process .hero--interior .hero-cta { gap: 0.75rem; }

/* Blueprint helpers (pipeline SVG) */
.page-build-process .bp { display: block; }

.page-build-process .bp .dim { stroke-opacity: 0.30; }

.page-build-process .bp .mid { stroke-opacity: 0.55; }

.page-build-process .bp .ink { stroke-opacity: 0.95; }

.page-build-process .bp .glow { filter: drop-shadow(0 0 4px rgba(34,211,238,0.85)); }

.page-build-process .bp .fillc { fill: currentColor; stroke: none; }

@media (prefers-reduced-motion: no-preference) {
  .page-build-process .bp .draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: bpdraw 3.6s ease-in-out infinite; animation-delay: var(--dl, 0s); }
  .page-build-process .bp .flow { stroke-dasharray: 3 9; animation: bpflow 1.6s linear infinite; }
  .page-build-process .bp .blip { transform-box: fill-box; transform-origin: center; animation: bpping 2.6s ease-out infinite; animation-delay: var(--dl, 0s); }
}

@keyframes bpdraw  { 0%{stroke-dashoffset:1} 48%{stroke-dashoffset:0} 84%{stroke-dashoffset:0} 100%{stroke-dashoffset:1} }

@keyframes bpflow  { to { stroke-dashoffset: -24; } }

@keyframes bpping  { 0%{opacity:.7;transform:scale(.35)} 100%{opacity:0;transform:scale(1)} }

/* Phase steps (stacked detail rows) */
.page-build-process .phase-stack { display: flex; flex-direction: column; gap: clamp(1rem, 2vw, 1.5rem); }

.page-build-process .phase-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: clamp(1rem, 2vw, 1.75rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.25s;
}

.page-build-process .phase-row:hover { border-color: rgba(34,211,238,0.30); }

@media (max-width: 720px) {
  .page-build-process .phase-row { grid-template-columns: 1fr; gap: 1rem; }
}

.page-build-process .phase-row .pn {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  color: rgba(255,255,255,0.20);
  letter-spacing: -0.02em;
}

.page-build-process .phase-row .pn em {
  font-style: normal;
  background: var(--neon);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.page-build-process .phase-row h3 {
  font-size: clamp(1.375rem, 2.2vw, 1.625rem);
  margin: 0 0 0.5rem;
}

.page-build-process .phase-row .lede {
  color: var(--ink-64);
  line-height: 1.65;
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  max-width: 64ch;
}

.page-build-process .phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (max-width: 720px) { .page-build-process .phase-grid { grid-template-columns: 1fr; } }

.page-build-process .phase-cell {
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.page-build-process .phase-cell .lab {
  display: block;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.page-build-process .phase-cell.you .lab { color: var(--sky); }

.page-build-process .phase-cell.outcome {
  background: linear-gradient(180deg, rgba(34,211,238,0.09), rgba(34,211,238,0.02));
  border-color: rgba(34,211,238,0.32);
  box-shadow: 0 0 24px -12px rgba(34,211,238,0.3);
}

.page-build-process .phase-cell.outcome .lab { color: var(--cyan); }

.page-build-process .phase-cell.outcome .lab::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  margin-right: 0.45rem;
  vertical-align: 1px;
}

.page-build-process .phase-cell p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-64);
}

.page-build-process .phase-cell.outcome p { color: var(--ink); }

/* Tech stack chips */
.page-build-process .stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (max-width: 880px) { .page-build-process .stack-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 540px) { .page-build-process .stack-grid { grid-template-columns: 1fr; } }

.page-build-process .stack-card {
  padding: 1.5rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.25s, transform 0.25s;
}

.page-build-process .stack-card:hover {
  border-color: rgba(34,211,238,0.35);
  transform: translateY(-2px);
}

.page-build-process .stack-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(34,211,238,0.10);
  border: 1px solid rgba(34,211,238,0.25);
  display: grid; place-items: center;
  color: var(--cyan);
  margin-bottom: 0.875rem;
}

/* Tool-card glyphs: the 16px icon rides in as a centered background image on the
   tinted box (was a child <svg>). One background-image per card; color baked to
   the design's cyan (var(--cyan) === #22D3EE) since a data URI can't read a token. */
.page-build-process .stack-icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

.page-build-process .stack-icon--launchpad { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='2 12 6 6 18 6 22 12 18 18 6 18 2 12'/%3E%3C/svg%3E"); }

.page-build-process .stack-icon--claude { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 8V7l-3 2-3-2v1l3 2 3-2zM21 16v-1l-3 2-3-2v1l3 2 3-2zM12 8V7l-3 2L6 7v1l3 2 3-2zM12 16v-1l-3 2-3-2v1l3 2 3-2z'/%3E%3C/svg%3E"); }

.page-build-process .stack-icon--wordpress { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10' stroke-width='1.5'/%3E%3Cpath d='M12 2v20M2 12h20' stroke-width='1.5'/%3E%3C/svg%3E"); }

.page-build-process .stack-icon--wpengine { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M3 5v14a9 3 0 0 0 18 0V5'/%3E%3Cpath d='M3 12a9 3 0 0 0 18 0'/%3E%3C/svg%3E"); }

.page-build-process .stack-icon--cloudflare { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z'/%3E%3C/svg%3E"); }

.page-build-process .stack-icon--github { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22'/%3E%3C/svg%3E"); }

.page-build-process .stack-icon--gravity { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 2L11 13'/%3E%3Cpath d='M22 2l-7 20-4-9-9-4 20-7z'/%3E%3C/svg%3E"); }

.page-build-process .stack-icon--plausible { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E"); }

.page-build-process .stack-card .nm {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink-bright);
  letter-spacing: -0.005em;
  margin-bottom: 0.25rem;
}

.page-build-process .stack-card .rl {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-46);
}

.page-build-process .stack-card .ds {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-64);
}

/* Feedback triage feature panel */
.page-build-process .triage-panel {
  position: relative;
  margin-top: 1.25rem;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: linear-gradient(135deg, rgba(34,211,238,0.07), rgba(124,58,237,0.06));
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
}

.page-build-process .triage-panel::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(50% 70% at 8% 0%, rgba(34,211,238,0.10), transparent 65%),
    radial-gradient(45% 65% at 95% 100%, rgba(124,58,237,0.10), transparent 65%);
}

.page-build-process .triage-panel .tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.625rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 0.875rem;
}

.page-build-process .triage-panel .tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan); flex: none;
}

.page-build-process .triage-panel h3 {
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  margin: 0 0 0.75rem;
}

.page-build-process .triage-panel > p {
  margin: 0;
  max-width: 68ch;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-64);
}

.page-build-process .triage-flow {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.page-build-process .triage-flow .tf-step {
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 999px;
  background: rgba(9,9,11,0.45);
  font-family: var(--mono); font-size: 0.625rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.page-build-process .triage-flow .tf-arrow {
  color: var(--ink-46);
  flex: none;
}

/* Pipeline blueprint */
.page-build-process .pipeline-wrap {
  max-width: 980px; margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem) 0 0;
}

.page-build-process .pipeline-svg {
  width: 100%; height: auto;
  display: block;
  color: var(--cyan);
  filter: drop-shadow(0 0 14px rgba(34,211,238,0.20));
}

/* The pipeline is a wide 4.5:1 timeline; on phones it shrinks illegibly.
   Keep it at a readable size and let it scroll horizontally instead. */
@media (max-width: 767px) {
  .page-build-process .pipeline-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
  .page-build-process .pipeline-svg { min-width: 720px; }
}

/* Quality gates */
.page-build-process .gates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 880px) { .page-build-process .gates-grid { grid-template-columns: 1fr; } }

.page-build-process .gate-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.25s, transform 0.25s;
}

.page-build-process .gate-card:hover {
  border-color: rgba(34,211,238,0.35);
  transform: translateY(-3px);
}

.page-build-process .gate-score {
  display: inline-flex; align-items: baseline; gap: 0.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--ink-bright);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-build-process .gate-score small {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
}

.page-build-process .gate-card h3 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}

.page-build-process .gate-card p:not(.gate-score) {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-64);
}

/* After-launch cards */
.page-build-process .after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 880px) { .page-build-process .after-grid { grid-template-columns: 1fr; } }

.page-build-process .after-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.25s, transform 0.25s;
}

.page-build-process .after-card:hover {
  border-color: rgba(34,211,238,0.35);
  transform: translateY(-3px);
}

.page-build-process .after-card .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(34,211,238,0.10);
  border: 1px solid rgba(34,211,238,0.25);
  display: grid; place-items: center;
  color: var(--cyan);
  margin-bottom: 1.125rem;
}

/* After-launch card glyphs: 18px centered background image on the tinted box
   (was a child <svg>). Cyan baked to #22D3EE (=== var(--cyan)) for the data URI. */
.page-build-process .after-card .ic {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.page-build-process .after-card .ic--updates { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 4 23 10 17 10'/%3E%3Cpolyline points='1 20 1 14 7 14'/%3E%3Cpath d='M3.51 9a9 9 0 0 1 14.85-3.36L23 10'/%3E%3Cpath d='M20.49 15a9 9 0 0 1-14.85 3.36L1 14'/%3E%3C/svg%3E"); }

.page-build-process .after-card .ic--monitor { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E"); }

.page-build-process .after-card .ic--analytics { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='M7 14l3-3 3 3 5-5'/%3E%3C/svg%3E"); }

.page-build-process .after-card .ic--security { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E"); }

.page-build-process .after-card .ic--edits { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/%3E%3Cpath d='M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z'/%3E%3C/svg%3E"); }

.page-build-process .after-card .ic--version { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpolyline points='2 17 12 22 22 17'/%3E%3Cpolyline points='2 12 12 17 22 12'/%3E%3C/svg%3E"); }

.page-build-process .after-card h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
}

.page-build-process .after-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-64);
}

/* Side-by-side parts */
.page-build-process .parts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 720px) { .page-build-process .parts-grid { grid-template-columns: 1fr; } }

.page-build-process .parts-col {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 16px;
}

.page-build-process .parts-col.we { border-color: rgba(34,211,238,0.25); }

.page-build-process .parts-col.you { border-color: rgba(56,189,248,0.20); }

.page-build-process .parts-col .part-eb {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}

.page-build-process .parts-col.you .part-eb { color: var(--sky); }

.page-build-process .parts-col .part-eb::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; box-shadow: 0 0 8px currentColor;
}

.page-build-process .parts-col h3 {
  font-size: 1.375rem;
  margin: 0 0 1.25rem;
}

.page-build-process .parts-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }

.page-build-process .parts-list li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem; line-height: 1.55;
  color: var(--ink-64);
  border-bottom: 1px solid var(--line-soft);
}

.page-build-process .parts-list li:last-child { border-bottom: none; }

.page-build-process .parts-list li::before {
  content: '';
  flex-shrink: 0;
  width: 14px; height: 14px;
  margin-top: 4px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  background: rgba(34,211,238,0.15) center/8px no-repeat;
  background-image: linear-gradient(currentColor,currentColor);
  background-size: 6px 2px;
  background-position: center;
  box-shadow: 0 0 8px rgba(34,211,238,0.4);
}

.page-build-process .parts-col.you .parts-list li::before {
  border-color: var(--sky);
  background-color: rgba(56,189,248,0.15);
  box-shadow: 0 0 8px rgba(56,189,248,0.4);
}

.page-build-process .parts-list strong { color: var(--ink-bright); font-weight: 600; }

/* Final CTA */
.page-build-process .cta {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4.5rem, 9vw, 7rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-build-process .cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 50% 120%, rgba(56,189,248,0.22), transparent 60%),
    radial-gradient(40% 60% at 50% 120%, rgba(124,58,237,0.16), transparent 65%);
}

.page-build-process .cta-inner {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.page-build-process .cta .eyebrow { justify-content: center; }

.page-build-process .cta h2 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); line-height: 1.02; margin: 0 0 1rem; }

.page-build-process .cta p:not(.eyebrow):not(.cta-meta) {
  font-size: 1.0625rem;
  color: var(--ink-64);
  margin: 0 auto 2rem;
  max-width: 40ch;
  line-height: 1.6;
}

/* Native wp:group flex layout supplies display/flex-wrap/justify-content;
   keep gap, cross-axis centering, and the page-specific bottom margin. */
.page-build-process .cta-actions {
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

.page-build-process .cta-meta {
  display: flex; gap: 1.5rem;
  justify-content: center; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-32);
}

.page-build-process .cta-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }

.page-build-process .cta-meta span::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 6px var(--cyan);
}

/* ── pricing ───────────────────────────────────────────── */
/* ══ Page: pricing ══ */

/* WP flow-layout gap neutralizer — spacing below is owned by the ported
   design margins, not blockGap. (0,2,0) beats :where() layout rules. */
.page-pricing :where(.wp-block-group) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Foundation base rhythm inside this page (design relies on it) */
.page-pricing h1, .page-pricing h2, .page-pricing h3,
.page-pricing h4, .page-pricing h5, .page-pricing h6 { margin: 0 0 0.5em; }

.page-pricing p { margin: 0 0 1em; }

.page-pricing p:last-child { margin-bottom: 0; }

/* Shared page utilities (scoped) */
.page-pricing .gtext {
  background: linear-gradient(180deg, var(--ink-bright) 0%, var(--ink-64) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.page-pricing .ntext {
  background: var(--neon);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.page-pricing .eyebrow { margin-bottom: 1.25rem; }

.page-pricing .eyebrow--center { justify-content: center; }

.page-pricing section { position: relative; z-index: 1; }

/* ===== Interior hero ===== */
.page-pricing .hero-interior {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.page-pricing .hero-interior::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(70% 55% at 50% -10%, rgba(56,189,248,0.22), transparent 62%),
    radial-gradient(45% 50% at 88% 18%, rgba(124,58,237,0.14), transparent 65%),
    radial-gradient(40% 45% at 12% 92%, rgba(34,211,238,0.08), transparent 65%);
}

.page-pricing .hero-interior::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.page-pricing .hero-interior-inner {
  position: relative; z-index: 1; max-width: 880px; margin: 0 auto;
  padding: 0 clamp(1.25rem,4vw,2rem); text-align: center;
}

.page-pricing .hero-interior-inner .eyebrow { justify-content: center; }

.page-pricing .hero-interior h1 {
  font-size: clamp(2.25rem, 5vw, 3.625rem); font-weight: 300; color: #fff;
  line-height: 1.05; margin: 0 0 1.25rem;
}

.page-pricing .hero-interior h1 em { font-style: normal; }

.page-pricing .hero-interior .hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem); color: var(--ink-64);
  line-height: 1.65; max-width: 56ch; margin: 0 auto;
}

.page-pricing .hero-stat-strip {
  max-width: 880px; margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

.page-pricing .hero-stat-strip .hs {
  padding: 1.25rem 1rem; text-align: center;
  border-left: 1px solid var(--line);
}

.page-pricing .hero-stat-strip .hs:first-child { border-left: 0; }

.page-pricing .hero-stat-strip .hs .hs-val {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.625rem); color: #fff; letter-spacing: -0.01em;
  margin: 0 0 0.25rem;
}

.page-pricing .hero-stat-strip .hs .hs-lab {
  font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-46); margin: 0;
}

@media (max-width: 640px) {
  .page-pricing .hero-stat-strip { grid-template-columns: 1fr; }
  .page-pricing .hero-stat-strip .hs { border-left: 0; border-top: 1px solid var(--line); }
  .page-pricing .hero-stat-strip .hs:first-child { border-top: 0; }
}

/* ===== Pricing tiers ===== */
.page-pricing .tiers { padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }

.page-pricing .tiers::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 45% at 18% 12%, rgba(124,58,237,0.10), transparent 60%),
    radial-gradient(55% 45% at 85% 88%, rgba(34,211,238,0.10), transparent 62%);
}

.page-pricing .tiers-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }

.page-pricing .tiers-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

.page-pricing .tiers-head h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); margin: 0 0 0.75rem; }

.page-pricing .tiers-head p:not(.eyebrow) { color: var(--ink-64); font-size: 1rem; line-height: 1.65; max-width: 52ch; margin: 0 auto; }

.page-pricing .tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem); align-items: stretch;
}

.page-pricing .tier {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.page-pricing .tier:hover { transform: translateY(-4px); border-color: rgba(34,211,238,0.25); }

.page-pricing .tier.is-popular {
  border-color: rgba(34,211,238,0.5);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.25), 0 28px 60px -28px rgba(34,211,238,0.4), 0 0 64px -24px rgba(56,189,248,0.5);
  background: linear-gradient(180deg, rgba(34,211,238,0.05), rgba(34,211,238,0.01) 60%);
}

.page-pricing .tier.is-popular::before {
  content: ''; position: absolute; inset: -1px; border-radius: 18px; padding: 1px;
  background: var(--neon);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

.page-pricing .tier .tier-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bg);
  background: var(--cyan); padding: 0.3rem 0.7rem; border-radius: 999px;
  box-shadow: 0 0 16px -2px rgba(34,211,238,0.7);
  font-weight: 600; margin: 0; width: max-content;
}

.page-pricing .tier h3 {
  font-size: clamp(1.375rem, 2.4vw, 1.625rem);
  margin: 0 0 0.625rem; color: #fff;
}

.page-pricing .tier .tier-desc { font-size: 0.9375rem; color: var(--ink-64); line-height: 1.55; margin: 0 0 1.5rem; min-height: 3em; }

.page-pricing .tier .tier-price {
  display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap;
  padding-bottom: 1.25rem; margin: 0 0 1.5rem;
  border-bottom: 1px solid var(--line);
}

.page-pricing .tier .tier-price .amount {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.25rem, 3.8vw, 2.75rem); color: #fff; letter-spacing: -0.02em; line-height: 1;
}

.page-pricing .tier .tier-price .unit { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.08em; color: var(--ink-46); text-transform: uppercase; }

.page-pricing .tier ul.tier-features {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: flex; flex-direction: column; gap: 0.6875rem;
  flex: 1;
}

.page-pricing .tier ul.tier-features li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.9rem; line-height: 1.5; color: var(--ink-64);
}

.page-pricing .tier ul.tier-features li::before {
  content: ''; flex: none; width: 14px; height: 14px;
  border-radius: 50%; background: rgba(34,211,238,0.12);
  border: 1px solid rgba(34,211,238,0.4);
  margin-top: 0.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2.5 6 5 8.5 9.5 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px 10px;
}

.page-pricing .tier.is-popular ul.tier-features li { color: var(--ink); }

.page-pricing .tier .tier-cta { margin-top: auto; }

.page-pricing .tier .tier-cta .btn-neon,
.page-pricing .tier .tier-cta .btn-line {
  display: flex; justify-content: center; width: 100%;
}

.page-pricing .tier-foot {
  margin: 1rem 0 0; font-family: var(--mono); font-size: 0.625rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-32);
  text-align: center;
}

@media (max-width: 920px) {
  .page-pricing .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ===== Step labels + one-time build ===== */
.page-pricing .step-tag {
  display: inline-block; font-family: var(--mono); font-size: 0.625rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan);
  margin: 0 0 0.875rem;
}

.page-pricing .build-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 18px; padding: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.page-pricing .build-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 120% at 100% 50%, rgba(56,189,248,0.10), transparent 60%);
}

.page-pricing .build-text { position: relative; z-index: 1; }

.page-pricing .build-text h3 { font-size: clamp(1.375rem, 2.4vw, 1.75rem); margin: 0 0 0.5rem; color: #fff; }

.page-pricing .build-text p { color: var(--ink-64); font-size: 0.9375rem; line-height: 1.6; margin: 0; max-width: 60ch; }

.page-pricing .build-cta { margin-top: 1.5rem; }

.page-pricing .build-price {
  position: relative; z-index: 1; display: flex; align-items: baseline;
  gap: 0.15rem; flex-wrap: wrap; justify-content: flex-end; text-align: right;
}

.page-pricing .build-price .amount { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.25rem, 4.5vw, 3rem); color: #fff; letter-spacing: -0.02em; line-height: 1; }

.page-pricing .build-price .plus { font-family: var(--font-display); font-size: 1.5rem; color: var(--cyan); }

.page-pricing .build-price small { display: block; width: 100%; font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-46); margin-top: 0.625rem; }

@media (max-width: 640px) {
  .page-pricing .build-card { grid-template-columns: 1fr; }
  .page-pricing .build-price { justify-content: flex-start; text-align: left; }
}

/* ===== Step 2 head + billing toggle (behavior in site.js) ===== */
.page-pricing .step-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

/* Anchor target for cross-page "See plan pricing" links; offset so the
   sticky header doesn't cover the heading on jump. */
.page-pricing #plans { scroll-margin-top: 84px; }

.page-pricing .step-head .step-tag { margin-bottom: 0; }

.page-pricing .bill-toggle { display: inline-flex; padding: 4px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; }

.page-pricing .bill-opt {
  display: inline-flex; align-items: center; gap: 0.4rem; cursor: pointer;
  font-family: var(--font-display); font-size: 0.8125rem; font-weight: 500;
  color: var(--ink-64); background: transparent; border: 0;
  padding: 0.45rem 0.95rem; border-radius: 999px; transition: color 0.15s, background 0.15s;
}

.page-pricing .bill-opt:hover { color: #fff; }

.page-pricing .bill-opt.is-active { color: var(--bg); background: var(--cyan); }

.page-pricing .bill-opt:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.page-pricing .bill-opt:active { background: var(--sky-deep); color: var(--bg); }

.page-pricing .bill-opt .save { font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }

/* price show/hide by billing period — monthly is the no-attribute
   default (the group block can't carry data-bill; JS sets it on toggle) */
.page-pricing .price-monthly, .page-pricing .price-annual { align-items: baseline; gap: 0.5rem; flex-wrap: wrap; }

.page-pricing .price-monthly { display: inline-flex; }

.page-pricing .price-annual  { display: none; }

.page-pricing #tierGrid[data-bill="annual"] .price-monthly { display: none; }

.page-pricing #tierGrid[data-bill="annual"] .price-annual  { display: inline-flex; }

.page-pricing .price-annual .save-note {
  width: 100%; margin-top: 0.35rem; font-style: normal;
  font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cyan);
}

/* ===== Pro add-on ===== */
.page-pricing .addon-card {
  position: relative; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 18px; padding: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

.page-pricing .addon-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 120% at 0% 0%, rgba(124,58,237,0.12), transparent 60%);
}

.page-pricing .addon-text { position: relative; z-index: 1; }

.page-pricing .addon-text h3 { font-size: clamp(1.375rem, 2.4vw, 1.625rem); margin: 0 0 0.625rem; color: #fff; display: flex; align-items: baseline; gap: 0.625rem; flex-wrap: wrap; }

.page-pricing .addon-price { font-family: var(--font-display); font-weight: 400; color: var(--cyan); font-size: 1.5rem; letter-spacing: -0.01em; }

.page-pricing .addon-price small { font-family: var(--mono); font-size: 0.6875rem; color: var(--ink-46); letter-spacing: 0.08em; }

.page-pricing .addon-text > p { color: var(--ink-64); font-size: 0.9375rem; line-height: 1.6; margin: 0 0 1rem; max-width: 70ch; }

.page-pricing .addon-link { margin: 0; }

.page-pricing .link-arrow::after { content: '→'; transition: transform 0.18s; }

.page-pricing .link-arrow:hover::after, .page-pricing .link-arrow:focus-visible::after { transform: translateX(3px); }

/* ===== Nonprofit callout ===== */
.page-pricing .nonprofit { padding: clamp(2rem, 5vw, 3rem) 0; }

.page-pricing .nonprofit-inner { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }

.page-pricing .nonprofit-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}

.page-pricing .nonprofit-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 100% at 0% 50%, rgba(124,58,237,0.10), transparent 60%);
}

.page-pricing .nonprofit-card .np-text { position: relative; z-index: 1; }

.page-pricing .nonprofit-card .np-text .eyebrow { margin-bottom: 0.875rem; }

.page-pricing .nonprofit-card h3 { font-size: clamp(1.375rem, 2.4vw, 1.75rem); margin: 0 0 0.5rem; color: #fff; }

.page-pricing .nonprofit-card p { color: var(--ink-64); font-size: 0.9375rem; line-height: 1.6; margin: 0; max-width: 56ch; }

.page-pricing .nonprofit-card .np-discount {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--cyan); line-height: 1;
  letter-spacing: -0.02em; white-space: nowrap; margin: 0; max-width: none;
}

.page-pricing .nonprofit-card .np-discount small {
  display: block; font-family: var(--mono); font-size: 0.6875rem;
  color: var(--ink-46); letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 0.625rem; font-weight: 500;
}

@media (max-width: 640px) {
  .page-pricing .nonprofit-card { grid-template-columns: 1fr; }
  .page-pricing .nonprofit-card .np-discount { text-align: left; }
}

/* ===== Common build packages ===== */
.page-pricing .packages { padding: clamp(4rem, 8vw, 6rem) 0 clamp(3.5rem, 7vw, 5rem); position: relative; overflow: hidden; }

.page-pricing .packages::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 50% at 20% 18%, rgba(34,211,238,0.06), transparent 60%),
    radial-gradient(45% 50% at 80% 90%, rgba(124,58,237,0.05), transparent 65%);
}

.page-pricing .packages-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-pricing .packages-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); }

.page-pricing .packages-head h2 { font-size: clamp(1.75rem,3.6vw,2.5rem); margin: 0 0 0.75rem; }

.page-pricing .packages-head p:not(.eyebrow) { color: var(--ink-64); font-size: 1rem; line-height: 1.65; max-width: 52ch; margin: 0 auto; }

.page-pricing .packages-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1rem,2vw,1.5rem); align-items: stretch; }

@media (min-width: 880px) { .page-pricing .packages-grid { grid-template-columns: repeat(3, 1fr); } }

.page-pricing .plan { position: relative; display: flex; flex-direction: column; padding: clamp(1.75rem,3vw,2.25rem); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.2)); transition: border-color 0.25s ease, transform 0.25s ease; }

.page-pricing .plan:hover { border-color: rgba(34,211,238,0.35); transform: translateY(-3px); }

.page-pricing .plan-head { margin-bottom: 1rem; }

.page-pricing .plan-label { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; display: block; color: var(--ink-bright); margin: 0; }

.page-pricing .plan-tag { display: block; font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.14em; color: var(--ink-46); text-transform: uppercase; margin: 0.4rem 0 0; }

.page-pricing .plan-price { margin: 0 0 1.125rem; padding-top: 0.875rem; border-top: 1px solid var(--line-soft); }

.page-pricing .plan-price .amt { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink-bright); letter-spacing: -0.02em; }

.page-pricing .plan-price .lbl { font-size: 0.8125rem; color: var(--ink-46); }

.page-pricing .plan-price .mo { display: block; margin-top: 0.35rem; font-size: 0.8125rem; color: var(--cyan); font-weight: 500; }

.page-pricing .plan-price .mo .pro { color: var(--violet-text, #B794FF); white-space: nowrap; }

.page-pricing .plan-desc { color: var(--ink-64); line-height: 1.55; margin: 0 0 1.25rem; font-size: 0.9375rem; }

.page-pricing .plan-features { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.625rem; flex: 1; }

.page-pricing .plan-features li { position: relative; padding-left: 1.5rem; color: var(--ink-64); font-size: 0.9375rem; line-height: 1.5; }

.page-pricing .plan-features li::before { content: ''; position: absolute; left: 0; top: 0.45em; width: 12px; height: 6px; border-left: 1.5px solid var(--cyan); border-bottom: 1.5px solid var(--cyan); transform: rotate(-45deg); transform-origin: bottom left; }

.page-pricing .packages-note { text-align: center; color: var(--ink-46); font-size: 0.875rem; margin: clamp(1.75rem,3vw,2.25rem) 0 0; }

.page-pricing .packages-note a { color: var(--cyan); text-decoration: none; }

.page-pricing .packages-note a:hover { text-decoration: underline; text-underline-offset: 3px; }

.page-pricing .packages-note a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: 2px; }

/* ===== Guarantees page-scope adjustments (component CSS is global) ===== */
.page-pricing .guarantee-card .g-body { min-width: 0; }

.page-pricing .guarantee-card h3 { margin: 0 0 0.4rem; }

.page-pricing .guarantee-card p { margin: 0; }

.page-pricing .guarantee-card p.g-fine { margin: 0.55rem 0 0; }

/* Guarantee icon chip ported from the design's span.g-icon svg to a ::before so
   the card stays plain editable blocks (no Custom HTML). Box matches the global
   .guarantee-card .g-icon (42px, 10px radius, cyan). Icon differs per card via
   the g-clock / g-shield modifier; 20px glyph centered, same as .g-icon svg. */
.page-pricing .guarantee-card.g-clock::before,
.page-pricing .guarantee-card.g-shield::before {
  content: '';
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.page-pricing .guarantee-card.g-clock::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7.5v4.5l3 2'/%3E%3C/svg%3E");
}

.page-pricing .guarantee-card.g-shield::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 4-3 7.5-7 8.5-4-1-7-4.5-7-8.5V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

/* ===== Comparison matrix ===== */
.page-pricing .matrix { padding: clamp(4rem, 8vw, 6rem) 0; position: relative; overflow: hidden; isolation: isolate; }

.page-pricing .matrix::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(45% 45% at 5% 5%, rgba(56,189,248,0.10), transparent 65%),
    radial-gradient(45% 45% at 95% 95%, rgba(124,58,237,0.10), transparent 65%);
}

.page-pricing .matrix-inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-pricing .matrix-head { text-align: center; margin-bottom: clamp(2.5rem,5vw,3.5rem); }

.page-pricing .matrix-head h2 { font-size: clamp(1.75rem,3.6vw,2.5rem); margin: 0 0 0.75rem; }

.page-pricing .matrix-head p:not(.eyebrow) { color: var(--ink-64); font-size: 1rem; line-height: 1.65; max-width: 52ch; margin: 0 auto; }

.page-pricing .matrix-scroll { overflow-x: auto; }

.page-pricing .matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
}

.page-pricing .matrix-table thead th {
  padding: 1rem 1rem 1rem 0; text-align: left;
  font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-46); font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.page-pricing .matrix-table thead th.feature-col { width: 42%; }

.page-pricing .matrix-table thead th.center { text-align: center; padding: 1rem 0.5rem; }

.page-pricing .matrix-table thead th.our-col { color: var(--cyan); position: relative; }

.page-pricing .matrix-table thead th.our-col::after {
  content: ''; position: absolute; left: 8px; right: 8px; bottom: -1px; height: 1px;
  background: var(--cyan); opacity: 0.5;
}

.page-pricing .matrix-section-row td {
  padding: 1.5rem 0 0.625rem;
  font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cyan);
}

.page-pricing .matrix-table tbody tr.line-row td {
  padding: 0.875rem 1rem 0.875rem 0;
  color: var(--ink); border-bottom: 1px solid var(--line-soft);
  vertical-align: top; line-height: 1.5;
}

.page-pricing .matrix-table tbody tr.line-row td.cell { text-align: center; color: var(--ink-64); padding: 0.875rem 0.5rem; }

.page-pricing .matrix-table tbody tr.line-row td.cell.our { color: var(--ink); position: relative; }

.page-pricing .matrix-table tbody tr.line-row td.cell.our::before {
  content: ''; position: absolute; left: 8px; right: 8px; top: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(34,211,238,0.04), rgba(34,211,238,0.01));
  pointer-events: none; z-index: -1;
}

.page-pricing .matrix-table .em-cell { color: #fff; }

.page-pricing .matrix-table .yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(34,211,238,0.12); border: 1px solid rgba(34,211,238,0.4);
  color: var(--cyan);
}

.page-pricing .matrix-table .yes svg { width: 12px; height: 12px; }

.page-pricing .matrix-table .no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.02); border: 1px solid var(--line);
  color: var(--ink-32); font-size: 1rem;
}

.page-pricing .matrix-table .partial {
  font-family: var(--mono); font-size: 0.6875rem; color: var(--ink-46);
  letter-spacing: 0.08em; text-transform: uppercase;
}

@media (max-width: 720px) {
  .page-pricing .matrix-table { font-size: 0.8125rem; }
  .page-pricing .matrix-table thead th,
  .page-pricing .matrix-table tbody td { padding-left: 0.4rem; padding-right: 0.4rem; }
}

/* ===== Mini FAQ (wp:details) ===== */
.page-pricing .mini-faq { padding: clamp(3rem,6vw,5rem) 0; position: relative; overflow: hidden; }

.page-pricing .mini-faq::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 0%, rgba(34,211,238,0.08), transparent 65%);
}

.page-pricing .mini-faq-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-pricing .mini-faq-head { text-align: center; margin-bottom: clamp(2rem,4vw,2.75rem); }

.page-pricing .mini-faq-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 0.5rem; }

.page-pricing .mini-faq-head p:not(.eyebrow) { color: var(--ink-64); font-size: 0.9375rem; margin: 0; }

.page-pricing .mini-faq-list { display: flex; flex-direction: column; gap: 0.5rem; }

.page-pricing .mini-faq-item {
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-pricing .mini-faq-item[open] { border-color: rgba(34,211,238,0.3); background: rgba(34,211,238,0.02); }

.page-pricing .mini-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.125rem 1.375rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display); font-weight: 500; font-size: 1rem;
  color: #fff; letter-spacing: -0.005em;
}

.page-pricing .mini-faq-item summary::-webkit-details-marker { display: none; }

.page-pricing .mini-faq-item summary:focus-visible { outline: 2px solid var(--cyan); outline-offset: -2px; border-radius: 12px; }

.page-pricing .mini-faq-item summary::after {
  content: ''; flex: none; width: 26px; height: 26px;
  border-radius: 50%; border: 1px solid var(--line);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12' fill='none' stroke='%2322D3EE' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 1v10M1 6h10'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform 0.25s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.page-pricing .mini-faq-item[open] summary::after { transform: rotate(45deg); border-color: rgba(34,211,238,0.5); background-color: rgba(34,211,238,0.08); }

.page-pricing .mini-faq-item .ans {
  padding: 0 1.375rem 1.25rem; margin: 0; color: var(--ink-64); line-height: 1.65; font-size: 0.9375rem;
}

.page-pricing .mini-faq-item .ans a { color: var(--cyan); text-decoration: none; }

.page-pricing .mini-faq-item .ans a:hover { text-decoration: underline; }

/* Smooth open/close, matching the FAQ page. interpolate-size is set
   globally (once) by the FAQ fragment, so only the per-item transition
   is needed here. Degrades to instant open where ::details-content is
   unsupported; gated on reduced-motion. */
@media (prefers-reduced-motion: no-preference) {
  @supports (interpolate-size: allow-keywords) {
    .page-pricing .mini-faq-item::details-content {
      height: 0;
      overflow: hidden;
      transition: height 0.32s ease, content-visibility 0.32s allow-discrete;
    }
    .page-pricing .mini-faq-item[open]::details-content {
      height: auto;
    }
  }
}

/* ===== Final CTA ===== */
.page-pricing .cta { padding: clamp(5rem,10vw,8rem) 0 clamp(4.5rem,9vw,7rem); text-align: center; position: relative; overflow: hidden; }

.page-pricing .cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 50% 120%, rgba(56,189,248,0.22), transparent 60%),
    radial-gradient(40% 60% at 50% 120%, rgba(124,58,237,0.16), transparent 65%);
}

.page-pricing .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); }

.page-pricing .cta h2 { font-size: clamp(2rem,5vw,3.25rem); line-height: 1.05; margin: 0 0 1rem; }

.page-pricing .cta p:not(.eyebrow):not(.cta-meta) { font-size: 1.0625rem; color: var(--ink-64); margin: 0 auto 2rem; max-width: 44ch; line-height: 1.6; }

.page-pricing .cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; align-items: center; margin-bottom: 2.25rem; }

/* Secondary CTA is a plain editable paragraph link (was a bare <a> in the
   design). display:contents drops the <p> box so the .btn is a direct flex
   child of .cta-actions, aligning with the wizard-button sibling. */
.page-pricing .cta-actions .cta-secondary { display: contents; }

.page-pricing .cta p.cta-meta { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-32); margin: 0; max-width: none; }

.page-pricing .cta-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }

.page-pricing .cta-meta span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }

/* ── samples ───────────────────────────────────────────── */
/* ══ Page: samples ══ */

/* Sections stack flush: beat WP's default flow gap (logical margins) */
.hero-int,
.samples,
.stats-strip,
.band,
.cta {
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Neon gradient text (CTA headline) */
.ntext {
  background: var(--neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrows render as paragraphs in block markup; design used spans */
.hero-int-inner > .eyebrow,
.band-copy > .eyebrow {
  margin-top: 0;
}

/* ===================== Interior hero ===================== */
.hero-int {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-int::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(56,189,248,0.18), transparent 62%),
    radial-gradient(40% 40% at 82% 18%, rgba(124,58,237,0.12), transparent 65%),
    radial-gradient(40% 40% at 12% 90%, rgba(34,211,238,0.08), transparent 65%);
}

.hero-int::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.hero-int-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.hero-int h1 {
  font-size: clamp(2.5rem, 5.6vw, 4rem);
  font-weight: 300;
  color: var(--ink-bright);
  line-height: 1.05;
  margin: 0 auto 1.375rem;
  max-width: 22ch;
}

.hero-int h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-int .sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--ink-64);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
}

.hero-int .eyebrow {
  justify-content: center;
}

/* ===================== Samples grid ===================== */
.samples {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
}

.samples-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.samples-grid > .sample {
  margin-block-start: 0;
  margin-block-end: 0;
}

@media (max-width: 720px) {
  .samples-grid { grid-template-columns: 1fr; }
}

.sample {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.sample > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.sample:hover {
  transform: translateY(-3px);
  border-color: rgba(34,211,238,0.4);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.7), 0 0 30px -12px rgba(34,211,238,0.32);
}

figure.sample-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0A0A0F;
  border-bottom: 1px solid var(--line-soft);
  margin: 0;
}

.sample-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.sample-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(60% 70% at 30% 20%, rgba(56,189,248,0.10), transparent 65%),
    radial-gradient(50% 60% at 80% 80%, rgba(34,211,238,0.07), transparent 65%);
}

.sample-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 40%, transparent 95%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 40%, transparent 95%);
}

.sample-thumb.is-photo::before,
.sample-thumb.is-photo::after {
  display: none;
}

.sample-info {
  padding: 1.125rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
}

.sample-info > * {
  margin: 0;
}

.sample-tag {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.sample-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink-bright);
}

.sample-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink-64);
  margin-bottom: 0.25rem;
}

.sample-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.625rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-46);
}

.sample-foot p {
  margin: 0;
}

.sample-live {
  color: var(--cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.18s;
}

/* Stretch the live link over the card (design wraps the whole card in the link) */
.sample-live::after {
  content: '';
  position: absolute;
  inset: 0;
}

.sample-live:hover,
.sample-live:focus-visible {
  gap: 0.45rem;
  color: var(--cyan);
  text-decoration: none;
}

.sample-live:active {
  color: var(--sky-deep);
}

/* ===================== Stats strip ===================== */
.stats-strip {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  isolation: isolate;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 16% 14%, rgba(124,58,237,0.16), transparent 60%),
    radial-gradient(55% 50% at 86% 82%, rgba(34,211,238,0.14), transparent 62%);
}

.stats-strip-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.stats-strip h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
  line-height: 1.15;
  color: var(--ink-bright);
  margin: 0 0 2rem;
  max-width: 26ch;
}

.stats-strip h2 em {
  font-style: normal;
  color: var(--cyan);
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  color: var(--cyan);
  position: relative;
}

.spec-row::before,
.spec-row::after {
  content: '';
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  opacity: 0.6;
  background:
    linear-gradient(currentColor, currentColor) center / 10px 1px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1px 10px no-repeat;
}

.spec-row::before { left: -3px; }

.spec-row::after  { right: -3px; }

.spec-row .cell {
  flex: 1 1 0;
  min-width: 160px;
  padding: 0 clamp(1rem, 2.6vw, 2rem);
  position: relative;
  margin-block-start: 0;
  margin-block-end: 0;
}

.spec-row .cell:first-child { padding-left: 0; }

.spec-row .cell + .cell { border-left: 1px solid var(--line); }

.spec-row .lab {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin: 0;
}

.spec-row .num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.2vw, 2.875rem);
  line-height: 1;
  color: var(--ink-bright);
  margin: 0.85rem 0 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.16em;
  letter-spacing: -0.01em;
}

.spec-row .num small {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.46em;
  color: var(--cyan);
  letter-spacing: 0.04em;
}

.spec-row .desc {
  font-size: 0.8125rem;
  color: var(--ink-64);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 720px) {
  .spec-row .cell {
    flex-basis: 100%;
    padding: 0;
    border-left: 0;
    margin-bottom: 1.5rem;
  }
  .spec-row .cell + .cell {
    border-left: 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    margin-bottom: 0;
  }
}

.stats-fine {
  text-align: center;
  margin: 1.75rem auto 0;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-32);
  max-width: 60ch;
}

/* ===================== Process band (mini) ===================== */
.band {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.band-inner > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.band-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 0 1rem;
}

.band-copy p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-64);
  margin: 0;
  max-width: 42ch;
}

.band-stack {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.band-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Status dot lives in CSS, not in block markup */
.band-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  flex: none;
}

.band-item:nth-child(2)::before {
  background: var(--sky);
  box-shadow: 0 0 8px var(--sky);
}

.band-item:nth-child(3)::before {
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}

.band-item > div {
  margin: 0;
}

.band-item .t {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

.band-item .s {
  font-family: var(--mono);
  font-size: 0.625rem;
  color: var(--ink-32);
  letter-spacing: 0.06em;
  margin: 2px 0 0;
}

@media (max-width: 760px) {
  .band-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===================== Final CTA ===================== */
.cta {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4.5rem, 9vw, 7rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 50% 120%, rgba(56,189,248,0.22), transparent 60%),
    radial-gradient(40% 60% at 50% 120%, rgba(124,58,237,0.16), transparent 65%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.cta h2 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.02;
  margin: 0 0 1rem;
}

.cta p:not(.eyebrow):not(.cta-meta) {
  font-size: 1.0625rem;
  color: var(--ink-64);
  margin: 0 auto 2rem;
  max-width: 40ch;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.25rem;
}

.cta-actions > * {
  margin: 0;
}

.cta-meta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-32);
}

.cta-meta p {
  font-size: inherit;
  color: inherit;
  margin: 0;
  max-width: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-meta p::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

/* ── about ─────────────────────────────────────────────── */
/* ══ Page: about ══ */

/* ---------- Page scaffold ----------
   Port of the design's body.rails (two vertical hairlines) onto the
   page wrapper, plus flush section stacking and stacking context so
   sections paint above the rails. */
.wp-block-group.page-about {
  position: relative;
}

.wp-block-group.page-about::before,
.wp-block-group.page-about::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-soft);
  pointer-events: none;
  z-index: 0;
}

.wp-block-group.page-about::before { left: max(0px, calc(50% - 540px)); }

.wp-block-group.page-about::after  { right: max(0px, calc(50% - 540px)); }

.wp-block-group.page-about > * {
  position: relative;
  z-index: 1;
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Shared page primitives (not in the global sheet) */
.page-about .divide { border-top: 1px solid var(--line); }

.page-about .ntext {
  background: var(--neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrows are <p> blocks in WP (spans in the design): kill the UA top margin */
.page-about .eyebrow { margin-top: 0; }

/* ---------- Interior hero (no orbital) ---------- */
.page-about .hero-i {
  position: relative;
  padding: clamp(5rem, 10vw, 7.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}

.page-about .hero-i::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% -8%, rgba(56,189,248,0.18), transparent 62%),
    radial-gradient(45% 45% at 88% 14%, rgba(124,58,237,0.14), transparent 65%),
    radial-gradient(40% 40% at 10% 88%, rgba(34,211,238,0.09), transparent 65%);
}

.page-about .hero-i::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.page-about .hero-i-inner {
  position: relative; z-index: 1;
  max-width: 1080px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.page-about .hero-i h1 {
  font-size: clamp(2.25rem, 5.2vw, 3.75rem);
  font-weight: 300; color: var(--ink-bright);
  line-height: 1.05; margin: 0 0 1.25rem;
  max-width: 18ch; margin-inline: auto;
}

.page-about .hero-i h1 .ntext { font-weight: 400; }

.page-about .hero-i .hero-sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--ink-64);
  line-height: 1.6;
  max-width: 56ch; margin: 0 auto;
}

/* ---------- Story section ---------- */
.page-about .story {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative; isolation: isolate;
}

.page-about .story-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.page-about .story-head h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  margin: 0 0 0.75rem;
  max-width: 14ch;
}

.page-about .story-head .mono-tag {
  font-family: var(--mono);
  font-size: 0.625rem;
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 1.25rem 0 0; /* was margin-top; .mono-tag is a <p> in WP */
  display: inline-flex; align-items: center; gap: 0.5rem;
}

.page-about .story-head .mono-tag::before {
  content: ''; width: 14px; height: 1px; background: var(--cyan);
}

.page-about .story-body p {
  color: var(--ink-64);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.page-about .story-body p:last-child { margin-bottom: 0; }

.page-about .story-body strong { color: var(--ink-bright); font-weight: 500; }

@media (max-width: 880px) {
  .page-about .story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .page-about .story-head h2 { max-width: 100%; }
}

/* ---------- Values grid ---------- */
.page-about .values {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative; isolation: isolate; overflow: hidden;
}

.page-about .values::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 50% at 12% 18%, rgba(124,58,237,0.12), transparent 60%),
    radial-gradient(50% 45% at 92% 82%, rgba(34,211,238,0.10), transparent 62%);
}

.page-about .values::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(circle, rgba(255,255,255,0.16) 1px, transparent 1.4px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 95% 90% at 50% 50%, #000 40%, transparent 88%);
  mask-image: radial-gradient(ellipse 95% 90% at 50% 50%, #000 40%, transparent 88%);
}

.page-about .values-head,
.page-about .values-grid { position: relative; z-index: 1; }

.page-about .values-head {
  max-width: 1080px; margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.page-about .values-head h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  margin: 0; max-width: 22ch;
}

.page-about .values-grid {
  max-width: 1080px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.page-about .value-card {
  position: relative;
  padding: 1.5rem 1.375rem 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 0.625rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.page-about .value-card:hover {
  border-color: rgba(34,211,238,0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -18px rgba(34,211,238,0.4);
}

/* Value-card icon chip + corner index ported from the design's span.v-icon svg
   and span.v-num to pseudo-elements, so each card is plain editable blocks (no
   Custom HTML). ::before is the 36px icon chip (first flex item, matching the
   old in-flow .v-icon); ::after is the absolutely-positioned corner number. The
   glyph and number differ per card via the v-1..v-4 modifier. */
.page-about .value-card::before {
  content: '';
  flex: none;
  width: 36px; height: 36px;
  border-radius: 9px;
  background-color: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.28);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  margin-bottom: 0.5rem;
}

.page-about .value-card::after {
  position: absolute; top: 1.125rem; right: 1.25rem;
  font-family: var(--mono); font-size: 0.625rem;
  letter-spacing: 0.18em; color: var(--ink-32);
}

.page-about .value-card.v-1::after { content: '01'; }

.page-about .value-card.v-2::after { content: '02'; }

.page-about .value-card.v-3::after { content: '03'; }

.page-about .value-card.v-4::after { content: '04'; }

.page-about .value-card.v-1::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17l6-6 4 4 8-8'/%3E%3Cpath d='M14 7h7v7'/%3E%3C/svg%3E");
}

.page-about .value-card.v-2::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L4 14h7l-1 8 9-12h-7l1-8z'/%3E%3C/svg%3E");
}

.page-about .value-card.v-3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
}

.page-about .value-card.v-4::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.page-about .value-card h3 {
  font-size: 1.0625rem;
  margin: 0;
  line-height: 1.2;
}

.page-about .value-card p {
  color: var(--ink-64);
  font-size: 0.875rem; line-height: 1.6;
  margin: 0;
}

@media (max-width: 960px) { .page-about .values-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 520px) { .page-about .values-grid { grid-template-columns: 1fr; } }

/* ---------- Versus / positioning callout ---------- */
.page-about .versus {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative; isolation: isolate; overflow: hidden;
}

.page-about .versus-inner {
  position: relative; z-index: 1;
  max-width: 1080px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.page-about .versus-head {
  text-align: center;
  max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.page-about .versus-head h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  margin: 0 0 0.875rem;
}

.page-about .versus-head p:not(.eyebrow) {
  color: var(--ink-64);
  font-size: 1rem; line-height: 1.65;
  margin: 0;
  max-width: 56ch;
  margin-inline: auto;
}

.page-about .versus-table {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
}

.page-about .versus-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
}

.page-about .versus-row + .versus-row { border-top: 1px solid var(--line); }

.page-about .versus-row > * {
  padding: 1.125rem 1.5rem;
  margin: 0; /* labels/cells are <p> blocks in WP */
}

.page-about .versus-row > * + * { border-left: 1px solid var(--line); }

.page-about .versus-head-row {
  background: rgba(255,255,255,0.025);
}

.page-about .versus-head-row .col {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-46);
}

.page-about .versus-head-row .col.us {
  color: var(--cyan);
}

.page-about .versus-head-row .col.us::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
  margin-right: 0.55rem; vertical-align: middle;
}

.page-about .versus-row .row-label {
  color: var(--ink-bright);
  font-weight: 500;
  font-size: 0.9375rem;
}

.page-about .versus-row .row-label small {
  display: block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin-top: 0.25rem;
}

.page-about .versus-row .cell {
  color: var(--ink-64);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.page-about .versus-row .cell.us {
  color: var(--ink-bright);
  font-weight: 500;
}

.page-about .versus-row .cell .mark {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.page-about .versus-row .cell.us .mark::before {
  content: ''; width: 14px; height: 14px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(34,211,238,0.7);
  display: inline-grid; place-items: center;
  flex: none;
}

.page-about .versus-row .cell.other .mark::before {
  content: '×';
  color: var(--ink-46);
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1;
  width: 14px; text-align: center;
}

@media (max-width: 720px) {
  .page-about .versus-row { grid-template-columns: 1fr; }
  .page-about .versus-row > * + * { border-left: 0; border-top: 1px solid var(--line-soft); }
  .page-about .versus-head-row { display: none; }
  /* Column labels are constant, so literal content replaces the design's attr(data-label) */
  .page-about .versus-row .cell::before {
    content: 'DIY';
    display: block;
    font-family: var(--mono); font-size: 0.625rem;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-46);
    margin-bottom: 0.4rem;
  }
  .page-about .versus-row .cell.us::before { content: 'Launchpad'; }
}

/* ---------- Trust / stats ---------- */
.page-about .trust {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative; isolation: isolate; overflow: hidden;
}

.page-about .trust::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 18% 16%, rgba(124,58,237,0.20), transparent 60%),
    radial-gradient(55% 50% at 84% 84%, rgba(34,211,238,0.16), transparent 62%),
    radial-gradient(60% 60% at 70% 8%, rgba(56,189,248,0.12), transparent 60%);
}

.page-about .trust::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.8;
  background-image:
    radial-gradient(1.6px 1.6px at 14% 24%, rgba(255,255,255,0.85), transparent 60%),
    radial-gradient(1px 1px at 30% 68%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1.4px 1.4px at 48% 16%, rgba(186,212,255,0.7), transparent 60%),
    radial-gradient(1.4px 1.4px at 65% 50%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1px 1px at 80% 30%, rgba(160,220,255,0.6), transparent 60%),
    radial-gradient(1px 1px at 90% 72%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 38% 88%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1.4px 1.4px at 9% 80%, rgba(196,186,255,0.55), transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse 92% 82% at 50% 46%, #000 36%, transparent 82%);
  mask-image: radial-gradient(ellipse 92% 82% at 50% 46%, #000 36%, transparent 82%);
}

.page-about .trust-inner {
  position: relative; z-index: 1;
  max-width: 1080px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.page-about .trust-head {
  text-align: center;
  max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.page-about .trust-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
  line-height: 1.2;
  color: var(--ink-bright);
  margin: 0 0 0.875rem;
}

.page-about .trust-head h2 em { font-style: normal; color: var(--cyan); }

.page-about .trust-head p:not(.eyebrow) {
  color: var(--ink-64);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.page-about .trust-spec {
  position: relative;
  display: flex; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  color: var(--cyan);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.page-about .trust-spec::before,
.page-about .trust-spec::after {
  content: ''; position: absolute; top: -5px; width: 10px; height: 10px; opacity: 0.6;
  background:
    linear-gradient(currentColor,currentColor) center/10px 1px no-repeat,
    linear-gradient(currentColor,currentColor) center/1px 10px no-repeat;
}

.page-about .trust-spec::before { left: -3px; }

.page-about .trust-spec::after  { right: -3px; }

.page-about .trust-spec .cell {
  flex: 1 1 0; min-width: 150px;
  padding: 0 clamp(1rem, 2.4vw, 1.875rem);
  position: relative;
}

.page-about .trust-spec .cell:first-child { padding-left: 0; }

.page-about .trust-spec .cell + .cell { border-left: 1px solid var(--line); }

.page-about .trust-spec .cell + .cell::before {
  content: ''; position: absolute; top: calc(-1.75rem - 5px); left: -5px; width: 10px; height: 10px; opacity: 0.45;
  background:
    linear-gradient(currentColor,currentColor) center/10px 1px no-repeat,
    linear-gradient(currentColor,currentColor) center/1px 10px no-repeat;
}

.page-about .trust-spec .lab {
  font-family: var(--mono); font-size: 0.625rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-46);
  margin: 0; /* .lab is a <p> block in WP */
}

.page-about .trust-spec .num {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1; color: var(--ink-bright);
  margin: 0.9rem 0 0; /* .num is a <p> block in WP */
  display: flex; align-items: baseline; gap: 0.16em;
  letter-spacing: -0.01em;
}

.page-about .trust-spec .num small {
  font-family: var(--mono); font-weight: 500;
  font-size: 0.46em; color: var(--ink-46);
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  /* 4 stats wrap to a 2x2 grid; the inter-cell cross-ticks are a single-row
     flourish and strand in the row gap (esp. cell 4). Drop them all here. */
  .page-about .trust-spec .cell { flex-basis: 46%; padding: 0 1rem; }
  .page-about .trust-spec .cell:nth-child(3) { border-left: 0; }
  .page-about .trust-spec .cell + .cell::before { display: none; }
}

/* ---------- Quote testimonials ---------- */
.page-about .quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-about .quote-card {
  padding: 1.75rem 1.75rem 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
  transition: border-color 0.25s;
}

.page-about .quote-card:hover { border-color: rgba(34,211,238,0.3); }

/* The design's .qmark span, moved to a pseudo-element */
.page-about .quote-card::before {
  content: '"';
  position: absolute; top: 0.875rem; right: 1.125rem;
  font-family: var(--font-display);
  font-size: 3rem; line-height: 1;
  color: var(--cyan); opacity: 0.35;
}

.page-about .quote-card > p {
  color: var(--ink);
  font-size: 1rem; line-height: 1.6;
  margin: 0 0 1.25rem;
}

.page-about .quote-card .qmeta {
  display: flex; align-items: center; gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.page-about .quote-card .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(34,211,238,0.3), rgba(124,58,237,0.3));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.75rem;
  color: var(--ink-bright);
  margin: 0; /* .avatar is a <p> block in WP */
}

.page-about .quote-card .qname {
  font-size: 0.875rem;
  color: var(--ink-bright);
  font-weight: 500;
  margin: 0; /* <p> in WP */
}

.page-about .quote-card .qrole {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin: 0.125rem 0 0; /* <p> in WP */
}

@media (max-width: 720px) { .page-about .quotes-grid { grid-template-columns: 1fr; } }

/* ---------- Final CTA ---------- */
.page-about .cta {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4.5rem, 9vw, 7rem);
  text-align: center; position: relative; overflow: hidden;
}

.page-about .cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 50% 120%, rgba(56,189,248,0.22), transparent 60%),
    radial-gradient(40% 60% at 50% 120%, rgba(124,58,237,0.16), transparent 65%);
}

.page-about .cta-inner {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.page-about .cta h2 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.02; margin: 0 0 1rem;
}

.page-about .cta p:not(.eyebrow):not(.cta-meta) {
  font-size: 1.0625rem; color: var(--ink-64);
  margin: 0 auto 2rem; max-width: 40ch; line-height: 1.6;
}

.page-about .cta-actions {
  display: flex; gap: 0.75rem; justify-content: center;
  flex-wrap: wrap; align-items: center; margin-bottom: 2.25rem;
}

/* Secondary CTA is a plain editable paragraph link (was a bare <a> in the
   design). display:contents drops the <p> box so the .btn is a direct flex
   child of .cta-actions, aligning with the wizard-button sibling. */
.page-about .cta-actions .cta-secondary { display: contents; }

.page-about .cta-meta {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  font-family: var(--mono); font-size: 0.6875rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-32);
}

.page-about .cta-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }

.page-about .cta-meta span::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 6px var(--cyan);
}

/* ── contact ───────────────────────────────────────────── */
/* contact-v2.html ships with data-no-reveal on <html>: this page opts out
   of scroll reveals (form page). Scoped port of the [data-no-reveal] rule. */
.page-contact .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ---------- Interior hero ---------- */
.hero-i {
  position: relative;
  padding: clamp(5rem, 10vw, 7.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-i::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% -8%, rgba(56,189,248,0.18), transparent 62%),
    radial-gradient(45% 45% at 88% 14%, rgba(124,58,237,0.14), transparent 65%),
    radial-gradient(40% 40% at 10% 88%, rgba(34,211,238,0.10), transparent 65%);
}

.hero-i::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.hero-i-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.hero-i h1 {
  font-size: clamp(2.5rem, 5.6vw, 4rem);
  font-weight: 300;
  color: var(--ink-bright);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  max-width: 14ch;
  margin-inline: auto;
}

.hero-i h1 .ntext { font-weight: 400; }

.hero-i .hero-sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--ink-64);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
}

/* ---------- Contact two-column ---------- */
.contact-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  isolation: isolate;
}

.contact-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

/* Grid/flex own the placement; strip WP flow-layout block margins. */
.contact-grid > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- Form ---------- */
.form-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(34,211,238,0.55), transparent);
  opacity: 0.7;
}

.form-card h2 {
  font-size: clamp(1.375rem, 2.6vw, 1.625rem);
  margin: 0 0 0.5rem;
}

.form-card .form-sub {
  color: var(--ink-64);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0 0 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

/* .form-sub owns the gap above the form; strip WP flow margin. */
.form-card .contact-form { margin-block-start: 0; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

@media (max-width: 480px) {
  .row-split { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.field label {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-46);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.field label .req {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.625rem;
}

.field label .opt {
  color: var(--ink-32);
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  background: rgba(9, 9, 11, 0.55);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.875rem;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  line-height: 1.45;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-32);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(255,255,255,0.18);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(34,211,238,0.55);
  background: rgba(9,9,11,0.85);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.12), 0 0 24px -8px rgba(34,211,238,0.45);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-primary);
}

/* Select chevron */
.field.select-field {
  position: relative;
}

.field.select-field::after {
  content: '';
  position: absolute;
  right: 1rem;
  bottom: 1.05rem;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--ink-46);
  border-bottom: 1.5px solid var(--ink-46);
  transform: rotate(45deg);
  pointer-events: none;
  transition: border-color 0.18s;
}

.field.select-field:focus-within::after {
  border-color: var(--cyan);
}

.field select {
  padding-right: 2.25rem;
  cursor: pointer;
}

.field select option {
  background: var(--bg-2);
  color: var(--ink);
}

/* Submit row */
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.form-submit .privacy {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-46);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form-submit .privacy::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.form-submit .privacy a {
  color: var(--ink-64);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.form-submit .privacy a:hover,
.form-submit .privacy a:focus-visible {
  color: var(--cyan);
  border-color: var(--cyan);
}

.form-submit .privacy a:active {
  color: var(--sky-deep);
  border-color: var(--sky-deep);
}

/* ---------- Sidebar ---------- */
.side-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 92px;
}

/* Flex gap owns the spacing; strip WP flow-layout block margins. */
.side-stack > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

@media (max-width: 880px) {
  .side-stack { position: static; }
}

.side-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.25s;
}

.side-card:hover { border-color: rgba(34,211,238,0.25); }

.side-card h3 {
  font-size: 0.9375rem;
  margin: 0 0 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Design's span.ic icon chips, ported to ::before so the headings stay
   plain editable text in the block editor. */
.side-card h3.ic-mail::before,
.side-card h3.ic-clock::before {
  content: '';
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background-color: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.28);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.side-card h3.ic-mail::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpolyline points='3 7 12 13 21 7'/%3E%3C/svg%3E");
}

.side-card h3.ic-clock::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}

.side-card p {
  color: var(--ink-64);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 0.875rem;
}

.side-card p:last-child { margin-bottom: 0; }

.side-card .small-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-card .small-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-64);
}

.side-card .small-list li .lab {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-46);
  flex: 0 0 5.5rem;
}

.side-card .small-list li .val {
  color: var(--ink);
  font-weight: 500;
}

/* Response time pulse — design's span.pulse ported to pseudo-elements so
   the badge stays a plain editable paragraph. */
.response-strip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 0.45rem 0.875rem;
  background: rgba(34,211,238,0.06);
  border: 1px solid rgba(34,211,238,0.24);
  border-radius: 999px;
  margin: 0 0 1rem;
}

.response-strip::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  flex: none;
}

@media (prefers-reduced-motion: no-preference) {
  .response-strip::after {
    content: '';
    position: absolute;
    left: calc(0.875rem - 2px);
    top: calc(50% - 6px);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid var(--cyan);
    animation: pulseRing 2.4s ease-out infinite;
    pointer-events: none;
  }
}

@keyframes pulseRing {
  0% { opacity: 0.8; transform: scale(0.6); }
  100% { opacity: 0; transform: scale(2.4); }
}

/* ---------- Blueprint illustration ---------- */
.side-illo {
  background: linear-gradient(180deg, rgba(124,58,237,0.05), rgba(34,211,238,0.025));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

/* The SVG now lives inside the decoration block wrapper; display:contents drops
   that wrapper so the svg is an effective direct child of .side-illo (matching
   the pre-conversion markup the rules below target). */
.side-illo .lp-decoration { display: contents; }

.side-illo svg {
  display: block;
  width: 100%;
  height: auto;
  color: var(--cyan);
  filter: drop-shadow(0 0 10px rgba(34,211,238,0.25));
}

/* Caption is now a native wp:paragraph (was a bare <div>); reset the paragraph
   box so only the intended top offset applies. */
.side-illo .illo-cap {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin: 0.75rem 0 0;
  margin-block: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.side-illo .illo-cap::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--cyan);
}

/* ---------- After-form CTA ---------- */
.after-cta {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.after-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 70% at 30% 50%, rgba(124,58,237,0.10), transparent 65%),
    radial-gradient(45% 60% at 75% 65%, rgba(34,211,238,0.10), transparent 62%);
}

.after-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

/* Grid/flex own the placement; strip WP flow-layout block margins. */
.after-cta-inner > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.after-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.625rem;
  max-width: 24ch;
}

.after-cta p {
  color: var(--ink-64);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  max-width: 44ch;
}

.after-cta .actions {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  align-items: center;
}

.after-cta .actions > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

@media (max-width: 720px) {
  .after-cta-inner { grid-template-columns: 1fr; }
}

/* Gravity Forms → Cobalt (GLOBAL — covers the /contact/ form AND the demo-request
   modal; any GF form gets the same treatment). GF's orbital framework is driven by
   --gf-* custom properties; setting them on the wrapper is the framework-native way
   to restyle. Result: dark inputs, cyan required marker, cyan PILL submit — matching
   the site's control language. */
.gform_wrapper {
  --gf-ctrl-radius: 10px;
  --gf-ctrl-btn-border-radius: 9999px;
  --gf-color-primary: var(--cyan);
  --gf-color-danger: var(--cyan);
  --gf-ctrl-btn-bg-primary: var(--cyan);
  --gf-ctrl-btn-color-primary: var(--bg-2);
}

/* Pill submit to match every other button; doubled class outranks GF orbital. */
.gform_wrapper .gform_footer .gform_button.gform_button { border-radius: 9999px !important; padding-inline: 1.75rem; }

/* Honeypot / anti-spam validation field — keep off-screen (present for bots,
   invisible to humans) instead of display:none, matching GF's own technique so
   the check stays effective. Belt-and-suspenders: holds even if GF's framework
   CSS fails to enqueue (e.g. a form printed late in wp_footer). */
.gform_wrapper .gform_validation_container {
  position: absolute !important;
  left: -9000px !important;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── faq ───────────────────────────────────────────────── */
/* ══ Page: faq ══ */

/* Gradient text signatures (design shared utilities used on this page) */
.gtext {
  background: linear-gradient(180deg, var(--ink-bright) 0%, var(--ink-64) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Interior hero ===== */
.hero-interior {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.hero-interior::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 55% at 50% -10%, rgba(56,189,248,0.22), transparent 62%),
    radial-gradient(45% 50% at 88% 18%, rgba(124,58,237,0.14), transparent 65%),
    radial-gradient(40% 45% at 12% 92%, rgba(34,211,238,0.08), transparent 65%);
}

.hero-interior::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.hero-interior-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.hero-interior h1 {
  font-size: clamp(2.25rem, 5vw, 3.625rem);
  font-weight: 300;
  color: var(--ink-bright);
  line-height: 1.05;
  margin: 0 0 1.25rem;
}

.hero-interior h1 em {
  font-style: normal;
}

.hero-interior .hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--ink-64);
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 auto;
}

/* ===== FAQ layout ===== */
.faq-section {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: clip; /* clip (not hidden) so the sticky TOC isn't trapped in a scroll container */
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(40% 40% at 5% 8%, rgba(56,189,248,0.08), transparent 65%),
    radial-gradient(45% 45% at 95% 92%, rgba(124,58,237,0.07), transparent 65%);
}

.faq-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 880px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Side TOC ===== */
.faq-toc {
  position: sticky;
  top: 90px;
  align-self: start;
}

.faq-toc-title {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin: 0 0 1rem;
}

.faq-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-left: 1px solid var(--line);
}

.faq-toc-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.875rem;
  color: var(--ink-64);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  border-left: 2px solid transparent;
  margin-left: -1px;
}

.faq-toc-list a:hover,
.faq-toc-list a:focus-visible {
  color: var(--ink-bright);
}

.faq-toc-list a:active {
  color: var(--cyan);
}

.faq-toc-list a.is-active {
  color: var(--cyan);
  border-left-color: var(--cyan);
  background: linear-gradient(90deg, rgba(34,211,238,0.08), transparent 70%);
  font-weight: 500; /* hold the design weight against the global [data-toc].is-active bold */
}

.faq-toc-list .count {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  color: var(--ink-32);
}

.faq-toc-list a.is-active .count {
  color: var(--cyan);
}

@media (max-width: 880px) {
  .faq-toc {
    position: relative;
    top: 0;
  }
  .faq-toc-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-left: 0;
  }
  .faq-toc-list a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.4rem 0.875rem;
    margin-left: 0;
  }
  .faq-toc-list a.is-active {
    border-color: rgba(34,211,238,0.5);
    background: rgba(34,211,238,0.08);
  }
}

/* ===== FAQ content column ===== */
.faq-content {
  min-width: 0;
}

.faq-group {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  scroll-margin-top: 80px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  margin: 0 0 0.5rem;
  color: var(--ink-bright);
}

.faq-group .group-desc {
  color: var(--ink-64);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1.75rem;
  max-width: 58ch;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.02);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.125rem 1.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-bright);
  letter-spacing: -0.005em;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
  border-radius: 12px;
}

/* The design's summary .icon span, drawn in CSS so the wp:details
   summary stays plain editable text */
.faq-item summary::after {
  content: '';
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background-image:
    linear-gradient(var(--cyan), var(--cyan)),
    linear-gradient(var(--cyan), var(--cyan));
  background-size: 11px 2px, 2px 11px;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.25s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  border-color: rgba(34,211,238,0.5);
  background-color: rgba(34,211,238,0.08);
}

.faq-item .ans {
  padding: 0 1.375rem 1.25rem;
  color: var(--ink-64);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.faq-item .ans p {
  margin: 0 0 0.875rem;
}

.faq-item .ans p:last-child {
  margin-bottom: 0;
}

.faq-item .ans a {
  color: var(--cyan);
  text-decoration: none;
}

.faq-item .ans a:hover,
.faq-item .ans a:focus-visible {
  text-decoration: underline;
}

.faq-item .ans strong {
  color: var(--ink);
  font-weight: 600;
}

.faq-item .ans ul {
  margin: 0.625rem 0 0.875rem;
  padding: 0;
  list-style: none;
}

.faq-item .ans ul li {
  position: relative;
  padding-left: 1.125rem;
  margin: 0.375rem 0;
}

.faq-item .ans ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.625em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

/* ===== Smooth anchor scroll + accordion open/close animation =====
   Both motion enhancements are gated on prefers-reduced-motion.
   The accordion uses the standard ::details-content + interpolate-size
   approach; on browsers without support it degrades to instant open. */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  @supports (interpolate-size: allow-keywords) {
    :root {
      interpolate-size: allow-keywords;
    }
    .faq-item::details-content {
      height: 0;
      overflow: hidden;
      transition: height 0.32s ease, content-visibility 0.32s allow-discrete;
    }
    .faq-item[open]::details-content {
      height: auto;
    }
  }
}

/* ===== Help banner ===== */
.help-banner {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  position: relative;
  overflow: hidden;
}

.help-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 60% at 50% 0%, rgba(34,211,238,0.10), transparent 65%),
    radial-gradient(35% 50% at 100% 100%, rgba(124,58,237,0.10), transparent 65%);
}

.help-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.help-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid rgba(34,211,238,0.25);
  border-radius: 18px;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.help-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: var(--neon);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.help-card .help-text h3 {
  font-size: clamp(1.375rem, 2.4vw, 1.625rem);
  margin: 0 0 0.625rem;
  color: var(--ink-bright);
}

.help-card .help-text p {
  color: var(--ink-64);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  max-width: 50ch;
}

.help-card .help-actions {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .help-card {
    grid-template-columns: 1fr;
  }
}

/* ===== Final CTA ===== */
.cta {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(4rem, 8vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.cta p:not(.eyebrow):not(.cta-meta) {
  font-size: 1.0625rem;
  color: var(--ink-64);
  margin: 0 auto 2rem;
  max-width: 44ch;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== WP block-layout shims (faq) ===== */
/* Design sections stack flush; neutralize WP's default block gap
   (logical margins, so margin-block, not margin-top). */
.wp-block-group.hero-interior,
.wp-block-group.beam,
.wp-block-group.faq-section,
.wp-block-group.help-banner,
.wp-block-group.cta {
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Grid/flex containers styled by the ported rules above: their
   children space via gap, not WP flow-gap margins. */
.faq-grid > *,
.faq-list > *,
.help-card > *,
.cta-actions > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Core button with the design's inline arrow (help banner "Contact us") */
.wp-block-button.has-arrow .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.wp-block-button.has-arrow .wp-block-button__link::after {
  content: '';
  width: 14px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ── privacy ───────────────────────────────────────────── */
/* ══ Page: privacy ══ */

/* ── Legal hero ─────────────────────────────────────────────── */
.legal-hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 60% at 50% -10%, rgba(56,189,248,0.18), transparent 65%),
    radial-gradient(45% 50% at 88% 10%, rgba(124,58,237,0.12), transparent 65%);
}

.legal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 80%);
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.legal-hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4rem);
  font-weight: 300;
  color: var(--ink-bright);
  line-height: 1.05;
  margin: 0 0 1.125rem;
  max-width: 16ch;
  letter-spacing: -0.025em;
}

.legal-hero .legal-meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.legal-hero .legal-meta::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

/* The privacy design constrains the beam under the hero to the
   container width and softens it (global .beam is full-width, 0.55). */
.legal-beam {
  max-width: 1080px;
  margin: 0 auto;
}

.legal-beam::after { opacity: 0.45; }

/* ── Layout ─────────────────────────────────────────────────── */
.legal-main { padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem); }

.legal-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 880px) {
  .legal-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── TOC (scroll-spy active states live in style.css) ───────── */
.legal-toc {
  position: sticky;
  top: 5rem;
  align-self: start;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.legal-toc__label {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin: 0 0 1rem;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.legal-toc li {
  counter-increment: toc;
  position: relative;
  padding-left: 2.25rem;
}

.legal-toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: var(--ink-32);
}

.legal-toc a {
  display: block;
  color: var(--ink-64);
  text-decoration: none;
  font-size: 0.8125rem;
  line-height: 1.4;
  padding: 0.2rem 0;
  transition: color 0.15s, transform 0.15s;
}

.legal-toc a:hover {
  color: var(--cyan);
  transform: translateX(2px);
}

.legal-toc a:focus-visible {
  color: var(--cyan);
  transform: translateX(2px);
}

.legal-toc a:active { color: var(--sky-deep); }

@media (max-width: 880px) {
  .legal-toc {
    position: static;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg-2);
  }
}

/* ── Content ────────────────────────────────────────────────── */
.legal-content { min-width: 0; }

.legal-content > section { scroll-margin-top: 5rem; }

.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.2vw, 1.625rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-bright);
  margin: 2.75rem 0 1rem;
  padding-top: 0.5rem;
  position: relative;
}

.legal-content > section:first-child h2 { margin-top: 0; }

.legal-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(34,211,238,0.6);
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  margin: 1.75rem 0 0.625rem;
  letter-spacing: -0.01em;
}

.legal-content p {
  color: var(--ink-64);
  line-height: 1.75;
  font-size: 0.9375rem;
  margin: 0 0 1.125rem;
  max-width: 65ch;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  max-width: 65ch;
}

.legal-content ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.625rem;
  color: var(--ink-64);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 0.6rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px rgba(34,211,238,0.6);
}

.legal-content strong,
.legal-content b {
  color: var(--ink);
  font-weight: 600;
}

.legal-content a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(34,211,238,0.3);
  transition: border-color 0.15s, color 0.15s;
}

.legal-content a:hover {
  color: var(--ink-bright);
  border-bottom-color: var(--cyan);
}

.legal-content a:focus-visible {
  color: var(--ink-bright);
  border-bottom-color: var(--cyan);
}

.legal-content a:active { color: var(--sky-deep); }

.legal-content code {
  font-family: var(--mono);
  font-size: 0.85em;
  padding: 0.1em 0.4em;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
}

/* ── Callout ────────────────────────────────────────────────── */
.callout {
  position: relative;
  margin: 1.5rem 0 1.75rem;
  padding: 1.125rem 1.25rem 1.125rem 1.5rem;
  background: rgba(34,211,238,0.04);
  border: 1px solid rgba(34,211,238,0.18);
  border-left: 2px solid var(--cyan);
  border-radius: 0 8px 8px 0;
  box-shadow: -2px 0 18px -8px rgba(34,211,238,0.45);
}

.callout__label {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.callout__label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.callout p {
  color: var(--ink);
  margin: 0;
  line-height: 1.65;
  font-size: 0.9375rem;
}

.callout p + p { margin-top: 0.625rem; }

/* ── Address block ──────────────────────────────────────────── */
/* Design markup is a <div>; the pattern uses a paragraph block, so
   this sits above .legal-content p (0,1,1) to keep design values. */
.legal-content .legal-address {
  display: inline-block;
  padding: 0.875rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0.5rem 0 1.5rem;
}

/* ── Contact CTA ────────────────────────────────────────────── */
.legal-contact {
  margin-top: clamp(3rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(34,211,238,0.04) 0%, rgba(9,9,11,0.5) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(56,189,248,0.12), transparent 65%);
}

.legal-contact > * {
  position: relative;
  z-index: 1;
}

.legal-contact h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 500;
  color: var(--ink-bright);
  margin: 0 0 0.625rem;
  letter-spacing: -0.015em;
}

.legal-contact p {
  color: var(--ink-64);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 auto 1.25rem;
  max-width: 44ch;
}

/* ── WP block-layout margin guards ──────────────────────────── */
/* Core block-supports CSS (.wp-container-* > *) loads after this
   stylesheet and zeroes block margins at (0,1,0); re-assert the
   single-class design margins at (0,2,0). */
.legal-hero .eyebrow { margin-bottom: 1.25rem; }

.legal-toc .legal-toc__label { margin: 0 0 1rem; }

.legal-content .callout { margin: 1.5rem 0 1.75rem; }

.legal-content .legal-contact { margin-top: clamp(3rem, 5vw, 4rem); }

/* Sticky TOC clears the WP admin bar when logged in. */
body.admin-bar .legal-toc { top: 7rem; }

/* ── terms ─────────────────────────────────────────────── */
/* WP flow: the hero border, beam, and main stack flush (beam is
   alignwide, which supplies the design's 1080px centering). */
.legal-hero + .beam { margin-block: 0; }

/* ---------------------------------------------------------
   Legal layout
   --------------------------------------------------------- */
.legal-main {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
  margin-block: 0; /* WP flow reset */
}

/* ---------------------------------------------------------
   TOC (scroll-spy active state lives in style.css)
   --------------------------------------------------------- */
.legal-toc {
  position: sticky;
  top: 5rem;
  align-self: start;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  margin-block: 0; /* WP flow reset (grid child) */
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--cyan);
  transform: translateX(2px);
}

/* ---------------------------------------------------------
   Legal content
   --------------------------------------------------------- */
.legal-content {
  min-width: 0;
  margin-block: 0; /* WP flow reset (grid child) */
}

.legal-content > section {
  scroll-margin-top: 5rem;
  margin-block: 0; /* WP flow reset: h2 margins own the rhythm */
}

/* .wp-block-heading keeps the 2.75rem lead-in ahead of WP's
   (0,2,0) :first-child margin zeroing (h2 opens each section). */
.legal-content h2.wp-block-heading {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.2vw, 1.625rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-bright);
  margin: 2.75rem 0 1rem;
  padding-top: 0.5rem;
  position: relative;
}

/* :not() keeps the core button (Contact CTA) out of the prose link style */
.legal-content a:not(.wp-block-button__link) {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(34,211,238,0.3);
  transition: border-color 0.15s, color 0.15s;
}

.legal-content a:not(.wp-block-button__link):hover,
.legal-content a:not(.wp-block-button__link):focus-visible {
  color: var(--ink-bright);
  border-bottom-color: var(--cyan);
}

/* ---------------------------------------------------------
   Two-column grid for "what's yours / what's ours"
   (.legal-content scope outweighs .legal-content p / WP flow rules)
   --------------------------------------------------------- */
.legal-content .legal-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1rem 0 1.5rem;
  max-width: 65ch;
}

.legal-split .col {
  padding: 1.125rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-2);
  margin-block: 0; /* WP flow reset (grid child) */
}

.legal-split .col h4 {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.75rem;
}

.legal-split .col ul {
  margin: 0;
}

.legal-split .col ul li {
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .legal-content .legal-split { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   Callout
   --------------------------------------------------------- */
.legal-content .callout {
  position: relative;
  margin: 1.5rem 0 1.75rem;
  padding: 1.125rem 1.25rem 1.125rem 1.5rem;
  background: rgba(34,211,238,0.04);
  border: 1px solid rgba(34,211,238,0.18);
  border-left: 2px solid var(--cyan);
  border-radius: 0 8px 8px 0;
  box-shadow: -2px 0 18px -8px rgba(34,211,238,0.45);
}

.callout .callout__label {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.callout .callout__label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* ---------------------------------------------------------
   SLA grid
   --------------------------------------------------------- */
.legal-content .sla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
  max-width: 65ch;
}

.sla-grid .sla {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-2);
  margin-block: 0; /* WP flow reset (grid child) */
}

.sla-grid .sla__num {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--cyan);
  line-height: 1;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.sla-grid .sla__lab {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin: 0; /* WP: design relied on the foundation p reset */
}

@media (max-width: 640px) {
  .legal-content .sla-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------
   Contact CTA
   --------------------------------------------------------- */
.legal-content .legal-contact {
  margin-top: clamp(3rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(34,211,238,0.04) 0%, rgba(9,9,11,0.5) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-contact .wp-block-buttons { margin-block: 0; /* WP flow reset */ }

/* ── accessibility ─────────────────────────────────────── */
.legal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 80%);
}

/* Layout */
.legal-main {
  margin: 0;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
}

/* Grid children must not pick up WP flow-layout gap margins
   (logical properties; margin-top would not override them) */
.legal-layout > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--ink-bright);
  border-bottom-color: var(--cyan);
}

/* Compliance badge: dot rendered as ::before, text pair as
   paragraphs on a two-column inline grid (design used spans) */
.compliance-badge {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.2rem 0.875rem;
  padding: 0.75rem 1.125rem;
  border: 1px solid rgba(34,211,238,0.35);
  border-radius: 10px;
  background: rgba(34,211,238,0.05);
  margin: 0.5rem 0 1.75rem;
  box-shadow: 0 0 28px -10px rgba(34,211,238,0.5);
}

.compliance-badge::before {
  content: '';
  grid-row: 1 / span 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.compliance-badge p {
  margin: 0;
}

.compliance-badge .compliance-badge__lab {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-46);
}

.compliance-badge .compliance-badge__val {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-bright);
  letter-spacing: -0.005em;
}

/* What-we-test checklist: check icon rendered as ::before
   (decorative SVG as data URI; design used inline svg spans) */
.test-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0 1.75rem;
  max-width: 65ch;
}

.test-list .item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.2rem 0.75rem;
  margin: 0;
  padding: 0.875rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
}

.test-list .item::before {
  content: '';
  grid-row: 1 / span 2;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(34,211,238,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  border: 1px solid rgba(34,211,238,0.5);
  box-shadow: 0 0 10px -2px rgba(34,211,238,0.5);
}

.test-list .item p {
  margin: 0;
}

.test-list .item .label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}

.test-list .item .sub {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-46);
}

@media (max-width: 640px) {
  .test-list {
    grid-template-columns: 1fr;
  }
}

/* Address block (a paragraph here, so it must out-rank
   .legal-content p, hence the two-class selector) */
.legal-content .legal-address {
  display: inline-block;
  padding: 0.875rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0.5rem 0 1.5rem;
  max-width: none;
}

.legal-contact .wp-block-buttons {
  margin-block-start: 0;
}

/* ── blog ──────────────────────────────────────────────── */
.hero-int .eyebrow {
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* ===================== Post grid (blog index) ===================== */
.posts {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.posts-head {
  max-width: 1180px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.posts-head > * { margin: 0; }

.posts-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.posts-head .meta {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-46);
}

ul.posts-grid {
  list-style: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.posts-grid > li {
  margin: 0;
  display: flex;
}

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

@media (max-width: 620px) {
  ul.posts-grid { grid-template-columns: 1fr; }
}

.posts-grid .post > * { margin: 0; }

.post {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.post:hover,
.post:focus-within {
  transform: translateY(-3px);
  border-color: rgba(34,211,238,0.4);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.7), 0 0 30px -12px rgba(34,211,238,0.32);
}

/* Featured image (design's .post-thumb art slot) */
.post-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0A0A0F;
  border-bottom: 1px solid var(--line-soft);
}

.post-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

.post-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(60% 70% at 30% 20%, rgba(56,189,248,0.10), transparent 65%),
    radial-gradient(50% 60% at 80% 80%, rgba(34,211,238,0.07), transparent 65%);
}

.post-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 40%, transparent 95%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 40%, transparent 95%);
}

.post .post-body > * { margin: 0; }

.post-body {
  padding: 1.125rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.post .post-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  align-self: flex-start;
}

.post .post-cat::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  flex: none;
}

.post-cat a {
  color: inherit;
  text-decoration: none;
}

.post-cat a:hover,
.post-cat a:focus-visible {
  color: var(--ink-bright);
  text-decoration: none;
}

.post-cat .wp-block-post-terms__separator { color: var(--ink-32); }

.post-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink-bright);
}

.post-title a {
  color: inherit;
  text-decoration: none;
}

.post-title a:hover,
.post-title a:focus-visible {
  color: var(--ink-bright);
  text-decoration: none;
}

.post-excerpt .wp-block-post-excerpt__excerpt {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-64);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post .post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-46);
}

/* ===================== Pagination (blog index) ===================== */
.posts .wp-block-query-pagination {
  max-width: 1180px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-46);
}

.posts .wp-block-query-pagination a {
  color: var(--ink-64);
  text-decoration: none;
  transition: color 0.15s;
}

.posts .wp-block-query-pagination a:hover,
.posts .wp-block-query-pagination a:focus-visible {
  color: var(--ink-bright);
}

.posts .wp-block-query-pagination a:active {
  color: var(--sky-deep);
}

.posts .wp-block-query-pagination .page-numbers.current {
  color: var(--cyan);
}

.posts .wp-block-query-pagination .page-numbers.dots {
  color: var(--ink-32);
}

/* ===================== Post hero (single) ===================== */
.post-hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.25rem, 5vw, 3.5rem);
  overflow: hidden;
  isolation: isolate;
}

.post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 60% at 50% -10%, rgba(56,189,248,0.16), transparent 62%),
    radial-gradient(45% 45% at 88% 30%, rgba(124,58,237,0.10), transparent 65%);
}

.post-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.post-hero .post-back {
  margin: 0 0 2rem;
}

.post-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-46);
  text-decoration: none;
  transition: color 0.15s, gap 0.18s;
}

.post-back a:hover {
  color: var(--cyan);
  gap: 0.7rem;
  text-decoration: none;
}

.post-back a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 2px;
  color: var(--cyan);
}

.post-back a:active { color: var(--sky-deep); }

.post-hero .post-cat {
  display: block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 1rem;
}

.post-hero h1 {
  font-size: clamp(1.875rem, 4.5vw, 2.875rem);
  line-height: 1.1;
  margin: 0 0 1.125rem;
  max-width: 24ch;
}

.post-hero .post-dek {
  margin: 0 0 1.75rem;
  max-width: 58ch;
}

.post-dek .wp-block-post-excerpt__excerpt {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.6;
  color: var(--ink-64);
  margin: 0;
}

.post-hero .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin: 0;
}

/* ===================== Article (canonical WP post-content spec) ===================== */
.article-wrap {
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
}

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2rem) 0;
}

.article p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-64);
  margin: 0 0 1.5rem;
}

.article strong { color: var(--ink); font-weight: 600; }

.article em { color: var(--ink); }

.article a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(34,211,238,0.4);
  transition: color 0.15s, text-decoration-color 0.15s;
}

.article a:hover {
  color: var(--ink-bright);
  text-decoration-color: rgba(255,255,255,0.5);
}

.article a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 2px;
}

.article a:active { color: var(--sky-deep); }

.article h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin: 2.75rem 0 1rem;
  line-height: 1.2;
}

.article h3 {
  font-size: 1.25rem;
  margin: 2.25rem 0 0.875rem;
}

.article ul,
.article ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.article li {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-64);
  padding-left: 0.25rem;
}

.article li::marker { color: var(--cyan); }

.article blockquote {
  margin: 2.25rem 0;
  padding: 0.375rem 0 0.375rem 1.5rem;
  border-left: 2px solid var(--cyan);
}

.article blockquote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

.article blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-46);
}

.article figure {
  margin: 2.25rem 0;
  max-width: 680px;
}

.article figure img {
  display: block;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.article figcaption,
.article .wp-block-image figcaption,
.article .wp-block-table figcaption {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-46);
  text-align: left;
}

.article pre {
  margin: 2rem 0;
  padding: 1.125rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--ink);
}

.article pre code {
  background: none;
  border: 0;
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre;
}

.article hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 2.75rem 0;
  position: relative;
  overflow: visible;
}

.article hr:not(.is-style-wide):not(.is-style-dots) { width: 100%; }

.article .wp-block-table { margin: 2rem 0; }

.article table {
  width: 100%;
  max-width: 680px;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.9375rem;
}

.article table thead { border-bottom: 0; }

.article table th {
  text-align: left;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-46);
  padding: 0 0.875rem 0.625rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.article table td {
  padding: 0.75rem 0.875rem 0.75rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-64);
  line-height: 1.55;
  vertical-align: top;
}

.article table td:first-child {
  color: var(--ink);
  white-space: nowrap;
  font-weight: 500;
}

/* Callout panel: group block with className "callout" inside post content */
.article .callout {
  margin: 2.25rem 0;
  padding: 1.25rem 1.375rem;
  background: linear-gradient(180deg, rgba(34,211,238,0.08), rgba(34,211,238,0.02));
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 12px;
  max-width: 680px;
}

.article .callout .callout-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.625rem;
}

.article .callout .callout-label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  flex: none;
}

.article .callout p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Tags row (wp:post-terms post_tag) */
.article .post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 680px;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.article .post-tags span,
.article .post-tags a {
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-46);
  text-decoration: none;
}

.article .post-tags .wp-block-post-terms__separator {
  display: none;
}

.article .post-tags a:hover,
.article .post-tags a:focus-visible {
  color: var(--cyan);
  border-color: rgba(34,211,238,0.5);
  text-decoration: none;
}

.article .post-tags a:active { border-color: var(--sky-deep); }

/* ===================== Author box (single) ===================== */
.author-box {
  padding: 0 0 clamp(3rem, 6vw, 4rem);
}

.author-box-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.author-card > * { margin: 0; }

.author-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  max-width: 680px;
  padding: 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.author-card .author-avatar {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(34,211,238,0.10);
  border: 1px solid rgba(34,211,238,0.3);
  display: grid;
  place-items: center;
}

.author-card .author-avatar img {
  width: 26px;
  height: 26px;
}

.author-info > * { margin: 0; }

.author-card .by {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin: 0 0 0.3rem;
}

.author-card .nm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink-bright);
  margin: 0 0 0.375rem;
}

.author-card .author-info p:last-child {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.author-card p a {
  color: var(--cyan);
  text-decoration: none;
}

.author-card p a:hover,
.author-card p a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===================== Keep reading (single) ===================== */
.more {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.more-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.more-head > * { margin: 0; }

.more .more-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 2rem;
}

.more-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.more-all a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: gap 0.18s, filter 0.18s;
}

.more-all a:hover,
.more-all a:focus-visible {
  gap: 0.75rem;
  filter: brightness(1.2);
  text-decoration: none;
}

.more-all a:active { color: var(--sky-deep); }

ul.more-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.more-grid > li {
  margin: 0;
  display: flex;
}

@media (max-width: 880px) {
  ul.more-grid { grid-template-columns: 1fr; }
}

.more-grid .more-card > * { margin: 0; }

.more-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.375rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.25s, transform 0.25s;
}

.more-card:hover,
.more-card:focus-within {
  border-color: rgba(34,211,238,0.4);
  transform: translateY(-3px);
}

.more-card .post-cat {
  display: block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.more-card h3 {
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--ink-bright);
}

.more-card h3 a {
  color: inherit;
  text-decoration: none;
}

.more-card h3 a:hover,
.more-card h3 a:focus-visible {
  color: var(--ink-bright);
  text-decoration: none;
}

.more-card .wp-block-post-excerpt__excerpt {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-64);
}

.more-card .rt {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-46);
}

/* ===================== Wizard CTA (single) ===================== */
.cta-post {
  border-top: 1px solid var(--line);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  text-align: center;
}

.cta-post .cta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.cta-post .eyebrow {
  justify-content: center;
  margin-bottom: 1.25rem;
}

.cta-post h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.cta-post .cta-sub {
  font-size: 1.0625rem;
  color: var(--ink-64);
  margin: 0 auto 2rem;
  max-width: 42ch;
  line-height: 1.6;
}

/* .cta-actions flex row now owned by the native flex group (wizard-button + .btn-line link).
   display:contents promotes the secondary link to a direct flex child so the native gap/justify apply. */
.cta-post .cta-actions {
  margin: 0;
}

.cta-post .cta-actions .cta-secondary { display: contents; }

/* ── 404 ───────────────────────────────────────────────── */
/* Lost-in-space hero. min-height subtracts the header (62px) and the
   short footer (~120px) so the section fills the remaining viewport. */
.lost {
	position: relative;
	min-height: calc(100dvh - 62px - 120px);
	display: grid;
	place-items: center;
	padding: clamp(5rem, 12vw, 9rem) clamp(1.25rem, 4vw, 2rem);
	overflow: hidden;
	isolation: isolate;
	text-align: center;
}

/* Nebula wash */
.lost::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(75% 60% at 50% -8%, rgba(56,189,248,0.18), transparent 62%),
		radial-gradient(50% 50% at 82% 18%, rgba(124,58,237,0.14), transparent 65%),
		radial-gradient(45% 45% at 12% 88%, rgba(34,211,238,0.10), transparent 65%);
}

/* Starfield */
.lost::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.8;
	background-image:
		radial-gradient(1.6px 1.6px at 12% 22%, rgba(255,255,255,0.8), transparent 60%),
		radial-gradient(1px 1px at 28% 66%, rgba(255,255,255,0.5), transparent 60%),
		radial-gradient(1.4px 1.4px at 46% 14%, rgba(186,212,255,0.7), transparent 60%),
		radial-gradient(1px 1px at 63% 48%, rgba(255,255,255,0.55), transparent 60%),
		radial-gradient(1.2px 1.2px at 78% 28%, rgba(160,220,255,0.6), transparent 60%),
		radial-gradient(1px 1px at 88% 72%, rgba(255,255,255,0.5), transparent 60%),
		radial-gradient(1px 1px at 36% 86%, rgba(196,186,255,0.5), transparent 60%),
		radial-gradient(1px 1px at 8% 52%, rgba(255,255,255,0.4), transparent 60%);
}

.lost-inner {
	position: relative;
	z-index: 1;
	max-width: 560px;
}

/* Numeral and copy. Child rules are scoped under .lost for (0,2,0)
   specificity against WP's :where(.is-layout-flow) > * margins; the
   numeral (.lost-code) and the sub (.lost-sub) stay separate rules,
   as in the design. */
.lost .lost-code {
	font-family: var(--font-display);
	font-weight: 300;
	font-size: clamp(5.5rem, 18vw, 9.5rem);
	line-height: 1;
	letter-spacing: -0.03em;
	margin: 0 0 0.5rem;
}

.lost h1 {
	font-size: clamp(1.5rem, 3.6vw, 2.125rem);
	font-weight: 600;
	margin: 0 0 0.875rem;
}

.lost .lost-sub {
	margin: 0 auto 2rem;
	max-width: 44ch;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ink-64);
}

.lost .lost-meta {
	margin: 2.25rem 0 0;
	font-family: var(--mono);
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-32);
}

/* Drifting beacon */
.lost .lost-beacon {
	position: relative;
	width: 56px;
	height: 56px;
	margin: 0 auto 1.75rem;
	color: var(--cyan);
}

.lost .lost-beacon svg {
	display: block;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 14px rgba(34,211,238,0.45));
}

@media (prefers-reduced-motion: no-preference) {
	.lost .lost-beacon {
		animation: drift 7s ease-in-out infinite;
	}
	.lost .lost-beacon::after {
		content: '';
		position: absolute;
		inset: -10px;
		border: 1px solid rgba(34,211,238,0.35);
		border-radius: 50%;
		animation: beaconPing 2.6s ease-out infinite;
	}
}

@keyframes drift {
	0%, 100% { transform: translateY(0) rotate(-4deg); }
	50% { transform: translateY(-12px) rotate(5deg); }
}

@keyframes beaconPing {
	0% { opacity: 0.7; transform: scale(0.5); }
	100% { opacity: 0; transform: scale(1.4); }
}
