:root {
    --bg: #0b1320;
    --bg-soft: #111b2b;
    --panel: #152133;
    --panel-2: #19283d;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #eef4fb;
    --text-soft: #afbdd1;
    --text-muted: #7e8da4;
    --accent: #73a7ff;
    --accent-strong: #4e8fff;
    --success: #44d39a;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --container: 1180px;
    --header-h: 76px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(115, 167, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #09111b 0%, #0b1320 100%);
    color: var(--text);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 14px;
    top: -48px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-weight: 700;
    transition: top 0.15s ease;
}

.skip-link:focus {
    top: 14px;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(11, 19, 32, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand__logo {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(115, 167, 255, 0.25));
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.main-nav__link,
.mobile-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.15s ease, color 0.15s ease;
}

.main-nav__link:hover,
.main-nav__link:focus-visible,
.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    outline: none;
}

.main-nav__link.is-current,
.mobile-nav__link.is-current {
    background: rgba(115, 167, 255, 0.14);
    color: var(--text);
}

.topbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav {
    display: none;
    gap: 8px;
    padding: 0 0 14px;
    overflow-x: auto;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    cursor: pointer;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.button--sm {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.92rem;
}

.button--primary {
    background: var(--accent);
    color: #06111e;
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--accent-strong);
}

.button--ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--text);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search--desktop {
    min-width: 260px;
    max-width: 320px;
    width: 100%;
}

.header-search--mobile {
    display: none;
    padding: 0 0 14px;
}

.header-search__input {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    outline: none;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.header-search__input::placeholder {
    color: var(--text-muted);
}

.header-search__input:focus {
    border-color: rgba(115, 167, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(115, 167, 255, 0.10);
}

.header-search__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.header-search__button:hover,
.header-search__button:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--line-strong);
    transform: translateY(-1px);
    outline: none;
}


.site-main {
    flex: 1;
    padding: 28px 0 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(115, 167, 255, 0.10);
    color: #d7e6ff;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 40px;
}

.home-hero__content,
.home-hero__panel,
.message-band,
.category-card,
.tool-card,
.empty-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.home-hero__content {
    border-radius: 28px;
    padding: 34px;
}

.home-hero__panel {
    border-radius: 28px;
    padding: 20px;
}

.home-hero__title {
    margin: 16px 0 14px;
    max-width: 11ch;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.home-hero__text {
    margin: 0;
    max-width: 60ch;
    color: var(--text-soft);
    font-size: 1.04rem;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.stat-box {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
}

.stat-box__value {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-box__label {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.spotlight-card__label {
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-section {
    margin-top: 34px;
}

.home-section--two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 16px;
}

.section-heading--stack {
    display: block;
}

.section-heading__title {
    margin: 8px 0 0;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.section-heading__text {
    margin: 8px 0 0;
    color: var(--text-soft);
    max-width: 60ch;
}

.section-heading__link {
    color: #dbe8fb;
    font-weight: 700;
    white-space: nowrap;
}

.section-heading__link:hover,
.section-heading__link:focus-visible {
    color: #fff;
    outline: none;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.stack-list {
    display: grid;
    gap: 14px;
}

.tool-card {
    display: block;
    border-radius: 22px;
    padding: 18px;
    transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.tool-card:hover,
.tool-card:focus-visible {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.035));
    outline: none;
}

.tool-card--spotlight {
    min-height: 100%;
    padding: 22px;
}

.tool-card__top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.tool-card__logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    overflow: hidden;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(115, 167, 255, 0.24), rgba(68, 211, 154, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #edf4ff;
    font-weight: 800;
}

.tool-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-card__meta {
    min-width: 0;
}

.tool-card__title {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.15;
}

.tool-card__tagline {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.tool-card__description {
    margin: 16px 0 0;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.tool-card__bottom {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.tool-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}

.tool-card__arrow {
    color: #dce8ff;
    font-weight: 800;
    font-size: 0.88rem;
    white-space: nowrap;
}
/* Tool Card CTA */
.tool-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 10px;
    padding: 6px 12px;

    font-size: 13px;
    font-weight: 600;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.06);
    color: #e6e6e6;

    border: 1px solid rgba(255, 255, 255, 0.12);

    transition: all 0.15s ease;
}

/* Hover effect (only when card is interactive) */
.tool-card:hover .tool-card__cta {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.tool-card__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
}

.tool-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.tool-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;

    min-height: 38px;
    padding: 0 14px;

    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);

    color: #f3f4f6;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;

    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
}

.tool-card__cta-label {
    display: inline-block;
}

.tool-card__cta-arrow {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.18s ease;
}

.tool-card:hover .tool-card__cta,
.tool-card:focus-within .tool-card__cta {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.tool-card:hover .tool-card__cta-arrow,
.tool-card:focus-within .tool-card__cta-arrow {
    transform: translateX(2px);
}
.card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tool-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.tool-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;

    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    color: #cbd5e1;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.tool-card__cta::after {
    content: "→";
    font-size: 0.95rem;
    line-height: 1;
    transition: transform 0.18s ease;
}

.card:hover .tool-card__cta,
.card:focus-within .tool-card__cta {
    color: #22c55e;
    text-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}
.card:hover .tool-card__cta::after,
.card:focus-within .tool-card__cta::after {
    transform: translateX(3px);
}

.badge {
    display: inline-flex; 
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-soft);
    font-size: 0.75rem;
    font-weight: 700;
}

.badge--accent {
    background: rgba(115, 167, 255, 0.14);
    color: #deebff;
}

.badge--success {
    background: rgba(68, 211, 154, 0.14);
    color: #ddfff2;
}
.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-soft);
    font-size: 0.75rem;
    font-weight: 700;
}

