/*
Theme Name: Bee Prime Gestão
Theme URI: https://beeprime.com.br
Author: Bee Prime Gestão
Author URI: https://beeprime.com.br
Description: Tema oficial da Bee Prime Gestão — Consultoria para Clínicas com Método Colmeia®
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: beeprime
Tags: landing-page, dark, business, consulting
*/

/* ============================================================
   CUSTOM FONT
   ============================================================ */
@font-face {
    font-family: 'CameraPlainVariable';
    src: url('fonts/CameraPlainVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   CSS VARIABLES — DESIGN TOKENS
   ============================================================ */
:root {
    --background: oklch(0% 0 0);
    --foreground: oklch(100% 0 0);
    --muted: oklch(27% 0 0);
    --muted-foreground: oklch(92% .01 60);
    --card: oklch(16% 0 0);
    --primary: oklch(68% .13 55);
    --primary-foreground: oklch(12% 0 0);
    --border: oklch(100% 0 0 / .12);
    --ring: oklch(68% .13 55);

    --spacing: .25rem;
    --radius-sm: 5px;
    --radius-lg: .5rem;
    --ease-in-out: cubic-bezier(.4, 0, .2, 1);
    --default-transition-duration: .15s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid var(--border);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 15px;
    line-height: 1.5;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border-radius: 0; }
ol, ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes bp-fade-in {
    0%   { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes bp-bee-float {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50%       { transform: translateY(-3px) rotate(4deg); }
}

@keyframes bp-honey-pulse {
    0%, 100% { box-shadow: 0 0 0 0 oklch(68% .13 55 / 0.4); }
    50%       { box-shadow: 0 0 0 14px oklch(68% .13 55 / 0); }
}

.bp-reveal {
    opacity: 0;
}
.bp-reveal.is-visible {
    animation: bp-fade-in 0.8s ease-out forwards;
}

.bp-bee {
    transform-origin: 50%;
    animation: bp-bee-float 1.6s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
}

.bp-pulse {
    animation: bp-honey-pulse 2.4s ease-out infinite;
}

/* ============================================================
   HONEYCOMB BACKGROUND
   ============================================================ */
.bp-honeycomb {
    background-color: #000;
    background-image:
        radial-gradient(circle, oklch(68% .13 55 / .06), transparent 60%),
        linear-gradient(60deg,  oklch(68% .13 55 / .05) 25%, transparent 25.5% 75%, oklch(68% .13 55 / .05) 75%),
        linear-gradient(120deg, oklch(68% .13 55 / .05) 25%, transparent 25.5% 75%, oklch(68% .13 55 / .05) 75%);
    background-size: auto, 28px 48px, 28px 48px;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.bp-container {
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
}
@media (min-width: 48rem) {
    .bp-container { padding-inline: 2rem; }
}

.bp-container--narrow {
    max-width: 48rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
}
@media (min-width: 48rem) {
    .bp-container--narrow { padding-inline: 2rem; }
}

/* ============================================================
   COMPONENTS
   ============================================================ */

/* Button primary */
.bp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 50px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: .75rem 1.5rem;
    font-size: .9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter .15s ease;
    border: none;
    text-decoration: none;
}
.bp-btn-primary:hover { filter: brightness(1.1); }
.bp-btn-primary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Button ghost */
.bp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--foreground);
    padding: .75rem 1.5rem;
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease;
    text-decoration: none;
}
.bp-btn-ghost:hover { background: var(--muted); }

/* Label eyebrow */
.bp-eyebrow {
    display: inline-block;
    font-family: ui-monospace, 'Courier New', monospace;
    font-size: .75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--primary);
}

/* Stat card */
.bp-stat {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: oklch(16% 0 0 / .4);
    padding: 1rem 1.25rem;
    backdrop-filter: blur(8px);
}
.bp-stat__value {
    font-size: 1.625rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}
.bp-stat__label {
    margin-top: .5rem;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted-foreground);
}

/* Card */
.bp-card {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card);
    padding: 1.75rem;
}

