:root {
    --color-bg: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-bg-tertiary: #1a1a24;
    --color-text: #ffffff;
    --color-text-secondary: #a1a1aa;
    --color-text-muted: #71717a;
    --color-accent: #3b82f6;
    --color-accent-light: #60a5fa;
    --color-accent-dark: #2563eb;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-light: rgba(255, 255, 255, 0.05);
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    /* Slightly more compact */
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input {
    font-family: inherit;
    border: none;
    outline: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
}

h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    /* A little bit smaller, still big */
    font-weight: 900;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.25;
}

h3 {
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight: 600;
}

/* PURE WHITE HEADLINE (No Gradient) */
.text-gradient {
    background: none;
    -webkit-text-fill-color: initial;
    color: #ffffff;
}

.section__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section__label--accent {
    color: var(--color-accent-light);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__title {
    margin-bottom: 16px;
}

.section__subtitle {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--color-accent);
    /* Solid Blue */
    color: white;
    border: none;
}

.btn--primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.9375rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-light);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    color: var(--color-accent);
}

.nav__menu {
    display: flex;
    gap: 32px;
}

.nav__link {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.nav__link:hover {
    color: var(--color-text);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__toggle {
    display: none;
    width: 32px;
    height: 32px;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    position: absolute;
    left: 4px;
    transition: var(--transition);
}

.hamburger {
    top: 15px;
}

.hamburger::before,
.hamburger::after {
    content: '';
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-glow);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent-light);
    margin-bottom: 24px;
}

.hero__title {
    margin-bottom: 24px;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    /* Widened for confidence */
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero__trust {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    font-weight: 500;
}

.hero__stats {
    display: flex;
    gap: 40px;
}

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.hero__stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* MOCKUP IMPROVED: No Glow Spam, Lighter BG */
.hero__visual {
    position: relative;
    transform: scale(1.02);
}

.hero__dashboard {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.3),
        0 10px 10px -5px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.dashboard__header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #252e42;
    border-bottom: 1px solid var(--color-border-light);
}

.dashboard__dots {
    display: flex;
    gap: 8px;
}

.dashboard__dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.8;
}

.dashboard__dots span:nth-child(1) {
    background: #ff5f57;
}

.dashboard__dots span:nth-child(2) {
    background: #ffbd2e;
}

.dashboard__dots span:nth-child(3) {
    background: #28ca41;
}

.dashboard__content {
    padding: 24px;
}

.dashboard__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.mini-card {
    background: #334155;
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    border: 1px solid var(--color-border-light);
}

.mini-card__icon {
    margin-bottom: 8px;
    color: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-card__value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.dashboard__chart {
    background: #334155;
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--color-border-light);
}

.chart__bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100px;
    gap: 12px;
}

.chart__bar {
    width: 100%;
    background: var(--color-accent);
    border-radius: 4px 4px 0 0;
    height: var(--h);
    animation: barGrow 1s ease-out forwards;
}

@keyframes barGrow {
    from {
        height: 0;
    }

    to {
        height: var(--h);
    }
}

/* SVG Colors */
svg {
    width: 24px;
    height: 24px;
}

.mini-card__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.logos {
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.logos__title {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 32px;
}

.logos__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-muted);
    opacity: 0.5;
    transition: var(--transition);
}

.logo-item svg {
    width: 28px;
    height: 28px;
}

.logo-item:hover {
    opacity: 1;
    color: white;
    /* Default fallback */
}

/* BRAND LOGO HOVER COLORS */
.logo-item--stripe:hover {
    color: #635bff;
}

.logo-item--notion:hover {
    color: #ffffff;
}

.logo-item--slack:hover {
    color: #E01E5A;
}

.logo-item--vercel:hover {
    color: #ffffff;
}

.logo-item--linear:hover {
    color: #5E6AD2;
}

.problem-solution {
    padding: 100px 0;
}

.problem-solution__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.3);
}

.problem-card__icon {
    margin-bottom: 24px;
    color: var(--color-text-muted);
    /* Muted Gray Icon */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
}

.problem-card h3 {
    margin-bottom: 12px;
    color: white;
    /* Brighter for contrast */
    font-weight: 700;
}

.problem-card p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

.solution-block {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-xl);
}

.solution-block__title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.solution-block p {
    color: var(--color-text-secondary);
}

.features {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

.feature-card__icon {
    font-size: 2rem;
    margin-bottom: 20px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    /* Grayscale Icon */
    transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
    border-color: var(--color-accent);
    color: white;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

.how-it-works {
    padding: 100px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: var(--color-border);
}

.testimonials {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card--featured {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.testimonial-card__stars {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--color-text-secondary);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-bg);
    box-shadow: 0 0 0 2px var(--color-border);
}

.testimonial-card__author strong {
    display: block;
    margin-bottom: 2px;
}

.testimonial-card__author span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.pricing {
    padding: 100px 0;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--color-border-light);
}

.pricing-card--popular {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent);
    transform: scale(1.02);
    z-index: 10;
    background: var(--color-bg-secondary);
}

.pricing-card--popular:hover {
    transform: scale(1.02);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-card__tagline {
    color: var(--color-accent-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.pricing-card__price {
    margin: 24px 0;
}

.pricing-card__price .amount {
    font-size: 3rem;
    font-weight: 800;
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-card li {
    padding: 12px 0;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    gap: 12px;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.about {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__content p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about__values {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.about__values span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--color-text);
}

.about__values span svg {
    color: var(--color-accent);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--color-accent);
}

.stat-card__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-card span:last-child {
    color: var(--color-text-secondary);
}

.cta {
    padding: 120px 0;
    text-align: center;
    background: var(--color-bg-secondary);
    /* Dark background */
    border-top: 1px solid var(--color-border-light);
}

.cta__title {
    margin-bottom: 32px;
    font-size: 2.5rem;
    color: white;
}

.cta p {
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.cta__form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 24px;
    align-items: center;
}

.cta__form input {
    flex: 1;
    height: 52px;
    padding: 0 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    color: var(--color-text);
    font-size: 1rem;
}

.cta__form input:focus {
    border-color: var(--color-accent);
}

.cta__form input::placeholder {
    color: var(--color-text-muted);
}

.cta__form button {
    height: 52px;
    padding: 0 32px;
    border-radius: 50px;
}

.cta__note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 24px;
    display: block;
}

.footer {
    padding: 100px 0 60px;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border-light);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer__brand p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: var(--transition);
}

.footer__social a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer__links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
}

.footer__links a {
    display: block;
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    padding: 6px 0;
}

.footer__links a:hover {
    color: var(--color-accent-light);
}

.footer__bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-border-light);
}

.footer__bottom p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__description {
        margin: 0 auto 40px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        max-width: 500px;
        margin: 40px auto 0;
    }

    .problem-solution__grid,
    .features__grid,
    .steps,
    .testimonials__grid,
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card--popular {
        transform: none;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .about__grid,
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav__menu,
    .nav__actions {
        display: none;
    }

    .nav__toggle {
        display: block;
    }

    .nav__menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--color-bg);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .logos__grid {
        gap: 30px;
    }

    .cta__form {
        flex-direction: column;
    }

    .footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}