.pill--accent {
    background: rgba(115, 167, 255, 0.14);
    color: #deebff;
}

.pill--success {
    background: rgba(68, 211, 154, 0.14);
    color: #ddfff2;
}

.category-card {
    display: block;
    border-radius: 22px;
    padding: 22px;
    min-height: 220px;
    transition: transform 0.16s ease, border-color 0.16s ease;
}

.category-card:hover,
.category-card:focus-visible {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    outline: none;
}

.category-card__count {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.category-card__title {
    margin: 18px 0 10px;
    font-size: 1.2rem;
    line-height: 1.1;
}

.category-card__text {
    margin: 0;
    color: var(--text-soft);
}

.category-card__link {
    display: inline-block;
    margin-top: 20px;
    color: #dce8ff;
    font-weight: 800;
}

.message-band {
    border-radius: 26px;
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.message-band__content {
    max-width: 700px;
}

.message-band__title {
    margin: 10px 0 10px;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.08;
}

.message-band__text {
    margin: 0;
    color: var(--text-soft);
}

.empty-card {
    border-radius: 22px;
    padding: 24px;
}

.empty-card__title {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.empty-card__text {
    margin: 0;
    color: var(--text-soft);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 0 42px;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.site-footer__nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
    color: var(--text);
    outline: none;
}

.tool-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 14% 12%, rgba(98, 168, 255, 0.18), transparent 28%),
        radial-gradient(circle at 88% 0%, rgba(47, 225, 176, 0.10), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-lg);
}

.tool-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 24px;
    padding: 38px;
}

.tool-hero__main,
.tool-hero__side {
    min-width: 0;
}

.tool-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.tool-breadcrumbs a {
    color: var(--text-soft);
}

.tool-breadcrumbs a:hover,
.tool-breadcrumbs a:focus-visible {
    color: var(--text);
    outline: none;
}

.tool-hero__top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.tool-hero__logo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: linear-gradient(135deg, rgba(98, 168, 255, 0.30), rgba(47, 225, 176, 0.20));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e7f2ff;
    font-size: 1.4rem;
    font-weight: 800;
}

.tool-hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-hero__identity {
    min-width: 0;
}