/* Pill badge */
.bp-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 50px;
    border: 1px solid oklch(68% .13 55 / .4);
    background: oklch(68% .13 55 / .1);
    padding: .25rem .75rem;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--primary);
}

/* Form field */
.bp-field label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted-foreground);
    margin-bottom: .5rem;
}
.bp-field input,
.bp-field select,
.bp-field textarea {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--background);
    padding: .75rem 1rem;
    font-size: .9375rem;
    color: var(--foreground);
    transition: border-color .15s ease;
}
.bp-field input::placeholder,
.bp-field textarea::placeholder {
    color: oklch(92% .01 60 / .7);
}
.bp-field input:focus,
.bp-field select:focus,
.bp-field textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.bp-field textarea { resize: none; }

/* Check list item */
.bp-check-item {
    display: flex;
    gap: .75rem;
    font-size: .9375rem;
    color: var(--foreground);
    align-items: flex-start;
}
.bp-check-item svg {
    margin-top: .15rem;
    flex-shrink: 0;
    color: var(--primary);
}

/* Dash list item (negative) */
.bp-dash-item {
    display: flex;
    gap: .75rem;
    font-size: .9375rem;
    color: var(--muted-foreground);
    align-items: flex-start;
}
.bp-dash-item::before {
    content: '';
    display: block;
    margin-top: .6rem;
    width: .75rem;
    height: .125rem;
    flex-shrink: 0;
    background: oklch(92% .01 60 / .6);
}

/* ============================================================
   HEADER
   ============================================================ */
.bp-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 50;
    transition: all .3s;
    background: transparent;
}
.bp-header.scrolled {
    background: oklch(0% 0 0 / .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.bp-header__inner {
    max-width: 80rem;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
}
@media (min-width: 48rem) {
    .bp-header__inner { padding: 1rem 2rem; }
}
.bp-header__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -.025em;
}
.bp-header__nav {
    display: none;
    align-items: center;
    gap: 1.75rem;
    font-size: .875rem;
    color: var(--muted-foreground);
}
@media (min-width: 48rem) {
    .bp-header__nav { display: flex; }
}
.bp-header__nav a:hover { color: var(--foreground); }

.bp-header__cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 50px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: .625rem 1.25rem;
    font-size: .875rem;
    font-weight: 600;
    transition: filter .15s ease;
    text-decoration: none;
}
.bp-header__cta:hover { filter: brightness(1.1); }

/* Mobile menu button */
.bp-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.bp-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all .25s ease;
}
@media (min-width: 48rem) { .bp-menu-toggle { display: none; } }

/* Mobile nav */
.bp-mobile-nav {
    display: none;
    flex-direction: column;
    gap: .5rem;
    background: oklch(10% 0 0 / .98);
    backdrop-filter: blur(12px);
    padding: 1rem 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
}
.bp-mobile-nav.open { display: flex; }
.bp-mobile-nav a {
    padding: .6rem 0;
    font-size: 1rem;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}
.bp-mobile-nav a:hover { color: var(--foreground); }
@media (min-width: 48rem) { .bp-mobile-nav { display: none !important; } }

/* ============================================================
   HERO
   ============================================================ */
.bp-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
}
@media (min-width: 48rem) {
    .bp-hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
    }
}

.bp-hero__inner { max-width: 64rem; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 48rem) { .bp-hero__inner { padding-inline: 2rem; } }

.bp-hero__text { text-align: center; }

.bp-hero__h1 {
    max-width: 56rem;
    margin: 1.25rem auto 0;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.025em;
}
@media (min-width: 48rem) { .bp-hero__h1 { font-size: 3.5rem; } }

.bp-hero__lead {
    max-width: 42rem;
    margin: 1.25rem auto 0;
    font-size: 1rem;
    color: var(--muted-foreground);
}
@media (min-width: 48rem) { .bp-hero__lead { font-size: 1.0625rem; } }

.bp-hero__video-wrap {
    margin-top: 2.5rem;
    position: relative;
    max-width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid oklch(68% .13 55 / .4);
    background: var(--card);
    box-shadow: 0 0 60px -20px oklch(68% .13 55 / .5);
}
.bp-hero__video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}
.bp-hero__video-label {
    margin-top: .75rem;
    text-align: center;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--muted-foreground);
}

