/*
 * MissionPilot — Shared site styles (base + layout + components)
 * --------------------------------------------------------------------------
 * The ONE stylesheet every page links for base reset, layout container,
 * hero, the homepage app columns/cards, the mission band, and footer.
 * Color + type tokens come from prism-tokens.css; the header/nav/mega-menu
 * live in header.css. Page-unique sections may still be styled per page.
 * Change something here once and every page follows.
 */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ===== Layout ===== */
main { padding-top: 80px; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
}

h1, h2, h3 { font-family: 'Outfit', sans-serif; }

/* ===== Hero ===== */
.hero {
    text-align: center;
    margin-bottom: 80px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px;
}

.text-gradient {
    background: var(--prism-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Mission band (rounded navy box) ===== */
.mission-band {
    background: var(--prism-navy);
    border-radius: 16px;
    padding: 64px 48px;
    margin-bottom: 80px;
    text-align: center;
}
.mission-band-inner { max-width: none; margin: 0; }
.mission-band .eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--prism-tangerine);
    margin-bottom: 16px;
}
.mission-band h2 {
    color: #FFFFFF;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 28px;
    line-height: 1.2;
}
.mission-band p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 18px;
}
.mission-band p:last-child {
    margin-bottom: 0;
    color: #FFFFFF;
    font-weight: 500;
}