.tool-hero__title {
    margin: 12px 0 0;
    font-size: clamp(2.2rem, 4vw, 3.75rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.tool-hero__tagline {
    margin: 10px 0 0;
    color: #dce9ff;
    font-size: 1.05rem;
}

.tool-hero__summary {
    margin: 20px 0 0;
    max-width: 64ch;
    color: var(--text-soft);
    font-size: 1rem;
}

.tool-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.tool-side-card {
    height: 100%;
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.tool-side-card__eyebrow {
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tool-side-list {
    display: grid;
    gap: 12px;
}

.tool-side-list__item {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tool-side-list__label {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.tool-side-list__value {
    color: var(--text);
    font-weight: 700;
}

.tool-side-list__value a {
    color: var(--text);
}

.tool-side-note {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(98, 168, 255, 0.10);
    border: 1px solid rgba(98, 168, 255, 0.18);
    color: #dce9ff;
    font-size: 0.92rem;
}

.tool-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 18px;
}

.tool-detail-panel {
    min-width: 0;
}

.tool-richtext {
    display: grid;
    gap: 14px;
}

.tool-richtext p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.tool-inline-actions {
    margin-top: 20px;
}
.browse-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 14% 16%, rgba(98, 168, 255, 0.20), transparent 28%),
        radial-gradient(circle at 88% 0%, rgba(47, 225, 176, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-lg);
}

.browse-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 24px;
    padding: 38px;
}

.browse-hero__content,
.browse-hero__panel {
    min-width: 0;
}

.browse-hero__title {
    margin: 18px 0 14px;
    max-width: 12ch;
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.browse-hero__text {
    margin: 0;
    max-width: 62ch;
    color: var(--text-soft);
    font-size: 1.02rem;
}

.browse-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.browse-summary-card {
    height: 100%;
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.browse-summary-card__eyebrow {
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.browse-summary-list {
    display: grid;
    gap: 12px;
}

.browse-summary-list__item {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.browse-summary-list__label {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.browse-summary-list__value {
    color: var(--text);
    font-weight: 800;
    font-size: 1.05rem;
}

.browse-summary-card__note {
    margin: 16px 0 0;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(98, 168, 255, 0.10);
    border: 1px solid rgba(98, 168, 255, 0.18);
    color: #dce9ff;
    font-size: 0.92rem;
}

.grid--tool-browse {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--category-browse {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-browser-card {
    display: block;
    min-width: 0;
    min-height: 240px;
    padding: 24px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at top left, rgba(98, 168, 255, 0.12), transparent 34%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.category-browser-card:hover,
.category-browser-card:focus-visible {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at top left, rgba(98, 168, 255, 0.16), transparent 34%);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
    outline: none;
}

.category-browser-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.category-browser-card__title {
    margin: 20px 0 12px;
    font-size: 1.28rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.category-browser-card__text {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.65;
}

.category-browser-card__bottom {
    margin-top: 22px;
}

.category-browser-card__link {
    color: #dce9ff;
    font-weight: 800;
    font-size: 0.92rem;
}

.category-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 14% 12%, rgba(98, 168, 255, 0.18), transparent 28%),
        radial-gradient(circle at 88% 0%, rgba(47, 225, 176, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-lg);
}

.category-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 24px;
    padding: 38px;
}

.category-hero__main,
.category-hero__side {
    min-width: 0;
}

.category-hero__title {
    margin: 14px 0 0;
    font-size: clamp(2.2rem, 4vw, 3.75rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.category-hero__summary {
    margin: 18px 0 0;
    max-width: 64ch;
    color: var(--text-soft);
    font-size: 1rem;
}

.category-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.tool-product-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 14% 12%, rgba(98, 168, 255, 0.18), transparent 28%),
        radial-gradient(circle at 88% 0%, rgba(47, 225, 176, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-lg);
}

.tool-product-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 24px;
    padding: 38px;
}

.tool-product-hero__main,
.tool-product-hero__side {
    min-width: 0;
}

.tool-product-hero__top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.tool-product-hero__logo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: linear-gradient(135deg, rgba(98, 168, 255, 0.30), rgba(47, 225, 176, 0.20));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e7f2ff;
    font-size: 1.4rem;
    font-weight: 800;
}

.tool-product-hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-product-hero__identity {
    min-width: 0;
}

.tool-product-hero__title {
    margin: 12px 0 0;
    font-size: clamp(2.2rem, 4vw, 3.75rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.tool-product-hero__tagline {
    margin: 10px 0 0;
    color: #dce9ff;
    font-size: 1.05rem;
}

.tool-product-hero__summary {
    margin: 20px 0 0;
    max-width: 64ch;
    color: var(--text-soft);
    font-size: 1rem;
}

.tool-product-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.tool-preview-card {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-md);
}

.tool-preview-card__media img {
    display: block;
    width: 100%;
    height: auto;
}

.tool-preview-card__placeholder {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 28px;
    min-height: 240px;
    background:
        radial-gradient(circle at top left, rgba(98, 168, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}

.tool-preview-card__placeholder-logo {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(98, 168, 255, 0.30), rgba(47, 225, 176, 0.20));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e7f2ff;
    font-size: 2rem;
    font-weight: 800;
}

.tool-preview-card__placeholder-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-preview-card__placeholder-copy h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    line-height: 1.08;
}

.tool-preview-card__placeholder-copy p {
    margin: 0;
    color: var(--text-soft);
    max-width: 60ch;
}

.tool-inline-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(98, 168, 255, 0.10);
    border: 1px solid rgba(98, 168, 255, 0.18);
    color: #dce9ff;
    font-size: 0.92rem;
}

.tool-status-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
    box-shadow: var(--shadow-md);
}

.tool-status-card--planned {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at top right, rgba(98, 168, 255, 0.10), transparent 30%);
}

.tool-status-card--live {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at top right, rgba(47, 225, 176, 0.10), transparent 30%);
}

.tool-status-card__eyebrow {
    margin: 0 0 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tool-status-card__title {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.08;
}

.tool-status-card__text {
    margin: 0;
    color: var(--text-soft);
}

.tool-status-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.static-page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 14% 12%, rgba(115, 167, 255, 0.16), transparent 28%),
        radial-gradient(circle at 88% 0%, rgba(68, 211, 154, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
}

.static-page-hero__inner {
    padding: 34px;
}

.static-page-hero__title {
    margin: 14px 0 12px;
    max-width: 14ch;
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.static-page-hero__text {
    margin: 0;
    max-width: 66ch;
    color: var(--text-soft);
    font-size: 1rem;
}

.static-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 18px;
}

.static-page-stack {
    display: grid;
    gap: 18px;
}

.static-page-panel {
    min-width: 0;
}

@media (max-width: 980px) {
    .static-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .static-page-hero__inner {
        padding: 22px;
    }

    .static-page-hero__title {
        max-width: none;
    }
}
@media (max-width: 1100px) {
    .tool-product-hero__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .tool-product-hero__grid {
        padding: 24px;
    }

    .tool-preview-card__placeholder {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tool-product-hero__top {
        flex-direction: column;
    }

    .tool-product-hero__logo {
        width: 64px;
        height: 64px;
    }

    .tool-product-hero__actions,
    .tool-status-card__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .tool-product-hero__actions .button,
    .tool-status-card__actions .button {
        width: 100%;
    }
}
@media (max-width: 1100px) {
    .category-hero__grid {
        grid-template-columns: 1fr;
    }

    .grid--category-browse {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .category-hero__grid {
        padding: 24px;
    }

    .grid--category-browse {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .category-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .category-hero__actions .button {
        width: 100%;
    }
}
@media (max-width: 1100px) {
    .browse-hero__grid {
        grid-template-columns: 1fr;
    }

    .grid--tool-browse {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .browse-hero__grid {
        padding: 24px;
    }

    .browse-hero__stats,
    .grid--tool-browse {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1100px) {
    .tool-hero__grid,
    .tool-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .tool-hero__grid {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .tool-hero__top {
        align-items: stretch;
        flex-direction: column;
    }

    .tool-hero__logo {
        width: 64px;
        height: 64px;
    }

    .tool-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .tool-hero__actions .button,
    .tool-inline-actions .button {
        width: 100%;
    }
}

@media (max-width: 1080px) {
    .home-hero,
    .home-section--two-col {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .topbar {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .main-nav,
    .header-search--desktop {
        display: none;
    }

    .mobile-nav,
    .header-search--mobile {
        display: flex;
    }

    .header-search--mobile {
        display: flex;
    }

    .feature-grid,
    .category-grid,
    .stats-row {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: block;
    }

    .section-heading__link {
        display: inline-block;
        margin-top: 10px;
    }

    .message-band {
        display: block;
    }

    .message-band__actions {
        margin-top: 18px;
    }
}
@media (max-width: 640px) {
    .header-search {
        width: 100%;
    }

    .header-search__button {
        white-space: nowrap;
    }
}
@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .site-main {
        padding-top: 20px;
    }

    .topbar {
        gap: 12px;
    }

    .brand__logo {
        width: 112px;
    }

    .topbar__actions {
        gap: 8px;
    }

    .button--sm {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.86rem;
    }

    .home-hero__content,
    .home-hero__panel,
    .tool-card,
    .category-card,
    .empty-card,
    .message-band {
        padding: 18px;
    }

    .home-hero__title {
        max-width: none;
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .home-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-hero__actions .button {
        width: 100%;
    }

    .feature-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .tool-card__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}