.bp-hero__ctas {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}

.bp-hero__stats {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
}
@media (min-width: 36rem) {
    .bp-hero__stats { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   SECTIONS — COMMON
   ============================================================ */
.bp-section {
    border-top: 1px solid var(--border);
    padding-block: 5rem;
}
@media (min-width: 48rem) { .bp-section { padding-block: 7rem; } }

.bp-section--muted { background: oklch(27% 0 0 / .3); }

.bp-section__intro { max-width: 48rem; }

.bp-section__h2 {
    margin-top: .75rem;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
}
@media (min-width: 48rem) { .bp-section__h2 { font-size: 2.75rem; } }

.bp-section__lead {
    margin-top: 1.25rem;
    font-size: 1rem;
    color: var(--muted-foreground);
}

/* ============================================================
   DIAGNÓSTICO — 2-col comparison
   ============================================================ */
.bp-diagnose-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 48rem) { .bp-diagnose-grid { grid-template-columns: 1fr 1fr; } }

.bp-diagnose-card {
    border-radius: var(--radius-sm);
    padding: 1.75rem;
}
.bp-diagnose-card--bad {
    border: 1px solid var(--border);
    background: var(--muted);
}
.bp-diagnose-card--good {
    border: 1px solid oklch(68% .13 55 / .5);
    background: oklch(68% .13 55 / .05);
}
.bp-diagnose-card .bp-eyebrow { margin-bottom: 1.25rem; }

/* ============================================================
   STATS GRID
   ============================================================ */
.bp-stats-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}
@media (min-width: 48rem) {
    .bp-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   PILARES GRID
   ============================================================ */
.bp-pilares-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1rem;
}
@media (min-width: 48rem) { .bp-pilares-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .bp-pilares-grid { grid-template-columns: repeat(3, 1fr); } }

.bp-pilar {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card);
    padding: 1.5rem;
    transition: border-color .3s;
}
.bp-pilar:hover { border-color: oklch(68% .13 55 / .6); }

.bp-pilar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.bp-pilar__icon { color: var(--primary); }

.bp-pilar__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}
.bp-pilar__desc {
    margin-top: .5rem;
    font-size: .875rem;
    color: var(--muted-foreground);
}

/* hover underline decoration */
.bp-pilar::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 2px;
    background: var(--primary);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform .5s ease;
}
.bp-pilar:hover::after { transform: scaleX(1); }

/* ============================================================
   JORNADA — 4 steps
   ============================================================ */
.bp-jornada-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1rem;
}
@media (min-width: 48rem) { .bp-jornada-grid { grid-template-columns: repeat(4, 1fr); } }

.bp-step {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card);
    padding: 1.5rem;
}
.bp-step__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.bp-step__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.bp-step__desc {
    font-size: .875rem;
    color: var(--muted-foreground);
}

/* ============================================================
   ROLES — 3 cards
   ============================================================ */
.bp-roles-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1rem;
}
@media (min-width: 48rem) { .bp-roles-grid { grid-template-columns: repeat(3, 1fr); } }

.bp-role { padding: 1.75rem; }
.bp-role__title {
    margin-top: .75rem;
    font-size: 1.375rem;
    font-weight: 700;
}
.bp-role__desc {
    margin-top: .75rem;
    font-size: .875rem;
    color: var(--muted-foreground);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.bp-testimonials-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 48rem) { .bp-testimonials-grid { grid-template-columns: 1fr 1fr; } }

.bp-testimonial {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card);
    padding: 1.75rem;
}
.bp-testimonial__result {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}
.bp-testimonial__desc {
    margin-top: .75rem;
    font-size: .875rem;
    color: var(--muted-foreground);
}
.bp-testimonial__author {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    font-size: .8125rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted-foreground);
}

/* ============================================================
   OFFER SECTION
   ============================================================ */
.bp-offer-inner {
    border-radius: var(--radius-sm);
    border: 1px solid oklch(68% .13 55 / .4);
    background: var(--card);
    padding: 1.75rem;
    display: grid;
    gap: 2.5rem;
}
@media (min-width: 48rem) {
    .bp-offer-inner {
        grid-template-columns: 1fr 1fr;
        padding: 3rem;
    }
}

