.landing-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--bg);
}

.landing-main {
    flex: 1;
}

/* Hero — clean & professional */
.hero {
    position: relative;
    text-align: center;
    padding: clamp(3rem, 8vw, 5rem) 1.5rem clamp(2rem, 5vw, 3.5rem);
    max-width: 720px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.hero-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.hero-logo {
    width: 52px;
    height: 52px;
}

.hero h1 {
    position: relative;
    font-size: clamp(2.25rem, 6vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.625rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .tagline {
    position: relative;
    font-size: clamp(1.3125rem, 3.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.35;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero .subtitle {
    position: relative;
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.65;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust {
    position: relative;
    list-style: none;
    margin: 0 auto 1.75rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    max-width: 640px;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.hero-trust-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    height: 1.125rem;
    font-size: 0.6875rem;
    font-weight: 800;
    color: var(--success, #16a34a);
    background: rgba(22, 163, 74, 0.1);
    border-radius: 999px;
    flex-shrink: 0;
}

.hero-stats-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.875rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

.stat-chip strong {
    color: var(--blue);
    font-weight: 700;
}

.stat-chip.stat-live strong {
    color: var(--success);
}

.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8125rem 1.75rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
}

/* Search */
.tools-search-wrap {
    max-width: 520px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.tools-search {
    position: relative;
}

.tools-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-subtle);
    pointer-events: none;
    width: 18px;
    height: 18px;
}

.tools-search input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-family: var(--font);
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.tools-search input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), var(--shadow-sm);
}

.tools-search input::placeholder {
    color: var(--text-subtle);
}

.search-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Suites */
.suites-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.suites-section > .section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.suites-section > .section-head h2 {
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.suites-section > .section-head p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.suite-block {
    margin-bottom: 2.75rem;
}

.suite-block.is-hidden {
    display: none;
}

.suite-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.suite-header .suite-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-soft);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.suite-header h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.suite-header h3 span.suite-brand {
    color: var(--purple);
}

.suite-header h3 span:not(.suite-brand) {
    color: var(--text);
}

.suite-path {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--text-subtle);
    margin-top: 0.125rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.tool-card {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.375rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    min-height: 130px;
}

.tool-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tool-card-icon {
    line-height: 1;
    margin-bottom: 0.125rem;
}

.tool-card-path {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--blue);
    opacity: 0.75;
    margin-bottom: 0.125rem;
}

.tool-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-top: 0.125rem;
}

.tool-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
}

/* Roadmap */
.roadmap-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.roadmap-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    background-image: var(--gradient-soft);
}

.roadmap-card h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    letter-spacing: -0.02em;
}

.roadmap-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.roadmap-suites {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.roadmap-pill {
    padding: 0.4375rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.roadmap-pill strong {
    color: var(--purple);
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.25rem 2.5rem;
    }

    .hero-logo-wrap {
        width: 72px;
        height: 72px;
    }

    .hero-logo {
        width: 42px;
        height: 42px;
    }

    .suites-section {
        padding: 0 1rem 3rem;
    }

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