/* ===== Two-column app grid (Mac Apps / Cloud Apps) ===== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.services-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px;
}
.services-section h2 {
    font-size: 2rem;
    margin-bottom: 32px;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.service-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.service-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.badge-active { background: var(--prism-success-tint); color: var(--prism-success); }
.badge-coming { background: var(--bg-elevated); color: var(--text-tertiary); }

.service-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-tagline { color: var(--text-tertiary); margin-bottom: 16px; }
.service-description { color: var(--text-secondary); line-height: 1.8; }
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--prism-tangerine);
    font-weight: 600;
    margin-top: 16px;
}

/* ===== Footer ===== */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 40px 0;
    margin-top: 80px;
    text-align: center;
}
.footer-tagline { color: var(--text-secondary); margin-bottom: 20px; }
.footer-bottom { color: var(--text-tertiary); font-size: 0.875rem; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   MARKETING SECTIONS  (product/landing pages — e.g. /apps/prism/)
   Generic, reusable building blocks. Color from prism-tokens; light theme.
   ========================================================================== */

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem;
    padding: 14px 28px; border-radius: 10px; border: 1px solid transparent;
    text-decoration: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary { background: var(--prism-navy); color: #FFFFFF; }
.btn-primary:hover { background: #16344d; }
.btn-secondary { background: transparent; color: var(--prism-navy); border-color: var(--prism-navy); }
.btn-secondary:hover { background: rgba(30, 61, 86, 0.06); }
.btn-lg { font-size: 1.0625rem; padding: 16px 34px; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.center .cta-row, .cta-row.center { justify-content: center; }

/* Content wrap */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }

/* DEPRECATED — do NOT use .band* on pages. This site has NO full-bleed color.
   Use .box / .box--navy / .box--tint inside .container instead (see SECTION BOXES). */
.band { padding: 72px 0; }
.band--tint    { background: var(--prism-navy-tint); }
.band--navy    { background: var(--prism-navy); color: #FFFFFF; }
.band--surface { background: var(--prism-surface); }
.band--navy .btn-primary { background: #FFFFFF; color: var(--prism-navy); }
.band--navy .btn-primary:hover { background: rgba(255, 255, 255, 0.9); }
.band--navy .btn-secondary { color: #FFFFFF; border-color: rgba(255,255,255,0.55); }

/* Labels + headings + lead */
.eyebrow-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--prism-tangerine); margin-bottom: 16px; }
.smallcaps { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--prism-navy); margin-bottom: 20px; }
.band--navy .smallcaps, .band--navy .eyebrow-label { color: var(--prism-tangerine); }
.section-head { margin-bottom: 40px; }
.section-head h2, .band h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); line-height: 1.2; }
.band--navy h2, .band--navy h3 { color: #FFFFFF; }
.lead { font-size: 1.25rem; color: var(--text-secondary); line-height: 1.7; }
.band--navy .lead { color: rgba(255, 255, 255, 0.85); }
.fineprint { font-size: 0.9rem; color: var(--text-tertiary); }

/* Multi-column text */
.cols { display: grid; gap: 40px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.col p { color: var(--text-secondary); line-height: 1.8; }
.col .lead-in { color: var(--text-primary); font-weight: 700; }

/* Pillars 2x2 */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.pillar .pillar-lead { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.pillar p { color: var(--text-secondary); line-height: 1.8; }

/* Quotes */
.quotes { display: grid; gap: 36px; max-width: 760px; }
.quote { font-size: 1.25rem; line-height: 1.55; color: var(--text-primary); }
.quote .cite { display: block; margin-top: 14px; font-size: 0.95rem; font-weight: 600; color: var(--text-tertiary); font-style: normal; }
.band--navy .quote { color: #FFFFFF; }
.band--navy .quote .cite { color: rgba(255, 255, 255, 0.7); }

/* Q&A (objections) */
.q { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--text-primary); margin-bottom: 10px; }
.qa p { color: var(--text-secondary); line-height: 1.8; }

/* Helpers */
.center { text-align: center; }
.center .wrap, .closing { text-align: center; }
.mt-link { display: inline-flex; align-items: center; gap: 6px; color: var(--prism-navy); font-weight: 600; text-decoration: none; }
.mt-link:hover { text-decoration: underline; }

@media (max-width: 860px) {
    .cols-2, .cols-3, .pillars { grid-template-columns: 1fr; }
}

/* ============================================================================
   SECTION BOXES — the site-wide layout convention.
   Every section is a ROUNDED BOX inside the centered .container.
   NEVER full-bleed / edge-to-edge color bands. Matches the homepage
   (navy mission box, app-column boxes). Use instead of .band on pages.
   ========================================================================== */
.box {
    background: var(--prism-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 44px;
    margin-bottom: 32px;
}
.box:last-child { margin-bottom: 0; }
.box--tint { background: var(--prism-navy-tint); border-color: transparent; }
.box--navy { background: var(--prism-navy); border-color: transparent; color: #FFFFFF; }
.box--navy h2, .box--navy h3, .box--navy .pillar-lead, .box--navy .q { color: #FFFFFF; }
.box--navy p, .box--navy .lead, .box--navy .col p { color: rgba(255, 255, 255, 0.85); }
.box--navy .col .lead-in { color: #FFFFFF; }
.box--navy .smallcaps, .box--navy .eyebrow-label { color: var(--prism-tangerine); }
.box--navy .quote { color: #FFFFFF; }
.box--navy .quote .cite { color: rgba(255, 255, 255, 0.7); }
.box--navy .btn-primary { background: #FFFFFF; color: var(--prism-navy); }
.box--navy .btn-secondary { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.55); }

/* ============================================================================
   SECTION TITLE + BOX GRID  (the canonical section shape)
   Pattern: a centered section TITLE on the cream page, then the section's
   items as their own rounded .box cards in a .cols grid. Matches the homepage.
   ========================================================================== */
.stack { margin-bottom: 56px; }
.stack:last-child { margin-bottom: 0; }
.section-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.25;
    max-width: 820px;
    margin: 0 auto 32px;
    color: var(--text-primary);
}
/* boxes inside a grid: let the grid gap own the spacing */
.cols .box { margin-bottom: 0; height: 100%; }

/* ============================================================================
   FEATURE ROWS + CHECKLISTS + PRICING  (Prism app pages)
   ========================================================================== */

/* Feature row: an image box beside a text box, vertically centered */
.feature-row { align-items: center; }
.media {
    display: flex; align-items: center; justify-content: center; text-align: center;
    min-height: 300px; padding: 24px;
    background: var(--prism-navy-tint); color: var(--prism-navy);
    font-family: 'Outfit', sans-serif; font-weight: 600;
}

/* Headings + body inside a box */
.box h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.2; margin-bottom: 16px; }
.box > p { color: var(--text-secondary); line-height: 1.8; }
.box--navy > p { color: rgba(255, 255, 255, 0.85); }
.box code { background: rgba(30,61,86,0.08); padding: 1px 6px; border-radius: 6px; font-size: 0.95em; }

/* Checklist */
.feature-list { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.feature-list li { position: relative; padding-left: 26px; color: var(--text-secondary); line-height: 1.6; }
.feature-list li::before { content: ''; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--prism-tangerine); }

/* Pricing */
.price { font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 900; color: var(--prism-navy); line-height: 1; margin: 6px 0; }
.price-sub { color: var(--text-tertiary); margin-bottom: 22px; }
.btn--block { width: 100%; }
.card-note { font-size: 0.85rem; color: var(--text-tertiary); margin-top: 10px; text-align: center; }

/* Pricing grid (multiple tiers) */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; align-items: stretch; }
.pricing-grid .box { padding: 28px 24px; display: flex; flex-direction: column; margin-bottom: 0; }
.pricing-grid h3 { font-size: 1.15rem; margin-bottom: 4px; }
.pricing-grid .price { font-size: 2rem; margin: 4px 0; }
.pricing-grid .price-sub { font-size: 0.85rem; margin-bottom: 16px; }
.pricing-grid .plan-desc { color: var(--text-secondary); line-height: 1.6; font-size: 0.95rem; margin-bottom: 22px; flex: 1; }
.pricing-grid .btn { width: 100%; margin-top: auto; }

/* ============================================================================
   PTA SECTION STYLES  (folded in from the former pta.css + main.css)
   Scoped under body.pta so PTA pages keep their look and OVERRIDE the global
   rules, while non-PTA pages are untouched. Single source: edit here.
   ============================================================================ */
:root {
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem; }
/* ---- from main.css (scoped) ---- */
body.pta {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
body.pta .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px; }
body.pta h1, body.pta h2, body.pta h3, body.pta h4, body.pta h5, body.pta h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.2; }
body.pta h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
body.pta h2 { font-size: clamp(2rem, 4vw, 3rem); }
body.pta h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
body.pta .text-center { text-align: center; }
body.pta .text-gradient {
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }
body.pta .btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem; }
body.pta .btn-primary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    color: white;
    box-shadow: 0 4px 20px rgba(30, 61, 86, 0.3); }
body.pta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 61, 86, 0.4); }
body.pta .btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-medium); }
body.pta .btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-blue); }
body.pta .card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: var(--spacing-lg);
    transition: all 0.3s ease; }
