/* Global Layout */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
    background-color: #f8fafc;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

/* Header & Navigation */
.site-header {
    background: #020617;
    color: #e5e7eb;
    border-bottom: 1px solid #1f2937;
}

.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #38bdf8, #0f172a 55%, #22c55e 100%);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.6);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.brand-tagline {
    font-size: 0.7rem;
    color: #9ca3af;
}

/* PureCSS nav overrides + responsive */
nav.pure-menu {
    background: transparent;
}

#nav-menu {
    display: flex;
    align-items: center;
}

/* Mobile toggle */
.nav-toggle-btn {
    display: none;
    background: none;
    border: 1px solid #374151;
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    color: #e5e7eb;
    cursor: pointer;
}

.nav-toggle-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #e5e7eb;
    margin: 3px 0;
}

/* Pure menu links */
.pure-menu-link {
    color: #e5e7eb;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pure-menu-link:hover,
.pure-menu-link:focus {
    background-color: transparent;
    color: #38bdf8;
}

.pure-menu-link:visited {
    color: #e5e7eb;
}

.pure-menu-selected > .pure-menu-link,
.pure-menu-link.pure-menu-selected {
    color: #22c55e;
    font-weight: 600;
}

.header-cta {
    margin-left: 1rem;
}

.header-cta a {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #22c55e;
    color: #ecfdf5;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.header-cta a:hover {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-color: #4ade80;
}

/* Hero */
.hero {
    background: radial-gradient(circle at top left, #0f172a, #020617 55%, #020617 100%);
    color: #e5e7eb;
    padding: 3.5rem 1rem 3rem;
}

.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: 2.4rem;
    line-height: 1.1;
    margin: 0 0 0.75rem;
}

.hero-highlight {
    background: linear-gradient(120deg, #38bdf8, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 0.98rem;
    color: #9ca3af;
    max-width: 32rem;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ecfdf5;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4ade80, #22c55e);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    border: 1px solid #374151;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.8);
}

.btn-secondary:hover {
    border-color: #6b7280;
    background: rgba(15, 23, 42, 1);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.75rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.hero-meta strong {
    color: #e5e7eb;
}

.hero-panel {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 1.25rem;
    padding: 1.4rem 1.3rem;
    border: 1px solid #1f2937;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.85);
}

.hero-panel-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.hero-panel-main {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.hero-calendar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.86rem;
    color: #38bdf8;
    text-decoration: none;
}

.hero-calendar-link span.icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.hero-calendar-link:hover {
    color: #7dd3fc;
}

.hero-partners {
    margin-top: 1.1rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.hero-partner-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.35rem;
}

.partner-badge {
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    border: 1px solid #1e293b;
    background: rgba(15, 23, 42, 0.9);
    font-size: 0.7rem;
    color: #e5e7eb;
}

/* Sections */
.section {
    padding: 3rem 1rem 2.5rem;
}

.section-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 1.75rem;
}

.section-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #22c55e;
    margin-bottom: 0.4rem;
}

.section-title {
    font-size: 1.5rem;
    margin: 0 0 0.35rem;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    max-width: 34rem;
}

/* Service grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.25rem 1.25rem 1.3rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: #ecfdf5;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.service-pill span.dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
}

.service-title {
    font-size: 1.02rem;
    margin-bottom: 0.3rem;
}

.service-partner {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.88rem;
    color: #4b5563;
    margin-bottom: 0.7rem;
}

.service-meta {
    font-size: 0.78rem;
    color: #6b7280;
    margin-bottom: 0.9rem;
}

.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.service-actions a.primary-link {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: none;
    background: #0f172a;
    color: #e5e7eb;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 600;
}

.service-actions a.primary-link:hover {
    background: #111827;
}

.service-actions a.secondary-link {
    font-size: 0.78rem;
    color: #4b5563;
    text-decoration: none;
}

.service-actions a.secondary-link:hover {
    color: #111827;
}

/* Highlight strip */
.highlight-strip {
    background: #020617;
    color: #e5e7eb;
    padding: 2.1rem 1rem;
}

.highlight-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.highlight-text {
    max-width: 32rem;
}

.highlight-text strong {
    color: #22c55e;
}

.highlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* About & Services shared */
.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
}

.proof-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.proof-list li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    margin-right: 0.5rem;
}

.mini-card {
    background: #ffffff;
    border-radius: 0.85rem;
    border: 1px solid #e5e7eb;
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
    color: #4b5563;
}

.mini-card strong {
    color: #111827;
}

.stacked-cards {
    display: grid;
    gap: 0.8rem;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.25rem 1.25rem 1.3rem;
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: #4b5563;
}

.contact-meta {
    margin-top: 0.8rem;
    font-size: 0.82rem;
    color: #6b7280;
}

.contact-meta div {
    margin-bottom: 0.2rem;
}

.contact-form {
    display: grid;
    gap: 0.8rem;
}

.contact-form label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.55rem 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    font-size: 0.88rem;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form small {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Footer */
.site-footer {
    background: #020617;
    color: #9ca3af;
    padding: 1.5rem 1rem 1.7rem;
    font-size: 0.78rem;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-links a:hover {
    color: #e5e7eb;
}

.footer-calendar {
    color: #e5e7eb;
}

.footer-calendar a {
    color: #38bdf8;
    text-decoration: none;
}

.footer-calendar a:hover {
    color: #7dd3fc;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .two-column,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

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

@media (max-width: 720px) {
    .header-inner {
        align-items: center;
    }

    .nav-toggle-btn {
        display: inline-block;
        margin-left: 0.75rem;
    }

    #nav-menu {
        display: none;
        position: absolute;
        top: 56px;
        right: 1rem;
        background: #020617;
        border-radius: 0.75rem;
        border: 1px solid #1f2937;
        padding: 0.4rem 0.2rem;
        z-index: 40;
    }

    #nav-menu.nav-open {
        display: block;
    }

    #nav-menu .pure-menu-list {
        display: block;
    }

    #nav-menu .pure-menu-item {
        display: block;
    }

    #nav-menu .pure-menu-link {
        padding: 0.45rem 0.9rem;
        display: block;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 2.5rem;
    }

    .service-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .highlight-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .section {
        padding-top: 2.3rem;
        padding-bottom: 2.1rem;
    }
}

.pure-menu-horizontal {width: fit-content;}
