:root {
    --nova-ink: #10231f;
    --nova-muted: #5b6f69;
    --nova-line: #d7e3de;
    --nova-soft: #edf5f2;
    --nova-brand: #0f766e;
    --nova-brand-dark: #0b5a54;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.nova-body {
    margin: 0;
    color: var(--nova-ink);
    background: #f7faf9;
    font-family: "Source Sans 3", system-ui, sans-serif;
    line-height: 1.55;
}

.nova-wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.nova-top {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(247, 250, 249, 0.92);
    border-bottom: 1px solid rgba(215, 227, 222, 0.8);
}
.nova-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 20px;
}
.nova-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.nova-brand img { height: 36px; width: auto; display: block; }
.nova-brand__mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--nova-brand);
    color: #fff;
    font-family: Fraunces, Georgia, serif;
    font-weight: 700;
}
.nova-nav { display: flex; gap: 22px; }
.nova-nav a {
    color: var(--nova-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.nova-nav a:hover { color: var(--nova-brand); }

.nova-hero {
    position: relative;
    min-height: min(88vh, 760px);
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
}
.nova-hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(8, 28, 25, 0.88) 12%, rgba(15, 118, 110, 0.55) 55%, rgba(8, 28, 25, 0.35) 100%),
        url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1800&q=80") center/cover;
    transform: scale(1.02);
    animation: nova-pan 18s ease-in-out infinite alternate;
}
.nova-hero__content {
    position: relative;
    z-index: 1;
    padding: 72px 0 84px;
    max-width: 760px;
    animation: nova-rise 0.9s ease both;
}
.nova-hero__brand {
    margin: 0 0 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b7ebe4;
}
.nova-hero h1 {
    margin: 0;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
}
.nova-hero__lead {
    margin: 18px 0 0;
    max-width: 34rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.86);
}
.nova-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.nova-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}
.nova-btn:hover { transform: translateY(-1px); }
.nova-btn--primary { background: #fff; color: var(--nova-brand-dark); }
.nova-btn--ghost { border: 1px solid rgba(255,255,255,0.45); color: #fff; }
.nova-btn--light { background: #fff; color: var(--nova-brand-dark); }

.nova-section { padding: 88px 0; }
.nova-section--alt { background: #fff; border-block: 1px solid var(--nova-line); }
.nova-section__head { max-width: 560px; margin-bottom: 36px; }
.nova-section h2,
.nova-about h2,
.nova-page h2,
.nova-cta h2 {
    margin: 0;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
}
.nova-section__head p,
.nova-about p,
.nova-cta p {
    margin: 12px 0 0;
    color: var(--nova-muted);
    font-size: 1.05rem;
}

.nova-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.nova-cards article {
    background: #fff;
    border: 1px solid var(--nova-line);
    border-radius: 18px;
    padding: 24px;
    animation: nova-rise 0.8s ease both;
}
.nova-cards article:nth-child(2) { animation-delay: 0.08s; }
.nova-cards article:nth-child(3) { animation-delay: 0.16s; }
.nova-cards h3 { margin: 0 0 8px; font-size: 1.15rem; }
.nova-cards p { margin: 0; color: var(--nova-muted); }

.nova-about {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.nova-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.nova-stats li {
    display: grid;
    gap: 2px;
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--nova-soft);
}
.nova-stats strong {
    font-family: Fraunces, Georgia, serif;
    font-size: 1.8rem;
    color: var(--nova-brand);
}
.nova-stats span { color: var(--nova-muted); font-size: 0.92rem; }

.nova-page { margin-bottom: 36px; }
.nova-page__body { margin-top: 12px; color: var(--nova-muted); }

.nova-cta {
    padding: 80px 0;
    background:
        linear-gradient(135deg, var(--nova-brand-dark), var(--nova-brand));
    color: #fff;
    text-align: center;
}
.nova-cta p { color: rgba(255,255,255,0.86); margin-bottom: 24px; }

.nova-footer {
    background: #0b1715;
    color: rgba(255,255,255,0.72);
    padding: 28px 0;
}
.nova-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.92rem;
}
.nova-footer strong { color: #fff; }

@keyframes nova-rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes nova-pan {
    from { transform: scale(1.02) translate3d(0, 0, 0); }
    to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@media (max-width: 900px) {
    .nova-nav { display: none; }
    .nova-cards,
    .nova-about { grid-template-columns: 1fr; }
    .nova-hero { min-height: 72vh; }
    .nova-hero__content { padding: 56px 0 64px; }
}