body.pta .card:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-lg); }
body.pta .badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600; }
body.pta .badge-active {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2); }
body.pta .badge-coming {
    background: var(--bg-elevated);
    color: var(--text-tertiary);
    border: 1px solid var(--border-medium); }
body.pta .badge-highlight {
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    color: white; }
body.pta .icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round; }
body.pta .icon-sm { width: 20px; height: 20px; }
body.pta .icon-lg { width: 32px; height: 32px; }
body.pta .icon-xl { width: 48px; height: 48px; }
@media (max-width: 768px) {
  body.pta .container {
        padding: 0 16px; }
  body.pta .btn {
        padding: 14px 24px;
        font-size: 0.9rem; }
}
/* ---- from pta.css (scoped, authoritative) ---- */
body.pta main {
    padding-top: 50px; }
body.pta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px; }
body.pta .hero {
    text-align: center;
    margin-bottom: 80px; }
body.pta .hero h1 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px; }
body.pta .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto; }
body.pta .text-gradient {
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }
body.pta .stats-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 40px 0; }
body.pta .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center; }
body.pta .stat-item {
    padding: 20px; }
body.pta .stat-item .stat-value {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px; }
body.pta .stat-item .stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600; }
body.pta .hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px; }
body.pta .cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px; }
body.pta .btn-lg {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.125rem;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    color: white;
    box-shadow: 0 4px 20px rgba(30, 61, 86, 0.3); }
body.pta .btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 61, 86, 0.4); }
body.pta .cta-note {
    color: var(--text-tertiary);
    font-size: 0.95rem; }
body.pta .pain-section {
    position: relative;
    padding: 120px 0;
    background: var(--bg-secondary); }
body.pta .pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px; }
body.pta .pain-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease; }
body.pta .pain-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px); }
body.pta .pain-stat {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px; }
body.pta .pain-stat-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px; }
body.pta .pain-card p {
    color: var(--text-secondary);
    line-height: 1.7; }
body.pta .transformation {
    position: relative;
    padding: 120px 0; }
body.pta .transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto; }
body.pta .transformation-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px; }
body.pta .transformation-card h3 {
    font-size: 1.75rem;
    margin-bottom: 24px; }
body.pta .transformation-card ul {
    list-style: none; }
body.pta .transformation-card li {
    padding: 16px 0;
    padding-left: 36px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle); }
body.pta .transformation-card li:last-child {
    border-bottom: none; }
