:root {
    color-scheme: light;
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --bg-primary: #04140e;
    --bg-secondary: #071f19;
    --surface: #ffffff;
    --surface-muted: #0b2d24;
    --text-main: #0b1f17;
    --text-muted: #4d6159;
    --brand: #0f8b5d;
    --brand-dark: #0b5b3d;
    --brand-light: #45d692;
    --border: rgba(15, 139, 93, 0.2);
    --shadow-card: 0 30px 60px rgba(3, 17, 12, 0.4);
}

* {
    box-sizing: border-box;
    --cursor-x: 0.5;
    --cursor-y: 0.5;
}

body.landing-body {
    margin: 0;
    background: radial-gradient(circle at 20% 20%, rgba(15, 139, 93, 0.18), transparent 55%),
        linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    color: var(--text-main);
[data-animate] {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0s);
}

[data-animate="fade-left"] {
    transform: translate3d(24px, 0, 0);
}

[data-animate="fade-right"] {
    transform: translate3d(-24px, 0, 0);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
}

.landing-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    padding: clamp(32px, 6vw, 96px);
    color: #fff;
}

.landing-hero__content {
    background: rgba(6, 28, 21, 0.65);
    position: relative;
    overflow: hidden;
}

.landing-hero__content::after {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at calc(var(--cursor-x, 0.5) * 100%) calc(var(--cursor-y, 0.5) * 100%), rgba(69, 214, 146, 0.25), rgba(4, 20, 14, 0));
    opacity: 0.9;
    transition: opacity 0.3s ease, background 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: clamp(32px, 4vw, 56px);
    box-shadow: var(--shadow-card);
}

.brand-lockup {
    display: flex;
    animation: floatCard 9s ease-in-out infinite;
    flex-direction: column;

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
    gap: 8px;
}

.brand-lockup__logo {
    height: 48px;
    width: auto;
}

.brand-lockup__tagline {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.landing-copy {
    margin-top: 24px;
}

.landing-copy__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--brand-light);
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.landing-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.landing-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-group {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.landing-quote {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 3px solid var(--brand-light);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.stat-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.stat-list li {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
}

.stat-list strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 4px;
}

.stat-list span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: linear-gradient(120deg, var(--brand), var(--brand-light));
    color: #fff;
    box-shadow: 0 18px 40px rgba(8, 91, 61, 0.45);
}

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

.btn.secondary {
    background: rgba(15, 139, 93, 0.15);
    color: var(--brand-dark);
    border: 1px solid rgba(15, 139, 93, 0.4);
}

.btn.ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.landing-hero__card {
    background: #fff;
    border-radius: 32px;
    padding: clamp(28px, 4vw, 48px);
    color: var(--text-main);
    box-shadow: var(--shadow-card);
}

    z-index: 0;
.card-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: var(--brand);
    margin: 0 0 8px;
}

.landing-hero__card h2 {
    margin: 0 0 12px;
    z-index: -1;
}

.landing-hero__card ul {
    padding-left: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--brand-dark);
    font-weight: 600;
    text-decoration: none;
}

.card-description {
    margin: 0 0 16px;
    color: var(--text-muted);
    line-height: 1.5;
}

.card-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 12px 0 0;
}

.card-meta div {
    background: rgba(15, 139, 93, 0.08);
    border: 1px solid rgba(15, 139, 93, 0.15);
    border-radius: 16px;
    padding: 12px 14px;
}

.card-meta strong {
    display: block;
    font-size: 1rem;
    color: var(--brand-dark);
}

.card-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.landing-section {
    padding: clamp(40px, 8vw, 96px);
    background: #fff;
}

.landing-section--alt {
    background: #f4f8f6;
}

.landing-section--cta {
    background: var(--surface-muted);
    color: #fff;
    text-align: center;
}

.landing-section--media {
    background: #031a12;
    color: #fff;
}

.landing-section--media .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.landing-section--about {
    background: #061912;
    color: #fff;
}

.landing-section--about .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand);
    margin-bottom: 8px;
    font-size: 0.78rem;
}

.section-header h2 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-header p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.landing-section--cta p {
    color: rgba(255, 255, 255, 0.78);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(4, 20, 14, 0.08);
}

.feature-card h3 {
    margin: 0 0 8px;
    color: var(--brand-dark);
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.about-card {
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.about-card h3 {
    margin: 0 0 8px;
    color: var(--brand-light);
}

.about-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.about-meta {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.about-meta div {
    background: rgba(4, 20, 14, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}

.about-meta strong {
    display: block;
    font-size: 1.4rem;
    color: #fff;
}

.about-meta span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
}

.process-steps {
    counter-reset: step;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.process-steps li {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    color: var(--text-muted);
    line-height: 1.5;
    position: relative;
}

.process-steps li strong {
    display: block;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.process-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -14px;
    right: 16px;
    background: var(--brand);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(12, 94, 65, 0.4);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.plan-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 18px 38px rgba(5, 16, 12, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.plan-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--brand);
    margin: 0 0 4px;
    font-size: 0.74rem;
}

.plan-price {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.plan-price small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-description {
    margin: 0;
    color: var(--text-muted);
}

.plan-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}

.plan-card--highlight {
    border: 2px solid var(--brand-light);
    box-shadow: 0 28px 60px rgba(8, 88, 60, 0.12);
}

.plan-card.is-emphasis {
    border-color: var(--brand-light);
    box-shadow: 0 32px 70px rgba(8, 88, 60, 0.18);
    transform: translateY(-8px);
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.screenshot-grid figure {
    margin: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.screenshot-grid img {
    width: 100%;
    display: block;
}

.screenshot-grid figcaption {
    padding: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.2);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.benefits-list article {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 26px rgba(5, 18, 12, 0.08);
}

.benefits-list h3 {
    margin: 0 0 8px;
    color: var(--brand-dark);
}

.benefits-list p {
    margin: 0;
    color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero__card {
        animation: none;
    }

    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.landing-footer {
    padding: 32px;
    text-align: center;
    background: #02150d;
    color: rgba(255, 255, 255, 0.74);
}

.landing-footer p {
    margin: 4px 0;
}

@media (max-width: 640px) {
    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .stat-list,
    .process-steps,
    .screenshot-grid,
    .benefits-list,
    .about-grid,
    .about-meta {
        grid-template-columns: 1fr;
    }
}
