/* Espressly public-growth — brand-accurate colorful geometric art direction */
/* Authority: docs/public-site/visual-system.md + espressly_brand_assets brand kit */
/* Brand colors: #C6F600 lime, #071D2A dark navy, #FFF7E8 cream, #FF6A00 orange, #00BFA6 teal */
/* Fonts: Sora (headings), Inter (body) */

:root {
    /* ── Brand-accurate color tokens (from brand kit) ── */
    --pg-cream: #FFF7E8;
    --pg-warm-neutral: #f0ebe0;
    --pg-dark-navy: #071D2A;
    --pg-espresso: #281B12;
    --pg-roast: #3d2510;
    --pg-muted: #5e4e40;
    --pg-lime: #C6F600;
    --pg-lime-soft: rgba(198, 246, 0, 0.12);
    --pg-blue: #071D2A;
    --pg-blue-soft: rgba(7, 29, 42, 0.06);
    --pg-yellow: #f5d76e;
    --pg-yellow-soft: #faf3dc;
    --pg-orange: #FF6A00;
    --pg-orange-soft: rgba(255, 106, 0, 0.1);
    --pg-coral: #e05040;
    --pg-teal: #00BFA6;
    --pg-teal-soft: rgba(0, 191, 166, 0.1);
    --pg-surface: rgba(255, 247, 232, 0.9);
    --pg-surface-solid: #ffffff;
    --pg-line: rgba(7, 29, 42, 0.12);
    --pg-shadow: 0 22px 48px rgba(7, 29, 42, 0.16);
    --pg-shadow-soft: 0 12px 28px rgba(7, 29, 42, 0.08);
    --pg-radius-lg: 24px;
    --pg-radius-md: 18px;
    --pg-radius-pill: 999px;
    --pg-container-gutter: clamp(24px, 5vw, 48px);
    --pg-section-y: clamp(38px, 5.2vw, 64px);
    --pg-grid-gap: clamp(16px, 2.1vw, 24px);
    --pg-card-padding: clamp(18px, 2.1vw, 24px);
    --pg-card-shadow: 0 12px 30px rgba(30, 24, 20, 0.065);
    --pg-card-shadow-hover: 0 16px 36px rgba(30, 24, 20, 0.1);
}

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

/* Both html AND body needed for iOS Safari to prevent horizontal scroll */
html {
    overflow-x: hidden;
    max-width: 100%;
}

body.pg-site {
    margin: 0;
    overflow-x: hidden;
    max-width: 100%;
    font-family: "Inter", "Avenir Next", "Segoe UI", sans-serif;
    color: var(--pg-roast);
    background-color: var(--pg-cream);
    background-image:
        radial-gradient(circle at 88% -8%, rgba(245, 215, 110, 0.35) 0%, transparent 42%),
        radial-gradient(circle at 4% 12%, rgba(124, 179, 66, 0.14) 0%, transparent 38%),
        radial-gradient(circle at 50% 100%, rgba(224, 122, 58, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, var(--pg-cream) 0%, var(--pg-warm-neutral) 55%, var(--pg-cream) 100%);
    line-height: 1.55;
    min-height: 100vh;
}

.pg-wrap {
    width: min(1180px, calc(100% - var(--pg-container-gutter)));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ─── Header — dark navy brand-accurate ──────────────────── */
.pg-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--pg-dark-navy);
    border-bottom: 1px solid rgba(198, 246, 0, 0.12);
    box-shadow: 0 4px 24px rgba(7, 29, 42, 0.28);
}

.pg-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pg-lime) 0%, var(--pg-teal) 50%, var(--pg-orange) 100%);
    opacity: 0.7;
    pointer-events: none;
}

.pg-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

/* Brand logo: approved lockup asset */
.pg-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
    overflow: visible;
}

.pg-brand__lockup {
    display: block;
    width: auto;
    height: clamp(34px, 3.4vw, 42px);
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

.pg-brand:focus-visible {
    outline: 2px solid var(--pg-lime);
    outline-offset: 4px;
    border-radius: 6px;
}

.pg-header-right,
.pg-nav,
.pg-utility-nav {
    display: flex;
    align-items: center;
}

.pg-header-right {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pg-nav {
    gap: 2px;
    flex-wrap: wrap;
}

.pg-nav a,
.pg-nav-link {
    text-decoration: none;
    color: rgba(255, 247, 232, 0.7);
    font-weight: 600;
    font-size: 0.84rem;
    padding: 7px 10px;
    border-radius: var(--pg-radius-pill);
    border: 1px solid transparent;
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.pg-nav a:hover,
.pg-nav a:focus-visible,
.pg-nav a.pg-active,
.pg-nav-link:hover,
.pg-nav-link:focus-visible,
.pg-nav-link.pg-active {
    color: #FFF7E8;
    border-color: rgba(198, 246, 0, 0.25);
    background: rgba(198, 246, 0, 0.08);
    outline: none;
}

.pg-nav a.pg-active,
.pg-nav-link.pg-active {
    color: var(--pg-lime);
}

/* ─── Nav dropdown groups ────────────────────────────────── */
.pg-nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.pg-nav-item--section-active > .pg-nav-trigger {
    color: var(--pg-lime);
    border-color: rgba(198, 246, 0, 0.2);
}

.pg-nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: 1px solid transparent;
    color: rgba(255, 247, 232, 0.7);
    font-weight: 600;
    font-size: 0.84rem;
    font-family: inherit;
    line-height: 1;
    padding: 7px 10px;
    border-radius: var(--pg-radius-pill);
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.pg-nav-trigger:hover,
.pg-nav-trigger:focus-visible,
.pg-nav-item--open > .pg-nav-trigger {
    color: #FFF7E8;
    border-color: rgba(198, 246, 0, 0.25);
    background: rgba(198, 246, 0, 0.08);
    outline: none;
}

.pg-nav-chevron {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    transition: transform 0.18s ease;
    stroke: currentColor;
}

.pg-nav-item--open > .pg-nav-trigger .pg-nav-chevron {
    transform: rotate(180deg);
}

/* Desktop dropdown panel */
.pg-nav-dropdown {
    position: absolute;
    top: calc(100% + 6px);  /* tighter gap — less dead zone */
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    min-width: 220px;
    background: #0d1e2b;
    border: 1px solid rgba(255, 247, 232, 0.1);
    border-radius: var(--pg-radius-md);
    padding: 6px;
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(198, 246, 0, 0.04);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 200;
}

/*
 * Invisible hover bridge — extends the hover target 16px upward above
 * the panel to cover the gap between trigger and panel.
 * This prevents the dropdown from closing when the cursor passes through
 * the dead zone between the trigger bottom edge and panel top edge.
 */
.pg-nav-dropdown::before {
    content: "";
    position: absolute;
    top: -16px;          /* reach up past the gap */
    left: -10%;
    width: 120%;         /* wider than panel to catch diagonal mouse movement */
    height: 16px;
    background: transparent;
    pointer-events: auto;   /* capture hover so the parent stays in :hover */
}

/* Decorative caret arrow */
.pg-nav-dropdown::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #0d1e2b;
    border-top: 1px solid rgba(255, 247, 232, 0.1);
    border-left: 1px solid rgba(255, 247, 232, 0.1);
    pointer-events: none;
}

/* Open via hover (desktop CSS) */
.pg-nav-item:hover > .pg-nav-dropdown,
.pg-nav-item:focus-within > .pg-nav-dropdown,
.pg-nav-item--open > .pg-nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/*
 * Hover delay guard: add a tiny hover delay on close (not open) so the
 * dropdown doesn't snap closed when the cursor briefly leaves the trigger.
 * Achieved by using a short transition-delay on the opacity going to 0.
 */
.pg-nav-item:not(:hover):not(:focus-within):not(.pg-nav-item--open) > .pg-nav-dropdown {
    transition-delay: 80ms;
}

.pg-nav-dropdown a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 9px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.12s ease;
    border: 1px solid transparent;
}

.pg-nav-dropdown a:hover,
.pg-nav-dropdown a:focus-visible,
.pg-nav-dropdown a[aria-current="page"] {
    background: rgba(198, 246, 0, 0.08);
    border-color: rgba(198, 246, 0, 0.12);
    outline: none;
}

.pg-nav-dropdown__label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 247, 232, 0.92);
    line-height: 1.2;
}

.pg-nav-dropdown__sub {
    font-size: 0.72rem;
    color: rgba(255, 247, 232, 0.38);
    line-height: 1.3;
}

.pg-utility-nav {
    gap: 8px;
}

/* ─── Mobile controls (hidden on desktop) ────────────────── */
.pg-mobile-controls {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pg-mobile-cta {
    padding: 9px 16px;
    font-size: 0.82rem;
}

/* Hamburger button */
.pg-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0 8px;
    background: none;
    border: 1px solid rgba(255, 247, 232, 0.18);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.pg-hamburger:hover,
.pg-hamburger:focus-visible {
    border-color: rgba(198, 246, 0, 0.4);
    background: rgba(198, 246, 0, 0.06);
    outline: none;
}

.pg-hamburger__bar {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 247, 232, 0.85);
    transition: transform 0.22s ease, opacity 0.18s ease, width 0.22s ease;
    transform-origin: center;
}

/* X state when open */
.pg-hamburger[aria-expanded="true"] .pg-hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.pg-hamburger[aria-expanded="true"] .pg-hamburger__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
}

.pg-hamburger[aria-expanded="true"] .pg-hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile nav drawer ───────────────────────────────────── */
.pg-mobile-nav {
    display: none;  /* shown via media query */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--pg-dark-navy);
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: env(safe-area-inset-top, 0px);
}

.pg-mobile-nav--open {
    transform: translateY(0);
}

.pg-mobile-nav__inner {
    padding: clamp(76px, 14vw, 96px) 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 100%;
}

.pg-mobile-nav__group {
    display: flex;
    flex-direction: column;
    padding-bottom: 4px;
}

.pg-mobile-nav__group-label {
    margin: 0 0 4px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 247, 232, 0.3);
    padding: 10px 12px 4px;
}

.pg-mobile-nav__group a {
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 247, 232, 0.82);
    text-decoration: none;
    transition: background 0.12s ease, color 0.12s ease;
    border: 1px solid transparent;
}

.pg-mobile-nav__group a:hover,
.pg-mobile-nav__group a:focus-visible,
.pg-mobile-nav__group a[aria-current="page"] {
    background: rgba(198, 246, 0, 0.08);
    border-color: rgba(198, 246, 0, 0.12);
    color: #FFF7E8;
    outline: none;
}

.pg-mobile-nav__group a[aria-current="page"] {
    color: var(--pg-lime);
}

.pg-mobile-nav__ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 247, 232, 0.08);
}

.pg-mobile-nav__ctas .pg-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
}

.pg-mobile-nav__login {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 247, 232, 0.45);
    text-decoration: none;
    transition: color 0.15s ease;
}

.pg-mobile-nav__login:hover,
.pg-mobile-nav__login:focus-visible {
    color: rgba(255, 247, 232, 0.75);
    outline: none;
}

/* Overlay backdrop */
.pg-mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 44;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.pg-mobile-nav-backdrop--visible {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

/* Prevent body scroll when drawer open */
body.pg-nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.pg-login-link,
.pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: var(--pg-radius-pill);
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Login link — ghost on dark nav */
.pg-login-link {
    border: 1px solid rgba(255, 247, 232, 0.2);
    padding: 9px 16px;
    color: rgba(255, 247, 232, 0.85);
    background: rgba(255, 247, 232, 0.05);
    font-size: 0.88rem;
    font-weight: 600;
}

.pg-login-link:hover,
.pg-login-link:focus-visible {
    color: #FFF7E8;
    background: rgba(255, 247, 232, 0.12);
    border-color: rgba(255, 247, 232, 0.35);
    transform: none;
    outline: none;
}

.pg-btn {
    padding: 10px 20px;
    border: 1px solid transparent;
    font-size: 0.9rem;
}

/* Primary: lime on dark — brand-accurate high-contrast */
.pg-btn-primary {
    background: var(--pg-lime);
    color: var(--pg-dark-navy);
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(198, 246, 0, 0.3);
}

.pg-btn-primary:hover,
.pg-btn-primary:focus-visible {
    background: #d4ff00;
    box-shadow: 0 12px 28px rgba(198, 246, 0, 0.4);
    transform: translateY(-2px);
    outline: none;
}

/* Secondary (default): readable on light/cream/lime/orange surfaces */
.pg-btn-secondary {
    background: rgba(7, 29, 42, 0.06);
    border-color: rgba(7, 29, 42, 0.28);
    color: var(--pg-dark-navy);
}

.pg-btn-secondary:hover,
.pg-btn-secondary:focus-visible {
    background: rgba(7, 29, 42, 0.1);
    border-color: rgba(7, 29, 42, 0.45);
    color: var(--pg-dark-navy);
    outline: none;
}

/* Dark-surface contexts keep cream text and clearer border/fill */
.pg-header .pg-btn-secondary,
.pg-hero-flagship .pg-btn-secondary,
.pg-cta-band .pg-btn-secondary {
    background: rgba(255, 247, 232, 0.1);
    border-color: rgba(255, 247, 232, 0.34);
    color: #FFF7E8;
}

.pg-header .pg-btn-secondary:hover,
.pg-hero-flagship .pg-btn-secondary:hover,
.pg-cta-band .pg-btn-secondary:hover,
.pg-header .pg-btn-secondary:focus-visible,
.pg-hero-flagship .pg-btn-secondary:focus-visible,
.pg-cta-band .pg-btn-secondary:focus-visible {
    background: rgba(255, 247, 232, 0.2);
    border-color: rgba(255, 247, 232, 0.52);
    color: #FFF7E8;
}

.pg-btn.is-pulsing {
    transform: scale(0.985);
}

.pg-nav a:focus-visible,
.pg-btn:focus-visible,
.pg-login-link:focus-visible,
.pg-input:focus-visible,
.pg-select:focus-visible,
.pg-textarea:focus-visible,
.pg-footer-links a:focus-visible {
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.22);
}

/* ─── Typography: Sora for headings per brand kit ─────────── */
h1, h2, h3, h4 {
    font-family: "Sora", "Inter", system-ui, sans-serif;
    color: var(--pg-espresso);
}

/* ─── Page section buttons — on-page context (light bg) ───── */
/* Hero, bands, and sections have their own button overrides where needed */
.pg-section .pg-btn-primary,
.pg-band--cream .pg-btn-primary,
.pg-band--yellow .pg-btn-primary,
.pg-band--lime .pg-btn-primary {
    background: var(--pg-dark-navy);
    color: var(--pg-lime);
    box-shadow: 0 8px 24px rgba(7, 29, 42, 0.2);
}

.pg-section .pg-btn-primary:hover,
.pg-band--cream .pg-btn-primary:hover,
.pg-band--yellow .pg-btn-primary:hover,
.pg-band--lime .pg-btn-primary:hover {
    background: var(--pg-espresso);
    box-shadow: 0 12px 28px rgba(7, 29, 42, 0.3);
    transform: translateY(-2px);
}

.pg-section .pg-btn-secondary,
.pg-band--cream .pg-btn-secondary,
.pg-band--yellow .pg-btn-secondary,
.pg-band--lime .pg-btn-secondary {
    background: rgba(7, 29, 42, 0.06);
    border-color: rgba(7, 29, 42, 0.18);
    color: var(--pg-roast);
}

.pg-section .pg-btn-secondary:hover,
.pg-band--cream .pg-btn-secondary:hover,
.pg-band--yellow .pg-btn-secondary:hover,
.pg-band--lime .pg-btn-secondary:hover {
    background: rgba(7, 29, 42, 0.1);
    border-color: rgba(7, 29, 42, 0.3);
}

/* Hero buttons stay lime (on dark navy hero bg) */
.pg-hero-flagship .pg-btn-primary {
    background: var(--pg-lime);
    color: var(--pg-dark-navy);
    box-shadow: 0 8px 24px rgba(198, 246, 0, 0.35);
}

.pg-hero-flagship .pg-btn-primary:hover {
    background: #d4ff00;
    box-shadow: 0 12px 32px rgba(198, 246, 0, 0.45);
    transform: translateY(-2px);
}

.pg-hero-flagship .pg-btn-secondary {
    background: rgba(255, 247, 232, 0.08);
    border-color: rgba(255, 247, 232, 0.25);
    color: rgba(255, 247, 232, 0.85);
}

.pg-hero-flagship .pg-btn-secondary:hover {
    background: rgba(255, 247, 232, 0.15);
    border-color: rgba(255, 247, 232, 0.4);
    color: #FFF7E8;
}

/* ─── Main layout ────────────────────────────────────────── */
.pg-main {
    padding: 8px 0 72px;
}

/* ─── Espressly ecosystem diagram (brand kit: Branded App → Square → Espressly → Shop) */
.pg-ecosystem {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.pg-ecosystem__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 247, 232, 0.07);
    border: 1px solid rgba(255, 247, 232, 0.12);
    text-align: center;
    min-width: 100px;
}

.pg-ecosystem__step strong {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pg-lime);
}

.pg-ecosystem__step span {
    font-size: 0.7rem;
    color: rgba(255, 247, 232, 0.55);
    line-height: 1.4;
}

.pg-ecosystem__arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: rgba(255, 247, 232, 0.3);
}

.pg-ecosystem__arrow svg {
    width: 100%;
    height: 100%;
}