body.pta .transformation-card.before li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.25rem; }
body.pta .transformation-card.after {
    background: var(--prism-navy-tint);
    border-color: var(--accent-blue);
    position: relative; }
body.pta .after-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700; }
body.pta .after-description {
    background: var(--bg-tertiary);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-style: italic; }
body.pta .transformation-card.after li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 1.25rem; }
body.pta .cta-section {
    padding: 120px 0;
    background: var(--bg-secondary); }
body.pta .cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--prism-navy-tint);
    border: 1px solid var(--accent-blue);
    border-radius: 24px;
    padding: 60px 40px; }
body.pta .cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px; }
body.pta .cta-box p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px; }
body.pta .features-section {
    padding: 120px 0; }
body.pta .features-grid {
    display: grid;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto; }
body.pta .feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center; }
body.pta .feature-showcase.reverse {
    direction: rtl; }
body.pta .feature-showcase.reverse > * {
    direction: ltr; }
body.pta .feature-content h3 {
    font-size: 2rem;
    margin-bottom: 16px; }
body.pta .feature-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8; }
body.pta .feature-details {
    color: var(--text-tertiary);
    line-height: 1.8;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue); }
body.pta .feature-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-xl); }
body.pta .feature-image img {
    width: 100%;
    height: auto;
    display: block; }
body.pta .feature-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px; }
body.pta .stat {
    text-align: center; }
body.pta .stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-blue);
    font-family: var(--font-heading); }
body.pta .stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px; }
body.pta .use-cases-section {
    padding: 120px 0; }
body.pta .use-cases-grid {
    display: grid;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto; }
body.pta .use-case-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease; }
body.pta .use-case-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl); }
body.pta .use-case-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px; }
body.pta .use-case-icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    border-radius: 12px;
    flex-shrink: 0; }
body.pta .use-case-icon svg {
    width: 100%;
    height: 100%;
    stroke: white; }
body.pta .use-case-title {
    font-size: 1.75rem;
    margin-bottom: 8px; }
body.pta .use-case-persona {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    font-size: 0.875rem;
    color: var(--accent-blue);
    font-weight: 600; }
body.pta .use-case-section {
    margin-bottom: 20px; }
body.pta .use-case-section h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
    font-weight: 700; }
body.pta .use-case-section p {
    color: var(--text-secondary);
    line-height: 1.7; }
body.pta .use-case-benefit {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border-left: 4px solid #22c55e;
    padding: 16px 20px;
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 600; }
@media (max-width: 1024px) {
  body.pta .transformation-grid, body.pta .feature-showcase {
        grid-template-columns: 1fr; }
  body.pta .feature-showcase.reverse {
        direction: ltr; }
  body.pta .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px; }
}
@media (max-width: 768px) {
  body.pta .pain-grid {
        grid-template-columns: 1fr; }
  body.pta .btn-lg {
        width: 100%; }
  body.pta .cta-box {
        padding: 40px 24px; }
  body.pta .cta-box h2 {
        font-size: 2rem; }
  body.pta .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px; }
  body.pta .stat-item .stat-value {
        font-size: 2.5rem; }
}
body.pta .donation-widget {
    max-width: 900px;
    margin: 80px auto;
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid var(--border-subtle); }
body.pta .donation-levels {
    display: grid;
    gap: 16px;
    margin: 40px 0; }
body.pta .donation-card {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative; }
body.pta .donation-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px); }
body.pta .donation-card.selected {
    border-color: var(--accent-blue);
    background: rgba(96, 165, 250, 0.05); }
body.pta .donation-card.recommended::after {
    content: "RECOMMENDED";
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-gold, #f59e0b);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700; }
body.pta .donation-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px; }
body.pta .donation-radio {
    width: 24px;
    height: 24px;
    border: 2px solid var(--text-tertiary);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0; }
body.pta .donation-card.selected .donation-radio {
    border-color: var(--accent-blue); }
body.pta .donation-card.selected .donation-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-blue);
    border-radius: 50%; }
body.pta .donation-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-left: auto; }
body.pta .option-checkbox {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    margin-top: 16px; }
body.pta .option-checkbox.checked {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05); }
body.pta .checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--text-tertiary);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px; }
body.pta .option-checkbox.checked .checkbox {
    background: #10b981;
    border-color: #10b981; }
body.pta .option-checkbox.checked .checkbox::after {
    content: "✓";
    color: white;
    font-weight: bold; }
body.pta .running-total {
    margin-top: 40px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid var(--accent-blue);
    border-radius: 16px;
    padding: 32px;
    text-align: center; }
body.pta .total-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin: 16px 0 24px 0;
    font-family: var(--font-heading, 'Outfit', sans-serif); }
