@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #07110b;
    --bg-soft: #0d1811;
    --panel: #101f16;
    --panel-strong: #13271b;
    --line: rgba(120, 255, 174, 0.14);
    --line-strong: rgba(120, 255, 174, 0.28);
    --text: #f4fff8;
    --text-soft: #a8c2b2;
    --text-dark: #102015;
    --green: #56f08d;
    --green-strong: #7effab;
    --green-muted: rgba(86, 240, 141, 0.14);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(126, 255, 171, 0.09), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(86, 240, 141, 0.08), transparent 24%),
        linear-gradient(180deg, #07110b 0%, #08130d 45%, #0b1510 100%);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3 {
    font-weight: 800;
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 1.18;
    letter-spacing: -0.018em;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(7, 17, 11, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-shell {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
    flex-wrap: nowrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(86, 240, 141, 0.25), rgba(86, 240, 141, 0.08));
    border: 1px solid var(--line-strong);
    color: var(--green-strong);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.brand-copy {
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-accent {
    color: var(--green-strong);
}

.nav-links,
.hero-actions,
.inline-actions,
.footer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nav-links {
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-links a {
    position: relative;
    padding: 11px 14px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: 0.22s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--text);
    background: rgba(86, 240, 141, 0.08);
    border-color: var(--line);
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.22s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--green);
    color: #08110b;
    box-shadow: 0 16px 34px rgba(86, 240, 141, 0.16);
}

.btn-primary:hover {
    background: var(--green-strong);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--line-strong);
    background: rgba(86, 240, 141, 0.08);
}

.btn-block {
    width: 100%;
}

.hero {
    padding: 88px 0 56px;
}

.page-shell {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.34s ease, transform 0.34s ease;
}

body.is-ready .page-shell {
    opacity: 1;
    transform: translateY(0);
}

body.is-leaving .page-shell {
    opacity: 0;
    transform: translateY(18px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.hero-grid-single {
    grid-template-columns: 1fr;
}

.hero-copy,
.hero-panel,
.software-copy,
.feature-stack,
.download-card,
.service-card,
.detail-card {
    animation: rise 0.6s ease both;
}

.hero-copy h1 {
    font-size: clamp(1.85rem, 3.4vw, 3.2rem);
    line-height: 1.14;
    letter-spacing: -0.022em;
    margin: 16px 0 22px;
    font-weight: 800;
}

.hero-text,
.section-heading p,
.service-card p,
.feature-card p,
.download-card p,
.detail-card p,
.about-copy p,
.site-footer p,
.metric-card p {
    color: var(--text-soft);
}

.hero-home .hero-copy {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(18, 34, 23, 0.94), rgba(10, 21, 14, 0.96));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-home .hero-actions {
    margin-top: 32px;
}

.hero-product .hero-copy {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(18, 34, 23, 0.94), rgba(10, 21, 14, 0.96));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-product .hero-actions {
    margin-top: 32px;
}

.hero-panel,
.feature-stack {
    display: grid;
    gap: 14px;
    align-content: stretch;
}

.hero-panel .metric-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-card,
.feature-card,
.service-card,
.download-card,
.detail-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(19, 39, 27, 0.9), rgba(12, 24, 17, 0.95));
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.metric-card strong,
.feature-card h3,
.service-card h3,
.download-card h3,
.detail-card h3 {
    display: block;
    font-size: 1.15rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.metric-label,
.eyebrow {
    display: inline-block;
    color: var(--green-strong);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow-dark {
    color: #1f8e4a;
}

.hero-points,
.bullet-list {
    margin-top: 16px;
    display: grid;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.6;
}

.hero-points li,
.bullet-list li {
    list-style: none;
    position: relative;
    padding-left: 18px;
}

.hero-points li::before,
.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
}

.section {
    padding: 72px 0;
}

.section-dark {
    background: rgba(255, 255, 255, 0.015);
}

.section-panel {
    background: linear-gradient(180deg, rgba(8, 18, 12, 0.55), rgba(15, 26, 19, 0.95));
}

.section-light {
    background: #edf6ef;
    color: var(--text-dark);
}

.section-light h2,
.section-light h3,
.section-light a,
.section-light p,
.section-light strong {
    color: inherit;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 36px;
}

.section-heading p {
    margin-top: 10px;
    line-height: 1.72;
    font-size: 1.02rem;
}

.section-heading h2 {
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 1.18;
    letter-spacing: -0.018em;
    margin: 12px 0;
}

.card-grid,
.download-grid,
.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.shot-showcase {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 52px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid var(--line);
}

.shot-showcase:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.shot-showcase:first-child {
    padding-top: 0;
}

.shot-showcase-img {
    border-radius: var(--radius-md);
    border: 1px solid var(--line-strong);
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.shot-showcase-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.shot-showcase-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.shot-showcase-body h3 {
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: -0.014em;
    font-weight: 800;
}

.shot-showcase-body p {
    color: var(--text-soft);
    line-height: 1.7;
}

.shot-showcase--reverse .shot-showcase-img {
    order: 2;
}

.shot-showcase--reverse .shot-showcase-body {
    order: 1;
}

@media (max-width: 860px) {
    .shot-showcase {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .shot-showcase--reverse .shot-showcase-img,
    .shot-showcase--reverse .shot-showcase-body {
        order: unset;
    }

    .shot-showcase-img {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 600px) {
    .nav-shell {
        gap: 14px;
    }

    .nav-links a {
        padding: 8px 10px;
        font-size: 0.88rem;
    }

    .nav-shell .btn {
        padding: 0 14px;
        font-size: 0.88rem;
        min-height: 40px;
    }
}

.software-feature,
.about-grid,
.policy-grid,
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.feature-card span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 10px;
    background: var(--green-muted);
    color: var(--green-strong);
    font-weight: 800;
}

.site-footer {
    padding: 40px 0 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #07110b;
}

.site-footer h3 {
    font-size: 1rem;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.site-footer p,
.site-footer a {
    font-size: 0.93rem;
    line-height: 1.75;
}

.about-copy p + p {
    margin-top: 14px;
}

.software-copy p + p {
    margin-top: 14px;
}

.software-copy p {
    line-height: 1.72;
}

.service-card p,
.detail-card p,
.download-card p {
    line-height: 1.68;
    font-size: 0.97rem;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .software-feature,
    .about-grid,
    .policy-grid,
    .footer-grid,
    .download-grid,
    .card-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 70px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .hero-copy,
    .hero-product .hero-copy {
        padding: 26px;
    }
}