.pg-section {
    position: relative;
    border: 1px solid var(--pg-line);
    border-radius: var(--pg-radius-lg);
    padding: clamp(24px, 3.5vw, 40px);
    background: var(--pg-surface);
    box-shadow: var(--pg-shadow);
    overflow: hidden;
}

.pg-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.5) 0%, transparent 42%);
    z-index: 0;
}

.pg-section > * {
    position: relative;
    z-index: 1;
}

/* Section bands (full-bleed atmosphere) */
.pg-band {
    position: relative;
    margin-bottom: 0;
    padding: var(--pg-section-y) 0;
    overflow: hidden;
}

.pg-band__inner {
    position: relative;
    z-index: 2;
}

.pg-band--yellow {
    background:
        radial-gradient(circle at 12% 20%, rgba(245, 215, 110, 0.45) 0%, transparent 50%),
        linear-gradient(135deg, var(--pg-yellow-soft) 0%, var(--pg-cream) 70%);
}

.pg-band--lime {
    background:
        radial-gradient(circle at 90% 10%, rgba(124, 179, 66, 0.2) 0%, transparent 45%),
        linear-gradient(160deg, var(--pg-lime-soft) 0%, var(--pg-cream) 65%);
}

.pg-band--blue {
    background:
        radial-gradient(circle at 8% 80%, rgba(74, 155, 155, 0.18) 0%, transparent 40%),
        linear-gradient(155deg, var(--pg-blue-soft) 0%, var(--pg-cream) 60%);
}

.pg-band--orange {
    background:
        radial-gradient(circle at 75% 30%, rgba(224, 122, 58, 0.22) 0%, transparent 48%),
        linear-gradient(140deg, var(--pg-orange-soft) 0%, var(--pg-warm-neutral) 70%);
}

.pg-band--cream {
    background:
        radial-gradient(circle at 70% 20%, rgba(247, 242, 234, 0.9) 0%, transparent 50%),
        linear-gradient(180deg, var(--pg-cream) 0%, var(--pg-warm-neutral) 100%);
}

.pg-band--cream .pg-section {
    background: rgba(255, 255, 255, 0.94);
}

.pg-band__arc {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -1px;
    height: 56px;
    background: var(--pg-cream);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    pointer-events: none;
    z-index: 1;
}

/* ─── Hero flagship ──────────────────────────────────────── */
.pg-hero-flagship,
.pg-hero-atf,
.pg-band,
.pg-cta-band {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: clip; /* clip instead of hidden so position:sticky children still work */
}

/* Hero: dark navy — extends the nav seamlessly as one unified dark surface */
.pg-hero-flagship {
    position: relative;
    margin-bottom: 0;
    padding: clamp(14px, 2.2vw, 26px) 0 0;
    overflow: hidden;
    border-radius: 0 0 48px 48px;
    background:
        radial-gradient(ellipse 60% 50% at 15% 0%, rgba(198, 246, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 88% 12%, rgba(0, 191, 166, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(255, 106, 0, 0.06) 0%, transparent 50%),
        linear-gradient(168deg, #0a2234 0%, var(--pg-dark-navy) 60%);
    box-shadow: 0 32px 72px rgba(7, 29, 42, 0.36);
}

.pg-hero-flagship__atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid pattern on dark navy */
.pg-hero-flagship__atmosphere::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(198, 246, 0, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198, 246, 0, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 80%);
}

.pg-hero-flagship__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

/* Lime glow orb top-left */
.pg-hero-flagship__orb--sun {
    width: min(52vw, 28rem);
    height: min(52vw, 28rem);
    top: -18%;
    left: -10%;
    background: radial-gradient(circle, rgba(198, 246, 0, 0.1) 0%, rgba(198, 246, 0, 0) 68%);
}

/* Teal glow orb top-right */
.pg-hero-flagship__orb--lime {
    width: 16rem;
    height: 16rem;
    top: 5%;
    right: 4%;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.12) 0%, transparent 70%);
}

.pg-hero-flagship__ribbon-path {
    position: absolute;
    bottom: 18%;
    left: 0;
    width: 100%;
    height: 120px;
    color: rgba(0, 191, 166, 0.2);
    opacity: 0.9;
}

.pg-hero-flagship__stage {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(18px, 2.4vw, 28px);
    min-width: 0;
}

.pg-hero-flagship__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    gap: clamp(24px, 3.4vw, 40px);
    align-items: stretch;
    min-width: 0;
}

.pg-hero-flagship__grid > * {
    min-width: 0;
}

.pg-hero-flagship__pitch {
    margin-bottom: 20px;
}

.pg-hero-flagship__story {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding-block: clamp(6px, 1.5vw, 18px);
}

/* Hero text on dark navy */
.pg-hero-flagship__subhead {
    margin: 0 0 18px;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 247, 232, 0.72);
    max-width: 52ch;
}

.pg-hero-flagship__subhead strong {
    color: #FFF7E8;
    font-weight: 800;
}

.pg-hero-flagship h1 {
    font-size: clamp(2.1rem, 5.2vw, 3.6rem);
    line-height: 1.06;
    max-width: none;
    margin-bottom: 14px;
    color: #FFF7E8;
}

.pg-hero-flagship .pg-copy {
    color: rgba(255, 247, 232, 0.72);
}

.pg-hero-flagship .pg-eyebrow {
    color: var(--pg-lime);
    letter-spacing: 0.08em;
}

.pg-hero-answers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin: 0 0 18px;
    padding: 0;
}

.pg-hero-answers__item {
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 247, 232, 0.1);
    background: rgba(255, 247, 232, 0.05);
}

.pg-hero-answers__item dt {
    margin: 0 0 4px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pg-lime);
}

.pg-hero-answers__item dd {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--pg-espresso);
}

.pg-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

/* Hero proof chips — on dark navy */
.pg-hero-proof li {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: var(--pg-radius-pill);
    border: 1px solid rgba(198, 246, 0, 0.2);
    background: rgba(198, 246, 0, 0.06);
    color: rgba(255, 247, 232, 0.8);
}

.pg-square-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    align-items: center;
}

.pg-square-hero-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 247, 232, 0.12);
    background: rgba(255, 247, 232, 0.06);
    color: rgba(255, 247, 232, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pg-square-hero-trust span:first-child {
    color: var(--pg-lime);
    border-color: rgba(198, 246, 0, 0.28);
    background: rgba(198, 246, 0, 0.07);
}

/* Hero trust chips — on dark */
.pg-hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.pg-hero-trust__chip {
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 247, 232, 0.1);
    background: rgba(255, 247, 232, 0.05);
}

.pg-hero-trust__chip--square {
    border-color: rgba(0, 191, 166, 0.25);
    background: rgba(0, 191, 166, 0.06);
}

.pg-hero-trust__chip--pricing {
    border-color: rgba(198, 246, 0, 0.25);
    background: rgba(198, 246, 0, 0.06);
}

.pg-hero-trust__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 247, 232, 0.45);
    margin-bottom: 4px;
}

.pg-hero-trust__value {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 247, 232, 0.85);
    line-height: 1.35;
}

/* CTA block: floating on dark hero */
.pg-hero-flagship__cta-block {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 247, 232, 0.04);
    border: 1px solid rgba(255, 247, 232, 0.1);
}

.pg-hero-flagship__cta-kicker {
    margin: 0 0 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pg-lime);
}

.pg-cta-row--hero .pg-btn--hero {
    padding: 14px 22px;
    font-size: 0.95rem;
}

.pg-hero-login-cue {
    margin: 14px 0 0;
    font-size: 0.85rem;
    color: rgba(255, 247, 232, 0.4);
}

.pg-hero-login-cue a {
    color: rgba(255, 247, 232, 0.65);
    font-weight: 600;
    text-decoration: none;
}

.pg-hero-login-cue a:hover,
.pg-hero-login-cue a:focus-visible {
    color: var(--pg-lime);
    text-decoration: underline;
    outline: none;
}

.pg-hero-answers__item dd {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 247, 232, 0.75);
    line-height: 1.4;
}

.pg-hero-visual-stack {
    position: relative;
    display: grid;
    gap: 10px;
    align-content: start;
}

.pg-hero-order-ribbon {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 300px);
    height: auto;
    color: var(--pg-teal);
    opacity: 0.85;
    pointer-events: none;
}

.pg-hero-order-ribbon__path {
    stroke: currentColor;
    stroke-width: 2;
    stroke-dasharray: 5 4;
}

.pg-geo-panel {
    min-height: 360px;
}

/* Rich app screen inside device */
.pg-app-screen {
    text-align: center;
}

.pg-app-screen__real {
    width: 100%;
    max-height: 420px;
    display: block;
    object-fit: contain;
    border-radius: 16px;
}

.pg-app-screen__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.pg-app-screen__brand {
    font-weight: 800;
    font-size: 1rem;
    color: var(--pg-espresso);
}

.pg-app-screen__badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: var(--pg-radius-pill);
    background: var(--pg-lime-soft);
    color: var(--pg-roast);
}

.pg-app-screen__hero-card {
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--pg-blue-soft), #fff);
    border: 1px solid rgba(30, 58, 95, 0.15);
    margin-bottom: 12px;
}

.pg-app-screen__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pg-muted);
    margin-bottom: 4px;
}

.pg-app-screen__hero-card strong {
    font-size: 1.05rem;
    color: var(--pg-blue);
}

.pg-app-screen__actions {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.pg-app-screen__ops {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
}

.pg-app-screen__ops span {
    display: block;
    text-align: center;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 6px 6px;
    border-radius: 8px;
    background: rgba(7, 29, 42, 0.06);
    color: var(--pg-blue);
}

.pg-app-screen__btn {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--pg-line);
    color: var(--pg-roast);
}

.pg-app-screen__btn--primary {
    background: linear-gradient(120deg, var(--pg-espresso), var(--pg-orange));
    color: #fff;
    border: none;
}

.pg-app-screen__footer {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.pg-app-screen__footer span {
    width: 28px;
    height: 4px;
    border-radius: 999px;
    background: rgba(63, 36, 18, 0.15);
}

.pg-app-screen__footer-active {
    background: var(--pg-lime) !important;
    width: 36px !important;
}

/* Hero right-side ecosystem composition */
.pg-hero-float-card {
    position: absolute;
    z-index: 4;
    width: min(220px, 54%);
    padding: 12px 12px 11px;
    border-radius: 14px;
    border: 1px solid rgba(255, 247, 232, 0.22);
    background: rgba(7, 29, 42, 0.8);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

.pg-hero-float-card--square {
    top: 6px;
    right: -8px;
}

.pg-hero-float-card--metric {
    bottom: 16px;
    right: -8px;
}

.pg-hero-float-card__kicker {
    margin: 0 0 6px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--pg-lime);
}

.pg-hero-float-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.86rem;
    color: #FFF7E8;
}

.pg-hero-float-card span {
    font-size: 0.74rem;
    color: rgba(255, 247, 232, 0.7);
}

/* Deprecated heavy hero clusters removed for cleaner above-the-fold composition. */

/* Building signage ticker */
.pg-signage-mount {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: clamp(16px, 2.5vw, 28px);
    padding: 0 clamp(12px, 2vw, 24px) clamp(20px, 3vw, 32px);
}

.pg-signage-mount__bracket {
    width: 12px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #2a2a2a, #0f0f0f);
    border-radius: 4px 0 0 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pg-signage-mount__bracket--right {
    border-radius: 0 4px 4px 0;
}

.pg-signage-shell {
    flex: 1;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(15, 15, 15, 0.85);
    border-radius: 6px;
    background: linear-gradient(180deg, #1a2740 0%, #0f1a2e 48%, #0a1220 100%);
    box-shadow:
        0 8px 0 rgba(0, 0, 0, 0.35),
        0 18px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -2px 8px rgba(0, 0, 0, 0.4);
}

.pg-signage-shell__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(245, 215, 110, 0.08) 50%, transparent);
    animation: pg-signage-glow 6s ease-in-out infinite alternate;
}

.pg-signage-track {
    display: flex;
    width: max-content;
    animation: pg-signage-scroll 95s linear infinite;
    will-change: transform;
}

.pg-signage-shell:hover .pg-signage-track {
    animation-play-state: paused;
}

.pg-signage-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 16px 8px;
}

.pg-signage-word {
    display: inline-flex;
    align-items: center;
    padding: 0 28px;
    font-size: clamp(0.78rem, 1.4vw, 0.95rem);
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 248, 235, 0.95);
    text-shadow:
        0 0 18px rgba(245, 215, 110, 0.35),
        0 1px 0 rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.pg-signage-word:last-child {
    border-right: none;
}

.pg-signage-row .pg-signage-word:nth-child(4n+1) { color: #f5e6b8; }
.pg-signage-row .pg-signage-word:nth-child(4n+2) { color: #c5e89d; }
.pg-signage-row .pg-signage-word:nth-child(4n+3) { color: #f0c4a0; }
.pg-signage-row .pg-signage-word:nth-child(4n+4) { color: #a8d4d4; }

@keyframes pg-signage-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes pg-signage-glow {
    from { opacity: 0.4; }
    to { opacity: 0.9; }
}

.pg-hero-atf__grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: clamp(20px, 3vw, 36px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.pg-ribbon {
    display: inline-block;
    margin: 0 0 14px;
    padding: 8px 14px;
    border-radius: var(--pg-radius-pill);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pg-ribbon--orange {
    background: linear-gradient(90deg, var(--pg-orange-soft), rgba(255, 255, 255, 0.9));
    color: var(--pg-roast);
    border: 1px solid rgba(224, 122, 58, 0.25);
}

.pg-ribbon--blue {
    background: var(--pg-blue);
    color: var(--pg-cream);
}

.pg-ribbon--lime {
    background: var(--pg-lime-soft);
    color: var(--pg-roast);
    border: 1px solid rgba(124, 179, 66, 0.3);
}

.pg-eyebrow {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pg-roast);
}

h1, h2, h3 {
    margin: 0 0 14px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--pg-espresso);
}

h1 {
    font-size: clamp(2.15rem, 5.2vw, 3.75rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.45rem, 2.8vw, 2.15rem);
    font-weight: 700;
}

.pg-copy {
    color: var(--pg-muted);
    max-width: 58ch;
}

.pg-copy-lead {
    font-size: 1.1rem;
    line-height: 1.65;
}

.pg-cta-row {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ─── Geo panel + device ─────────────────────────────────── */
.pg-geo-panel {
    position: relative;
    min-height: 320px;
    border-radius: 28px;
    background: linear-gradient(155deg, var(--pg-blue) 0%, #152a45 100%);
    box-shadow: var(--pg-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    overflow: hidden;
    isolation: isolate;
}

.pg-geo-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, rgba(74, 155, 155, 0.2) 0%, transparent 40%),
        linear-gradient(35deg, transparent 55%, rgba(124, 179, 66, 0.15));
    pointer-events: none;
}

.pg-geo-panel__shard {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pg-geo-panel__shard--lime {
    width: 120px;
    height: 120px;
    top: -24px;
    right: 12%;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.45) 0%, transparent 70%);
}

.pg-geo-panel__shard--orange {
    width: 90px;
    height: 90px;
    bottom: 8%;
    left: -12px;
    background: radial-gradient(circle, rgba(224, 122, 58, 0.4) 0%, transparent 70%);
}

.pg-geo-panel__frame {
    position: relative;
    z-index: 2;
    padding: clamp(20px, 3vw, 28px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.pg-device-frame {
    width: 100%;
    max-width: 280px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(175deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 234, 0.95));
    box-shadow:
        0 24px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: 18px 18px 16px;
    color: var(--pg-espresso);
}

.pg-device-frame--floating {
    animation: pg-float 7s ease-in-out infinite;
}

.pg-device-notch {
    width: 72px;
    height: 6px;
    border-radius: var(--pg-radius-pill);
    margin: 0 auto 14px;
    background: rgba(30, 58, 95, 0.2);
}

.pg-device-kicker {
    margin: 0 0 6px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pg-teal);
    font-weight: 700;
}

.pg-device-frame h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.pg-device-list {
    margin: 0 0 14px;
    padding-left: 18px;
    color: var(--pg-muted);
    font-size: 0.9rem;
    display: grid;
    gap: 5px;
}

.pg-device-metrics {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pg-device-metric {
    font-size: 0.78rem;
    padding: 6px 10px;
    border-radius: var(--pg-radius-pill);
    border: 1px solid var(--pg-line);
    background: #fff;
}

.pg-device-metric strong {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pg-muted);
}

.pg-device-metric--lime {
    border-color: rgba(124, 179, 66, 0.35);
    background: var(--pg-lime-soft);
}

.pg-device-metric--orange {
    border-color: rgba(224, 122, 58, 0.35);
    background: var(--pg-orange-soft);
}

/* ─── Marquee ────────────────────────────────────────────── */
.pg-marquee-shell {
    overflow: hidden;
    border: 1px solid var(--pg-line);
    border-radius: var(--pg-radius-pill);
    background: rgba(255, 255, 255, 0.82);
    margin: 20px 0 10px;
    max-width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.pg-marquee-track {
    display: flex;
    width: max-content;
    animation: pg-marquee 76s linear infinite;
    will-change: transform;
}

.pg-marquee-shell:hover .pg-marquee-track {
    animation-play-state: paused;
}

.pg-marquee-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
}

.pg-marquee-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 8px 14px;
    border-radius: var(--pg-radius-pill);
    border: 1px solid rgba(63, 36, 18, 0.14);
    color: var(--pg-roast);
    background: rgba(255, 255, 255, 0.95);
}

.pg-marquee-pill::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--pg-lime);
}

.pg-marquee-row .pg-marquee-pill:nth-child(4n+2)::before { background: var(--pg-orange); }
.pg-marquee-row .pg-marquee-pill:nth-child(4n+3)::before { background: var(--pg-teal); }
.pg-marquee-row .pg-marquee-pill:nth-child(4n+4)::before { background: var(--pg-blue); }

/* ─── Cards ──────────────────────────────────────────────── */
.pg-hero {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 16px;
}

.pg-grid-2,
.pg-grid-3,
.pg-pricing {
    display: grid;
    gap: var(--pg-grid-gap);
    align-items: stretch;
}

.pg-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pg-grid-3,
.pg-pricing { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.pg-grid-3--stack {
    grid-template-columns: 1fr;
}

.pg-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    border: 1px solid var(--pg-line);
    border-radius: var(--pg-radius-md);
    padding: var(--pg-card-padding);
    background: var(--pg-surface-solid);
    box-shadow: var(--pg-card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pg-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--pg-card-shadow-hover);
}

.pg-card strong {
    color: var(--pg-roast);
    display: block;
    margin-bottom: 0;
}

.pg-card--accent-lime { border-left: 4px solid var(--pg-lime); }
.pg-card--accent-orange { border-left: 4px solid var(--pg-orange); }
.pg-card--accent-blue { border-left: 4px solid var(--pg-blue); }
.pg-card--accent-teal { border-left: 4px solid var(--pg-teal); }

.pg-pricing .pg-card strong {
    font-size: 1.4rem;
}

.pg-pricing-card {
    position: relative;
    overflow: hidden;
}

.pg-pricing-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pg-lime), var(--pg-orange));
}