.bp-offer__h2 {
    margin-top: .75rem;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
}
@media (min-width: 48rem) { .bp-offer__h2 { font-size: 2.5rem; } }

.bp-offer__list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.bp-offer__payment {
    margin-top: 2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--background);
    padding: 1.25rem;
}
.bp-offer__payment-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--muted-foreground);
    margin-bottom: .5rem;
}
.bp-offer__payment-info {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8125rem;
    color: var(--muted-foreground);
}
.bp-offer__payment-info svg { color: var(--primary); flex-shrink: 0; }

/* Application form */
.bp-form {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--background);
    padding: 1.5rem;
}
@media (min-width: 48rem) { .bp-form { padding: 1.75rem; } }

.bp-form__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: .25rem;
}
.bp-form__subtitle {
    font-size: .8125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.bp-form__fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bp-form__row {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 36rem) {
    .bp-form__row { grid-template-columns: 1fr 1fr; }
}

.bp-form__submit {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: 50px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: filter .15s ease;
}
.bp-form__submit:hover { filter: brightness(1.1); }
.bp-form__submit:disabled { opacity: .7; cursor: not-allowed; }

.bp-form__legal {
    margin-top: .75rem;
    text-align: center;
    font-size: .75rem;
    color: var(--muted-foreground);
}

.bp-form__success {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.bp-faq { margin-top: 2.5rem; }

.bp-faq__item { border-bottom: 1px solid var(--border); }

.bp-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    background: none;
    border: none;
    cursor: pointer;
    transition: color .15s ease;
}
.bp-faq__question:hover { color: var(--primary); }

.bp-faq__chevron {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform .3s ease;
    width: 20px;
    height: 20px;
}
.bp-faq__item.open .bp-faq__chevron { transform: rotate(180deg); }

.bp-faq__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease, padding .35s ease;
}
.bp-faq__item.open .bp-faq__answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}
.bp-faq__answer p {
    font-size: .875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.bp-final-cta {
    padding-block: 6rem;
    text-align: center;
}
@media (min-width: 48rem) { .bp-final-cta { padding-block: 8rem; } }

.bp-final-cta__h2 {
    margin-top: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.05;
}
@media (min-width: 48rem) { .bp-final-cta__h2 { font-size: 3.5rem; } }

.bp-final-cta__lead {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin-inline: auto;
}
@media (min-width: 48rem) { .bp-final-cta__lead { font-size: 1.0625rem; } }

.bp-final-cta__btns {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.bp-footer {
    border-top: 1px solid var(--border);
    padding-block: 3rem;
}
.bp-footer__inner {
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
@media (min-width: 48rem) {
    .bp-footer__inner {
        flex-direction: row;
        padding-inline: 2rem;
    }
}
.bp-footer__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9375rem;
    font-weight: 700;
}
.bp-footer__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    font-size: .8125rem;
    color: var(--muted-foreground);
}
.bp-footer__links a:hover { color: var(--foreground); }
.bp-footer__copy {
    font-size: .75rem;
    color: var(--muted-foreground);
}

/* ============================================================
   PRIMARY COLOR UTILITY
   ============================================================ */
.text-primary { color: var(--primary); }
.text-muted   { color: var(--muted-foreground); }

/* ============================================================
   FORM ERROR STATE
   ============================================================ */
.bp-field input.error,
.bp-field select.error,
.bp-field textarea.error {
    border-color: oklch(62% .22 25);
}
.bp-field .bp-field-error {
    font-size: .75rem;
    color: oklch(62% .22 25);
    margin-top: .25rem;
    display: none;
}
.bp-field input.error ~ .bp-field-error,
.bp-field select.error ~ .bp-field-error,
.bp-field textarea.error ~ .bp-field-error {
    display: block;
}

/* ============================================================
   ACCESSIBILITY — skip link
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: .5rem 1rem;
    font-size: .875rem;
    font-weight: 600;
    z-index: 1000;
    border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }