:root {
    --brand-primary: rgb(3, 252, 107);
    --brand-secondary: rgb(179, 164, 116);
    --text: #0f172a;
    --muted: #475569;
    --bg: #ffffff;
    --surface: #f8fafc;
    --border: #e2e8f0;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Nunito Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    /* slightly taller to fit larger logo */
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.brand span {
    letter-spacing: 0.2px;
    font-size: 20px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.nav a:hover {
    color: var(--muted);
}

.nav .signin {
    color: var(--muted);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    color: #0b1b12;
    background: var(--brand-primary);
    box-shadow: 0 8px 22px rgba(3, 252, 107, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 10px 28px rgba(3, 252, 107, 0.45);
}

/* Accessible focus styles */
.btn:focus-visible,
.nav a:focus-visible,
a:focus-visible,
.nav-toggle:focus-visible {
    outline: 3px solid rgba(3, 252, 107, 0.6);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(3, 252, 107, 0.15);
}

.btn-secondary {
    color: #2b2416;
    background: var(--brand-secondary);
    box-shadow: 0 8px 22px rgba(179, 164, 116, 0.35);
}

.btn-secondary:hover {
    box-shadow: 0 10px 28px rgba(179, 164, 116, 0.45);
}

.btn-outline {
    color: var(--text);
    border: 2px solid var(--border);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--muted);
}

.hero {
    padding: clamp(48px, 8vw, 96px) 0;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(3, 252, 107, 0.12), transparent 60%), radial-gradient(900px 400px at 90% 10%, rgba(179, 164, 116, 0.14), transparent 60%), linear-gradient(180deg, #fff, #fbfbfb);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    border-bottom: 1px solid var(--border);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
}

.hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4.2vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero-copy p {
    margin: 0 0 20px;
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--muted);
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;
    width: min(420px, 85%);
    aspect-ratio: 4/4.8;
    border-radius: 24px;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff, #f3fff8);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(3, 252, 107, 0.18);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: stretch;
    justify-items: center;
    gap: 16px;
}

.hero-card .score {
    position: static;
    display: grid;
    gap: 4px;
    justify-items: end;
    justify-self: end;
    align-self: start;
    z-index: 2;
}

.hero-card .analysis-text {
    margin: 0 auto;
    align-self: center;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    max-width: 360px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.hero-card .pill-stack {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    justify-self: center;
    align-self: end;
}

.hero-card .pill {
    display: inline-flex;
    padding: 9px 14px;
}

.hero-card .pill.alt {
    bottom: auto;
}

.hero-card .glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(closest-side, rgba(3, 252, 107, 0.25), transparent);
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

.hero-card .pill {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(3, 252, 107, 0.12);
    color: #0b1b12;
    font-weight: 700;
    border: 1px solid rgba(3, 252, 107, 0.35);
}

.hero-card .pill.alt {
    background: rgba(179, 164, 116, 0.12);
    color: #2b2416;
    border-color: rgba(179, 164, 116, 0.35);
}

.hero-card .score {
    position: static;
    display: grid;
    gap: 4px;
    justify-items: end;
    justify-self: end;
    align-self: start;
}

.hero-card .score .label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

.hero-card .score .value {
    font-size: 42px;
    font-weight: 900;
    color: var(--brand-primary);
    text-shadow: 0 2px 0 rgba(3, 252, 107, 0.25);
}

@keyframes pulse {

    0%,
    100% {
        opacity: .7
    }

    50% {
        opacity: 1
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-card .glow {
        animation: none;
    }

    .btn,
    .btn:hover,
    .btn:active {
        transition: none;
    }
}

.section-head {
    text-align: center;
    margin-bottom: 28px;
}

.section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(22px, 3vw, 36px);
    letter-spacing: -0.01em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

.features {
    padding: 64px 0;
    background: var(--bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    background: var(--surface);
}

.feature .icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(3, 252, 107, 0.12);
    border: 1px solid rgba(3, 252, 107, 0.25);
    margin-bottom: 12px;
}

.feature h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

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

.proof {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #fff, #fcfffd);
}

.proof-inner {
    display: grid;
    gap: 14px;
    justify-items: center;
}

.eyebrow {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
}

.logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(80px, 1fr));
    align-items: center;
    gap: 18px;
    opacity: .9;
}

.logos img {
    height: 28px;
    filter: grayscale(100%);
    opacity: .75;
}

.pricing {
    padding: 72px 0;
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.price-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: grid;
    align-content: start;
    gap: 12px;
}

.price-card .btn {
    margin-top: auto;
}

.price-card .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-secondary);
    color: #2b2416;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 26px rgba(179, 164, 116, .25);
}

.price-card.recommended {
    border-color: var(--brand-secondary);
    box-shadow: 0 16px 40px rgba(179, 164, 116, 0.25);
}

.price-card.premium {
    border-color: var(--brand-primary);
    box-shadow: 0 16px 40px rgba(3, 252, 107, 0.25);
}

.price-card h3 {
    margin: 0;
    font-size: 20px;
}

.price-card .subtitle {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}

.list {
    margin: 8px 0 12px;
    padding-left: 18px;
    color: var(--muted);
}

.testimonials {
    padding: 64px 0;
    background: linear-gradient(180deg, #ffffff, #f8fff9);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.quotes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.quotes figure {
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    background: var(--bg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.quotes blockquote {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 18px;
}

.quotes figcaption {
    color: var(--muted);
    font-size: 14px;
}

.faq {
    padding: 64px 0;
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq details {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    background: var(--surface);
}

.faq summary {
    cursor: pointer;
    font-weight: 800;
}

.faq p {
    margin: 8px 0 0;
    color: var(--muted);
}

.terms {
    padding: 56px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.terms strong {
    color: var(--text);
}

.cta {
    padding: 72px 0;
    background: radial-gradient(800px 300px at 10% 0%, rgba(3, 252, 107, 0.18), transparent 55%), radial-gradient(600px 260px at 90% 50%, rgba(179, 164, 116, 0.18), transparent 55%), linear-gradient(180deg, #ffffff, #f6fff9);
    border-top: 1px solid var(--border);
}

.cta-inner {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
}

.cta h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 36px);
}

.cta p {
    margin: 0 0 8px;
    color: var(--muted);
}

.site-footer {
    padding: 26px 0;
    border-top: 1px solid var(--border);
    background: #fff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.footer-nav {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

.footer-nav a:hover {
    color: var(--text);
}

.support {
    padding: 48px 0;
    background: #fff;
    border-top: 1px solid var(--border);
}

.support-inner {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
}

.support a {
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid var(--brand-primary);
    padding-bottom: 2px;
}

.support a:hover {
    color: var(--muted);
}

@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .quotes {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .nav {
        display: none;
        position: absolute;
        right: 16px;
        top: 64px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 8px;
        flex-direction: column;
        gap: 8px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    }

    .nav.open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }
}