.pg-pricing-card--monthly::after {
    background: linear-gradient(90deg, var(--pg-orange), var(--pg-yellow));
}

.pg-pricing-card--custom::after {
    background: linear-gradient(90deg, var(--pg-blue), var(--pg-teal));
}

/* ─── Flow diagrams ─────────────────────────────────────── */
.pg-flow-diagram {
    margin: 20px 0;
    padding: 16px 20px;
    border-radius: var(--pg-radius-md);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--pg-line);
}

.pg-flow-svg {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.pg-flow-path {
    stroke: var(--pg-teal);
    stroke-dasharray: 6 4;
    animation: pg-flow-dash 4s linear infinite;
}

.pg-flow-path--orange { stroke: var(--pg-orange); }

.pg-flow-node {
    fill: var(--pg-cream);
    stroke-width: 2;
}

.pg-flow-node--lime { stroke: var(--pg-lime); }
.pg-flow-node--orange { stroke: var(--pg-orange); }
.pg-flow-node--blue { stroke: var(--pg-blue); }
.pg-flow-node--yellow { stroke: var(--pg-yellow); }

.pg-flow-labels {
    display: flex;
    justify-content: space-between;
    max-width: 360px;
    margin: 10px auto 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pg-muted);
}

/* ─── CTA band (magnetic) ────────────────────────────────── */
.pg-cta-band {
    position: relative;
    border: none;
    border-radius: 28px;
    padding: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pg-blue) 0%, #243d5c 50%, var(--pg-espresso) 100%);
    box-shadow: var(--pg-shadow-soft);
    color: var(--pg-cream);
}

.pg-cta-band::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.35) 0%, transparent 65%);
    pointer-events: none;
}

.pg-cta-band::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(224, 122, 58, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.pg-cta-band .pg-eyebrow,
.pg-cta-band h2,
.pg-cta-band .pg-copy {
    color: var(--pg-cream);
    position: relative;
    z-index: 1;
}

.pg-cta-band .pg-copy {
    opacity: 0.9;
    max-width: 52ch;
}

.pg-cta-band .pg-btn-primary {
    background: linear-gradient(125deg, var(--pg-orange) 0%, var(--pg-yellow) 100%);
    color: var(--pg-espresso);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.pg-cta-band .pg-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.pg-cta-band .pg-btn-secondary:hover,
.pg-cta-band .pg-btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.22);
}

/* ─── Page hero (inner pages) ────────────────────────────── */
.pg-page-hero {
    position: relative;
    margin-bottom: 24px;
    padding: clamp(28px, 4vw, 44px);
    border-radius: var(--pg-radius-lg);
    overflow: hidden;
}

.pg-page-hero--lime {
    background:
        radial-gradient(circle at 85% 15%, rgba(124, 179, 66, 0.25) 0%, transparent 45%),
        linear-gradient(160deg, var(--pg-lime-soft), var(--pg-cream));
}

.pg-page-hero--pricing {
    background:
        radial-gradient(circle at 20% 30%, rgba(245, 215, 110, 0.4) 0%, transparent 50%),
        linear-gradient(145deg, var(--pg-yellow-soft), var(--pg-orange-soft) 40%, var(--pg-cream));
}

.pg-page-hero--with-media {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.5fr);
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
}

.pg-page-hero--about {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
    gap: clamp(26px, 3.6vw, 54px);
    align-items: center;
    padding: clamp(28px, 3.2vw, 48px);
}

.pg-page-hero--about .pg-page-hero__content {
    display: grid;
    align-content: center;
}

.pg-page-hero--about h1 {
    max-width: 13.4ch;
    font-size: clamp(2.25rem, 4.35vw, 3.25rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
    margin-bottom: 18px;
}

.pg-page-hero--about .pg-copy-lead {
    max-width: 54ch;
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.55;
}

.pg-page-hero--about .pg-page-hero__media {
    align-self: center;
}

.pg-page-hero--about .pg-editorial-image {
    max-width: min(100%, 420px);
    margin-left: auto;
    border-radius: 22px;
    box-shadow:
        0 18px 42px rgba(30, 24, 20, 0.16),
        0 0 0 1px rgba(63, 36, 18, 0.14);
}

.pg-page-hero__content {
    min-width: 0;
}

.pg-page-hero__media {
    position: relative;
    min-width: 0;
}

.pg-square-trust-strip {
    margin: 0 0 24px;
    border-radius: var(--pg-radius-lg);
    background:
        radial-gradient(circle at 12% 20%, rgba(124, 179, 66, 0.16), transparent 42%),
        linear-gradient(135deg, #fff 0%, var(--pg-cream) 100%);
    border: 1px solid rgba(63, 36, 18, 0.1);
    box-shadow: 0 14px 34px rgba(30, 24, 20, 0.08);
    overflow: hidden;
}

.pg-square-trust-strip--dark {
    background:
        radial-gradient(circle at 16% 20%, rgba(198, 246, 0, 0.1), transparent 42%),
        linear-gradient(145deg, #0a2234 0%, var(--pg-dark-navy) 100%);
    border-color: rgba(255, 247, 232, 0.1);
}

.pg-square-trust-strip__inner {
    display: grid;
    grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr) minmax(190px, 0.35fr);
    gap: clamp(18px, 3vw, 28px);
    align-items: center;
    padding: clamp(20px, 3vw, 30px);
}

.pg-square-trust-strip__mark {
    display: grid;
    place-items: center;
    padding: 40px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(63, 36, 18, 0.08);
}

.pg-square-trust-strip--dark .pg-square-trust-strip__mark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 247, 232, 0.1);
}

.pg-square-trust-strip__mark img {
    display: block;
    width: min(170px, 100%);
    height: auto;
}

.pg-square-trust-strip__copy {
    min-width: 0;
}

.pg-square-trust-strip__inner > * {
    min-width: 0;
}

.pg-square-trust-strip__eyebrow {
    margin: 0 0 8px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--pg-orange);
}

.pg-square-trust-strip h2 {
    margin: 0 0 8px;
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    max-width: 22ch;
}

.pg-square-trust-strip p {
    margin: 0;
    color: var(--pg-muted);
    line-height: 1.6;
    max-width: 64ch;
}

.pg-square-trust-strip--dark h2,
.pg-square-trust-strip--dark p {
    color: #fff7e8;
}

.pg-square-trust-strip--dark p {
    opacity: 0.72;
}

.pg-square-trust-strip__proof {
    display: grid;
    gap: 8px;
}

.pg-square-trust-strip__proof span {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 12px;
    background: rgba(7, 29, 42, 0.05);
    border: 1px solid rgba(7, 29, 42, 0.08);
    color: var(--pg-dark-navy);
    font-size: 0.8rem;
    font-weight: 800;
}

.pg-square-trust-strip__proof span:first-child {
    background: rgba(124, 179, 66, 0.12);
    border-color: rgba(124, 179, 66, 0.25);
}

.pg-square-trust-strip--dark .pg-square-trust-strip__proof span {
    background: rgba(255, 247, 232, 0.06);
    border-color: rgba(255, 247, 232, 0.1);
    color: rgba(255, 247, 232, 0.86);
}

/* ─── Split layout ───────────────────────────────────────── */
.pg-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

/* ─── Forms ──────────────────────────────────────────────── */
.pg-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pg-form-grid .full { grid-column: 1 / -1; }

/* ─── Editorial imagery system ───────────────────────────── */
.pg-editorial-image {
    --pg-image-ratio: 16 / 10;
    position: relative;
    margin: 0;
    width: 100%;
    aspect-ratio: var(--pg-image-ratio);
    border-radius: 22px;
    overflow: hidden;
    background: var(--pg-dark-navy);
    border: 1px solid rgba(63, 36, 18, 0.12);
    box-shadow:
        0 18px 40px rgba(30, 24, 20, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pg-editorial-image--panorama { --pg-image-ratio: 21 / 8; }
.pg-editorial-image--portrait { --pg-image-ratio: 4 / 5; }
.pg-editorial-image--card { --pg-image-ratio: 4 / 3; }
.pg-editorial-image--signup { --pg-image-ratio: 16 / 8; }
.pg-editorial-image--about-hero { --pg-image-ratio: 3 / 4; }
.pg-editorial-image--service-flow { --pg-image-ratio: 16 / 7; }

.pg-editorial-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--pg-image-position, center center);
}

.pg-editorial-image__veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(7, 29, 42, 0) 35%, rgba(7, 29, 42, 0.64) 100%),
        radial-gradient(circle at 12% 12%, rgba(245, 215, 110, 0.16), transparent 42%);
}

.pg-editorial-image--quiet .pg-editorial-image__veil {
    background: linear-gradient(180deg, rgba(7, 29, 42, 0.04), rgba(7, 29, 42, 0.18));
}

.pg-editorial-image--dark {
    border-color: rgba(255, 247, 232, 0.12);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pg-editorial-image__caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: grid;
    gap: 4px;
    color: #fff7e8;
    z-index: 1;
}

.pg-editorial-image__caption span {
    width: fit-content;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(7, 29, 42, 0.72);
    border: 1px solid rgba(255, 247, 232, 0.14);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pg-lime);
}

.pg-editorial-image__caption strong {
    max-width: 42ch;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    line-height: 1.35;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.pg-editorial-image::after {
    content: attr(data-credit);
    position: absolute;
    right: 10px;
    top: 8px;
    max-width: calc(100% - 20px);
    color: rgba(255, 247, 232, 0.32);
    font-size: 0.56rem;
    line-height: 1.2;
    pointer-events: none;
    white-space: nowrap;
}

.pg-editorial-split.pg-editorial-split--image {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(22px, 4vw, 42px);
}

.pg-editorial-split.pg-editorial-split--reverse > :first-child {
    order: 2;
}

.pg-editorial-inline {
    margin: 22px 0 24px;
}

.pg-section--compact {
    padding: clamp(20px, 3vw, 30px);
}

.pg-resource-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.pg-resource-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border-radius: var(--pg-radius-md);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--pg-line);
    box-shadow: 0 10px 26px rgba(30, 24, 20, 0.08);
}

.pg-resource-card .pg-editorial-image {
    border-radius: 16px;
}

.pg-resource-card .pg-editorial-image::after,
.pg-page-hero__media .pg-editorial-image::after,
.pg-signup-panel .pg-editorial-image::after {
    opacity: 0;
}

.pg-resource-card strong {
    font-family: "Sora", "Inter", system-ui, sans-serif;
    color: var(--pg-espresso);
    font-size: 1rem;
    line-height: 1.3;
}

.pg-resource-card p {
    margin: 0;
    color: var(--pg-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.pg-form-editorial-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
    gap: clamp(20px, 4vw, 36px);
    align-items: center;
    margin-bottom: 20px;
}

.pg-input,
.pg-select,
.pg-textarea {
    width: 100%;
    border: 1px solid rgba(63, 36, 18, 0.2);
    border-radius: 12px;
    padding: 11px 12px;
    background: #fff;
    font: inherit;
}

.pg-textarea { min-height: 120px; }

.pg-label {
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 6px;
    display: inline-block;
}

.pg-alert-success {
    border: 1px solid #86efac;
    background: #f0fdf4;
    color: #166534;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 12px;
}

.pg-error {
    color: #b91c1c;
    font-size: 0.85rem;
}

/* ─── Reveal ─────────────────────────────────────────────── */
.pg-reveal {
    opacity: 1;
    transform: translateY(0);
}

.pg-enhanced-motion .pg-reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.pg-enhanced-motion .pg-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Footer — dark navy brand lockup ────────────────────── */
.pg-footer {
    position: relative;
    margin-top: 0;
    padding: 56px 0 40px;
    background: var(--pg-dark-navy);
    overflow: hidden;
}

.pg-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pg-lime), var(--pg-teal), var(--pg-orange));
    opacity: 0.8;
}

/* Subtle geometry in footer background */
.pg-footer::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 246, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.pg-footer .pg-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 40px 60px;
    align-items: start;
}

/* Brand column */
.pg-footer-brand {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
}

.pg-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    width: fit-content;
    line-height: 0;
    overflow: visible;
}

.pg-footer-logo__lockup {
    display: block;
    width: min(210px, 100%);
    height: auto;
    object-fit: contain;
    object-position: center;
}

.pg-footer-tagline {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pg-lime);
}

.pg-footer-descriptor {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 247, 232, 0.45);
    letter-spacing: 0.04em;
}

.pg-footer-square-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.pg-footer-square-trust span {
    padding: 5px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 247, 232, 0.12);
    background: rgba(255, 247, 232, 0.04);
    color: rgba(255, 247, 232, 0.58);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pg-footer-square-trust span:first-child {
    color: var(--pg-lime);
    border-color: rgba(198, 246, 0, 0.22);
}

/* Nav columns */
.pg-footer-nav {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 8px 40px;
    justify-content: start;
}

.pg-footer-nav__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pg-footer-nav__group strong {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 247, 232, 0.4);
    margin-bottom: 4px;
}

.pg-footer-nav__group a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 247, 232, 0.7);
    text-decoration: none;
    transition: color 0.15s ease;
}

.pg-footer-nav__group a:hover,
.pg-footer-nav__group a:focus-visible {
    color: var(--pg-lime);
    outline: none;
}

/* Bottom strip */
.pg-footer-bottom {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 247, 232, 0.08);
    display: grid;
    gap: 8px;
}

.pg-footer-copy {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255, 247, 232, 0.55);
    max-width: 64ch;
    line-height: 1.5;
}

.pg-footer-disclaimer {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 247, 232, 0.3);
    max-width: 64ch;
    line-height: 1.5;
}

.pg-footer-legal {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 247, 232, 0.3);
}

.pg-footer-legal a {
    color: rgba(255, 247, 232, 0.45);
    text-decoration: none;
}

.pg-footer-legal a:hover {
    color: var(--pg-lime);
}

/* Legacy selector — kept for safety */
.pg-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.92rem;
}

.pg-footer-links a {
    color: rgba(255, 247, 232, 0.65);
    text-decoration: none;
    font-weight: 600;
}

.pg-footer-links a:hover,
.pg-footer-links a:focus-visible {
    color: var(--pg-lime);
    text-decoration: underline;
    outline: none;
}

/* ─── Credibility & proof ─────────────────────────────────── */
.pg-proof-strip {
    padding: 28px 0 36px;
    background: linear-gradient(180deg, var(--pg-cream) 0%, #fff 100%);
    border-bottom: 1px solid rgba(30, 24, 20, 0.06);
}

.pg-proof-strip__label {
    margin: 0 0 16px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pg-muted);
}

.pg-proof-strip__track {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.pg-proof-strip__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 78px;
    padding: 12px 14px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(30, 24, 20, 0.06);
    border: 1px solid rgba(30, 24, 20, 0.05);
}

.pg-proof-strip__logo img {
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.pg-section--proof h2 {
    max-width: 22ch;
}

.pg-proof-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--pg-grid-gap);
    margin-top: 28px;
    align-items: stretch;
}

.pg-proof-portfolio__tile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    padding: var(--pg-card-padding);
    min-height: 232px;
    background: #fff;
    border-radius: var(--pg-radius-md);
    border: 1px solid rgba(30, 24, 20, 0.06);
    box-shadow: var(--pg-card-shadow);
}

.pg-proof-portfolio__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 98px;
    padding: 12px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--pg-cream) 0%, #fff 100%);
}

.pg-proof-portfolio__logo-wrap img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}

