:root {
    --site-bg: #f8fafc;
    --site-ink: #07111f;
    --site-brand: #1cbf73;
    --site-brand-dark: #062c1d;
    --site-accent: #f59e0b;
}

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

[x-cloak] {
    display: none !important;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background:
        radial-gradient(circle at top left, rgba(28, 191, 115, 0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, var(--site-bg) 100%);
    color: var(--site-ink);
}

.bg-site {
    position: relative;
}

.site-noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(7, 17, 31, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 17, 31, 0.4) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, black 50%, transparent 90%);
}

.hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 34px 34px;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-pill:hover {
    background: #effcf6;
    color: #062c1d;
}

.nav-pill-active {
    background: #062c1d;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(6, 44, 29, 0.16);
}

.nav-pill-active:hover {
    background: #0b3b2d;
    color: #ffffff;
}

.field-card {
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(12px);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 999px;
    background: rgba(28, 191, 115, 0.12);
    padding: 0.55rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--site-brand-dark);
}

.section-kicker::before {
    content: '';
    height: 0.55rem;
    width: 0.55rem;
    border-radius: 999px;
    background: var(--site-brand);
}

.pitch-lines {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2rem;
}

.pitch-lines::before,
.pitch-lines::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.pitch-lines::before {
    top: 50%;
    left: 8%;
    right: 8%;
    transform: translateY(-50%);
}

.pitch-lines::after {
    left: 50%;
    top: 12%;
    bottom: 12%;
    transform: translateX(-50%);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
}

.table-wrap {
    overflow-x: auto;
}

.admin-card,
.surface-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.20);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 60px rgba(7, 17, 31, 0.06);
}

.focus-ring:focus {
    outline: 2px solid rgba(28, 191, 115, 0.35);
    outline-offset: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.15rem;
    padding: 0.9rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:focus-visible {
    outline: 2px solid rgba(28, 191, 115, 0.35);
    outline-offset: 3px;
}

.btn-sm {
    min-height: 2.75rem;
    padding: 0.75rem 1.15rem;
    font-size: 0.875rem;
}

.btn-icon {
    min-height: 2.75rem;
    width: 2.75rem;
    padding: 0;
}

.btn-primary {
    background: #1cbf73;
    border-color: #1cbf73;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(6, 44, 29, 0.18);
}

.btn-primary:hover {
    background: #0f8b55;
    border-color: #0f8b55;
    color: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
    border-color: #7be6af;
    color: #062c1d;
    background: #ffffff;
}

.btn-dark {
    background: #062c1d;
    border-color: #062c1d;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(6, 44, 29, 0.18);
}

.btn-dark:hover {
    background: #0b3b2d;
    border-color: #0b3b2d;
    color: #ffffff;
}

.btn-light-outline {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    box-shadow: none;
}

.btn-light-outline:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.30);
    color: #ffffff;
}

.about-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    background:
        radial-gradient(circle at top right, rgba(123, 230, 175, 0.22), transparent 28%),
        linear-gradient(135deg, #062c1d 0%, #0b3b2d 55%, #07111f 100%);
    color: #ffffff;
    box-shadow: 0 25px 80px rgba(7, 17, 31, 0.20);
}

.about-hero-card::before {
    content: '';
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1.4rem;
    pointer-events: none;
}

.about-hero-card .section-kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.about-hero-card .section-kicker::before {
    background: #7be6af;
}

.about-hero-card__lead {
    color: rgba(241, 245, 249, 0.96);
}

.about-hero-card__image {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
}

.about-hero-card .field-card {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.14);
}

.cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(123, 230, 175, 0.22), transparent 24%),
        linear-gradient(130deg, #062c1d 0%, #0b3b2d 52%, #07111f 100%);
    color: #f8fafc;
    box-shadow: 0 25px 80px rgba(7, 17, 31, 0.20);
}

.cta-panel::before {
    content: '';
    position: absolute;
    inset: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1.5rem;
    pointer-events: none;
}

.cta-panel .section-kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.cta-panel .section-kicker::before {
    background: #7be6af;
}

.site-footer {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(28, 191, 115, 0.18), transparent 28%),
        linear-gradient(135deg, #07111f 0%, #062c1d 56%, #04110d 100%);
    color: #e2e8f0;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.22;
    pointer-events: none;
}

.site-footer__inner,
.site-footer__bottom {
    position: relative;
    z-index: 1;
}

.site-footer__title {
    color: #ffffff;
}

.site-footer__text {
    color: rgba(226, 232, 240, 0.92);
}

.site-footer__heading {
    color: #9be9bf;
}

.site-footer__link {
    color: rgba(248, 250, 252, 0.94);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-footer__link:hover {
    color: #8ef0b8;
}

.site-footer__chip {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.site-footer__meta {
    color: rgba(226, 232, 240, 0.76);
}

.site-footer__divider {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