body.pta .total-breakdown {
    display: grid;
    gap: 8px;
    margin-bottom: 32px;
    text-align: left; }
body.pta .total-breakdown-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary); }
body.pta .total-breakdown-item span:last-child {
    font-weight: 600;
    color: var(--text-primary); }
body.pta .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 80px; }
body.pta .stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center; }
body.pta .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px; }
body.pta .stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px; }
body.pta .stat-desc {
    font-size: 0.95rem;
    color: var(--text-tertiary); }
body.pta .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px; }
body.pta .testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px; }
body.pta .quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic; }
body.pta .author {
    display: flex;
    align-items: center;
    gap: 16px; }
body.pta .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #FFFFFF; }
body.pta .author-info {
    flex: 1; }
body.pta .author-name {
    font-weight: 700;
    margin-bottom: 4px; }
body.pta .author-role {
    font-size: 0.875rem;
    color: var(--text-tertiary); }
body.pta .impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px; }
body.pta .impact-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px; }
body.pta .impact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; }
body.pta .impact-icon svg {
    width: 28px;
    height: 28px;
    stroke: white; }
body.pta .impact-card h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.25rem;
    margin-bottom: 12px; }
body.pta .impact-card p {
    color: var(--text-secondary);
    line-height: 1.7; }
body.pta .cta-section {
    text-align: center;
    background: var(--prism-navy-tint);
    border: 1px solid var(--accent-blue);
    border-radius: 24px;
    padding: 60px 40px;
    margin-top: 80px; }
body.pta .cta-section h2 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 2.5rem;
    margin-bottom: 20px; }
body.pta .cta-section p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px; }
body.pta h2 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 2.5rem;
    text-align: center;
    margin: 80px 0 40px 0; }
body.pta .container > h2 {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle); }
@media (max-width: 1024px) {
  body.pta .stats-grid {
        grid-template-columns: repeat(2, 1fr); }
  body.pta .testimonials-grid, body.pta .impact-grid {
        grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body.pta .stats-grid {
        grid-template-columns: 1fr; }
}
body.pta .two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px; }
body.pta .transform-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px; }
body.pta .transform-card h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.75rem;
    margin-bottom: 24px; }
body.pta .transform-card ul {
    list-style: none;
    padding: 0;
    margin: 0; }
body.pta .transform-card li {
    padding: 16px 0 16px 36px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle); }
body.pta .transform-card li:last-child {
    border-bottom: none; }
body.pta .before li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 1.25rem; }
body.pta .after li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem; }
@media (max-width: 1024px) {
  body.pta .two-column-grid {
        grid-template-columns: 1fr;
        gap: 32px; }
}
body.pta .use-case {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 40px;
    scroll-margin-top: 100px; }
body.pta .use-case h2 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 2rem;
    margin-bottom: 12px; }
body.pta .use-case .persona {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600; }
body.pta .use-case h3 {
    font-size: 1.25rem;
    color: var(--accent-blue);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700; }
body.pta .use-case p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px; }
body.pta .scenario-section {
    margin-bottom: 24px; }
body.pta .scenario-section h3 {
    font-size: 1.25rem;
    color: var(--accent-blue);
    margin-bottom: 12px;
    font-weight: 700; }
body.pta .scenario-section p {
    color: var(--text-secondary);
    line-height: 1.8; }
body.pta .scenario-section.result {
    background: var(--prism-navy-tint);
    border-left: 4px solid var(--accent-blue);
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px; }
body.pta .hero-kicker {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-medium);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 16px; }
body.pta .after {
    background: var(--prism-navy-tint);
    border-color: var(--accent-blue); }
body.pta .after-note {
    background: var(--bg-tertiary);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
    margin-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7; }
body.pta .benefits-section {
    margin-bottom: 60px; }
body.pta .benefits-list {
    display: grid;
    gap: 20px; }
body.pta .benefit-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px; }
body.pta .benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; }
body.pta .benefit-icon svg, body.pta .benefit-icon i {
    width: 24px;
    height: 24px;
    stroke: white;
    color: white;
    fill: none; }
body.pta .benefit-content h3 {
    font-size: 1.125rem;
    margin-bottom: 8px; }
body.pta .benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6; }
/* Forms — GLOBAL (shared: root contact + PTA beta/contact). Single source. */
.form-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px;
    max-width: 640px;
    margin: 0 auto; }
.form-container h2 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.75rem;
    margin-bottom: 32px;
    text-align: center; }
.form-group {
    margin-bottom: 24px; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue); }
.form-group textarea {
    resize: vertical;
    min-height: 120px; }
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px; }
.checkbox-group input { width: auto; margin-top: 4px; }
.checkbox-group label { font-weight: 400; margin: 0; }
.help-text {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: 8px; }
.form-note { font-size: 0.875rem; color: var(--text-tertiary); text-align: center; margin-top: 16px; }
.form-message { padding: 14px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 0.95rem; }
.form-message.success { background: var(--prism-success-tint); color: var(--prism-success); }
.form-message.error { background: var(--prism-danger-tint); color: var(--prism-danger); }
body.pta .content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start; }
@media (max-width: 1024px) {
  body.pta .content-grid {
        grid-template-columns: 1fr; }
  body.pta .form-container {
        position: relative;
        top: 0; }
}
body.pta .role-breakdown, body.pta .impact-breakdown, body.pta .time-roi-breakdown {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px 0; }
body.pta .role-breakdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto; }
body.pta .role-item, body.pta .breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto 12px; }
body.pta .role-item .role-label, body.pta .breakdown-item .role {
    font-weight: 600;
    color: var(--text-primary); }
body.pta .role-item .hours-saved, body.pta .breakdown-item .hours {
    color: var(--accent-blue);
    font-weight: 600; }
@media (max-width: 768px) {
  body.pta .role-breakdown, body.pta .impact-breakdown, body.pta .time-roi-breakdown, body.pta .role-breakdown-grid {
        max-width: 100%;
        padding: 24px 16px; }
  body.pta .role-item, body.pta .breakdown-item {
        max-width: 100%; }
}

/* ============================================================================
   FORMER INLINE-STYLE PAGES (folded in 2026-05-31): pta/contact, pta/why-us,
   pta/demo, hoa/index. Each page's content styles are scoped under its own
   body class so they live in this one stylesheet (no more inline <style>).
   Header/nav/footer/:root dropped — owned by header.css + footer-loader + prism-tokens.
   ============================================================================ */
/* ---- pta/contact + pta/why-us (identical) -> body.pta-info ---- */
body.pta-info {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6; }
body.pta-info .badge-beta {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e; }
body.pta-info .badge-soon {
            background: var(--bg-tertiary);
            color: var(--text-tertiary); }
body.pta-info main {
            padding-top: 80px; }
body.pta-info .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 24px; }
body.pta-info .hero {
            text-align: center;
            margin-bottom: 80px; }
body.pta-info h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 24px; }
body.pta-info .text-gradient {
            background: var(--prism-navy);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; }
body.pta-info .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto; }
body.pta-info .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            margin-bottom: 80px; }
body.pta-info .mission-section h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            margin-bottom: 24px; }
body.pta-info .mission-section p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px; }
body.pta-info .mission-highlight {
            color: var(--accent-blue);
            font-weight: 600;
            background: var(--bg-tertiary);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--accent-blue); }
body.pta-info .services-section h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            margin-bottom: 32px; }
body.pta-info .service-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 24px;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            display: block; }
body.pta-info .service-card:hover {
            border-color: var(--accent-blue);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(30, 61, 86, 0.2); }
body.pta-info .service-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 0.875rem;
            font-weight: 700;
            margin-bottom: 16px; }
body.pta-info .badge-active {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e; }
body.pta-info .badge-coming {
            background: var(--bg-elevated);
            color: var(--text-tertiary); }
body.pta-info .service-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 12px; }
body.pta-info .service-tagline {
            color: var(--text-tertiary);
            margin-bottom: 16px; }
body.pta-info .service-description {
            color: var(--text-secondary);
            line-height: 1.8; }
body.pta-info .service-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-blue);
            font-weight: 600;
            margin-top: 16px; }
@media (max-width: 1024px) {
  body.pta-info .content-grid {
                grid-template-columns: 1fr; }
}
/* ---- pta/demo -> body.pta-demo ---- */
body.pta-demo { font-family: 'Inter', sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; }
body.pta-demo .btn-primary { background: var(--prism-navy); color: white; padding: 10px 20px; border-radius: 8px; font-weight: 600; text-decoration: none; }
body.pta-demo main { padding-top: 80px; }
body.pta-demo .container { max-width: 1200px; margin: 0 auto; padding: 60px 24px; }
body.pta-demo .hero { text-align: center; margin-bottom: 80px; }
body.pta-demo h1 { font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin-bottom: 24px; }
body.pta-demo .text-gradient { background: var(--prism-navy); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
body.pta-demo .hero-subtitle { font-size: 1.25rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }
body.pta-demo .video-container { background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 40px; margin-bottom: 60px; text-align: center; }
body.pta-demo .video-placeholder { background: var(--bg-tertiary); border-radius: 12px; padding: 100px 40px; margin-bottom: 24px; border: 2px dashed var(--border-medium); }
body.pta-demo .video-placeholder h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; margin-bottom: 12px; }
body.pta-demo .demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 80px; }
body.pta-demo .demo-card { background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 32px; transition: all 0.3s; }
body.pta-demo .demo-card:hover { border-color: var(--accent-blue); transform: translateY(-2px); }
body.pta-demo .demo-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; margin-bottom: 12px; }
body.pta-demo .demo-card p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
body.pta-demo .demo-card a { color: var(--accent-blue); text-decoration: none; font-weight: 600; }
body.pta-demo .demo-card a:hover { text-decoration: underline; }
body.pta-demo .cta-section { text-align: center; background: var(--prism-navy-tint); border: 1px solid var(--accent-blue); border-radius: 24px; padding: 60px 40px; }
body.pta-demo .cta-section h2 { font-family: 'Outfit', sans-serif; font-size: 2.5rem; margin-bottom: 20px; }
body.pta-demo .cta-section p { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 32px; }
body.pta-demo .btn-lg { padding: 18px 40px; font-size: 1.125rem; }
@media (max-width: 1024px) {
  body.pta-demo .demo-grid { grid-template-columns: 1fr; }
}
/* ---- hoa/index -> body.hoa ---- */
body.hoa {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6; }
body.hoa main {
            padding-top: 80px; }
body.hoa .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 24px; }
body.hoa .hero {
            text-align: center;
            margin-bottom: 80px; }
body.hoa .hero-kicker {
            display: inline-block;
            padding: 8px 20px;
            background: var(--bg-elevated);
            border: 1px solid var(--border-medium);
            border-radius: 30px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--accent-blue);
            margin-bottom: 24px; }
body.hoa h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 24px; }
body.hoa .text-gradient {
            background: var(--prism-navy);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; }
body.hoa .hero-subtitle {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-weight: 600; }
body.hoa .hero-description {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8; }
body.hoa .content-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: start; }
body.hoa .features-section h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            margin-bottom: 32px; }
body.hoa .features-list {
            display: grid;
            gap: 20px; }
body.hoa .feature-item {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 16px;
            align-items: start; }
body.hoa .feature-bullet {
            width: 8px;
            height: 8px;
            background: var(--prism-navy);
            border-radius: 50%;
            margin-top: 8px; }
body.hoa .feature-content h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 4px; }
body.hoa .feature-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6; }
body.hoa .form-section {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 40px;
            position: sticky;
            top: 100px; }
body.hoa .form-section h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.75rem;
            margin-bottom: 24px; }
body.hoa .form-section > p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6; }
body.hoa .benefits-list {
            list-style: none;
            margin: 0 0 32px 0;
            padding: 0; }
body.hoa .benefits-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            color: var(--text-secondary); }
body.hoa .benefits-list li svg {
            flex-shrink: 0;
            margin-top: 2px; }
body.hoa .form-group {
            margin-bottom: 20px; }
body.hoa label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95rem; }
body.hoa input, body.hoa select, body.hoa textarea {
            width: 100%;
            padding: 12px 16px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-medium);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-size: 1rem; }
body.hoa input:focus, body.hoa select:focus, body.hoa textarea:focus {
            outline: none;
            border-color: var(--accent-blue); }
body.hoa textarea {
            resize: vertical;
            min-height: 100px; }
body.hoa .help-text {
            font-size: 0.875rem;
            color: var(--text-tertiary);
            margin-top: 6px; }
body.hoa button[type="submit"] {
            width: 100%;
            padding: 16px;
            background: var(--prism-navy);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 700;
            font-size: 1.125rem;
            cursor: pointer;
            transition: all 0.2s; }
body.hoa button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(30, 61, 86, 0.3); }
body.hoa .form-note {
            font-size: 0.875rem;
            color: var(--text-tertiary);
            text-align: center;
            margin-top: 16px; }
@media (max-width: 1024px) {
  body.hoa .content-grid {
                grid-template-columns: 1fr; }
  body.hoa .form-section {
                position: relative;
                top: 0; }
}

/* ============================================================================
   COLOR ACCENT SYSTEM (pilot 2026-05-31) — two accents, used with restraint:
   tangerine = the primary ACTION; olive (success) tint = value / outcomes.
   ========================================================================== */
.btn-cta { background: var(--prism-tangerine); color: #FFFFFF; border-color: var(--prism-tangerine); }
.btn-cta:hover { background: var(--prism-tangerine-deep); border-color: var(--prism-tangerine-deep); }
.box--navy .btn-cta { background: var(--prism-tangerine); color: #FFFFFF; }
.box--navy .btn-cta:hover { background: var(--prism-tangerine-deep); }

/* Olive value / outcome callout box */
.box--success { background: var(--prism-success-tint); border-color: transparent; }
.box--success .lead-in { color: var(--prism-success); }

/* Warm highlight box (tangerine wash) */
.box--warm { background: var(--prism-tangerine-tint); border-color: transparent; }
.box--warm .lead-in { color: var(--prism-tangerine-deep); }

/* Recommended pricing tier */
.pricing-grid .box--recommended { border: 2px solid var(--prism-tangerine); }

/* ============================================================================
   GROUPED PRICING ROWS (PRISM pricing: "without AI" / "with AI")
   ========================================================================== */
.section-sub { text-align: center; max-width: 680px; margin: -8px auto 36px; color: var(--text-secondary); font-size: 1.05rem; line-height: 1.6; }
.pricing-grid--tiers { grid-template-columns: repeat(auto-fit, minmax(240px, 300px)); justify-content: center; }
.pricing-grid--tiers .btn { margin-top: 0; }
.price .per { font-size: 1rem; font-weight: 400; color: var(--text-tertiary); }
.card-divider { border: none; border-top: 1px solid var(--prism-warm-border); margin: 16px 0; }
.plan-value { font-size: 0.92rem; font-weight: 600; color: var(--prism-bark); line-height: 1.5; margin-bottom: 22px; }

/* Annual price + savings line on pricing cards */
.price-annual { font-size: 0.85rem; color: var(--text-tertiary); margin: 4px 0 16px; }
.price-save { color: var(--prism-tangerine); font-weight: 700; }

/* The grouped tiers live in #prism-tiers, so the last inner .stack zeroes its
   margin (.stack:last-child) and collapses the gap before the next section.
   Restore the section gap below the whole tiers block. */
#prism-tiers { margin-bottom: 56px; }

/* ============================================================================
   ONE-ROW PRICING: two groups side by side, each title above its own cards.
   Group 1 (no AI) = 2 cards; group 2 (with AI) = 3 cards. Stacks on mobile.
   ========================================================================== */
.tier-cols { display: flex; gap: 32px; align-items: stretch; }
.tier-cols > .tier-col { display: flex; flex-direction: column; }
.tier-cols > .tier-col:first-child { flex: 2; }
.tier-cols > .tier-col:last-child { flex: 3; }
.tier-col .section-sub { min-height: 3em; }          /* equalize title height so cards align */
.tier-col > .pricing-grid { flex: 1; grid-auto-rows: 1fr; }  /* all 5 cards equal height */
.pricing-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pricing-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 920px) {
    .tier-cols { flex-direction: column; gap: 8px; }
    .tier-col .section-sub { min-height: 0; }
    .pricing-grid--cols-2, .pricing-grid--cols-3 { grid-template-columns: 1fr; }
}

/* Form submit buttons (contact, pta beta/contact, hoa) — the primary action, tangerine */
form button[type="submit"] {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem;
    padding: 14px 32px; border-radius: 10px; border: 1px solid transparent;
    cursor: pointer; transition: all 0.2s;
    background: var(--prism-tangerine); color: #FFFFFF;
}
form button[type="submit"]:hover { background: var(--prism-tangerine-deep); }