.pg-proof-portfolio__monogram {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pg-espresso);
    background: var(--pg-lime);
}

.pg-proof-portfolio__placeholder-note {
    display: block;
    margin-top: 8px;
    font-size: 0.68rem;
    color: var(--pg-muted);
    text-align: center;
}

.pg-proof-portfolio__meta strong {
    display: block;
    font-size: 1rem;
    line-height: 1.25;
}

.pg-proof-portfolio__meta span {
    font-size: 0.88rem;
    color: var(--pg-muted);
}

.pg-proof-portfolio__platforms {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    min-height: 22px;
}

.pg-proof-portfolio__platforms img {
    height: 22px;
    width: auto;
    opacity: 0.85;
}

.pg-proof-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--pg-grid-gap);
    margin-top: 28px;
    align-items: stretch;
}

.pg-proof-testimonials__grid .pg-proof-quote {
    display: flex;
    flex-direction: column;
}

.pg-proof-quote {
    margin: 0;
    height: 100%;
    padding: var(--pg-card-padding);
    background: #fff;
    border-radius: var(--pg-radius-md);
    border: 1px solid rgba(30, 24, 20, 0.06);
    box-shadow: var(--pg-card-shadow);
}

.pg-proof-quote__highlight {
    margin: 0 0 12px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pg-orange);
}

.pg-proof-quote__text {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--pg-roast);
}

.pg-proof-quote__footer {
    margin-top: auto;
    padding-top: 4px;
}

.pg-proof-quote__footer cite {
    display: block;
    font-style: normal;
    font-weight: 700;
}

.pg-proof-quote__footer span {
    display: block;
    font-size: 0.88rem;
    color: var(--pg-muted);
}

.pg-proof-outcomes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 28px;
    padding: 0;
    list-style: none;
}

.pg-proof-outcomes li {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    background: rgba(30, 24, 20, 0.08);
    color: var(--pg-espresso);
}

.pg-proof-product__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.pg-proof-product__grid--wide {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.pg-proof-product__operator {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px dashed rgba(30, 24, 20, 0.12);
}

.pg-proof-product__operator h3 {
    margin: 0 0 20px;
}

.pg-proof-shot {
    margin: 0;
}

.pg-proof-shot__frame {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 320px;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid rgba(30, 24, 20, 0.06);
    box-shadow: 0 16px 40px rgba(30, 24, 20, 0.08);
}

.pg-proof-shot__frame--wide {
    min-height: 220px;
    align-items: center;
}

.pg-proof-shot__frame--square {
    min-height: 260px;
    align-items: center;
    background: #fff;
}

.pg-proof-shot__frame img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.pg-proof-shot__frame--wide img,
.pg-proof-shot__frame--square img {
    max-height: 240px;
}

.pg-proof-shot figcaption {
    margin-top: 12px;
}

.pg-proof-shot figcaption strong {
    display: block;
    margin-bottom: 4px;
}

.pg-proof-shot figcaption span {
    font-size: 0.9rem;
    color: var(--pg-muted);
}

.pg-proof-square__disclaimer {
    margin: 16px 0;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
}

.pg-band--blue .pg-proof-square__disclaimer {
    background: rgba(0, 0, 0, 0.15);
}

.pg-square-api-callout {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 18px 0 8px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(30, 58, 95, 0.12);
    background: linear-gradient(135deg, rgba(232, 238, 245, 0.7), rgba(255, 255, 255, 0.82));
}

.pg-square-api-callout strong {
    flex: 0 0 auto;
    color: var(--pg-dark-navy);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pg-square-api-callout span {
    min-width: 0;
    color: var(--pg-muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.pg-proof-square__features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px 20px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.pg-proof-square__features li {
    position: relative;
    padding-left: 1.2em;
    font-size: 0.95rem;
}

.pg-proof-square__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pg-lime);
    font-weight: 800;
}

.pg-proof-square__visuals {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.pg-proof-square__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pg-form-intro {
    margin-bottom: 24px;
    padding: 20px 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pg-cream) 0%, #fff 100%);
    border: 1px solid rgba(30, 24, 20, 0.08);
}

.pg-form-intro ul {
    margin: 12px 0 0;
    padding-left: 1.2em;
}

/* ─── Editorial pull quote moments ───────────────────────── */
.pg-pull-quote {
    margin: 0;
    padding: clamp(20px, 3vw, 28px);
    border-left: 4px solid var(--pg-lime);
    border-radius: 14px;
    background: linear-gradient(140deg, rgba(255, 247, 232, 0.9), rgba(255, 247, 232, 0.62));
    color: var(--pg-roast);
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.55;
    letter-spacing: 0.01em;
}

.pg-editorial-feature {
    position: relative;
}

.pg-editorial-feature::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 120px;
    height: 36px;
    opacity: 0.22;
    background: linear-gradient(90deg, transparent 0%, rgba(198, 246, 0, 0.8) 40%, transparent 100%);
    pointer-events: none;
}

.pg-editorial-quote {
    margin: 14px 0 12px;
    padding: 16px 18px;
    border-left: 3px solid var(--pg-lime);
    border-radius: 12px;
    background: rgba(255, 247, 232, 0.72);
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 1rem;
    color: var(--pg-roast);
}

.pg-editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-weight: 700;
    color: var(--pg-lime);
    text-decoration: none;
}

.pg-editorial-link:hover,
.pg-editorial-link:focus-visible {
    color: #d4ff00;
    text-decoration: underline;
    outline: none;
}

/* Dark variant: for links on cream/light section backgrounds */
.pg-editorial-link--dark {
    color: var(--pg-dark-navy);
    border-bottom: 1.5px solid rgba(7, 29, 42, 0.28);
    padding-bottom: 1px;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.pg-editorial-link--dark:hover,
.pg-editorial-link--dark:focus-visible {
    color: var(--pg-roast);
    border-bottom-color: var(--pg-orange);
    text-decoration: none;
    outline: none;
}

/* ─── About: industry dialogue two-column layout ─────────── */
.pg-editorial-split {
    display: grid;
    grid-template-columns: 1fr min(296px, 40%);
    gap: 36px;
    align-items: center;
}

.pg-editorial-split__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ─── KTTS editorial tile ─────────────────────────────────── */
.pg-editorial-ktts-tile {
    position: relative;
    border-radius: 18px;
    background:
        radial-gradient(circle at 88% 18%, rgba(198, 246, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 12% 88%, rgba(255, 106, 0, 0.07) 0%, transparent 45%),
        linear-gradient(158deg, #1a2a1a 0%, #0d180d 55%, #071209 100%);
    border: 1px solid rgba(198, 246, 0, 0.14);
    overflow: hidden;
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pg-editorial-ktts-tile__inner {
    position: relative;
    z-index: 1;
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.pg-editorial-ktts-tile__badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pg-lime);
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(198, 246, 0, 0.28);
    background: rgba(198, 246, 0, 0.08);
    width: fit-content;
}

.pg-editorial-ktts-tile__logomark {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}

.pg-editorial-ktts-tile__keys,
.pg-editorial-ktts-tile__shop {
    display: block;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #FFF7E8;
    letter-spacing: -0.025em;
    line-height: 1;
}

.pg-editorial-ktts-tile__to {
    display: block;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(255, 247, 232, 0.45);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 0 2px;
}

.pg-editorial-ktts-tile__ep {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.5;
    color: rgba(255, 247, 232, 0.52);
}

.pg-editorial-ktts-tile__ep span {
    color: rgba(255, 247, 232, 0.36);
    font-style: italic;
}

/* CSS waveform — editorial audio visual */
.pg-editorial-ktts-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 26px;
}

.pg-editorial-ktts-wave span {
    display: block;
    width: 3px;
    border-radius: 2px 2px 0 0;
    background: rgba(198, 246, 0, 0.32);
    flex-shrink: 0;
}

.pg-editorial-ktts-wave span:nth-child(1)  { height: 38%; }
.pg-editorial-ktts-wave span:nth-child(2)  { height: 68%; }
.pg-editorial-ktts-wave span:nth-child(3)  { height: 50%; }
.pg-editorial-ktts-wave span:nth-child(4)  { height: 88%; }
.pg-editorial-ktts-wave span:nth-child(5)  { height: 62%; }
.pg-editorial-ktts-wave span:nth-child(6)  { height: 100%; }
.pg-editorial-ktts-wave span:nth-child(7)  { height: 74%; }
.pg-editorial-ktts-wave span:nth-child(8)  { height: 42%; }
.pg-editorial-ktts-wave span:nth-child(9)  { height: 82%; }
.pg-editorial-ktts-wave span:nth-child(10) { height: 56%; }
.pg-editorial-ktts-wave span:nth-child(11) { height: 34%; }
.pg-editorial-ktts-wave span:nth-child(12) { height: 70%; }
.pg-editorial-ktts-wave span:nth-child(13) { height: 46%; }
.pg-editorial-ktts-wave span:nth-child(14) { height: 60%; }
.pg-editorial-ktts-wave span:nth-child(15) { height: 30%; }

.pg-editorial-ktts-tile__listen {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--pg-lime);
    text-decoration: none;
    margin-top: 2px;
    transition: color 0.15s ease;
}

.pg-editorial-ktts-tile__listen:hover,
.pg-editorial-ktts-tile__listen:focus-visible {
    color: #d4ff00;
    text-decoration: underline;
    outline: none;
}

/* ─── Inner-page expansion blocks ─────────────────────────── */
.pg-launch-path {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.pg-page-hero--about .pg-launch-path {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.pg-launch-step {
    padding: 14px 14px 12px;
    border: 1px solid var(--pg-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
}

.pg-page-hero--about .pg-launch-step {
    min-height: 142px;
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
}

.pg-launch-step strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--pg-orange);
}

.pg-launch-step p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--pg-muted);
}

.pg-page-hero--about .pg-launch-step p {
    line-height: 1.5;
}

@media (max-width: 1120px) {
    .pg-page-hero--about {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
        gap: 28px;
    }

    .pg-page-hero--about .pg-launch-path {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pg-page-hero--about .pg-launch-step {
        min-height: 118px;
    }
}

.pg-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.pg-faq-card {
    padding: 16px 16px 14px;
    border-radius: 14px;
    border: 1px solid var(--pg-line);
    background: rgba(255, 255, 255, 0.86);
}

.pg-faq-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.pg-faq-card p {
    margin: 0;
    color: var(--pg-muted);
    font-size: 0.92rem;
}

/* ─── Homepage journey (long-scroll sales) ───────────────── */
.pg-journey {
    margin-bottom: 0;
}

.pg-journey-header {
    max-width: 52rem;
    margin-bottom: clamp(24px, 3vw, 34px);
}

.pg-journey-header--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pg-journey-header h2 {
    max-width: 20ch;
}

.pg-journey-header--center h2 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.pg-journey-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
}

.pg-journey-split--reverse .pg-journey-copy {
    order: 2;
}

.pg-journey-split--reverse .pg-journey-visual {
    order: 1;
}

.pg-journey-copy h2 {
    max-width: 18ch;
}

.pg-journey-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.pg-journey-bullets {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.pg-journey-bullets li {
    position: relative;
    padding-left: 1.35em;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--pg-roast);
}

.pg-journey-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pg-lime);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.25);
}

.pg-band--blue .pg-journey-bullets li::before {
    background: var(--pg-yellow);
    box-shadow: 0 0 0 3px rgba(245, 215, 110, 0.35);
}

.pg-journey-visual {
    display: grid;
    align-items: center;
    min-width: 0;
}

.pg-journey-shot__frame {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: var(--pg-radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--pg-line);
    box-shadow: var(--pg-shadow-soft);
    min-height: 100%;
}

.pg-journey-shot__frame img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.pg-journey-shot--wide {
    margin-top: 32px;
}

.pg-journey-shot--centered {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.pg-journey-shot__frame--wide img {
    max-height: 280px;
}

.pg-journey-phones {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 180px));
    gap: clamp(16px, 2.2vw, 26px);
    align-items: end;
    justify-items: center;
    justify-content: center;
    width: min(100%, 760px);
    margin-inline: auto;
}

.pg-journey-phones img {
    display: block;
    width: 100%;
    max-width: 220px;
    height: clamp(300px, 37vw, 420px);
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(30, 58, 95, 0.18));
}

.pg-journey-visual-stack {
    display: grid;
    gap: 20px;
}

.pg-journey-shot--stacked {
    margin: 0;
}

.pg-journey-shot--stacked .pg-journey-shot__frame {
    min-height: 200px;
}

.pg-asset-placeholder {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 240px;
    padding: 24px;
    border-radius: var(--pg-radius-lg);
    text-align: center;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.9) 12px,
        rgba(124, 179, 66, 0.08) 12px,
        rgba(124, 179, 66, 0.08) 24px
    );
    border: 2px dashed rgba(63, 36, 18, 0.2);
}

.pg-asset-placeholder__label {
    font-weight: 800;
    color: var(--pg-espresso);
}

.pg-asset-placeholder__note {
    font-size: 0.78rem;
    color: var(--pg-muted);
    max-width: 20rem;
}

.pg-journey-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--pg-grid-gap);
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

.pg-journey-pillar {
    display: flex;
    gap: 12px;
    height: 100%;
    padding: 18px;
    border-radius: var(--pg-radius-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.pg-band--blue .pg-journey-pillar {
    background: rgba(255, 255, 255, 0.94);
    border-color: var(--pg-line);
}

.pg-journey-pillar__dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--pg-orange);
}

.pg-journey-pillar strong {
    display: block;
    margin-bottom: 4px;
}

.pg-journey-pillar p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--pg-muted);
    line-height: 1.45;
}

.pg-band--blue .pg-journey-pillar p {
    color: var(--pg-muted);
}

.pg-journey-disclaimer {
    margin: 16px 0 24px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--pg-line);
}

.pg-band--blue .pg-journey-disclaimer {
    background: rgba(30, 58, 95, 0.06);
}

.pg-journey-disclaimer--center {
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.pg-journey-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pg-grid-gap);
    margin-top: 8px;
    align-items: stretch;
}

.pg-journey-compare__col {
    height: 100%;
    padding: var(--pg-card-padding);
    border-radius: var(--pg-radius-md);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--pg-line);
}

.pg-journey-compare__col--highlight {
    background: #fff;
    border-color: rgba(124, 179, 66, 0.35);
    box-shadow: var(--pg-shadow-soft);
}

.pg-journey-compare__col h3 {
    margin: 0 0 14px;
    font-size: 1.1rem;
}

.pg-journey-compare__col ul {
    margin: 0;
    padding-left: 1.2em;
    display: grid;
    gap: 10px;
}

.pg-journey-spotlight__ribbon {
    position: absolute;
    left: 0;
    right: 0;
    top: 12%;
    height: 80px;
    opacity: 0.12;
    color: var(--pg-orange);
    pointer-events: none;
}

.pg-journey-spotlight__ribbon svg {
    width: 100%;
    height: 100%;
}

.pg-journey--spotlight {
    position: relative;
}

.pg-journey-spotlight__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--pg-grid-gap);
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

.pg-journey-spotlight__grid li {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 18px;
    border-radius: var(--pg-radius-md);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--pg-line);
    box-shadow: var(--pg-shadow-soft);
}

.pg-pricing--journey {
    margin-top: 8px;
}

.pg-journey--pricing .pg-journey-header {
    max-width: 1120px;
}

.pg-journey--pricing .pg-journey-header h2 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pg-journey--pricing .pg-pricing-description {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.62;
}

.pg-pricing--journey .pg-card strong {
    line-height: 1.2;
}

.pg-pricing--journey .pg-card p {
    margin: 8px 0 0;
    font-size: 0.95rem;
    color: var(--pg-muted);
    line-height: 1.5;
    flex: 1;
}

.pg-journey-pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1180px;
    min-height: 64px;
    margin: 24px auto 18px;
    text-align: center;
    line-height: 1.65;
}

.pg-cta-mini {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.pg-journey-header--center + .pg-cta-mini,
.pg-pricing--journey + .pg-journey-pricing-note + .pg-cta-mini {
    justify-content: center;
}

/* ─── Public intelligence demo ───────────────────────────── */
.pg-intel-hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    isolation: isolate;
    padding: clamp(38px, 5vw, 64px) 0 clamp(44px, 5vw, 76px);
    border-radius: 0 0 48px 48px;
    background:
        radial-gradient(circle at 12% 16%, rgba(198, 246, 0, 0.12), transparent 31%),
        radial-gradient(circle at 86% 16%, rgba(0, 191, 166, 0.14), transparent 34%),
        linear-gradient(145deg, #061823 0%, #071d2a 58%, #0b2a35 100%);
    box-shadow: 0 34px 70px rgba(7, 29, 42, 0.34);
    color: #fff7e8;
}

.pg-intel-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 247, 232, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 247, 232, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 88%);
}

.pg-intel-hero__glow {
    position: absolute;
    inset: auto -10% -28% 18%;
    z-index: 0;
    height: 52%;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(198, 246, 0, 0.11), transparent 68%);
    filter: blur(2px);
}

.pg-intel-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.pg-intel-hero__story {
    min-width: 0;
}

.pg-intel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--pg-lime);
}

.pg-intel-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(198, 246, 0, 0.12);
}

.pg-intel-hero h1 {
    margin: 0 0 18px;
    color: #fff7e8;
    font-size: 3.15rem;
    line-height: 1.02;
    letter-spacing: 0;
    max-width: 16ch;
}

.pg-intel-lead {
    margin: 0;
    max-width: 58ch;
    color: rgba(255, 247, 232, 0.74);
    font-size: 1.08rem;
    line-height: 1.7;
}

.pg-intel-demo-note {
    margin: 18px 0 0;
    max-width: 58ch;
    color: rgba(255, 247, 232, 0.58);
    font-size: 0.9rem;
    line-height: 1.55;
}

.pg-intel-demo-note strong {
    color: #fff7e8;
}

.pg-intel-hero__actions,
.pg-intel-final__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
}

.pg-intel-hero .pg-btn-secondary,
.pg-intel-final .pg-btn-secondary {
    background: rgba(255, 247, 232, 0.1);
    border-color: rgba(255, 247, 232, 0.26);
    color: #fff7e8;
}

.pg-intel-text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--pg-lime);
    font-weight: 850;
    text-decoration: none;
}

.pg-intel-text-link:hover,
.pg-intel-text-link:focus-visible {
    text-decoration: underline;
    outline: none;
}

.pg-intel-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 34px 0 0;
    padding: 0;
}

.pg-intel-hero__stats div {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 247, 232, 0.11);
    background: rgba(255, 247, 232, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 247, 232, 0.08);
}

.pg-intel-hero__stats dt {
    color: rgba(255, 247, 232, 0.46);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pg-intel-hero__stats dd {
    margin: 0;
    color: #fff7e8;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 2.05rem;
    font-weight: 800;
    line-height: 1;
}

.pg-intel-hero__stats span {
    color: rgba(255, 247, 232, 0.58);
    font-size: 0.78rem;
    line-height: 1.4;
}

.pg-intel-command {
    position: relative;
    display: grid;
    min-height: clamp(470px, 38vw, 590px);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 247, 232, 0.11);
    background:
        linear-gradient(145deg, rgba(255, 247, 232, 0.08), rgba(255, 247, 232, 0.02)),
        #071d2a;
    box-shadow:
        0 34px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 247, 232, 0.1);
}

.pg-intel-command__photo {
    position: absolute;
    inset: 0;
    margin: 0;
}

.pg-intel-command__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
    opacity: 0.42;
    filter: saturate(0.86) contrast(1.05) brightness(0.72);
}

.pg-intel-command::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(7, 29, 42, 0.08) 0%, rgba(7, 29, 42, 0.9) 100%),
        radial-gradient(circle at 70% 22%, rgba(198, 246, 0, 0.12), transparent 26%),
        radial-gradient(circle at 18% 82%, rgba(0, 191, 166, 0.14), transparent 28%);
}

.pg-intel-command__panel {
    position: relative;
    z-index: 1;
    align-self: center;
    justify-self: center;
    width: min(86%, 470px);
    padding: clamp(22px, 3vw, 32px);
    border-radius: 28px;
    border: 1px solid rgba(255, 247, 232, 0.14);
    background: rgba(6, 22, 34, 0.78);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 247, 232, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.pg-intel-command__topline,
.pg-intel-command__trace {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 247, 232, 0.54);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pg-intel-command__topline strong {
    margin-left: auto;
    color: rgba(255, 247, 232, 0.8);
}

.pg-intel-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pg-lime);
    box-shadow: 0 0 0 6px rgba(198, 246, 0, 0.13);
}

.pg-intel-command__panel h2 {
    margin: 20px 0 8px;
    color: #fff7e8;
    font-size: 2.2rem;
}

.pg-intel-command__panel p {
    margin: 0;
    color: rgba(255, 247, 232, 0.68);
    line-height: 1.6;
}

.pg-intel-orbit {
    position: relative;
    height: 150px;
    margin: 22px 0;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(198, 246, 0, 0.12), transparent 24%),
        linear-gradient(90deg, rgba(255, 247, 232, 0.06), rgba(255, 247, 232, 0.02));
}

.pg-intel-orbit::before,
.pg-intel-orbit::after {
    content: "";
    position: absolute;
    inset: 26px 54px;
    border: 1px dashed rgba(198, 246, 0, 0.2);
    border-radius: 50%;
}

.pg-intel-orbit::after {
    inset: 46px 90px;
    border-color: rgba(0, 191, 166, 0.22);
}

.pg-intel-orbit span {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--pg-lime);
    box-shadow: 0 0 0 8px rgba(198, 246, 0, 0.1);
    animation: pgIntelFloat 5s ease-in-out infinite;
}

.pg-intel-orbit span:nth-child(1) { left: 22%; top: 58%; }
.pg-intel-orbit span:nth-child(2) { left: 52%; top: 30%; animation-delay: -1.4s; background: var(--pg-teal); }
.pg-intel-orbit span:nth-child(3) { right: 20%; bottom: 24%; animation-delay: -2.8s; background: var(--pg-orange); }

.pg-intel-signal-stack {
    display: grid;
    gap: 10px;
}

.pg-intel-signal-stack div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 15px;
    border: 1px solid rgba(255, 247, 232, 0.09);
    background: rgba(255, 247, 232, 0.055);
}

.pg-intel-signal-stack span {
    color: rgba(255, 247, 232, 0.62);
    font-size: 0.86rem;
}

.pg-intel-signal-stack strong {
    margin-left: auto;
    color: #fff7e8;
}

.pg-intel-command__trace {
    position: absolute;
    z-index: 1;
    left: clamp(16px, 3vw, 28px);
    right: clamp(16px, 3vw, 28px);
    bottom: clamp(16px, 3vw, 28px);
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 247, 232, 0.1);
    background: rgba(6, 22, 34, 0.68);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pg-intel-command__trace span {
    min-width: 0;
    text-align: center;
}

.pg-intel-section {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    padding: clamp(54px, 7vw, 94px) 0;
}

.pg-intel-section--cream {
    background:
        radial-gradient(circle at 12% 12%, rgba(198, 246, 0, 0.09), transparent 34%),
        linear-gradient(180deg, var(--pg-cream) 0%, #fffaf0 100%);
}

.pg-intel-section--dark {
    background:
        radial-gradient(circle at 88% 12%, rgba(0, 191, 166, 0.11), transparent 34%),
        linear-gradient(145deg, #071d2a 0%, #0b2230 100%);
    color: #fff7e8;
}

.pg-intel-section--warm {
    background:
        radial-gradient(circle at 78% 16%, rgba(255, 106, 0, 0.12), transparent 36%),
        linear-gradient(155deg, #fff7e8 0%, #f4ead9 100%);
}

.pg-intel-section--blue {
    background:
        radial-gradient(circle at 18% 18%, rgba(198, 246, 0, 0.08), transparent 28%),
        linear-gradient(145deg, #082231 0%, #071d2a 100%);
    color: #fff7e8;
}

.pg-intel-section__header {
    max-width: 760px;
    margin: 0 0 clamp(26px, 4vw, 44px);
}

.pg-intel-section__header--wide {
    max-width: 900px;
}

.pg-intel-section__header h2,
.pg-intel-final h2 {
    margin: 0 0 14px;
    font-size: 3rem;
    line-height: 1.04;
    letter-spacing: 0;
}

.pg-intel-section--dark h2,
.pg-intel-section--blue h2,
.pg-intel-final h2 {
    color: #fff7e8;
}

.pg-intel-section__header p,
.pg-intel-final p {
    margin: 0;
    max-width: 70ch;
    color: var(--pg-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.pg-intel-section--dark .pg-intel-section__header p,
.pg-intel-section--blue .pg-intel-section__header p,
.pg-intel-final p {
    color: rgba(255, 247, 232, 0.68);
}

.pg-intel-insight-grid,
.pg-intel-score-grid,
.pg-intel-menu-grid,
.pg-intel-customer-signals {
    display: grid;
    gap: var(--pg-grid-gap);
}

.pg-intel-insight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pg-intel-insight-card,
.pg-intel-score-card,
.pg-intel-customer-signals article,
.pg-intel-menu-grid article,
.pg-intel-cohort-card,
.pg-intel-menu-risk,
.pg-intel-heartbeat,
.pg-intel-flow-signals article,
.pg-intel-response,
.pg-intel-final__panel {
    border: 1px solid rgba(7, 29, 42, 0.1);
    border-radius: var(--pg-radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--pg-card-shadow);
}

.pg-intel-insight-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: var(--pg-card-padding);
    overflow: hidden;
}

.pg-intel-card-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--pg-muted);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pg-intel-card-kicker span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pg-lime);
    box-shadow: 0 0 0 5px rgba(198, 246, 0, 0.12);
}

.pg-intel-insight-card h3 {
    margin: 0 0 12px;
    color: var(--pg-espresso);
    font-size: 1.25rem;
    line-height: 1.18;
    letter-spacing: 0;
}

.pg-intel-insight-card p,
.pg-intel-menu-grid p,
.pg-intel-customer-signals p,
.pg-intel-score-card p,
.pg-intel-menu-risk p,
.pg-intel-cohort-card p,
.pg-intel-flow-signals p {
    margin: 0;
    color: var(--pg-muted);
    line-height: 1.58;
}

.pg-intel-card-meta {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
}

.pg-intel-card-meta span {
    color: rgba(94, 78, 64, 0.76);
    font-size: 0.78rem;
    font-weight: 700;
}

.pg-intel-card-meta strong {
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--pg-espresso);
    background: var(--pg-yellow-soft);
    line-height: 1.4;
}

.pg-intel-insight-card--lime { border-top: 4px solid var(--pg-lime); }
.pg-intel-insight-card--orange { border-top: 4px solid var(--pg-orange); }
.pg-intel-insight-card--teal { border-top: 4px solid var(--pg-teal); }
.pg-intel-insight-card--coral { border-top: 4px solid var(--pg-coral); }
.pg-intel-insight-card--blue { border-top: 4px solid var(--pg-blue); }
.pg-intel-insight-card--yellow { border-top: 4px solid var(--pg-yellow); }

.pg-intel-health-layout,
.pg-intel-customer-layout,
.pg-intel-menu-layout,
.pg-intel-flow-layout,
.pg-intel-ask {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    gap: var(--pg-grid-gap);
    align-items: stretch;
}

.pg-intel-health-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 28px;
    border: 1px solid rgba(255, 247, 232, 0.12);
    background:
        radial-gradient(circle at 80% 14%, rgba(198, 246, 0, 0.14), transparent 28%),
        rgba(255, 247, 232, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 247, 232, 0.08);
}

.pg-intel-score-ring {
    --score: 84;
    display: grid;
    place-items: center;
    width: clamp(148px, 18vw, 208px);
    aspect-ratio: 1;
    margin-bottom: 24px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #071d2a 0 58%, transparent 59%),
        conic-gradient(var(--pg-lime) calc(var(--score) * 1%), rgba(255, 247, 232, 0.12) 0);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.pg-intel-score-ring strong {
    color: #fff7e8;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 3.8rem;
    line-height: 1;
}

.pg-intel-score-ring small {
    margin-top: -28px;
    color: rgba(255, 247, 232, 0.58);
    font-weight: 850;
}

.pg-intel-health-summary h3 {
    margin: 0 0 12px;
    color: #fff7e8;
    font-size: 1.6rem;
    line-height: 1.18;
}

.pg-intel-health-summary p {
    margin: 0;
    color: rgba(255, 247, 232, 0.66);
    line-height: 1.68;
}

.pg-intel-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pg-intel-score-card {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 20px;
    background: rgba(255, 247, 232, 0.95);
}

.pg-intel-score-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.pg-intel-score-card__head span {
    color: var(--pg-muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pg-intel-score-card__head strong {
    color: var(--pg-espresso);
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 1.6rem;
}

.pg-intel-meter {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(7, 29, 42, 0.08);
}

.pg-intel-meter span {
    display: block;
    width: var(--meter);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--pg-lime), var(--pg-teal));
}

.pg-intel-score-card h3 {
    margin: 0;
    color: var(--pg-espresso);
    font-size: 1rem;
    line-height: 1.25;
}

.pg-intel-customer-layout {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.pg-intel-cohort-card,
.pg-intel-menu-risk,
.pg-intel-heartbeat,
.pg-intel-response {
    padding: clamp(22px, 3vw, 32px);
}

.pg-intel-cohort-card__head,
.pg-intel-heartbeat__top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    color: var(--pg-muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pg-intel-cohort-card__head strong,
.pg-intel-heartbeat__top strong {
    color: var(--pg-espresso);
    text-align: right;
}

.pg-intel-cohort-table {
    display: grid;
    gap: 9px;
    margin-bottom: 20px;
}

.pg-intel-cohort-row {
    display: grid;
    grid-template-columns: 56px 1fr 1fr 64px;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(7, 29, 42, 0.045);
    color: var(--pg-muted);
    font-size: 0.86rem;
}

.pg-intel-cohort-row strong {
    color: var(--pg-espresso);
    text-align: right;
}

.pg-intel-customer-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pg-intel-customer-signals article,
.pg-intel-menu-grid article {
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-height: 100%;
    padding: 22px;
}

.pg-intel-customer-signals strong,
.pg-intel-menu-risk > strong {
    color: var(--pg-espresso);
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 3rem;
    line-height: 1;
}

.pg-intel-customer-signals span,
.pg-intel-menu-grid span {
    color: var(--pg-orange);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pg-intel-menu-layout {
    grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
}

.pg-intel-menu-risk {
    background:
        radial-gradient(circle at 88% 12%, rgba(198, 246, 0, 0.13), transparent 28%),
        #fff;
}

.pg-intel-menu-risk h3 {
    margin: 8px 0 12px;
    color: var(--pg-espresso);
    font-size: 1.65rem;
}

.pg-intel-concentration {
    display: flex;
    gap: 6px;
    height: 16px;
    margin-top: 24px;
}

.pg-intel-concentration span {
    width: var(--w);
    border-radius: 999px;
    background: var(--pg-lime);
}

.pg-intel-concentration span:nth-child(2) { background: var(--pg-orange); }
.pg-intel-concentration span:nth-child(3) { background: var(--pg-teal); }
.pg-intel-concentration span:nth-child(4) { background: rgba(7, 29, 42, 0.18); }

.pg-intel-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pg-intel-menu-grid h3 {
    margin: 0;
    color: var(--pg-espresso);
    font-size: 1.15rem;
}

.pg-intel-menu-grid strong {
    color: var(--pg-espresso);
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 1.5rem;
}

.pg-intel-flow-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.pg-intel-heartbeat {
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 247, 232, 0.12);
    background: rgba(255, 247, 232, 0.06);
}

.pg-intel-section--blue .pg-intel-heartbeat__top,
.pg-intel-section--blue .pg-intel-heartbeat__top strong {
    color: rgba(255, 247, 232, 0.74);
}

.pg-intel-hour-map {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
    min-height: 220px;
    padding: 16px;
    border-radius: 20px;
    background:
        linear-gradient(rgba(255, 247, 232, 0.06) 1px, transparent 1px),
        rgba(6, 22, 34, 0.48);
    background-size: 100% 44px;
}

.pg-intel-hour {
    display: grid;
    align-items: end;
    gap: 9px;
    height: 190px;
}

.pg-intel-hour span {
    display: block;
    height: var(--load);
    min-height: 24px;
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(180deg, var(--pg-lime), rgba(198, 246, 0, 0.24));
}

.pg-intel-hour--watch span {
    background: linear-gradient(180deg, var(--pg-orange), rgba(255, 106, 0, 0.26));
}

.pg-intel-hour--weak span {
    background: linear-gradient(180deg, rgba(255, 247, 232, 0.48), rgba(255, 247, 232, 0.14));
}

.pg-intel-hour small {
    color: rgba(255, 247, 232, 0.6);
    text-align: center;
    font-weight: 800;
}

.pg-intel-heartline {
    width: 100%;
    height: 120px;
    margin-top: 18px;
}

.pg-intel-heartline path {
    fill: none;
    stroke: var(--pg-lime);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 720;
    animation: pgIntelDraw 5s ease-in-out infinite;
}

.pg-intel-flow-signals {
    display: grid;
    gap: 14px;
}

.pg-intel-flow-signals article {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-color: rgba(255, 247, 232, 0.12);
    background: rgba(255, 247, 232, 0.07);
    padding: 18px;
}

.pg-intel-flow-signals span {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin-top: 0.45em;
    border-radius: 50%;
    background: var(--pg-lime);
    box-shadow: 0 0 0 5px rgba(198, 246, 0, 0.12);
}

.pg-intel-flow-signals p {
    color: rgba(255, 247, 232, 0.75);
}

.pg-intel-ask {
    align-items: start;
}

.pg-intel-ask__intro {
    min-width: 0;
}

.pg-intel-ask__intro h2 {
    margin: 0 0 14px;
    font-size: 2.35rem;
    line-height: 1.08;
}

.pg-intel-ask__intro > p:not(.pg-intel-eyebrow) {
    margin: 0 0 22px;
    color: var(--pg-muted);
    line-height: 1.7;
}

.pg-intel-prompt-list {
    display: grid;
    gap: 10px;
}

.pg-intel-prompt {
    width: 100%;
    padding: 14px 16px;
    border-radius: 15px;
    border: 1px solid rgba(7, 29, 42, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: var(--pg-espresso);
    font: inherit;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.pg-intel-prompt:hover,
.pg-intel-prompt:focus-visible,
.pg-intel-prompt.is-active {
    background: var(--pg-dark-navy);
    border-color: rgba(7, 29, 42, 0.2);
    color: var(--pg-lime);
    outline: none;
}

.pg-intel-prompt:hover,
.pg-intel-prompt:focus-visible {
    transform: translateY(-1px);
}

.pg-intel-response {
    position: sticky;
    top: 96px;
    padding: 0;
    overflow: hidden;
    background: #071d2a;
    color: #fff7e8;
    box-shadow: 0 28px 72px rgba(7, 29, 42, 0.24);
}

.pg-intel-response__chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 247, 232, 0.1);
    background: rgba(255, 247, 232, 0.06);
}

.pg-intel-response__chrome span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pg-orange);
}

.pg-intel-response__chrome span:nth-child(2) { background: var(--pg-yellow); }
.pg-intel-response__chrome span:nth-child(3) { background: var(--pg-lime); }

.pg-intel-response__chrome strong {
    margin-left: 8px;
    color: rgba(255, 247, 232, 0.64);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pg-intel-response__label {
    margin: 28px 28px 10px;
    color: var(--pg-lime);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pg-intel-response h3 {
    margin: 0 28px 18px;
    color: #fff7e8;
    font-size: 1.45rem;
    line-height: 1.2;
}

.pg-intel-response > p:not(.pg-intel-response__label) {
    margin: 0 28px;
    color: rgba(255, 247, 232, 0.78);
    line-height: 1.72;
}

.pg-intel-response__evidence {
    margin: 26px 28px 28px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(198, 246, 0, 0.16);
    background: rgba(198, 246, 0, 0.07);
}

.pg-intel-response__evidence span {
    display: block;
    margin-bottom: 6px;
    color: var(--pg-lime);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pg-intel-response__evidence p {
    margin: 0;
    color: rgba(255, 247, 232, 0.7);
    line-height: 1.55;
}

.pg-intel-final {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(60px, 8vw, 110px) 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 106, 0, 0.14), transparent 34%),
        linear-gradient(145deg, #071d2a 0%, #102a3d 100%);
}

.pg-intel-final__panel {
    position: relative;
    overflow: hidden;
    max-width: 960px;
    padding: clamp(28px, 5vw, 56px);
    border-color: rgba(255, 247, 232, 0.12);
    background:
        linear-gradient(145deg, rgba(255, 247, 232, 0.1), rgba(255, 247, 232, 0.035)),
        rgba(6, 22, 34, 0.72);
    box-shadow: 0 28px 76px rgba(0, 0, 0, 0.24);
}

.pg-site--intelligence-demo .esp-ai-widget {
    display: none;
}

@keyframes pgIntelFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes pgIntelDraw {
    0% { stroke-dashoffset: 720; opacity: 0.4; }
    45%, 70% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: -720; opacity: 0.45; }
}

/* ─── Signup page — two-column shell ─────────────────────── */
.pg-signup-shell {
    display: grid;
    grid-template-columns: 1fr minmax(0, 520px);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
    padding: clamp(24px, 4vw, 44px) 0 clamp(32px, 5vw, 60px);
}

/* Left panel: dark navy, brand-anchored */
.pg-signup-panel {
    border-radius: var(--pg-radius-lg);
    background:
        radial-gradient(ellipse 60% 40% at 20% 0%, rgba(198, 246, 0, 0.08) 0%, transparent 55%),
        linear-gradient(168deg, #0a2234 0%, var(--pg-dark-navy) 70%);
    border: 1px solid rgba(255, 247, 232, 0.08);
    box-shadow: 0 24px 56px rgba(7, 29, 42, 0.3);
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.pg-signup-panel__inner {
    padding: clamp(24px, 3vw, 36px);
}

.pg-signup-panel .pg-eyebrow {
    color: var(--pg-lime);
    margin-bottom: 14px;
}

.pg-signup-panel__heading {
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(1.5rem, 3.2vw, 2.15rem);
    font-weight: 800;
    line-height: 1.15;
    color: #FFF7E8;
    margin: 0 0 16px;
    letter-spacing: -0.025em;
}

.pg-signup-panel__lime {
    color: var(--pg-lime);
}

.pg-signup-panel__sub {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 247, 232, 0.65);
    margin: 0 0 22px;
}

.pg-signup-panel .pg-editorial-image {
    margin-bottom: 22px;
    border-radius: 18px;
}

.pg-signup-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 10px;
}

.pg-signup-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 247, 232, 0.78);
}

.pg-signup-step__num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(198, 246, 0, 0.15);
    border: 1px solid rgba(198, 246, 0, 0.3);
    color: var(--pg-lime);
    font-size: 0.68rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    margin-top: 1px;
}

.pg-signup-trust {
    display: grid;
    gap: 10px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 247, 232, 0.08);
    margin-bottom: 20px;
}

.pg-signup-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 247, 232, 0.5);
}

.pg-signup-trust__icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--pg-lime);
    opacity: 0.7;
    margin-top: 1px;
}

.pg-signup-trust__icon svg {
    width: 100%;
    height: 100%;
}

.pg-signup-panel__back-cta {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 247, 232, 0.35);
}

.pg-signup-panel__back-cta a {
    color: rgba(255, 247, 232, 0.65);
    font-weight: 600;
    text-decoration: none;
}

.pg-signup-panel__back-cta a:hover {
    color: var(--pg-lime);
}

/* Right: form card */
.pg-signup-form-col {
    min-width: 0;
}

.pg-signup-form-card {
    background: var(--pg-surface-solid);
    border: 1px solid var(--pg-line);
    border-radius: var(--pg-radius-lg);
    padding: clamp(24px, 3.5vw, 36px);
    box-shadow: var(--pg-shadow-soft);
}

.pg-signup-form-card__heading {
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(1.3rem, 2.4vw, 1.65rem);
    font-weight: 700;
    color: var(--pg-espresso);
    margin: 0 0 6px;
}

.pg-signup-form-card__sub {
    font-size: 0.9rem;
    color: var(--pg-muted);
    margin: 0 0 20px;
    line-height: 1.55;
}

.pg-signup-errors {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #fecaca;
    background: #fff1f1;
    color: #992d2d;
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.pg-signup-errors ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 4px;
}

.pg-signup-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 20px;
}

.pg-signup-fieldset__legend {
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pg-orange);
    margin-bottom: 12px;
    display: block;
    width: 100%;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--pg-line);
}

.pg-signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pg-signup-field {
    display: grid;
    gap: 5px;
}

.pg-signup-field--full {
    grid-column: 1 / -1;
}

.pg-signup-field__optional {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--pg-muted);
    font-style: italic;
}

.pg-signup-checkboxes {
    display: grid;
    gap: 8px;
}

.pg-signup-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--pg-roast);
    cursor: pointer;
}

.pg-signup-check input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--pg-dark-navy);
}

.pg-signup-submit-row {
    margin-top: 20px;
    margin-bottom: 0;
}

.pg-signup-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 1rem;
}

.pg-signup-terms {
    margin: 14px 0 0;
    font-size: 0.8rem;
    color: var(--pg-muted);
    line-height: 1.55;
}

.pg-signup-terms a {
    color: var(--pg-dark-navy);
    font-weight: 600;
}

.pg-signup-login-cue {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: var(--pg-muted);
    text-align: center;
}

.pg-signup-login-cue a {
    color: var(--pg-dark-navy);
    font-weight: 700;
}

/* ─── Auth verification card ──────────────────────────────── */
.pg-auth-shell {
    display: flex;
    justify-content: center;
    padding: clamp(32px, 5vw, 64px) 0;
}

.pg-auth-card {
    width: 100%;
    max-width: 480px;
    background: var(--pg-surface-solid);
    border: 1px solid var(--pg-line);
    border-radius: var(--pg-radius-lg);
    padding: clamp(24px, 3.5vw, 36px);
    box-shadow: var(--pg-shadow-soft);
}

.pg-auth-card__header {
    margin-bottom: 20px;
}

.pg-auth-card__heading {
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: var(--pg-espresso);
    margin: 0 0 8px;
    line-height: 1.2;
}

.pg-auth-card__sub {
    font-size: 0.9rem;
    color: var(--pg-muted);
    margin: 0;
    line-height: 1.6;
}

.pg-auth-errors {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #fecaca;
    background: #fff1f1;
    color: #992d2d;
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.pg-auth-errors ul {
    margin: 0;
    padding-left: 18px;
}

.pg-auth-code-input {
    text-align: center;
    letter-spacing: 0.3em;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 14px;
}

.pg-auth-next-steps {
    margin: 0 0 20px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(7, 29, 42, 0.04);
    border: 1px solid rgba(7, 29, 42, 0.08);
}

.pg-auth-next-steps__heading {
    margin: 0 0 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pg-dark-navy);
}

.pg-auth-next-steps__list {
    margin: 0 0 12px;
    padding-left: 1.25em;
    display: grid;
    gap: 7px;
}

.pg-auth-next-steps__list li {
    font-size: 0.88rem;
    color: var(--pg-roast);
    line-height: 1.5;
}

.pg-auth-next-steps__note {
    margin: 0;
    font-size: 0.78rem;
    color: var(--pg-muted);
    font-style: italic;
    line-height: 1.55;
}

/* ─── Responsive: signup shell ───────────────────────────── */
@media (max-width: 900px) {
    .pg-signup-shell {
        grid-template-columns: 1fr;
    }

    .pg-signup-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .pg-signup-grid {
        grid-template-columns: 1fr;
    }

    .pg-editorial-image--panorama,
    .pg-editorial-image--signup {
        --pg-image-ratio: 4 / 3;
    }

    .pg-editorial-image__caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .pg-editorial-image__caption strong {
        font-size: 0.9rem;
    }
}

/* ─── Menu layer visual (machine behind the machine) ──────── */
.pg-menu-layer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pg-menu-layer__panel {
    border-radius: var(--pg-radius-md);
    background: #fff;
    border: 1px solid rgba(30, 24, 20, 0.08);
    box-shadow:
        0 16px 40px rgba(30, 24, 20, 0.09),
        0 2px 6px rgba(30, 24, 20, 0.04);
    overflow: hidden;
}

.pg-menu-layer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 9px;
    background: var(--pg-cream);
    border-bottom: 1px solid rgba(30, 24, 20, 0.07);
    gap: 8px;
}

.pg-menu-layer__source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--pg-muted);
    text-transform: uppercase;
}

.pg-menu-layer__source-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3eb775;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(62, 183, 117, 0.2);
}

.pg-menu-layer__badge {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pg-dark-navy);
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--pg-lime);
    white-space: nowrap;
}

.pg-menu-layer__rows {
    padding: 6px 0;
}

.pg-menu-layer__divider {
    height: 1px;
    background: rgba(30, 24, 20, 0.06);
    margin: 4px 14px;
}

.pg-menu-layer__row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    transition: background 0.12s ease;
}

.pg-menu-layer__row:hover {
    background: rgba(198, 246, 0, 0.04);
}

.pg-menu-layer__row--muted {
    opacity: 0.62;
}

.pg-menu-layer__row--modifier {
    padding-left: 28px;
}

.pg-menu-layer__row-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pg-orange);
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.15);
}

.pg-menu-layer__row-dot--off {
    background: rgba(30, 24, 20, 0.2);
    box-shadow: none;
}

.pg-menu-layer__row-dot--modifier {
    width: 6px;
    height: 6px;
    background: var(--pg-teal);
    box-shadow: 0 0 0 2px rgba(0, 191, 166, 0.15);
}

.pg-menu-layer__row-name {
    flex: 1;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--pg-espresso);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.pg-menu-layer__row--muted .pg-menu-layer__row-name {
    color: var(--pg-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(94, 78, 64, 0.35);
}

.pg-menu-layer__row-count {
    font-size: 0.72rem;
    color: var(--pg-muted);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.pg-menu-layer__row-tag {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
    flex-shrink: 0;
    white-space: nowrap;
}

.pg-menu-layer__row-tag--seasonal {
    background: var(--pg-lime-soft);
    color: #3a6b00;
    border: 1px solid rgba(124, 179, 66, 0.3);
}

.pg-menu-layer__row-tag--featured {
    background: var(--pg-orange-soft);
    color: #8a3000;
    border: 1px solid rgba(255, 106, 0, 0.25);
}

.pg-menu-layer__row-tag--soldout {
    background: rgba(94, 78, 64, 0.08);
    color: var(--pg-muted);
    border: 1px solid rgba(94, 78, 64, 0.15);
}

.pg-menu-layer__row-toggle {
    width: 30px;
    height: 17px;
    border-radius: 999px;
    flex-shrink: 0;
    position: relative;
    transition: background 0.15s ease;
}

.pg-menu-layer__row-toggle::after {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    top: 2px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: left 0.15s ease;
}

.pg-menu-layer__row-toggle--on {
    background: var(--pg-lime);
}

.pg-menu-layer__row-toggle--on::after {
    left: 15px;
}

.pg-menu-layer__row-toggle--off {
    background: rgba(30, 24, 20, 0.15);
}

.pg-menu-layer__row-toggle--off::after {
    left: 2px;
}

.pg-menu-layer__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px 9px;
    background: rgba(7, 29, 42, 0.03);
    border-top: 1px solid rgba(30, 24, 20, 0.07);
    gap: 8px;
}

.pg-menu-layer__footer-note {
    font-size: 0.66rem;
    color: var(--pg-muted);
    line-height: 1.4;
}

.pg-menu-layer__footer-count {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--pg-dark-navy);
    white-space: nowrap;
    flex-shrink: 0;
}

.pg-menu-layer__legend {
    display: flex;
    gap: 16px;
    padding: 0 4px;
}

.pg-menu-layer__legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--pg-muted);
}

.pg-menu-layer__legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(30, 24, 20, 0.2);
    flex-shrink: 0;
}

.pg-menu-layer__legend-dot--lime {
    background: var(--pg-lime);
}

/* ─── About: people / team grid ──────────────────────────── */
.pg-about-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 24px 0 20px;
}

.pg-about-person {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 18px 18px;
    border-radius: var(--pg-radius-md);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--pg-line);
}

.pg-about-person__monogram {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pg-lime);
    color: var(--pg-dark-navy);
    font-size: 1.18rem;
    font-weight: 800;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.pg-about-person__monogram--muted {
    background: rgba(63, 36, 18, 0.1);
    color: var(--pg-muted);
}

.pg-about-person__monogram--soft-blue {
    background: rgba(55, 94, 201, 0.16);
    color: #24459e;
}

.pg-about-person__monogram--warm {
    background: rgba(255, 106, 0, 0.16);
    color: #b14a00;
}

.pg-about-person__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pg-about-person__name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pg-espresso);
    font-family: "Sora", "Inter", system-ui, sans-serif;
    margin-bottom: 2px;
}

.pg-about-person__role {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--pg-muted);
    margin-bottom: 8px;
}

.pg-about-person__bio {
    margin: 0;
    font-size: 0.88rem;
    color: var(--pg-muted);
    line-height: 1.58;
}

.pg-about-team-note {
    font-style: italic;
    opacity: 0.85;
}

/* ─── About: moments that matter (espresso dark section) ──── */
.pg-band--espresso {
    background:
        radial-gradient(circle at 14% 45%, rgba(255, 106, 0, 0.13) 0%, transparent 46%),
        radial-gradient(circle at 88% 28%, rgba(198, 246, 0, 0.05) 0%, transparent 42%),
        linear-gradient(162deg, #2a1508 0%, #0e0904 100%);
}

.pg-about-moments__layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 52px);
    align-items: center;
}

.pg-about-moments__inner {
    max-width: 580px;
    margin: 0;
    text-align: left;
    padding: 8px 0;
}

.pg-about-moments__label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pg-orange);
    margin: 0 0 22px;
}

.pg-about-moments__quote {
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(1.2rem, 2.6vw, 1.72rem);
    font-weight: 700;
    line-height: 1.4;
    color: #FFF7E8;
    margin: 0 0 26px;
    letter-spacing: -0.01em;
}

.pg-about-moments__copy {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 247, 232, 0.6);
    margin: 0 0 18px;
    max-width: none;
}

.pg-about-moments__coda {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 247, 232, 0.36);
    font-style: italic;
    margin: 0;
}

/* ─── Hero: lime text accent ─────────────────────────────── */
.pg-hero-lime {
    color: var(--pg-lime);
}

/* ─── Hero: two-path CTA row ────────────────────────────── */
.pg-hero-two-paths {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 14px;
    align-items: stretch;
    margin-bottom: 14px;
}

.pg-hero-cta-rail {
    grid-column: 1 / -1;
    display: grid;
    justify-content: center;
    margin-top: 0;
    min-width: 0;
}

.pg-hero-cta-rail .pg-hero-two-paths {
    justify-content: center;
    margin-bottom: 0;
    width: min(100%, 480px);
}

.pg-hero-path {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.pg-hero-cta-rail .pg-hero-path {
    align-items: center;
    text-align: center;
}

.pg-hero-cta-rail .pg-btn {
    width: 100%;
}

.pg-hero-path__label {
    font-size: 0.66rem;
    color: rgba(255, 247, 232, 0.42);
    line-height: 1.35;
    max-width: 20ch;
}

/* ─── Two-path card grid (homepage + pricing) ──────────── */
.pg-two-path-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pg-grid-gap);
    margin-top: 22px;
    align-items: stretch;
}

.pg-path-card {
    height: 100%;
    padding: var(--pg-card-padding);
    border-radius: var(--pg-radius-md);
    border: 1px solid var(--pg-line);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pg-path-card--primary {
    background: linear-gradient(145deg, #fff 0%, var(--pg-cream) 100%);
    border-color: rgba(7, 29, 42, 0.14);
    box-shadow: 0 8px 24px rgba(7, 29, 42, 0.08);
}

.pg-path-card--secondary {
    background: rgba(255, 255, 255, 0.7);
}

.pg-path-card__eyebrow {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pg-orange);
}

.pg-path-card__title {
    display: block;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pg-espresso);
    line-height: 1.25;
}

.pg-path-card__copy {
    margin: 0;
    font-size: 0.92rem;
    color: var(--pg-muted);
    line-height: 1.6;
}

.pg-path-card__note {
    margin: 0;
    font-size: 0.78rem;
    color: var(--pg-muted);
    opacity: 0.7;
    font-style: italic;
    line-height: 1.5;
}

.pg-path-steps {
    margin: 4px 0 8px;
    padding-left: 1.3em;
    display: grid;
    gap: 6px;
}

.pg-path-steps li {
    font-size: 0.88rem;
    color: var(--pg-roast);
    line-height: 1.45;
}

.pg-path-steps--dots {
    list-style: disc;
}

.pg-path-card .pg-btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ─── Hero: icon value row ───────────────────────────────── */
.pg-hero-proof-rail {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
    gap: clamp(18px, 2.6vw, 30px);
    align-items: center;
    margin-top: 0;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 247, 232, 0.1);
    background:
        linear-gradient(90deg, rgba(255, 247, 232, 0.055), rgba(255, 247, 232, 0.025)),
        radial-gradient(circle at 8% 50%, rgba(198, 246, 0, 0.08), transparent 34%);
    box-shadow: inset 0 1px 0 rgba(255, 247, 232, 0.05);
    min-width: 0;
}

.pg-hero-icon-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 6px;
    margin: 16px 0 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 247, 232, 0.08);
}

.pg-hero-proof-rail .pg-hero-icon-row {
    margin: 0;
    padding-top: 0;
    border-top: 0;
    gap: clamp(12px, 1.9vw, 20px);
}

.pg-hero-icon-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.pg-hero-proof-rail .pg-hero-icon-col {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 1px;
    align-items: start;
}

.pg-hero-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(198, 246, 0, 0.1);
    margin-bottom: 5px;
    flex-shrink: 0;
}

.pg-hero-proof-rail .pg-hero-icon-wrap {
    grid-row: 1 / span 2;
    margin-bottom: 0;
}

.pg-hero-icon-wrap svg {
    width: 15px;
    height: 15px;
    stroke: var(--pg-lime);
}

.pg-hero-icon-col strong {
    font-size: 0.7rem;
    font-weight: 800;
    color: #FFF7E8;
    line-height: 1.2;
}

.pg-hero-icon-col > span {
    font-size: 0.64rem;
    color: rgba(255, 247, 232, 0.44);
    line-height: 1.35;
}

/* ─── Hero: trusted logo row ─────────────────────────────── */
.pg-hero-logo-row {
    margin-top: 14px;
    min-width: 0;
}

.pg-hero-proof-rail .pg-hero-logo-row {
    margin-top: 0;
    padding-left: clamp(18px, 2.5vw, 30px);
    border-left: 1px solid rgba(255, 247, 232, 0.08);
}

.pg-hero-logo-row__label {
    margin: 0 0 7px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 247, 232, 0.28);
}

.pg-hero-logo-row__logos {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    min-width: 0;
}

.pg-hero-proof-rail .pg-hero-logo-row__logos {
    justify-content: space-between;
    gap: clamp(12px, 1.8vw, 18px);
}

.pg-hero-logo-row__logos img {
    height: 18px;
    width: auto;
    max-width: 74px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.38;
}

.pg-hero-proof-rail .pg-hero-logo-row__logos img {
    height: 19px;
    max-width: 84px;
}

.pg-hero-logo-row__logos > span {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 247, 232, 0.34);
    white-space: nowrap;
}

.pg-hero-logo-row__more {
    color: rgba(255, 247, 232, 0.22) !important;
}

/* ─── Hero: right-side composition (phone + cards + editorial) */
.pg-hero-flagship__visual {
    display: grid;
    grid-template-columns: 1fr 234px;
    grid-template-rows: 1fr auto;
    gap: 12px;
    min-width: 0;
}

/* ─── Hero atmospheric panel (art direction: coffee shop scene) ─── */
.pg-hero-atmo-panel {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, 1fr) auto;
    gap: 12px;
}

.pg-hero-atmo-photo {
    position: relative;
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 22px;
    overflow: hidden;
    min-height: clamp(300px, 32vw, 430px);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 196, 118, 0.18), transparent 38%),
        linear-gradient(145deg, #102a3d 0%, var(--pg-dark-navy) 100%);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 247, 232, 0.08),
        inset 0 1px 0 rgba(255, 247, 232, 0.08);
}

.pg-hero-atmo-photo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--pg-image-position, center 35%);
    display: block;
    min-height: clamp(300px, 32vw, 430px);
    filter: saturate(0.9) contrast(1.02) brightness(0.78);
}

/* Dark veil: bottom-up gradient for text legibility + system layers */
.pg-hero-atmo-photo__veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 20%, rgba(255, 196, 118, 0.18), transparent 36%),
        radial-gradient(circle at 78% 16%, rgba(198, 246, 0, 0.08), transparent 28%),
        linear-gradient(to bottom,
            rgba(7, 29, 42, 0.24) 0%,
            rgba(7, 29, 42, 0.04) 30%,
            rgba(7, 29, 42, 0.16) 58%,
            rgba(7, 29, 42, 0.84) 100%
        ),
        linear-gradient(to right,
            rgba(7, 29, 42, 0.32) 0%,
            rgba(40, 27, 18, 0.1) 34%,
            rgba(7, 29, 42, 0.04) 58%,
            rgba(7, 29, 42, 0.42) 100%
        );
    pointer-events: none;
}

/* Geometric SVG overlay — system feel, coffee atmosphere */
.pg-hero-atmo-photo__geo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pg-atmo-geo-line {
    fill: none;
    stroke: rgba(198, 246, 0, 0.26);
    stroke-width: 1.2;
    stroke-dasharray: 5 5;
}

.pg-atmo-geo-line--faint {
    stroke: rgba(0, 191, 166, 0.16);
    stroke-width: 1;
    stroke-dasharray: 3 6;
}

.pg-atmo-geo-connector {
    stroke: rgba(198, 246, 0, 0.18);
    stroke-width: 0.8;
    stroke-dasharray: 3 4;
}

.pg-atmo-geo-node {
    fill: rgba(198, 246, 0, 0.7);
}

.pg-atmo-geo-node--teal {
    fill: rgba(0, 191, 166, 0.7);
}

.pg-atmo-geo-ring {
    fill: none;
    stroke: rgba(198, 246, 0, 0.22);
    stroke-width: 1;
}

.pg-atmo-geo-ring--teal {
    stroke: rgba(0, 191, 166, 0.22);
}

/* Floating operational data markers */
.pg-hero-atmo-markers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pg-hero-atmo-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    background: rgba(7, 29, 42, 0.76);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 247, 232, 0.14);
    border-radius: 11px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.pg-hero-atmo-marker__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pg-hero-atmo-marker__dot--lime {
    background: var(--pg-lime);
    box-shadow: 0 0 0 2px rgba(198, 246, 0, 0.2);
}

.pg-hero-atmo-marker__dot--teal {
    background: var(--pg-teal);
    box-shadow: 0 0 0 2px rgba(0, 191, 166, 0.2);
}

.pg-hero-atmo-marker__body {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.pg-hero-atmo-marker__body strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: #FFF7E8;
    line-height: 1;
}

.pg-hero-atmo-marker__body span {
    font-size: 0.6rem;
    color: rgba(255, 247, 232, 0.48);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pg-hero-atmo-marker--pill {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 247, 232, 0.82);
    padding: 6px 11px;
}

.pg-hero-atmo-marker--square {
    overflow: visible;
}

.pg-hero-atmo-marker--square::after {
    content: "";
    position: absolute;
    left: 8px;
    bottom: -24px;
    width: 92px;
    height: 1px;
    transform: rotate(154deg);
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(198, 246, 0, 0.5), rgba(198, 246, 0, 0));
    box-shadow: 0 0 10px rgba(198, 246, 0, 0.16);
}

.pg-hero-atmo-marker--square::before {
    content: "";
    position: absolute;
    left: -76px;
    bottom: -42px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(198, 246, 0, 0.72);
    box-shadow: 0 0 0 6px rgba(198, 246, 0, 0.08);
}

/* Photo credit (visually hidden but present for attribution) */
.pg-hero-atmo-photo::after {
    content: attr(data-credit);
    position: absolute;
    bottom: 6px;
    right: 10px;
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.18);
    pointer-events: none;
    white-space: nowrap;
}

.pg-hero-phone-stage {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.pg-hero-phone-device {
    width: min(200px, 88%);
    border-radius: 32px;
    background: #0c0c0e;
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.65),
        0 0 0 1.5px rgba(255, 255, 255, 0.1),
        0 0 0 4px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.pg-hero-phone-screen {
    width: 100%;
    display: block;
}

.pg-hero-cards-stack {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: stretch;
}

/* ─── Hero: cards in right stack ─────────────────────────── */
.pg-hero-card {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 247, 232, 0.13);
    background: rgba(6, 22, 34, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

/* Flow card: compact, just kicker + flow row */
.pg-hero-card--flow {
    flex: 0 0 auto;
}

/* Metrics card: takes remaining height */
.pg-hero-card--metrics {
    flex: 1;
    min-height: 0;
}

.pg-hero-card__kicker {
    margin: 0 0 6px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 247, 232, 0.42);
}

/* Flow nodes — must never wrap */
.pg-hero-flow-row {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.pg-hero-flow-row > span {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 247, 232, 0.92);
    white-space: nowrap;
}

.pg-hero-flow-arr {
    font-size: 0.7rem;
    color: var(--pg-lime) !important;
    font-weight: 900;
    flex-shrink: 0;
}

/* Metrics list */
.pg-hero-metrics {
    margin: 5px 0 0;
    padding: 0;
    display: grid;
    gap: 6px;
    flex: 1;
}

.pg-hero-metrics > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    line-height: 1.2;
    min-width: 0;
}

.pg-hero-metrics dt {
    color: rgba(255, 247, 232, 0.55);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.pg-hero-metrics dd {
    margin: 0;
    color: #FFF7E8;
    font-weight: 700;
    flex-shrink: 0;
    text-align: right;
}

.pg-hero-metrics__lime {
    color: var(--pg-lime) !important;
}

/* Push/reach stat row */
.pg-hero-metrics__push {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 8px;
    padding-top: 7px;
    border-top: 1px solid rgba(255, 247, 232, 0.08);
}

.pg-hero-metrics__push-num {
    font-size: 1rem;
    font-weight: 800;
    color: #FFF7E8;
    line-height: 1;
}

.pg-hero-metrics__push-label {
    font-size: 0.65rem;
    color: rgba(255, 247, 232, 0.42);
    line-height: 1.3;
    white-space: nowrap;
}

/* ─── Hero: editorial card (Keys To The Shop) ────────────── */
.pg-hero-editorial-card {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 86px;
    padding: 11px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 247, 232, 0.11);
    background: rgba(6, 22, 34, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    transition: border-color 0.18s ease, background 0.18s ease;
    flex-shrink: 0;
}

.pg-hero-editorial-card:hover,
.pg-hero-editorial-card:focus-visible {
    border-color: rgba(198, 246, 0, 0.28);
    background: rgba(6, 22, 34, 0.88);
    outline: none;
}

.pg-hero-editorial-card__thumb {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 9px;
    background: linear-gradient(145deg, #1a2740, #0a1220);
    border: 1px solid rgba(198, 246, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-hero-editorial-card__label {
    font-size: 0.4rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--pg-lime);
    text-align: center;
    line-height: 1.55;
}

.pg-hero-editorial-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pg-hero-editorial-card__kicker {
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pg-lime);
}

.pg-hero-editorial-card__body strong {
    display: block;
    font-size: 0.76rem;
    color: #FFF7E8;
    line-height: 1.3;
    font-weight: 600;
}

.pg-hero-editorial-card__pod {
    font-size: 0.62rem;
    color: rgba(255, 247, 232, 0.36);
}

.pg-hero-editorial-card__cta {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--pg-lime);
    margin-top: 2px;
}

/* ─── Contact page ───────────────────────────────────────── */
.pg-contact-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.pg-contact-channels {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.pg-contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--pg-radius-md);
    border: 1px solid var(--pg-line);
    background: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pg-contact-channel:hover,
.pg-contact-channel:focus-visible {
    border-color: rgba(7, 29, 42, 0.3);
    box-shadow: 0 4px 12px rgba(7, 29, 42, 0.07);
    outline: none;
}

.pg-contact-channel__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--pg-lime);
    color: var(--pg-dark-navy);
}

.pg-contact-channel__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--pg-dark-navy);
}

.pg-contact-channel div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pg-contact-channel strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pg-espresso);
    display: block;
}

.pg-contact-channel span {
    font-size: 0.82rem;
    color: var(--pg-muted);
}

.pg-contact-actions {
    display: grid;
    gap: 16px;
    align-content: start;
}

.pg-contact-action-card {
    padding: 22px 20px;
    border-radius: var(--pg-radius-md);
    border: 1px solid var(--pg-line);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pg-contact-action-card--primary {
    background: linear-gradient(145deg, #fff 0%, var(--pg-cream) 100%);
    box-shadow: 0 8px 24px rgba(7, 29, 42, 0.08);
}

.pg-contact-action-card--secondary {
    background: rgba(255, 255, 255, 0.7);
}

.pg-contact-action-card__eyebrow {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pg-orange);
    margin: 0;
}

.pg-contact-action-card__title {
    display: block;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pg-espresso);
    line-height: 1.25;
}

.pg-contact-action-card__copy {
    margin: 0;
    font-size: 0.88rem;
    color: var(--pg-muted);
    line-height: 1.55;
    flex: 1;
}

/* ─── Book a meeting page ─────────────────────────────────── */
.pg-pg-meeting-shell {
    display: grid;
    grid-template-columns: 1fr minmax(0, 400px);
    gap: 28px;
    align-items: start;
}

.pg-meeting-steps {
    display: grid;
    gap: 16px;
    margin: 20px 0 0;
}

.pg-meeting-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.pg-meeting-step__num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pg-lime);
    color: var(--pg-dark-navy);
    font-size: 0.76rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    margin-top: 2px;
}

.pg-meeting-step div {
    flex: 1;
}

.pg-meeting-step strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pg-espresso);
    margin-bottom: 4px;
}

.pg-meeting-step p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--pg-muted);
    line-height: 1.55;
}

.pg-meeting-form-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pg-meeting-also-consider {
    padding: 20px;
    border-radius: var(--pg-radius-md);
    border: 1px solid rgba(198, 246, 0, 0.2);
    background: rgba(198, 246, 0, 0.04);
}

/* Responsive: contact + meeting shells */
@media (max-width: 900px) {
    .pg-contact-shell,
    .pg-pg-meeting-shell,
    .pg-page-hero--with-media,
    .pg-square-trust-strip__inner,
    .pg-editorial-split--image,
    .pg-form-editorial-intro,
    .pg-about-moments__layout {
        grid-template-columns: 1fr;
    }

    .pg-square-trust-strip__inner {
        align-items: stretch;
    }

    .pg-editorial-split--reverse > :first-child {
        order: 0;
    }

    .pg-page-hero__media {
        max-width: 520px;
    }

    .pg-page-hero--about {
        gap: 22px;
        padding: clamp(24px, 7vw, 34px);
    }

    .pg-page-hero--about h1 {
        max-width: 14ch;
        font-size: clamp(2.05rem, 10vw, 3rem);
        line-height: 1.04;
        margin-bottom: 14px;
    }

    .pg-page-hero--about .pg-copy-lead {
        line-height: 1.55;
    }

    .pg-page-hero--about .pg-launch-path {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 18px;
    }

    .pg-page-hero--about .pg-launch-step {
        min-height: 0;
        padding: 13px;
    }

    .pg-page-hero--about .pg-editorial-image {
        max-width: min(100%, 440px);
        margin-right: auto;
    }

    .pg-resource-editorial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .pg-page-hero--about .pg-launch-path {
        grid-template-columns: 1fr;
    }

    .pg-page-hero--about .pg-editorial-image--about-hero {
        --pg-image-ratio: 4 / 3;
    }

    .pg-editorial-image--service-flow {
        --pg-image-ratio: 4 / 3;
    }
}

/* ─── Keyframes ──────────────────────────────────────────── */
@keyframes pg-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes pg-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pg-flow-dash {
    to { stroke-dashoffset: -20; }
}

/* ─── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .pg-marquee-track { animation: none; }
    .pg-signage-track { animation: none; }
    .pg-signage-shell__glow { animation: none; }
    .pg-device-frame--floating { animation: none; }
    .pg-flow-path { animation: none; }
    .pg-hero-order-ribbon__path { animation: none; }
    .pg-intel-orbit span,
    .pg-intel-heartline path {
        animation: none;
    }
    .pg-enhanced-motion .pg-reveal:not(.is-visible) {
        opacity: 1;
        transform: none;
    }
    .pg-card:hover { transform: none; }
    .pg-btn,
    .pg-login-link,
    .pg-nav a { transition: none; }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
    :root {
        --pg-container-gutter: clamp(24px, 6vw, 40px);
        --pg-section-y: clamp(34px, 6vw, 52px);
    }

    .pg-hero-flagship__grid,
    .pg-intel-hero__grid,
    .pg-intel-health-layout,
    .pg-intel-customer-layout,
    .pg-intel-menu-layout,
    .pg-intel-flow-layout,
    .pg-intel-ask,
    .pg-hero-atf__grid,
    .pg-hero,
    .pg-split,
    .pg-grid-3,
    .pg-grid-2,
    .pg-pricing,
    .pg-form-grid,
    .pg-proof-testimonials__grid,
    .pg-proof-product__grid,
    .pg-proof-square__visuals,
    .pg-journey-split,
    .pg-journey-compare {
        grid-template-columns: 1fr;
    }

    .pg-hero-flagship__grid,
    .pg-intel-hero__grid,
    .pg-journey-split {
        gap: clamp(24px, 5vw, 36px);
    }

    .pg-intel-hero {
        border-radius: 0 0 34px 34px;
    }

    .pg-intel-hero h1 {
        font-size: 3rem;
        max-width: 14ch;
    }

    .pg-intel-section__header h2,
    .pg-intel-final h2,
    .pg-intel-ask__intro h2 {
        font-size: 2.2rem;
    }

    .pg-intel-score-ring strong {
        font-size: 3.4rem;
    }

    .pg-intel-customer-signals strong,
    .pg-intel-menu-risk > strong {
        font-size: 2.7rem;
    }

    .pg-intel-command {
        min-height: 500px;
    }

    .pg-intel-hero__stats,
    .pg-intel-insight-grid,
    .pg-intel-score-grid,
    .pg-intel-customer-signals,
    .pg-intel-menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pg-intel-response {
        position: static;
    }

    .pg-proof-strip__track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .pg-proof-portfolio__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pg-journey-split--reverse .pg-journey-copy,
    .pg-journey-split--reverse .pg-journey-visual {
        order: unset;
    }

    .pg-journey-phones {
        grid-template-columns: repeat(3, minmax(0, 160px));
        gap: clamp(12px, 3vw, 18px);
        width: min(100%, 640px);
    }

    .pg-journey-phones img {
        max-width: 190px;
        height: clamp(260px, 44vw, 360px);
    }

    /* ── Atmospheric panel: simplify on tablet/mobile ─────────── */
    .pg-hero-atmo-panel {
        gap: 10px;
    }

    .pg-hero-atmo-photo {
        min-height: 240px;
    }

    .pg-hero-atmo-photo__img {
        min-height: 240px;
    }

    /* Hide geo overlays on small screens — too small to read, just noise */
    .pg-hero-atmo-photo__geo {
        display: none;
    }

    /* Show only 1–2 markers on tablet, hide on mobile */
    .pg-hero-atmo-marker:nth-child(3) {
        display: none;
    }

    /* ── Mobile nav: hamburger + drawer ──────────────────────── */
    .pg-header-inner {
        align-items: center;
        padding: 12px 0;
    }

    /* Hide desktop nav and utility bar on mobile */
    .pg-header-right {
        display: none;
    }

    /* Show hamburger controls */
    .pg-mobile-controls {
        display: flex;
    }

    /* Show and enable the mobile drawer */
    .pg-mobile-nav,
    .pg-mobile-nav-backdrop {
        display: block;
    }

    .pg-geo-panel { min-height: 280px; }

    .pg-hero-atf::after { display: none; }

    .pg-hero-answers,
    .pg-hero-trust {
        grid-template-columns: 1fr;
    }

    .pg-hero-flagship h1 {
        max-width: none;
    }

    .pg-hero-flagship__story {
        order: 1;
    }

    .pg-hero-proof-rail {
        order: 2;
        grid-column: 1;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 0;
        padding: 14px;
        border: 1px solid rgba(255, 247, 232, 0.1);
        border-radius: 18px;
        background:
            linear-gradient(90deg, rgba(255, 247, 232, 0.055), rgba(255, 247, 232, 0.025)),
            radial-gradient(circle at 8% 50%, rgba(198, 246, 0, 0.08), transparent 34%);
        box-shadow: inset 0 1px 0 rgba(255, 247, 232, 0.05);
    }

    .pg-hero-proof-rail .pg-hero-icon-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 0;
        padding-top: 0;
        border-top: 0;
        gap: 12px;
    }

    .pg-hero-proof-rail .pg-hero-icon-col {
        display: grid;
        grid-template-columns: 30px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 10px;
        row-gap: 1px;
    }

    .pg-hero-proof-rail .pg-hero-icon-wrap {
        grid-row: 1 / span 2;
        margin-bottom: 0;
    }

    .pg-hero-proof-rail .pg-hero-logo-row {
        margin-top: 0;
        padding-top: 14px;
        padding-left: 0;
        border-top: 1px solid rgba(255, 247, 232, 0.08);
        border-left: 0;
    }

    .pg-hero-proof-rail .pg-hero-logo-row__logos {
        justify-content: flex-start;
        gap: 14px;
    }

    .pg-hero-proof-rail .pg-hero-logo-row__logos img {
        height: 18px;
        max-width: 74px;
    }

    .pg-hero-cta-rail {
        order: 3;
        grid-column: 1;
        justify-content: stretch;
        margin-top: 0;
    }

    .pg-hero-cta-rail .pg-hero-two-paths {
        justify-content: stretch;
        width: 100%;
    }

    .pg-hero-cta-rail .pg-hero-path {
        align-items: flex-start;
        text-align: left;
    }

    .pg-signage-word {
        padding: 0 18px;
        letter-spacing: 0.14em;
    }

    .pg-hero-float-card {
        position: static;
        width: 100%;
    }

    .pg-hero-float-card--metric {
        right: auto;
        left: 8px;
        bottom: 10px;
    }

    .pg-hero-flagship__visual {
        order: 4;
        grid-template-columns: 1fr;
        grid-template-rows: minmax(240px, auto) auto;
    }

    .pg-hero-phone-stage {
        grid-column: 1;
        grid-row: 1;
        min-height: 260px;
    }

    .pg-hero-cards-stack {
        grid-column: 1;
        grid-row: 2;
        flex-direction: row;
        align-items: stretch;
    }

    .pg-hero-card--flow,
    .pg-hero-card--metrics {
        flex: 1;
    }

    .pg-hero-editorial-card {
        grid-column: 1;
        grid-row: 3;
    }

    .pg-hero-icon-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pg-about-team {
        grid-template-columns: 1fr;
    }

    .pg-editorial-split {
        grid-template-columns: 1fr;
    }

    .pg-two-path-grid {
        grid-template-columns: 1fr;
    }

    .pg-hero-two-paths {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .pg-editorial-ktts-tile {
        max-width: 360px;
    }
}

@media (max-width: 640px) {
    :root {
        --pg-container-gutter: 24px;
        --pg-section-y: 32px;
        --pg-grid-gap: 14px;
        --pg-card-padding: 18px;
    }

    .pg-wrap { width: min(1180px, calc(100% - 24px)); }

    .pg-cta-row .pg-btn,
    .pg-login-link { width: 100%; }

    .pg-btn,
    .pg-login-link { min-height: 44px; }

    .pg-intel-hero,
    .pg-intel-section,
    .pg-intel-final {
        padding-block: 38px;
    }

    .pg-intel-hero__grid,
    .pg-intel-health-layout,
    .pg-intel-customer-layout,
    .pg-intel-menu-layout,
    .pg-intel-flow-layout,
    .pg-intel-ask {
        gap: 20px;
    }

    .pg-intel-hero h1 {
        font-size: 2.35rem;
        max-width: 12ch;
    }

    .pg-intel-lead {
        font-size: 1rem;
    }

    .pg-intel-hero__actions,
    .pg-intel-final__actions {
        align-items: stretch;
    }

    .pg-intel-hero__actions .pg-btn,
    .pg-intel-final__actions .pg-btn,
    .pg-intel-text-link {
        width: 100%;
        justify-content: center;
    }

    .pg-intel-hero__stats,
    .pg-intel-insight-grid,
    .pg-intel-score-grid,
    .pg-intel-customer-signals,
    .pg-intel-menu-grid {
        grid-template-columns: 1fr;
    }

    .pg-intel-command {
        min-height: 560px;
        border-radius: 24px;
    }

    .pg-intel-command__panel {
        align-self: start;
        margin-top: 18px;
        width: calc(100% - 28px);
    }

    .pg-intel-command__trace {
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 20px;
        text-align: left;
    }

    .pg-intel-command__trace span {
        text-align: left;
    }

    .pg-intel-section__header h2,
    .pg-intel-final h2,
    .pg-intel-ask__intro h2 {
        font-size: 2rem;
    }

    .pg-intel-hero__stats dd,
    .pg-intel-command__panel h2 {
        font-size: 1.75rem;
    }

    .pg-intel-score-ring strong,
    .pg-intel-customer-signals strong,
    .pg-intel-menu-risk > strong {
        font-size: 2.45rem;
    }

    .pg-intel-response h3 {
        font-size: 1.25rem;
    }

    .pg-intel-cohort-card,
    .pg-intel-menu-risk,
    .pg-intel-heartbeat,
    .pg-intel-response,
    .pg-intel-final__panel {
        padding: 20px;
        border-radius: 22px;
    }

    .pg-intel-cohort-card__head,
    .pg-intel-heartbeat__top {
        display: grid;
    }

    .pg-intel-cohort-card__head strong,
    .pg-intel-heartbeat__top strong {
        text-align: left;
    }

    .pg-intel-cohort-row {
        grid-template-columns: 44px 1fr;
    }

    .pg-intel-cohort-row strong {
        text-align: left;
    }

    .pg-intel-hour-map {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        min-height: 300px;
    }

    .pg-intel-heartline {
        height: 78px;
    }

    .pg-header-inner {
        gap: 10px;
    }

    .pg-mobile-controls {
        gap: 8px;
        min-width: 0;
    }

    .pg-mobile-cta {
        flex-shrink: 1;
        min-width: 0;
        padding-inline: 14px;
        white-space: nowrap;
    }

    .pg-eyebrow,
    .pg-hero-flagship .pg-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        line-height: 1.35;
    }

    .pg-hero-flagship__grid > *,
    .pg-hero-proof-rail,
    .pg-hero-flagship__visual,
    .pg-hero-atmo-photo,
    .pg-hero-editorial-card {
        width: 100%;
        max-width: calc(100vw - 24px);
    }

    .pg-square-hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .pg-square-hero-trust span {
        max-width: 100%;
    }

    .pg-hero-atf { border-radius: 0 0 20px 20px; }

    .pg-square-hero-trust,
    .pg-footer-square-trust {
        min-width: 0;
    }

    .pg-square-trust-strip {
        border-radius: var(--pg-radius-md);
    }

    .pg-square-trust-strip__inner {
        gap: 14px;
        padding: 16px;
    }

    .pg-square-trust-strip__mark {
        justify-self: stretch;
        padding: 22px;
        border-radius: 14px;
    }

    .pg-square-trust-strip__mark img {
        width: min(148px, 100%);
    }

    .pg-square-trust-strip h2 {
        max-width: none;
    }

    .pg-square-trust-strip__proof {
        grid-template-columns: 1fr;
    }

    .pg-square-api-callout {
        display: grid;
        gap: 7px;
        padding: 13px 14px;
    }

    .pg-square-api-callout strong,
    .pg-square-api-callout span {
        min-width: 0;
        width: 100%;
    }

    .pg-proof-strip__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .pg-proof-strip__logo {
        height: 70px;
        padding: 10px 12px;
    }

    .pg-proof-strip__logo img {
        max-height: 46px;
    }

    .pg-proof-portfolio__grid {
        grid-template-columns: 1fr;
    }

    .pg-section {
        padding: 20px;
        border-radius: 20px;
    }

    .pg-journey-header {
        margin-bottom: 22px;
    }

    .pg-journey-phones {
        gap: 10px;
    }

    .pg-journey-phones img {
        height: clamp(220px, 68vw, 310px);
    }

    .pg-hero-two-paths,
    .pg-hero-cta-rail .pg-hero-two-paths {
        grid-template-columns: 1fr;
    }

    .pg-hero-proof-rail .pg-hero-icon-row {
        grid-template-columns: 1fr;
    }

    .pg-hero-cta-rail .pg-hero-path {
        align-items: stretch;
        text-align: left;
    }

    .pg-hero-path__label {
        max-width: none;
    }

    .pg-cta-mini {
        align-items: stretch;
    }

    .pg-cta-mini .pg-btn,
    .pg-path-card .pg-btn {
        width: 100%;
    }

    /* ── Mobile marquee: stop animation, wrap pills into static row ─── */
    .pg-marquee-shell {
        overflow: visible;
        mask-image: none;
        -webkit-mask-image: none;
        border-radius: var(--pg-radius-md);
    }

    .pg-marquee-track {
        display: flex;
        width: auto;
        animation: none;
        will-change: auto;
        flex-wrap: wrap;
    }

    /* Hide the duplicate row used for seamless loop */
    .pg-marquee-row[aria-hidden="true"] {
        display: none;
    }

    .pg-marquee-row {
        flex-wrap: wrap;
        width: 100%;
        gap: 8px;
        padding: 10px;
    }

    .pg-marquee-pill {
        font-size: 0.74rem;
        padding: 6px 12px;
    }
}

@media (max-width: 420px) {
    .pg-brand__lockup {
        height: 32px;
    }

    .pg-mobile-cta {
        display: none;
    }

    .pg-hamburger {
        width: 38px;
        height: 38px;
    }

    .pg-hero-flagship h1 {
        font-size: clamp(1.85rem, 9vw, 2.2rem);
        line-height: 1.08;
    }

    .pg-square-hero-trust span {
        padding: 7px 10px;
        font-size: 0.66rem;
        letter-spacing: 0.04em;
    }

    .pg-hero-proof-rail .pg-hero-icon-row {
        gap: 10px;
    }

    .pg-hero-proof-rail .pg-hero-icon-col {
        grid-template-columns: 26px minmax(0, 1fr);
        column-gap: 8px;
    }

    .pg-hero-icon-wrap {
        width: 26px;
        height: 26px;
    }
}

/* ─── Global mobile overflow safeguards ─────────────────────
   Prevent any element from causing horizontal page scroll.
   These are defensive: they only apply when the viewport is
   narrower than a typical content breakpoint.
───────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    /* Full-bleed bands with 100vw pull technique: contain on mobile */
    .pg-hero-flagship,
    .pg-hero-atf,
    .pg-band,
    .pg-intel-hero,
    .pg-intel-section,
    .pg-intel-final,
    .pg-cta-band {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    /* Flex and grid children must not exceed their container */
    .pg-journey-split,
    .pg-journey-split > *,
    .pg-split > *,
    .pg-grid-2 > *,
    .pg-grid-3 > *,
    .pg-pricing > * {
        min-width: 0;
        max-width: 100%;
    }

    /* Prose content must wrap */
    .pg-copy,
    .pg-hero-flagship__subhead,
    h1, h2, h3 {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Hero visual stack: contain on mobile */
    .pg-hero-visual-stack,
    .pg-hero-flagship__visual {
        max-width: 100%;
        overflow: hidden;
    }

    /* Proof strip: contain grid cells */
    .pg-proof-strip__track > * {
        min-width: 0;
    }

    /* Section cards: no fixed width overflow */
    .pg-section,
    .pg-card,
    .pg-page-hero {
        max-width: 100%;
        overflow-wrap: break-word;
    }
}

/* ─── Footer responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .pg-footer .pg-wrap {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 32px;
    }

    .pg-footer-brand {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .pg-footer-nav {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 28px;
        width: 100%;
    }

    .pg-footer-bottom {
        grid-column: 1;
        grid-row: 3;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .pg-footer {
        padding: 44px 0 32px;
    }

    .pg-footer-nav {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pg-footer-nav__group,
    .pg-footer-bottom,
    .pg-footer-copy,
    .pg-footer-disclaimer,
    .pg-footer-legal {
        min-width: 0;
        max-width: 100%;
    }

    .pg-footer-legal {
        line-height: 1.5;
        overflow-wrap: break-word;
    }

    .pg-ecosystem {
        gap: 6px;
    }

    .pg-ecosystem__step {
        min-width: 80px;
        padding: 8px 10px;
    }

    .pg-hero-float-card {
        position: static;
        width: 100%;
    }

    .pg-hero-float-card--metric {
        margin-top: 6px;
    }

    .pg-hero-cards-stack {
        flex-direction: column;
    }

    /* Hide all atmospheric markers on small mobile */
    .pg-hero-atmo-markers {
        display: none;
    }

    .pg-hero-atmo-photo {
        min-height: 200px;
        border-radius: 16px;
    }

    .pg-hero-atmo-photo__img {
        min-height: 200px;
    }

    .pg-hero-icon-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pg-hero-logo-row__logos img {
        height: 14px;
    }

    .pg-hero-proof-rail .pg-hero-logo-row__logos img {
        height: 14px;
    }
}
