/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: 'Figtree', sans-serif; background: #ffffff; }

/* === Header === */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 4vw;
    border-bottom: 1px solid #eef1f4;
}

.header-logo {
    height: 26px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    gap: 34px;
    align-items: center;
    font-size: 15px;
    color: #3a4452;
    font-weight: 500;
}

.header-nav a {
    color: inherit;
    text-decoration: none;
}

.sign-in-pill {
    padding: 9px 18px;
    background: #f0f2f5;
    color: #aeb6c1;
    border-radius: 999px;
    font-weight: 600;
    cursor: not-allowed;
    font-size: 15px;
}

/* === Hero === */
.hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 4vw 32px;
}

.hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3f5e8c;
    margin-bottom: 22px;
}

.hero h1 {
    margin: 0;
    font-size: 58px;
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0f1b2d;
    max-width: 840px;
    text-wrap: balance;
}

.hero p {
    margin: 26px 0 0;
    font-size: 19px;
    line-height: 1.55;
    color: #5a6675;
    max-width: 560px;
}

/* === Tools Section === */
.tools-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 8px 4vw 64px;
}

.tools-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 26px;
}

.tools-header-title {
    font-size: 14px;
    font-weight: 600;
    color: #0f1b2d;
}

.tools-header-count {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #8a94a3;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

/* === Tool Card (active) === */
.tool-card {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid #e6eaef;
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
    transition: all .18s ease;
    text-decoration: none;
    color: inherit;
}

.tool-card:hover {
    border-color: #3f5e8c;
    box-shadow: 0 10px 30px rgba(63, 94, 140, .13);
    transform: translateY(-2px);
}

/* === Tool Card (coming soon) === */
.tool-card--coming {
    position: relative;
    background: #fafbfc;
    border: 1px dashed #d6dce3;
    border-radius: 14px;
    padding: 20px;
    cursor: default;
}

.tool-card--coming .tool-card__icon {
    background: #f0f2f5;
    color: #9aa4b2;
}

.tool-card--coming .tool-card__title {
    color: #6b7585;
}

.tool-card--coming .tool-card__desc {
    color: #9aa4b2;
}

.tool-card--coming .tool-card__cta {
    color: #aeb6c1;
}

/* === Card internals === */
.tool-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.tool-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eef2f8;
    color: #3f5e8c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tool-card__title {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #0f1b2d;
}

.tool-card__desc {
    margin-top: 6px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #5a6675;
}

.tool-card__cta {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #3f5e8c;
}

/* === Badges === */
.badge {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 9px;
    border-radius: 999px;
}

.badge--new {
    color: #3f5e8c;
    background: #eef2f8;
}

.badge--beta {
    color: #7a6a2f;
    background: #f5f0e0;
}

.badge--coming {
    color: #8a94a3;
    background: #eef0f3;
}

/* === Footer === */
.footer {
    border-top: 1px solid #eef1f4;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 28px 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #8a94a3;
}

.footer-domain {
    font-family: 'Space Mono', monospace;
}
