:root {
    --ink: #07090e;
    --ink-soft: #0d1119;
    --panel: rgba(17, 22, 33, 0.82);
    --panel-solid: #111621;
    --line: rgba(255, 255, 255, 0.1);
    --line-bright: rgba(255, 255, 255, 0.2);
    --text: #f5f7fb;
    --muted: #99a2b2;
    --lime: #c9ff5b;
    --lime-dark: #9fe52d;
    --violet: #a98bff;
    --cyan: #5de5f4;
    --orange: #ffb34e;
    --danger: #ff6b82;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    --container: 1220px;
    --accent-ink: #071006;
    --header-bg: rgba(7, 9, 14, 0.72);
    --header-bg-solid: rgba(7, 9, 14, 0.94);
    --menu-bg: rgba(7, 9, 14, 0.98);
    --grid-line: rgba(255, 255, 255, 0.025);
    --glow-violet: rgba(169, 139, 255, 0.13);
    --glow-cyan: rgba(93, 229, 244, 0.09);
    color-scheme: dark;
}

:root[data-theme="light"] {
    --ink: #f3f5ef;
    --ink-soft: #e9ece4;
    --panel: rgba(255, 255, 255, 0.82);
    --panel-solid: #ffffff;
    --line: rgba(22, 30, 19, 0.11);
    --line-bright: rgba(22, 30, 19, 0.21);
    --text: #11170f;
    --muted: #667061;
    --lime: #83b52a;
    --lime-dark: #6d9c18;
    --violet: #745bd1;
    --cyan: #198d9d;
    --orange: #bb741a;
    --danger: #cf3854;
    --shadow: 0 24px 70px rgba(38, 50, 33, 0.13);
    --accent-ink: #0a1308;
    --header-bg: rgba(246, 248, 242, 0.78);
    --header-bg-solid: rgba(246, 248, 242, 0.96);
    --menu-bg: rgba(246, 248, 242, 0.99);
    --grid-line: rgba(22, 30, 19, 0.045);
    --glow-violet: rgba(116, 91, 209, 0.1);
    --glow-cyan: rgba(25, 141, 157, 0.08);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 5%, var(--glow-violet), transparent 28rem),
        radial-gradient(circle at 88% 18%, var(--glow-cyan), transparent 24rem),
        var(--ink);
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    transition: color 220ms ease, background-color 220ms ease;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
    content: "";
    pointer-events: none;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-shell {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid transparent;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: var(--header-bg-solid);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

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

.brand-mark {
    position: relative;
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(201, 255, 91, 0.45);
    background: rgba(201, 255, 91, 0.09);
    border-radius: 11px;
    box-shadow: inset 0 0 18px rgba(201, 255, 91, 0.08);
}

.brand-mark::before,
.brand-mark::after {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid var(--lime);
    content: "";
    transform: rotate(45deg);
}

.brand-mark::before {
    margin: -9px 0 0 -9px;
}

.brand-mark::after {
    margin: 9px 0 0 9px;
}

.brand-name {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.06rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand-name span {
    margin-left: 5px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}

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

.site-nav a {
    padding: 10px 13px;
    color: var(--muted);
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}

.site-nav a[aria-current="page"] {
    color: var(--text);
    background: rgba(201, 255, 91, 0.075);
}

.site-nav .nav-cta {
    margin-left: 8px;
    padding: 11px 17px;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 0 8px 26px rgba(201, 255, 91, 0.13);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
    color: var(--ink);
    background: #dcff91;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--text);
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 4px auto;
    background: currentColor;
    content: "";
    transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
    transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
    transform: translateY(-5.5px) rotate(-45deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search-trigger {
    display: inline-flex;
    min-height: 42px;
    padding: 0 8px 0 12px;
    align-items: center;
    color: var(--muted);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    border-radius: 12px;
    gap: 9px;
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-search-trigger:hover,
.header-search-trigger:focus-visible {
    color: var(--text);
    border-color: var(--line-bright);
    background: rgba(255, 255, 255, 0.065);
    outline: none;
}

.header-search-icon {
    color: var(--lime);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
}

.header-search-label {
    font-size: 0.75rem;
    font-weight: 700;
}

.header-search-trigger kbd {
    display: grid;
    min-width: 25px;
    height: 25px;
    padding: 0;
    place-items: center;
    color: var(--muted);
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 7px;
    box-shadow: none;
    font-family: inherit;
    font-size: 0.67rem;
}

.theme-toggle {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    overflow: hidden;
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    border-color: rgba(201, 255, 91, 0.45);
    background: rgba(201, 255, 91, 0.07);
    outline: none;
    transform: rotate(5deg);
}

.theme-toggle span {
    position: absolute;
    font-size: 1.05rem;
    transition: opacity 180ms ease, transform 220ms ease;
}

.theme-sun {
    opacity: 0;
    transform: translateY(18px) rotate(-45deg);
}

.theme-moon {
    opacity: 1;
    transform: none;
}

:root[data-theme="light"] .theme-sun {
    opacity: 1;
    transform: none;
}

:root[data-theme="light"] .theme-moon {
    opacity: 0;
    transform: translateY(-18px) rotate(45deg);
}

.command-palette {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    padding: 4vh 24px;
    place-items: center;
}

.command-palette[hidden] {
    display: none;
}

.command-palette.is-opening {
    animation: commandFade 170ms ease both;
}

@keyframes commandFade {
    from { opacity: 0; }
}

.command-backdrop {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: rgba(2, 4, 7, 0.68);
    cursor: default;
    backdrop-filter: blur(12px);
}

:root[data-theme="light"] .command-backdrop {
    background: rgba(42, 49, 37, 0.35);
}

.command-dialog {
    position: relative;
    display: flex;
    width: min(100%, 1040px);
    height: min(860px, 92vh);
    max-height: 92vh;
    padding: 26px 28px 18px;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--line-bright);
    background: var(--panel-solid);
    border-radius: 28px;
    box-shadow: var(--shadow);
    animation: commandRise 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes commandRise {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.985);
    }
}

.command-topline {
    display: flex;
    margin-bottom: 16px;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.command-kicker {
    color: var(--lime-dark);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.command-topline h2 {
    margin: 7px 0 0;
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.35rem, 3vw, 2rem);
    letter-spacing: -0.045em;
}

.command-close {
    display: grid;
    min-width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    color: var(--muted);
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 10px;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.command-close:hover {
    color: var(--text);
    border-color: var(--line-bright);
}

.command-search {
    display: flex;
    min-height: 66px;
    padding: 8px 12px 8px 18px;
    align-items: center;
    border: 1px solid var(--line-bright);
    background: var(--ink-soft);
    border-radius: 16px;
}

.command-search:focus-within {
    border-color: rgba(131, 181, 42, 0.65);
    box-shadow: 0 0 0 4px rgba(131, 181, 42, 0.1);
}

.command-search input {
    min-width: 0;
    flex: 1;
    color: var(--text);
    border: 0;
    outline: 0;
    background: transparent;
}

.command-suggestions {
    display: flex;
    margin-top: 13px;
    flex-wrap: wrap;
    gap: 7px;
}

.command-suggestions button {
    padding: 7px 10px;
    color: var(--muted);
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
}

.command-suggestions button:hover {
    color: var(--text);
    border-color: var(--line-bright);
}

.search-results.command-results {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    min-height: 0;
    margin-top: 14px;
    padding: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-color: var(--line);
    background: var(--ink-soft);
    box-shadow: none;
    scrollbar-color: var(--line-bright) transparent;
    scrollbar-width: thin;
}

.search-results.command-results.is-visible {
    display: grid;
    flex: 1 1 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 7px;
}

.command-results .search-result-item {
    min-height: 64px;
    padding: 10px 12px;
    border: 1px solid transparent;
    background: color-mix(in srgb, var(--panel-solid) 38%, transparent);
}

.command-results .search-result-item:hover,
.command-results .search-result-item.is-active {
    border-color: var(--line-bright);
}

.command-results .search-empty,
.command-results .search-loading {
    grid-column: 1 / -1;
}

.command-help {
    display: flex;
    flex: 0 0 auto;
    margin: 15px 3px 0;
    color: var(--muted);
    font-size: 0.65rem;
    gap: 16px;
}

body.command-open {
    overflow: hidden;
}

.command-palette + .container {
    margin-top: 0 !important;
    padding-top: 32px !important;
}

.hero {
    display: grid;
    min-height: 700px;
    padding: 88px 0 54px;
    align-items: center;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
    gap: 64px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 23px;
    color: #c5cbd6;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow-dot {
    position: relative;
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(201, 255, 91, 0.1);
}

.eyebrow-dot::after {
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(201, 255, 91, 0.45);
    border-radius: inherit;
    content: "";
    animation: ping 2.4s ease-out infinite;
}

@keyframes ping {
    0% {
        opacity: 0.8;
        transform: scale(0.5);
    }
    75%,
    100% {
        opacity: 0;
        transform: scale(1.7);
    }
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3.6rem, 6.4vw, 6.3rem);
    font-weight: 600;
    letter-spacing: -0.075em;
    line-height: 0.94;
}

.hero h1 .outline-word {
    color: transparent;
    -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.8);
}

.hero-lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.7;
}

.hero-lead strong {
    color: #dfe4ed;
    font-weight: 500;
}

.search-panel {
    position: relative;
    z-index: 12;
    max-width: 680px;
    margin-top: 38px;
}

.search-box {
    display: flex;
    min-height: 70px;
    align-items: center;
    padding: 8px 9px 8px 20px;
    border: 1px solid var(--line-bright);
    background: var(--panel-solid);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-box:focus-within {
    border-color: rgba(201, 255, 91, 0.55);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(201, 255, 91, 0.07);
}

.search-symbol {
    margin-right: 14px;
    color: var(--lime);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.55rem;
    line-height: 1;
}

.search-box input {
    min-width: 0;
    flex: 1;
    padding: 0;
    color: var(--text);
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 1rem;
}

.search-box input::placeholder {
    color: #717b8d;
}

.search-hint {
    padding: 8px 10px;
    color: #6e7888;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.search-submit {
    display: inline-grid;
    min-width: 108px;
    height: 52px;
    margin-left: 10px;
    padding: 0 18px;
    place-items: center;
    color: var(--ink);
    border: 0;
    background: var(--lime);
    border-radius: 13px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.search-submit:hover {
    background: #dcff91;
    transform: translateY(-1px);
}

.search-results {
    position: absolute;
    z-index: 20;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    overflow: hidden;
    padding: 8px;
    border: 1px solid var(--line-bright);
    background: var(--panel-solid);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.search-results.is-visible {
    display: block;
    animation: reveal 160ms ease both;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
}

.search-result-item {
    display: grid;
    padding: 12px 13px;
    align-items: center;
    color: var(--text);
    border-radius: 11px;
    grid-template-columns: 34px 1fr auto;
    gap: 12px;
    text-decoration: none;
}

.search-result-item:hover,
.search-result-item.is-active {
    background: rgba(255, 255, 255, 0.07);
}

.search-result-icon {
    position: relative;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--ink);
    background: var(--lime);
    border-radius: 9px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    overflow: hidden;
}

.search-result-icon img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-copy strong,
.search-result-copy span {
    display: block;
}

.search-result-copy strong {
    font-size: 0.9rem;
}

.search-result-copy span,
.search-result-type {
    color: var(--muted);
    font-size: 0.72rem;
}

.search-empty {
    padding: 18px;
    color: var(--muted);
    text-align: center;
}

.search-loading {
    display: flex;
    min-height: 60px;
    padding: 16px;
    align-items: center;
    color: var(--muted);
    gap: 5px;
}

.search-loading span {
    width: 5px;
    height: 5px;
    background: var(--lime);
    border-radius: 50%;
    animation: searchPulse 900ms ease-in-out infinite alternate;
}

.search-loading span:nth-child(2) { animation-delay: 140ms; }
.search-loading span:nth-child(3) { animation-delay: 280ms; }

.search-loading em {
    margin-left: 8px;
    font-size: 0.72rem;
    font-style: normal;
}

@keyframes searchPulse {
    to {
        opacity: 0.28;
        transform: translateY(-3px);
    }
}

.quick-links {
    display: flex;
    margin-top: 15px;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-links > span {
    margin-right: 3px;
    color: #667083;
    font-size: 0.75rem;
}

.quick-link {
    padding: 7px 11px;
    color: #b6becc;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 160ms ease, color 160ms ease;
}

.quick-link:hover {
    color: var(--text);
    border-color: var(--line-bright);
}

.radar-wrap {
    position: relative;
    min-height: 500px;
}

.radar-glow {
    position: absolute;
    top: 15%;
    left: 17%;
    width: 68%;
    height: 68%;
    background: rgba(169, 139, 255, 0.14);
    border-radius: 50%;
    filter: blur(70px);
}

.radar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(39vw, 470px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.radar::before,
.radar::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.radar::before {
    inset: 15%;
}

.radar::after {
    inset: 34%;
}

.radar-axis {
    position: absolute;
    inset: 50% 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
}

.radar-axis.vertical {
    transform: rotate(90deg);
}

.radar-sweep {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 50%;
    animation: sweep 8s linear infinite;
}

.radar-sweep::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    background: conic-gradient(from 260deg, transparent 0 70deg, rgba(201, 255, 91, 0.25) 89deg, transparent 90deg);
    content: "";
    transform: translate(-100%, -100%);
    transform-origin: 100% 100%;
}

@keyframes sweep {
    to {
        transform: rotate(360deg);
    }
}

.radar-center {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    width: 80px;
    height: 80px;
    place-items: center;
    color: var(--ink);
    background: var(--lime);
    border: 8px solid rgba(201, 255, 91, 0.15);
    background-clip: padding-box;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(201, 255, 91, 0.25);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    transform: translate(-50%, -50%);
}

.radar-node {
    position: absolute;
    z-index: 4;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    overflow: hidden;
    color: var(--text);
    border: 1px solid var(--line-bright);
    background: #161c27;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease;
}

.radar-node:hover {
    z-index: 8;
    border-color: rgba(201, 255, 91, 0.55);
    transform: scale(1.1) rotate(-3deg);
}

.radar-node img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.radar-node:nth-of-type(1) { top: 3%; left: 44%; }
.radar-node:nth-of-type(2) { top: 20%; right: 4%; }
.radar-node:nth-of-type(3) { right: 14%; bottom: 12%; }
.radar-node:nth-of-type(4) { bottom: 1%; left: 38%; }
.radar-node:nth-of-type(5) { bottom: 20%; left: 2%; }
.radar-node:nth-of-type(6) { top: 17%; left: 8%; }

.signal-card {
    position: absolute;
    z-index: 7;
    right: -18px;
    bottom: 32px;
    width: 220px;
    padding: 17px;
    border: 1px solid var(--line-bright);
    background: rgba(16, 21, 31, 0.9);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    50% {
        transform: translateY(-8px);
    }
}

.signal-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.signal-live {
    color: var(--lime);
}

.signal-card strong {
    display: block;
    margin: 12px 0 4px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
}

.signal-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

.search-hero {
    position: relative;
    display: grid;
    min-height: calc(100svh - 76px);
    overflow: hidden;
    padding: 0;
    place-items: center;
    isolation: isolate;
}

.search-hero::before {
    position: absolute;
    z-index: -2;
    top: 48%;
    left: 50%;
    width: min(88vw, 980px);
    height: min(55vw, 620px);
    background:
        radial-gradient(circle at center, rgba(201, 255, 91, 0.105), transparent 33%),
        radial-gradient(ellipse at center, rgba(169, 139, 255, 0.11), transparent 67%);
    content: "";
    filter: blur(16px);
    transform: translate(-50%, -50%);
}

.search-stage {
    position: relative;
    z-index: 5;
    display: grid;
    min-height: calc(100svh - 76px);
    grid-template-rows: 1fr auto 1fr;
    align-items: center;
    text-align: center;
}

.search-stage .eyebrow {
    position: absolute;
    top: clamp(24px, 5vh, 48px);
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
}

.hero-question {
    display: flex;
    align-items: center;
    align-self: end;
    flex-direction: column;
    padding-bottom: clamp(24px, 4vh, 42px);
}

.hero-index {
    margin-bottom: 13px;
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.hero-question h1 {
    max-width: 930px;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3.3rem, 7.4vw, 7.2rem);
    font-weight: 600;
    letter-spacing: -0.078em;
    line-height: 0.94;
}

.hero-question .outline-word {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.76);
}

:root[data-theme="light"] .hero-question .outline-word {
    -webkit-text-stroke-color: rgba(17, 23, 15, 0.72);
}

.search-stage .hero-lead {
    max-width: 610px;
    margin: 22px auto 0;
    text-wrap: balance;
}

.hero-search-panel {
    width: min(100%, 1040px);
    margin: 0 auto;
    text-align: left;
}

.hero-search-box {
    min-height: 82px;
    padding: 10px 11px 10px 24px;
    border-color: rgba(201, 255, 91, 0.34);
    background: color-mix(in srgb, var(--panel-solid) 90%, transparent);
    border-radius: 22px;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.34),
        0 0 0 8px rgba(201, 255, 91, 0.025);
}

:root[data-theme="light"] .hero-search-box {
    box-shadow:
        0 30px 80px rgba(41, 54, 35, 0.15),
        0 0 0 8px rgba(131, 181, 42, 0.04);
}

.hero-search-box .search-symbol {
    font-size: 1.9rem;
}

.hero-search-box input {
    font-size: clamp(0.96rem, 1.7vw, 1.12rem);
}

.hero-search-box .search-submit {
    min-width: 132px;
    height: 60px;
    border-radius: 16px;
}

.hero-search-panel .search-results {
    top: 94px;
    max-height: min(430px, calc(50svh - 76px));
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: var(--line-bright) transparent;
    scrollbar-width: thin;
}

.hero-search-panel .search-results.is-visible {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: start;
    gap: 7px;
}

.hero-search-panel .search-result-item {
    min-width: 0;
    min-height: 62px;
    padding: 10px 11px;
    border: 1px solid transparent;
    background: color-mix(in srgb, var(--panel-solid) 44%, transparent);
}

.hero-search-panel .search-result-copy {
    min-width: 0;
}

.hero-search-panel .search-result-copy strong,
.hero-search-panel .search-result-copy span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-search-panel .search-result-item:hover,
.hero-search-panel .search-result-item.is-active {
    border-color: var(--line-bright);
}

.hero-search-panel .search-empty,
.hero-search-panel .search-loading {
    grid-column: 1 / -1;
}

.quick-link {
    font-family: inherit;
    cursor: pointer;
}

.hero-microcopy {
    display: flex;
    margin-top: clamp(28px, 4vh, 42px);
    align-items: center;
    align-self: start;
    justify-content: center;
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 600;
    gap: 24px;
}

.universal-share-panel {
    position: relative;
    display: grid;
    overflow: hidden;
    padding: clamp(22px, 4vw, 34px);
    align-items: center;
    border: 1px solid var(--line-bright);
    background:
        radial-gradient(circle at 90% 20%, rgba(201, 255, 91, 0.12), transparent 28%),
        linear-gradient(135deg, var(--panel-solid), var(--ink-soft));
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
}

.universal-share-copy h2 {
    margin: 5px 0 6px !important;
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

.universal-share-copy p {
    max-width: 650px;
    margin: 0;
}

.universal-share-kicker {
    color: var(--lime-dark);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.universal-share-button {
    display: inline-flex;
    min-width: 170px;
    min-height: 54px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    border: 0;
    background: var(--lime);
    border-radius: 15px;
    box-shadow: 0 14px 30px rgba(131, 181, 42, 0.22);
    font: 800 0.82rem/1 "Manrope", sans-serif;
    gap: 10px;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.universal-share-button:hover {
    box-shadow: 0 18px 36px rgba(131, 181, 42, 0.3);
    transform: translateY(-2px);
}

.universal-share-button:focus-visible {
    outline: 3px solid rgba(201, 255, 91, 0.28);
    outline-offset: 3px;
}

.universal-share-icon {
    font-size: 1.18rem;
}

.universal-share-status {
    min-height: 1.2em;
    margin: -12px 0 0 !important;
    grid-column: 1 / -1;
    text-align: right;
}

.hero-microcopy span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-microcopy i {
    color: var(--lime-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.61rem;
    font-style: normal;
}

.hero-ambient {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ambient-ring {
    position: absolute;
    top: 47%;
    left: 50%;
    border: 1px solid var(--line);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-one {
    width: min(85vw, 1040px);
    aspect-ratio: 1.75;
}

.ring-two {
    width: min(68vw, 800px);
    aspect-ratio: 1.55;
    border-style: dashed;
    opacity: 0.7;
}

.ambient-beam {
    position: absolute;
    top: 47%;
    left: 50%;
    width: min(74vw, 900px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 255, 91, 0.38), transparent);
    transform: translate(-50%, -50%) rotate(-7deg);
    box-shadow: 0 0 32px rgba(201, 255, 91, 0.2);
}

.constellation-node {
    position: absolute;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    overflow: hidden;
    color: var(--accent-ink);
    border: 1px solid var(--line-bright);
    background:
        linear-gradient(135deg, rgba(201, 255, 91, 0.9), rgba(93, 229, 244, 0.82));
    border-radius: 17px;
    box-shadow: var(--shadow);
    pointer-events: auto;
    transform: rotate(var(--node-rotation, 0deg));
    transition: border-color 180ms ease, transform 180ms ease;
}

.constellation-node:hover {
    z-index: 4;
    border-color: var(--lime);
    transform: rotate(0) scale(1.09);
}

.constellation-node img {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.constellation-initial {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.node-1 { top: 17%; left: 8%; --node-rotation: -8deg; }
.node-2 { top: 25%; right: 10%; --node-rotation: 7deg; }
.node-3 { bottom: 19%; left: 14%; --node-rotation: 6deg; }
.node-4 { right: 16%; bottom: 14%; --node-rotation: -6deg; }
.node-5 { top: 9%; left: 29%; --node-rotation: 5deg; }
.node-6 { top: 12%; right: 28%; --node-rotation: -5deg; }
.node-7 { bottom: 9%; left: 34%; --node-rotation: -7deg; }
.node-8 { right: 35%; bottom: 7%; --node-rotation: 8deg; }

.stats-bar {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.018);
}

.stats-grid {
    display: grid;
    min-height: 102px;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 8px 28px;
    border-right: 1px solid var(--line);
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    border: 0;
}

.stat strong,
.stat span {
    display: block;
}

.stat strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    letter-spacing: -0.04em;
}

.stat span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.73rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section {
    padding: 112px 0;
}

.section-tight {
    padding-top: 0;
}

.section-head {
    display: flex;
    margin-bottom: 38px;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-kicker {
    margin: 0 0 12px;
    color: var(--lime);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-title {
    max-width: 700px;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.section-copy {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.filter-bar {
    display: flex;
    margin-bottom: 28px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.filters {
    display: flex;
    padding: 4px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    border-radius: 13px;
}

.filter-button {
    padding: 9px 15px;
    color: var(--muted);
    border: 0;
    background: transparent;
    border-radius: 9px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.filter-button.is-active {
    color: var(--ink);
    background: var(--lime);
}

.result-count {
    color: var(--muted);
    font-size: 0.78rem;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tool-card {
    position: relative;
    display: flex;
    min-height: 375px;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(169, 139, 255, 0.12), transparent 34%),
        var(--panel);
    border-radius: var(--radius);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.tool-card[hidden] {
    display: none;
}

.tool-card:hover {
    border-color: var(--line-bright);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    transform: translateY(-5px);
}

.tool-visual {
    position: relative;
    height: 152px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(169, 139, 255, 0.22), rgba(93, 229, 244, 0.08)),
        #161b25;
}

.tool-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--panel-solid), transparent 55%);
    content: "";
    pointer-events: none;
}

.tool-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
    transition: transform 420ms ease, opacity 180ms ease;
}

.tool-card:hover .tool-visual img {
    opacity: 1;
    transform: scale(1.04);
}

.tool-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    color: var(--ink);
    background: var(--lime);
    border-radius: 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    transform: translate(-50%, -50%) rotate(-5deg);
}

.tool-type {
    position: absolute;
    z-index: 3;
    top: 13px;
    left: 13px;
    padding: 6px 9px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tool-type.classic {
    color: #091118;
    background: var(--cyan);
}

.save-button {
    position: absolute;
    z-index: 4;
    top: 12px;
    right: 12px;
    display: grid;
    width: 32px;
    height: 32px;
    padding: 0;
    place-items: center;
    color: var(--text);
    border: 1px solid var(--line-bright);
    background: color-mix(in srgb, var(--ink) 72%, transparent);
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.save-button:hover,
.save-button.is-saved {
    color: var(--lime);
    border-color: rgba(201, 255, 91, 0.5);
}

.persistent-save-wrap {
    position: absolute;
    z-index: 4;
    top: 12px;
    right: 12px;
}

.persistent-save-button {
    display: grid;
    width: 32px;
    height: 32px;
    padding: 0;
    place-items: center;
    color: var(--text);
    border: 1px solid var(--line-bright);
    background: color-mix(in srgb, var(--ink) 72%, transparent);
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.persistent-save-button:hover,
.persistent-save-button:focus-visible {
    color: var(--lime);
    border-color: rgba(201, 255, 91, 0.5);
    transform: translateY(-1px) scale(1.04);
}

.tool-content {
    display: flex;
    padding: 20px;
    flex: 1;
    flex-direction: column;
}

.tool-category {
    margin: 0 0 8px;
    color: var(--violet);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tool-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tool-name {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.27rem;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.verified-mark {
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    color: var(--ink);
    background: var(--cyan);
    clip-path: polygon(50% 0, 62% 12%, 79% 8%, 88% 24%, 100% 34%, 94% 52%, 100% 68%, 83% 77%, 77% 95%, 58% 92%, 43% 100%, 29% 87%, 11% 89%, 5% 71%, 0 57%, 11% 43%, 6% 25%, 24% 18%, 34% 2%);
    font-size: 0.65rem;
    font-weight: 900;
}

.tool-description {
    display: -webkit-box;
    overflow: hidden;
    margin: 11px 0 18px;
    color: var(--muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.86rem;
    line-height: 1.55;
}

.tool-footer {
    display: flex;
    margin-top: auto;
    padding-top: 15px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
}

.tool-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-pill {
    padding: 6px 9px;
    color: #dfe4ed;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
}

.view-count {
    color: var(--muted);
    font-size: 0.69rem;
}

.tool-link {
    color: var(--lime);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
}

.tool-link::after {
    margin-left: 5px;
    content: "↗";
}

.browse-all {
    display: flex;
    margin: 32px auto 0;
    justify-content: center;
}

.text-link {
    display: inline-flex;
    min-height: 48px;
    padding: 0 17px;
    align-items: center;
    color: var(--text);
    border: 1px solid var(--line-bright);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 160ms ease, background 160ms ease;
}

.text-link:hover {
    border-color: rgba(201, 255, 91, 0.45);
    background: rgba(201, 255, 91, 0.05);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.category-card {
    position: relative;
    min-height: 176px;
    overflow: hidden;
    padding: 21px;
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    border-radius: 18px;
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.category-card::before {
    position: absolute;
    right: -25px;
    bottom: -40px;
    width: 110px;
    height: 110px;
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.016), 0 0 0 40px rgba(255, 255, 255, 0.01);
    content: "";
    transition: border-color 180ms ease, transform 300ms ease;
}

.category-card:hover {
    color: var(--text);
    border-color: rgba(201, 255, 91, 0.4);
    background: rgba(201, 255, 91, 0.045);
    transform: translateY(-4px);
}

.category-card:hover::before {
    border-color: var(--lime);
    transform: scale(1.08);
}

.category-index {
    color: #677184;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
}

.category-card h3 {
    max-width: 180px;
    margin: 25px 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.06rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: capitalize;
}

.category-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.category-arrow {
    position: absolute;
    right: 21px;
    bottom: 18px;
    color: var(--lime);
    font-size: 1.15rem;
}

.cta-panel {
    position: relative;
    display: grid;
    min-height: 340px;
    overflow: hidden;
    padding: 58px;
    align-items: end;
    border: 1px solid rgba(201, 255, 91, 0.25);
    background:
        radial-gradient(circle at 82% 20%, rgba(201, 255, 91, 0.22), transparent 20rem),
        linear-gradient(125deg, rgba(169, 139, 255, 0.16), rgba(201, 255, 91, 0.045)),
        var(--panel-solid);
    border-radius: var(--radius-lg);
    grid-template-columns: 1fr auto;
    gap: 40px;
}

.cta-panel::before {
    position: absolute;
    top: -140px;
    right: 30px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(201, 255, 91, 0.15);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(201, 255, 91, 0.035),
        0 0 0 90px rgba(201, 255, 91, 0.02);
    content: "";
}

.cta-copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.cta-panel h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 1;
}

.cta-panel p {
    max-width: 540px;
    margin: 20px 0 0;
    color: #aeb7c5;
    line-height: 1.65;
}

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 10px;
}

.primary-button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    border: 0;
    background: var(--lime);
    border-radius: 13px;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.ghost-button {
    display: inline-flex;
    min-height: 48px;
    padding: 0 18px;
    align-items: center;
    color: var(--text);
    border: 1px solid var(--line-bright);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

.site-footer {
    padding: 32px 0 44px;
    border-top: 1px solid var(--line);
}

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

.footer-note {
    color: #677184;
    font-size: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.75rem;
    text-decoration: none;
}

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

.reveal-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-item.is-revealed {
    opacity: 1;
    transform: none;
}

/* Existing catalogue pages */
body > .navbar {
    min-height: 72px;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    background: rgba(7, 9, 14, 0.93) !important;
    backdrop-filter: blur(20px);
}

body > .navbar .container {
    width: min(calc(100% - 34px), var(--container));
    max-width: none;
}

body > .navbar .navbar-brand {
    position: relative;
    display: inline-flex;
    min-height: 38px;
    padding-left: 47px;
    align-items: center;
    color: var(--text) !important;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

body > .navbar .navbar-brand img {
    display: none;
}

body > .navbar .navbar-brand::before {
    position: absolute;
    left: 0;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--lime);
    border: 1px solid rgba(201, 255, 91, 0.4);
    background: rgba(201, 255, 91, 0.08);
    border-radius: 11px;
    content: "✦";
}

body > .navbar .navbar-brand::after {
    content: "DANTTY / TOOLS";
}

body > .navbar .nav-link {
    color: var(--muted) !important;
    font-size: 0.8rem;
    font-weight: 600;
}

body > .navbar .nav-link:hover {
    color: var(--text) !important;
}

body > .navbar .navbar-toggler {
    border-color: var(--line-bright);
    background: #f2f4f7;
}

body > .container,
body > .container.mt-2 {
    width: min(calc(100% - 34px), var(--container));
    max-width: none;
}

body > .container.mt-5 {
    padding-top: 90px !important;
}

body > .container .container-fluid > .text-center {
    padding: 70px 0 34px;
}

body > .container .container-fluid > .text-center h1,
.product-preview h1 {
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    font-weight: 600;
    letter-spacing: -0.065em;
}

body > .container .container-fluid > .text-center p {
    color: var(--muted) !important;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

body > .container .form-control {
    min-height: 54px;
    color: var(--text);
    border: 1px solid var(--line-bright);
    background: var(--panel-solid);
    border-radius: 13px;
}

body > .container .form-control:focus {
    border-color: rgba(201, 255, 91, 0.5);
    box-shadow: 0 0 0 4px rgba(201, 255, 91, 0.07);
}

body > .container .input-group-append .btn {
    min-width: 60px;
    color: var(--ink);
    border-color: var(--lime);
    background: var(--lime);
}

body > .container .row > [class*="col-"] > .card,
body > .container .row > [class*="col-"] > a.card {
    overflow: hidden;
    color: var(--text);
    border: 1px solid var(--line) !important;
    background: var(--panel-solid);
    border-radius: var(--radius);
    box-shadow: none !important;
    transition: border-color 180ms ease, transform 180ms ease;
}

body > .container .row > [class*="col-"] > .card:hover,
body > .container .row > [class*="col-"] > a.card:hover {
    color: var(--text);
    border-color: var(--line-bright) !important;
    transform: translateY(-4px);
}

body > .container .card-img-top {
    height: 170px;
    object-fit: cover;
}

.legacy-card-visual {
    position: relative;
    display: block;
    height: 170px;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 18%, rgba(169, 139, 255, 0.32), transparent 42%),
        linear-gradient(135deg, rgba(201, 255, 91, 0.17), rgba(93, 229, 244, 0.12)),
        var(--ink-soft);
}

.legacy-card-visual .card-img-top {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.card-letter-fallback,
.detail-letter-fallback {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    color: var(--accent-ink);
    background: var(--lime);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 800;
    transform: translate(-50%, -50%) rotate(-5deg);
}

.card-letter-fallback {
    width: 70px;
    height: 70px;
    font-size: 1.85rem;
}

.detail-letter-fallback {
    width: 112px;
    height: 112px;
    font-size: 3rem;
}

.legacy-card-visual.is-fallback::after,
.image-container.is-fallback::after {
    position: absolute;
    z-index: 1;
    right: 14px;
    bottom: 12px;
    color: var(--muted);
    content: "IMAGE UNAVAILABLE";
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.tool-visual img {
    position: relative;
    z-index: 2;
}

.image-container[data-image-shell] {
    min-height: 410px;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 18%, rgba(169, 139, 255, 0.3), transparent 45%),
        linear-gradient(135deg, rgba(201, 255, 91, 0.12), rgba(93, 229, 244, 0.11)),
        var(--ink-soft);
}

.image-container[data-image-shell] img,
.image-container[data-image-shell] .overlay {
    position: relative;
    z-index: 2;
}

.image-container[data-image-shell] .overlay {
    position: absolute;
}

body > .container .card-body {
    color: var(--text);
}

body > .container .card-title,
body > .container .card-title a,
body > .container .textH,
body > .container .card-text,
body > .container h2,
body > .container h3,
body > .container h4,
body > .container strong {
    color: var(--text);
}

body > .container .card-title,
body > .container h2,
body > .container h3,
body > .container h4 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.03em;
}

body > .container .card-text,
body > .container p,
body > .container .text-muted {
    color: var(--muted) !important;
}

body > .container .btn {
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
}

body > .container .btn-outline-success,
body > .container .btn-primary {
    color: var(--ink);
    border-color: var(--lime);
    background: var(--lime);
}

body > .container .btn-outline-secondary {
    color: #d3dae5;
    border-color: var(--line-bright);
}

body > .container .breadcrumb {
    margin-top: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    border-radius: 12px;
}

body > .container .breadcrumb-item,
body > .container .breadcrumb-item.active {
    color: var(--muted);
}

body > .container .breadcrumb-item a,
body > .container a {
    color: var(--lime);
}

.product-preview {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid var(--line);
    background: var(--panel-solid);
    border-radius: var(--radius-lg);
}

.product-preview .image-container,
.product-preview .image-container a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-preview .image-container img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
}

body > .container .nav-tabs {
    border-bottom-color: var(--line);
}

body > .container .nav-tabs .nav-link {
    color: var(--muted);
    border-color: transparent;
}

body > .container .nav-tabs .nav-link.active {
    color: var(--lime);
    border-color: var(--line) var(--line) var(--ink);
    background: transparent;
}

body > .container .tab-content {
    padding: 26px 0;
}

body > .container hr {
    border-top-color: var(--line);
}

.tool-list-item[hidden] {
    display: none !important;
}

.seo-pagination {
    display: grid;
    margin: 28px 0 64px;
    padding: 16px;
    align-items: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    border-radius: 14px;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
}

.seo-pagination a {
    display: inline-flex;
    width: max-content;
    min-height: 40px;
    padding: 0 13px;
    align-items: center;
    color: var(--ink) !important;
    background: var(--lime);
    border-radius: 9px;
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
}

.seo-pagination a:last-child {
    justify-self: end;
}

.seo-pagination span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
}

.seo-copy-block {
    max-width: 860px;
    margin: 48px auto 96px;
    padding: 34px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    border-radius: var(--radius);
}

.seo-copy-block h2 {
    margin: 0 0 15px;
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    letter-spacing: -0.045em;
}

.seo-copy-block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

:root[data-theme="light"] .eyebrow,
:root[data-theme="light"] .hero-lead strong,
:root[data-theme="light"] .quick-link,
:root[data-theme="light"] .price-pill,
:root[data-theme="light"] .cta-panel p {
    color: #4f5b49;
}

:root[data-theme="light"] .site-nav a:hover,
:root[data-theme="light"] .site-nav a:focus-visible,
:root[data-theme="light"] .header-search-trigger:hover {
    background: rgba(18, 28, 15, 0.055);
}

:root[data-theme="light"] .nav-cta,
:root[data-theme="light"] .search-submit,
:root[data-theme="light"] .search-result-icon,
:root[data-theme="light"] .filter-button.is-active,
:root[data-theme="light"] .tool-fallback,
:root[data-theme="light"] .tool-type,
:root[data-theme="light"] .primary-button,
:root[data-theme="light"] body > .container .btn-outline-success,
:root[data-theme="light"] body > .container .btn-primary,
:root[data-theme="light"] .seo-pagination a {
    color: var(--accent-ink) !important;
}

:root[data-theme="light"] .tool-card,
:root[data-theme="light"] .category-card,
:root[data-theme="light"] .seo-copy-block,
:root[data-theme="light"] .seo-pagination,
:root[data-theme="light"] .stats-bar {
    background-color: rgba(255, 255, 255, 0.52);
}

:root[data-theme="light"] .tool-visual::after {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.93), transparent 55%);
}

:root[data-theme="light"] .verified-mark {
    color: var(--accent-ink);
}

:root[data-theme="light"] .cta-panel {
    background:
        radial-gradient(circle at 82% 20%, rgba(131, 181, 42, 0.17), transparent 20rem),
        linear-gradient(125deg, rgba(116, 91, 209, 0.1), rgba(131, 181, 42, 0.04)),
        var(--panel-solid);
}

:root[data-theme="light"] .footer-note {
    color: #64705f;
}

:root[data-theme="light"] body > .container .btn-outline-secondary {
    color: #394235;
}

:root[data-theme="light"] .checked,
:root[data-theme="light"] .fa-star-o {
    color: #a86109;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 3px;
}

@media (max-width: 1050px) {
    .header-search-label {
        display: none;
    }

    .header-search-trigger {
        padding-left: 10px;
    }

    .node-1,
    .node-2 {
        opacity: 0.72;
    }

    .hero {
        min-height: auto;
        padding-top: 70px;
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 28px;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 6.8vw, 5.2rem);
    }

    .radar {
        width: 370px;
    }

    .signal-card {
        right: 0;
    }

    .tool-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .site-shell {
        width: min(calc(100% - 28px), var(--container));
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        padding: 14px;
        align-items: stretch;
        flex-direction: column;
        border-bottom: 1px solid var(--line);
        background: var(--menu-bg);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 13px 15px;
    }

    .site-nav .nav-cta {
        margin: 5px 0 0;
        text-align: center;
    }

    .header-actions {
        margin-left: auto;
    }

    .search-hero {
        min-height: calc(100svh - 76px);
    }

    .hero-question h1 {
        font-size: clamp(3.4rem, 11vw, 5.8rem);
    }

    .node-5,
    .node-6,
    .node-7,
    .node-8 {
        display: none;
    }

    .node-1 { top: 14%; left: 3%; }
    .node-2 { top: 18%; right: 3%; }
    .node-3 { bottom: 12%; left: 4%; }
    .node-4 { right: 5%; bottom: 9%; }

    .hero {
        display: block;
        padding: 72px 0 52px;
    }

    .radar-wrap {
        min-height: 470px;
        margin-top: 42px;
    }

    .radar {
        width: min(88vw, 430px);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        padding: 22px;
        border-bottom: 1px solid var(--line);
    }

    .stat:first-child {
        padding-left: 22px;
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .section {
        padding: 80px 0;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .cta-panel {
        padding: 40px;
        grid-template-columns: 1fr;
    }

    .cta-actions {
        align-items: start;
    }
}

@media (max-width: 680px) {
    .search-results.command-results.is-visible {
        grid-template-columns: 1fr;
    }

    .hero-search-panel .search-results.is-visible {
        grid-template-columns: 1fr;
    }

    .universal-share-panel {
        grid-template-columns: 1fr;
    }

    .universal-share-button {
        width: 100%;
    }

    .universal-share-status {
        margin-top: -10px !important;
        text-align: left;
    }
}

@media (max-width: 580px) {
    .header-inner {
        min-height: 68px;
    }

    .brand-name span {
        display: none;
    }

    .header-search-trigger kbd {
        display: none;
    }

    .header-search-trigger {
        width: 42px;
        padding: 0;
        justify-content: center;
    }

    .command-palette {
        padding: 0;
        align-items: stretch;
    }

    .command-dialog {
        width: 100%;
        height: 100svh;
        max-height: none;
        padding: 18px 14px max(12px, env(safe-area-inset-bottom));
        border: 0;
        border-radius: 0;
    }

    .command-topline {
        margin-bottom: 14px;
    }

    .command-topline h2 {
        font-size: 1.45rem;
    }

    .command-search {
        min-height: 60px;
    }

    .command-suggestions {
        flex-wrap: nowrap;
        padding-bottom: 2px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .command-suggestions::-webkit-scrollbar {
        display: none;
    }

    .command-help {
        justify-content: center;
    }

    .search-hero {
        min-height: calc(100svh - 68px);
        padding: 0;
    }

    .search-stage {
        min-height: calc(100svh - 68px);
    }

    .search-stage .eyebrow {
        top: 20px;
        width: 100%;
    }

    .hero-question {
        padding-bottom: 24px;
    }

    .hero-question h1 {
        font-size: clamp(3.05rem, 15vw, 4.5rem);
    }

    .search-stage .hero-lead {
        font-size: 0.92rem;
    }

    .hero-search-panel {
        margin-top: 0;
    }

    .hero-search-box {
        min-height: 70px;
        padding-left: 17px;
        border-radius: 18px;
    }

    .hero-search-box .search-submit {
        min-width: 52px;
        width: 52px;
        height: 52px;
    }

    .hero-microcopy {
        margin-top: 28px;
        align-items: start;
        flex-direction: column;
        gap: 8px;
    }

    .quick-links {
        justify-content: center;
    }

    .quick-links > span {
        text-align: center;
    }

    .constellation-node {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .node-1,
    .node-2 {
        top: 10%;
    }

    .hero {
        padding-top: 58px;
    }

    .hero h1 {
        font-size: clamp(3.05rem, 16vw, 4.3rem);
    }

    .hero-lead {
        font-size: 0.98rem;
    }

    .search-box {
        min-height: 62px;
        padding-left: 15px;
    }

    .search-hint {
        display: none;
    }

    .search-submit {
        min-width: 50px;
        width: 50px;
        padding: 0;
        font-size: 0;
    }

    .search-submit::after {
        font-size: 1rem;
        content: "→";
    }

    .quick-links > span {
        width: 100%;
    }

    .radar-wrap {
        min-height: 410px;
    }

    .radar-node {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .signal-card {
        right: 0;
        bottom: 0;
        width: 190px;
    }

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

    .stat {
        padding: 18px 14px;
    }

    .stat:first-child {
        padding-left: 14px;
    }

    .stat strong {
        font-size: 1.08rem;
    }

    .tool-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        align-items: start;
        flex-direction: column;
    }

    .filters {
        width: 100%;
    }

    .filter-button {
        flex: 1;
    }

    .cta-panel {
        min-height: 420px;
        padding: 31px 24px;
    }

    .cta-actions,
    .cta-actions a {
        width: 100%;
    }

    .footer-inner {
        align-items: start;
        flex-direction: column;
    }

    .product-preview .image-container img {
        min-height: 260px;
    }

    .seo-pagination {
        grid-template-columns: 1fr 1fr;
    }

    .seo-pagination span {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .seo-pagination a {
        grid-row: 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}

/* Product expansion: discovery, accounts, trust, community and guides */

.account-trigger {
    display: inline-grid;
    min-width: 42px;
    height: 42px;
    padding: 0 11px;
    place-items: center;
    color: var(--text);
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
}

.account-trigger:hover {
    border-color: var(--line-bright);
}

.advanced-filter-link {
    display: inline-flex;
    min-height: 42px;
    margin-top: 14px;
    padding: 0 14px;
    align-items: center;
    color: var(--ink);
    background: var(--lime);
    border-radius: 11px;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
}

.compact-compare {
    min-height: 32px;
    margin-left: auto;
    padding: 0 10px;
    color: var(--muted);
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 9px;
    font: 700 0.64rem/1 "DM Sans", sans-serif;
    cursor: pointer;
}

.app-main {
    min-height: calc(100svh - 76px);
}

.app-flash-stack {
    position: fixed;
    z-index: 450;
    top: 90px;
    right: 0;
    left: 0;
    display: grid;
    justify-items: end;
    pointer-events: none;
}

.app-flash {
    max-width: min(440px, 90vw);
    padding: 13px 16px;
    color: var(--text);
    border: 1px solid var(--line-bright);
    background: var(--panel-solid);
    border-radius: 13px;
    box-shadow: var(--shadow);
    font-size: 0.82rem;
    pointer-events: auto;
}

.app-flash-success {
    border-color: rgba(201, 255, 91, 0.42);
}

.app-flash-error {
    border-color: rgba(255, 107, 130, 0.5);
}

.directory-hero,
.account-hero,
.compare-hero,
.guide-index-hero,
.guide-hero,
.collection-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 10vw, 138px) 0 clamp(58px, 8vw, 104px);
    border-bottom: 1px solid var(--line);
    isolation: isolate;
}

.directory-hero::before,
.account-hero::before,
.compare-hero::before,
.guide-index-hero::before,
.guide-hero::before,
.collection-hero::before {
    position: absolute;
    z-index: -1;
    top: -260px;
    left: 50%;
    width: min(980px, 90vw);
    height: 620px;
    background: radial-gradient(circle, rgba(201, 255, 91, 0.13), transparent 64%);
    content: "";
    transform: translateX(-50%);
}

.directory-hero h1,
.account-hero h1,
.compare-hero h1,
.guide-index-hero h1,
.guide-hero h1,
.collection-hero h1 {
    max-width: 980px;
    margin: 12px 0 20px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3rem, 7.2vw, 6.8rem);
    letter-spacing: -0.07em;
    line-height: 0.96;
}

.directory-hero h1 span,
.compare-hero h1 span,
.guide-index-hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1px color-mix(in srgb, var(--text) 76%, transparent);
}

.directory-hero p,
.account-hero p,
.compare-hero p,
.guide-index-hero p,
.guide-hero p,
.collection-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.96rem, 1.8vw, 1.14rem);
    line-height: 1.75;
}

.discovery-layout {
    display: grid;
    padding-block: 54px 100px;
    align-items: start;
    grid-template-columns: minmax(270px, 320px) minmax(0, 1fr);
    gap: 34px;
}

.filter-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-solid) 88%, transparent);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.filter-panel-heading,
.results-heading,
.account-section-heading,
.detail-panel-heading {
    display: flex;
    margin-bottom: 22px;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.filter-panel-heading h2,
.results-heading h2,
.account-section-heading h2,
.detail-panel-heading h2 {
    margin: 4px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    letter-spacing: -0.04em;
}

.filter-panel-heading a {
    color: var(--lime-dark);
    font-size: 0.75rem;
    font-weight: 800;
}

.advanced-filter-form,
.app-form {
    display: grid;
    gap: 15px;
}

.filter-row,
.app-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.advanced-filter-form > label,
.filter-row label,
.app-form label {
    display: grid;
    min-width: 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    gap: 7px;
}

.advanced-filter-form input,
.advanced-filter-form select,
.app-form input,
.app-form select,
.app-form textarea,
.quick-save-form select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    color: var(--text);
    border: 1px solid var(--line);
    outline: 0;
    background: var(--ink-soft);
    border-radius: 11px;
    font: inherit;
    font-size: 0.82rem;
}

.app-form textarea {
    resize: vertical;
}

.advanced-filter-form input:focus,
.advanced-filter-form select:focus,
.app-form input:focus,
.app-form select:focus,
.app-form textarea:focus,
.quick-save-form select:focus {
    border-color: var(--lime-dark);
    box-shadow: 0 0 0 3px rgba(201, 255, 91, 0.08);
}

.app-form small {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 500;
}

.full-field,
.app-submit {
    grid-column: 1 / -1;
}

.filter-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-checks label,
.check-label {
    display: inline-flex !important;
    min-height: 40px;
    padding: 8px 11px;
    align-items: center;
    color: var(--muted);
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 10px;
    font-size: 0.72rem;
    gap: 8px;
}

.filter-checks input,
.check-label input {
    width: 16px;
    min-height: 16px;
    accent-color: var(--lime);
}

.filter-submit {
    width: 100%;
}

.regional-settings {
    margin-top: 15px;
    border-top: 1px solid var(--line);
}

.regional-settings summary {
    padding: 15px 2px 0;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
}

.regional-settings .app-form {
    padding-top: 14px;
}

.discovery-results {
    min-width: 0;
}

.results-heading p {
    max-width: 330px;
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
    text-align: right;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.directory-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.directory-card {
    position: relative;
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-solid) 92%, transparent);
    border-radius: 19px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.13);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.directory-card:hover {
    border-color: var(--line-bright);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.directory-card-visual {
    position: relative;
    display: grid;
    height: 158px;
    overflow: hidden;
    place-items: center;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 20%, rgba(201, 255, 91, 0.13), transparent 38%),
        var(--ink-soft);
}

.directory-card-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directory-card-visual .card-letter-fallback {
    width: 66px;
    height: 66px;
    font-size: 1.7rem;
}

.directory-type {
    position: absolute;
    z-index: 3;
    top: 11px;
    right: 11px;
    padding: 6px 8px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.directory-card-body {
    display: flex;
    min-height: 290px;
    padding: 17px;
    flex: 1;
    flex-direction: column;
}

.directory-card-topline {
    display: flex;
    min-height: 27px;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 800;
    gap: 8px;
    text-transform: uppercase;
}

.trust-chip {
    display: inline-flex;
    padding: 5px 7px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.trust-verified {
    color: var(--lime-dark);
    border-color: rgba(201, 255, 91, 0.3);
    background: rgba(201, 255, 91, 0.07);
}

.trust-claimed {
    color: var(--cyan);
    border-color: rgba(93, 229, 244, 0.28);
    background: rgba(93, 229, 244, 0.06);
}

.trust-unverified {
    color: var(--muted);
}

.directory-card h2 {
    margin: 13px 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.18rem;
    letter-spacing: -0.035em;
}

.directory-card h2 a {
    color: var(--text);
    text-decoration: none;
}

.directory-card-body > p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.directory-rating {
    display: flex;
    margin-top: 13px;
    align-items: center;
    color: var(--muted);
    font-size: 0.68rem;
    gap: 7px;
}

.rating-score {
    color: var(--text);
    font-weight: 800;
}

.rating-score span {
    color: var(--orange);
}

.rating-count,
.rating-empty {
    color: var(--muted);
    font-size: 0.68rem;
}

.directory-meta {
    display: flex;
    margin-top: 13px;
    flex-wrap: wrap;
    gap: 6px;
}

.directory-meta span {
    padding: 5px 7px;
    color: var(--muted);
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 8px;
    font-size: 0.6rem;
}

.directory-card-actions {
    display: flex;
    margin-top: auto;
    padding-top: 16px;
    align-items: center;
    gap: 7px;
}

.directory-card-actions button,
.directory-card-actions a {
    min-height: 38px;
    padding: 0 11px;
    color: var(--muted);
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 10px;
    font: 700 0.68rem/1 "DM Sans", sans-serif;
    text-decoration: none;
    cursor: pointer;
}

.directory-card-actions form {
    display: contents;
}

.directory-card-actions .directory-open {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    color: var(--ink);
    border-color: var(--lime);
    background: var(--lime);
}

.compare-toggle.is-selected,
.directory-card-actions .compare-toggle.is-selected {
    color: var(--ink);
    border-color: var(--lime);
    background: var(--lime);
}

.empty-state {
    display: grid;
    min-height: 350px;
    padding: 50px 24px;
    place-items: center;
    align-content: center;
    border: 1px dashed var(--line-bright);
    background: var(--ink-soft);
    border-radius: 22px;
    text-align: center;
}

.empty-state > span {
    color: var(--lime-dark);
    font: 800 0.68rem/1 "Space Grotesk", sans-serif;
    letter-spacing: 0.14em;
}

.empty-state h2,
.empty-state h3 {
    margin: 12px 0 8px;
    font-family: "Space Grotesk", sans-serif;
}

.empty-state p {
    max-width: 500px;
    margin: 0 0 20px;
    color: var(--muted);
}

.compact-empty {
    min-height: 230px;
}

.compare-dock {
    position: fixed;
    z-index: 320;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: grid;
    width: min(calc(100% - 48px), 980px);
    min-height: 76px;
    margin-inline: auto;
    padding: 12px 14px;
    align-items: center;
    border: 1px solid var(--line-bright);
    background: color-mix(in srgb, var(--panel-solid) 94%, transparent);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 15px;
}

.compare-dock[hidden] {
    display: none;
}

.compare-dock-copy span,
.compare-dock-copy strong {
    display: block;
}

.compare-dock-copy span {
    color: var(--lime-dark);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.compare-dock-copy strong {
    margin-top: 4px;
    font-size: 0.72rem;
}

.compare-dock-items {
    display: flex;
    min-width: 0;
    overflow-x: auto;
    gap: 7px;
}

.compare-chip {
    display: inline-flex;
    min-height: 38px;
    padding: 0 7px 0 11px;
    align-items: center;
    color: var(--text);
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    gap: 8px;
    white-space: nowrap;
}

.compare-chip button,
.compare-dock-actions button {
    color: var(--muted);
    border: 0;
    background: transparent;
    cursor: pointer;
}

.compare-chip button {
    font-size: 1rem;
}

.compare-dock-actions {
    display: flex;
    gap: 7px;
}

.compare-dock-actions button,
.compare-dock-actions a {
    display: inline-flex;
    min-height: 42px;
    padding: 0 14px;
    align-items: center;
    color: var(--muted);
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 11px;
    font: 800 0.68rem/1 "DM Sans", sans-serif;
    text-decoration: none;
}

.compare-dock-actions a {
    color: var(--ink);
    border-color: var(--lime);
    background: var(--lime);
}

.compare-dock-actions a[aria-disabled="true"] {
    opacity: 0.45;
}

.compare-dock-status {
    position: absolute;
    right: 12px;
    bottom: calc(100% + 7px);
    margin: 0;
    color: var(--muted);
    font-size: 0.65rem;
}

.auth-layout,
.contribution-layout {
    display: grid;
    width: min(calc(100% - 40px), 1120px);
    min-height: calc(100svh - 76px);
    margin-inline: auto;
    padding-block: 70px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
    gap: clamp(45px, 8vw, 110px);
}

.auth-story h1,
.contribution-intro h1 {
    max-width: 680px;
    margin: 13px 0 20px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3rem, 6vw, 5.8rem);
    letter-spacing: -0.07em;
    line-height: 0.96;
}

.auth-story > p,
.contribution-intro > p {
    max-width: 600px;
    color: var(--muted);
    line-height: 1.75;
}

.auth-benefits {
    display: grid;
    margin-top: 38px;
    gap: 12px;
}

.auth-benefits span {
    display: flex;
    align-items: center;
    color: var(--muted);
    gap: 13px;
}

.auth-benefits b {
    color: var(--lime-dark);
    font: 700 0.68rem/1 "Space Grotesk", sans-serif;
}

.auth-card,
.contribution-form-card {
    padding: clamp(25px, 4vw, 42px);
    border: 1px solid var(--line-bright);
    background: var(--panel-solid);
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.auth-card h2,
.contribution-form-card h2 {
    margin: 7px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.auth-card > p,
.contribution-form-card > p,
.auth-switch {
    color: var(--muted);
}

.auth-card .app-form {
    margin-top: 26px;
    grid-template-columns: 1fr;
}

.auth-switch {
    margin: 22px 0 0;
    font-size: 0.76rem;
    text-align: center;
}

.auth-switch a {
    color: var(--lime-dark);
}

.account-hero {
    padding-block: 72px 62px;
}

.account-hero h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
}

.account-hero-grid {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

.account-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.text-button,
.small-action {
    min-height: 42px;
    padding: 0 13px;
    color: var(--muted);
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 10px;
    font: 700 0.72rem/1 "DM Sans", sans-serif;
    cursor: pointer;
}

.account-grid {
    display: grid;
    padding-block: 46px 100px;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 38px;
}

.account-nav {
    position: sticky;
    top: 96px;
    display: grid;
    align-self: start;
    gap: 4px;
}

.account-nav a {
    display: flex;
    padding: 11px 13px;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    border-radius: 10px;
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
}

.account-nav a:hover {
    color: var(--text);
    background: var(--ink-soft);
}

.account-nav span {
    min-width: 25px;
    padding: 3px 6px;
    color: var(--text);
    background: var(--panel-solid);
    border-radius: 999px;
    font-size: 0.6rem;
    text-align: center;
}

.account-content {
    display: grid;
    min-width: 0;
    gap: 28px;
}

.account-section {
    padding: clamp(22px, 4vw, 34px);
    scroll-margin-top: 100px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-solid) 88%, transparent);
    border-radius: 22px;
}

.inline-create-form {
    margin-bottom: 25px;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 15px;
}

.inline-create-form[hidden] {
    display: none;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.collection-card {
    display: flex;
    min-height: 190px;
    padding: 19px;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 16px;
}

.collection-card > div > span {
    color: var(--lime-dark);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.collection-card h3 {
    margin: 9px 0 7px;
    font-family: "Space Grotesk", sans-serif;
}

.collection-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.6;
}

.collection-card-footer {
    display: flex;
    margin-top: auto;
    padding-top: 16px;
    align-items: center;
    justify-content: space-between;
}

.collection-card-footer strong {
    font-size: 0.7rem;
}

.collection-card-footer a {
    color: var(--lime-dark);
    font-size: 0.72rem;
    font-weight: 800;
}

.compact-tool-list {
    display: grid;
    gap: 7px;
}

.compact-tool-list article {
    display: grid;
    min-width: 0;
    padding: 11px;
    align-items: center;
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 13px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
}

.compact-tool-initial,
.comparison-initial,
.review-avatar {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--ink);
    background: var(--lime);
    border-radius: 11px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 800;
}

.compact-tool-list h3,
.compact-tool-list p {
    margin: 0;
}

.compact-tool-list h3 {
    font-size: 0.86rem;
}

.compact-tool-list h3 a {
    color: var(--text);
    text-decoration: none;
}

.compact-tool-list p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.66rem;
}

.compact-tool-list .compare-toggle {
    min-height: 38px;
    padding: 0 11px;
    color: var(--muted);
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 9px;
    font-size: 0.67rem;
}

.contribution-columns,
.preference-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contribution-columns > div:last-child:nth-child(3) {
    grid-column: 1 / -1;
}

.contribution-columns h3,
.owner-tool h3 {
    margin: 0 0 11px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.98rem;
}

.status-row {
    display: flex;
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    gap: 12px;
    text-decoration: none;
}

.status-row span,
.status-row small {
    display: block;
}

.status-row b {
    font-size: 0.75rem;
}

.status-row small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.64rem;
}

.status-badge {
    padding: 5px 7px;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.58rem;
    font-style: normal;
    text-transform: uppercase;
}

.status-published,
.status-approved {
    color: var(--lime-dark);
    border-color: rgba(201, 255, 91, 0.3);
}

.status-rejected {
    color: var(--danger);
}

.muted-copy {
    color: var(--muted);
    font-size: 0.76rem;
}

.owner-tool {
    margin-top: 10px;
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 15px;
}

.owner-tool summary,
.collection-settings summary,
.review-form-wrap summary,
.trust-panel details summary {
    display: flex;
    padding: 16px 18px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.owner-tool summary span,
.owner-tool summary small {
    display: block;
}

.owner-tool summary small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.65rem;
}

.owner-tool summary em {
    color: var(--muted);
    font-size: 0.65rem;
}

.owner-tool-form,
.localization-form,
.collection-settings .app-form {
    margin: 0 16px 16px;
    padding: 18px;
    border-top: 1px solid var(--line);
}

.localization-form {
    background: var(--panel-solid);
    border-radius: 13px;
}

.preference-grid .app-form {
    align-content: start;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 15px;
    grid-template-columns: 1fr;
}

.contribution-layout {
    align-items: start;
    grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1fr);
}

.contribution-intro {
    position: sticky;
    top: 120px;
    padding-top: 25px;
}

.contribution-intro ol {
    display: grid;
    margin: 38px 0 0;
    padding: 0;
    gap: 18px;
    list-style: none;
}

.contribution-intro li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
}

.contribution-intro li > span {
    color: var(--lime-dark);
    font: 800 0.68rem/1.4 "Space Grotesk", sans-serif;
}

.contribution-intro li b,
.contribution-intro li p {
    display: block;
    margin: 0;
}

.contribution-intro li p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.75rem;
}

.submission-form {
    margin-top: 26px;
}

.collection-hero .site-shell {
    position: relative;
}

.collection-hero h1 {
    max-width: 850px;
}

.collection-byline {
    display: flex;
    margin: 24px 0;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.7rem;
    gap: 18px;
}

.collection-hero .universal-share-button {
    margin-top: 5px;
}

.collection-hero .universal-share-status {
    max-width: 300px;
    margin: 8px 0 0 !important;
    text-align: left;
}

.collection-content {
    padding-block: 48px 100px;
}

.collection-settings {
    margin-bottom: 28px;
    border: 1px solid var(--line);
    background: var(--panel-solid);
    border-radius: 16px;
}

.collection-tool-wrap {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.collection-tool-wrap .directory-card {
    flex: 1;
}

.collection-remove-form button {
    width: 100%;
    padding: 9px;
    color: var(--danger);
    border: 1px solid var(--line);
    border-top: 0;
    background: transparent;
    border-radius: 0 0 12px 12px;
    font-size: 0.65rem;
    cursor: pointer;
}

.compare-hero h1 span {
    display: inline-block;
    margin-inline: 0.12em;
    font-size: 0.48em;
    letter-spacing: 0;
    vertical-align: middle;
}

.compare-content {
    padding-block: 50px 90px;
}

.comparison-scroll {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.comparison-matrix {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background: var(--panel-solid);
}

.comparison-matrix th,
.comparison-matrix td {
    min-width: 190px;
    padding: 18px;
    color: var(--text);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 0.76rem;
    line-height: 1.55;
    text-align: left;
    vertical-align: top;
}

.comparison-matrix th:first-child {
    position: sticky;
    z-index: 3;
    left: 0;
    min-width: 145px;
    color: var(--muted);
    background: var(--ink-soft);
    font-size: 0.66rem;
    text-transform: uppercase;
}

.comparison-matrix thead th {
    padding-block: 23px;
    background: var(--ink-soft);
}

.comparison-matrix thead th:not(:first-child) {
    min-width: 230px;
}

.comparison-matrix thead th b,
.comparison-matrix thead th a,
.comparison-matrix td small {
    display: block;
}

.comparison-matrix thead th b {
    margin: 11px 0 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.06rem;
}

.comparison-matrix thead th a {
    color: var(--lime-dark);
    font-size: 0.66rem;
}

.comparison-matrix td small {
    margin-top: 5px;
    color: var(--muted);
}

.comparison-initial {
    width: 45px;
    height: 45px;
}

.comparison-matrix .primary-button {
    min-height: 42px;
    font-size: 0.68rem;
}

.binary-signal {
    display: inline-flex;
    padding: 5px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.binary-signal.yes {
    color: var(--lime-dark);
    border-color: rgba(201, 255, 91, 0.3);
}

.binary-signal.no {
    color: var(--muted);
}

.comparison-description td {
    min-width: 250px;
}

.comparison-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.68rem;
    text-align: center;
}

.compare-empty {
    min-height: 470px;
}

.guide-index-grid {
    display: grid;
    padding-block: 54px 110px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.guide-index-card {
    display: grid;
    min-height: 350px;
    padding: clamp(24px, 4vw, 38px);
    color: var(--text);
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 90% 0%, rgba(169, 139, 255, 0.11), transparent 35%),
        var(--panel-solid);
    border-radius: 22px;
    grid-template-rows: auto 1fr auto;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease;
}

.guide-index-card:hover {
    border-color: var(--line-bright);
    transform: translateY(-4px);
}

.guide-number {
    margin-bottom: 30px;
    color: var(--muted);
    font: 700 0.7rem/1 "Space Grotesk", sans-serif;
}

.guide-index-card h2 {
    margin: 8px 0 14px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    letter-spacing: -0.05em;
}

.guide-index-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

.guide-index-card footer {
    display: flex;
    margin-top: 30px;
    padding-top: 18px;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.7rem;
}

.guide-index-card footer b {
    color: var(--lime-dark);
}

.guide-hero h1 {
    max-width: 1000px;
}

.guide-hero-actions {
    display: flex;
    margin-top: 28px;
    flex-wrap: wrap;
    gap: 9px;
}

.guide-buying-panel {
    display: grid;
    margin-block: 48px;
    padding: clamp(26px, 5vw, 48px);
    align-items: start;
    border: 1px solid var(--line-bright);
    background: var(--panel-solid);
    border-radius: 24px;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 45px;
}

.guide-buying-panel h2 {
    margin: 8px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.8rem);
    letter-spacing: -0.05em;
}

.guide-buying-panel > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.85;
}

.guide-categories {
    display: flex;
    padding-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.72rem;
    gap: 7px;
}

.guide-categories a {
    padding: 7px 10px;
    color: var(--text);
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 999px;
    text-decoration: none;
}

.guide-faq {
    padding-block: 20px 110px;
}

.guide-faq details {
    border-top: 1px solid var(--line);
}

.guide-faq details:last-child {
    border-bottom: 1px solid var(--line);
}

.guide-faq summary {
    padding: 20px 4px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

.guide-faq details p {
    max-width: 820px;
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.75;
}

.detail-breadcrumb {
    display: flex;
    padding-top: 32px;
    align-items: center;
    color: var(--muted);
    font-size: 0.7rem;
    gap: 9px;
}

.detail-breadcrumb a {
    color: var(--muted);
}

.tool-detail-hero {
    display: grid;
    padding-block: 34px 58px;
    align-items: stretch;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 34px;
}

.tool-detail-visual {
    position: relative;
    display: grid;
    min-height: 500px;
    overflow: hidden;
    place-items: center;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at center, rgba(201, 255, 91, 0.12), transparent 32%),
        var(--ink-soft);
    border-radius: 25px;
}

.tool-detail-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-detail-summary {
    display: flex;
    padding: clamp(22px, 4vw, 40px);
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--panel-solid);
    border-radius: 25px;
}

.detail-kicker-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-kicker-row a,
.detail-kicker-row span {
    padding: 6px 9px;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.61rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.tool-detail-summary h1 {
    margin: 18px 0 13px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.7rem, 5vw, 5rem);
    letter-spacing: -0.07em;
    line-height: 0.98;
}

.tool-detail-lead {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.tool-detail-signals {
    display: flex;
    margin-top: 20px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.7rem;
    gap: 10px;
}

.tool-facts {
    display: grid;
    margin: 24px 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tool-facts div {
    min-width: 0;
    padding: 12px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.tool-facts dt {
    color: var(--muted);
    font-size: 0.57rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tool-facts dd {
    margin: 6px 0 0;
    overflow-wrap: anywhere;
    font-size: 0.72rem;
    font-weight: 700;
}

.tool-facts small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.58rem;
}

.tool-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tool-detail-actions .compare-toggle {
    font: 700 0.75rem/1 "DM Sans", sans-serif;
    cursor: pointer;
}

.quick-save-form {
    display: flex;
    margin-top: 12px;
    align-items: end;
    gap: 7px;
}

.quick-save-form label {
    flex: 1;
    color: var(--muted);
    font-size: 0.65rem;
}

.quick-save-form span {
    display: block;
    margin-bottom: 5px;
}

.quick-save-form button,
.compact-form button,
.review-form-wrap button,
.helpful-button {
    min-height: 44px;
    padding: 0 13px;
    color: var(--text);
    border: 1px solid var(--line-bright);
    background: var(--ink-soft);
    border-radius: 10px;
    font: 700 0.7rem/1 "DM Sans", sans-serif;
    cursor: pointer;
}

.detail-account-prompt {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.detail-account-prompt a {
    color: var(--lime-dark);
}

.detail-content-grid {
    display: grid;
    padding-bottom: 60px;
    align-items: start;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    gap: 25px;
}

.detail-main-column,
.detail-side-column {
    display: grid;
    gap: 25px;
}

.detail-panel,
.detail-share {
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid var(--line);
    background: var(--panel-solid);
    border-radius: 22px;
}

.detail-panel h2,
.detail-share h2 {
    margin: 7px 0 15px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: -0.045em;
}

.detail-description {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.9;
}

.review-list {
    display: grid;
    gap: 11px;
}

.review-card {
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 15px;
}

.review-card header,
.review-card header > div {
    display: flex;
    align-items: center;
}

.review-card header {
    justify-content: space-between;
    gap: 15px;
}

.review-card header > div {
    min-width: 0;
    gap: 11px;
}

.review-avatar {
    min-width: 38px;
    width: 38px;
    height: 38px;
}

.review-card h3,
.review-card header p,
.review-card > p,
.review-pros-cons p {
    margin: 0;
}

.review-card h3 {
    font-size: 0.88rem;
}

.review-card header p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.63rem;
}

.review-card header > strong {
    color: var(--orange);
    font-size: 0.73rem;
    white-space: nowrap;
}

.review-card > p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.7;
}

.review-pros-cons {
    display: grid;
    margin-top: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.review-pros-cons div {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.review-pros-cons b {
    display: block;
    margin-bottom: 5px;
    font-size: 0.66rem;
}

.review-pros-cons p {
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.55;
}

.helpful-button {
    min-height: 34px;
    margin-top: 12px;
}

.review-form-wrap {
    margin-top: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.review-form-wrap .app-form {
    padding: 0 18px 18px;
}

.trust-panel dl {
    display: grid;
    margin: 20px 0;
    gap: 0;
}

.trust-panel dl div {
    display: flex;
    padding: 11px 0;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    gap: 12px;
}

.trust-panel dt {
    color: var(--muted);
    font-size: 0.7rem;
}

.trust-panel dd {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: right;
}

.trust-panel dd small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
}

.trust-panel details {
    margin-top: 9px;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.trust-panel details summary {
    padding: 13px;
    font-size: 0.72rem;
    font-weight: 700;
}

.compact-form {
    padding: 0 13px 13px;
    grid-template-columns: 1fr;
}

.status-note {
    color: var(--muted);
    font-size: 0.72rem;
}

.detail-share {
    grid-template-columns: 1fr;
}

.detail-share .universal-share-button {
    width: 100%;
}

.detail-share .universal-share-status {
    margin: -10px 0 0 !important;
    text-align: left;
}

.alternative-section {
    background: color-mix(in srgb, var(--panel-solid) 45%, transparent);
}

.moderation-main {
    padding-bottom: 100px;
}

.moderation-hero {
    padding-block: 75px 40px;
}

.moderation-hero h1 {
    max-width: 880px;
    margin: 12px 0 15px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3rem, 6vw, 5.4rem);
    letter-spacing: -0.07em;
    line-height: 0.98;
}

.moderation-hero p {
    max-width: 700px;
    color: var(--muted);
}

.insight-grid {
    display: grid;
    padding-block: 20px 35px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.insight-grid article {
    padding: 17px;
    border: 1px solid var(--line);
    background: var(--panel-solid);
    border-radius: 14px;
}

.insight-grid span,
.insight-grid strong,
.insight-grid small {
    display: block;
}

.insight-grid span {
    color: var(--muted);
    font-size: 0.55rem;
    font-weight: 800;
}

.insight-grid strong {
    margin: 8px 0 3px;
    font: 700 1.7rem/1 "Space Grotesk", sans-serif;
}

.insight-grid small {
    color: var(--muted);
    font-size: 0.6rem;
}

.moderation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.moderation-queue {
    align-self: start;
    padding: 21px;
    border: 1px solid var(--line);
    background: var(--panel-solid);
    border-radius: 18px;
}

.moderation-queue > header {
    display: flex;
    margin-bottom: 15px;
    align-items: end;
    justify-content: space-between;
}

.moderation-queue > header h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
}

.moderation-card {
    padding: 15px;
    border: 1px solid var(--line);
    background: var(--ink-soft);
    border-radius: 13px;
}

.moderation-card + .moderation-card {
    margin-top: 9px;
}

.moderation-card-heading {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.moderation-card h3,
.moderation-card h4,
.moderation-card p {
    margin: 0;
}

.moderation-card h3 {
    font-size: 0.86rem;
}

.moderation-card h4 {
    margin-top: 13px;
    font-size: 0.78rem;
}

.moderation-card-heading p,
.moderation-card-heading > span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.62rem;
}

.moderation-card > p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.6;
}

.moderation-actions {
    display: flex;
    margin-top: 13px;
    gap: 7px;
}

.moderation-actions button {
    min-height: 36px;
    padding: 0 11px;
    color: var(--text);
    border: 1px solid var(--line-bright);
    background: transparent;
    border-radius: 9px;
    font-size: 0.65rem;
    cursor: pointer;
}

.moderation-actions form:first-child button {
    color: var(--ink);
    border-color: var(--lime);
    background: var(--lime);
}

.queue-empty {
    padding: 20px;
    color: var(--muted);
    border: 1px dashed var(--line);
    border-radius: 11px;
    font-size: 0.72rem;
    text-align: center;
}

.moderation-insights {
    grid-column: 1 / -1;
}

.insight-row {
    display: flex;
    padding: 11px 0;
    justify-content: space-between;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    font-size: 0.72rem;
    text-decoration: none;
}

.insight-row b {
    color: var(--lime-dark);
}

@media (max-width: 1180px) {
    .directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-nav a {
        padding-inline: 9px;
        font-size: 0.8rem;
    }

    .site-nav .nav-cta {
        display: none;
    }

    .tool-detail-hero {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    }
}

@media (max-width: 920px) {
    .discovery-layout,
    .account-grid,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .filter-panel,
    .account-nav {
        position: relative;
        top: auto;
    }

    .account-nav {
        display: flex;
        overflow-x: auto;
    }

    .account-nav a {
        min-width: max-content;
    }

    .tool-detail-hero {
        grid-template-columns: 1fr;
    }

    .tool-detail-visual {
        min-height: 430px;
    }

    .auth-layout,
    .contribution-layout {
        grid-template-columns: 1fr;
    }

    .contribution-intro {
        position: relative;
        top: auto;
    }

    .insight-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .directory-hero,
    .account-hero,
    .compare-hero,
    .guide-index-hero,
    .guide-hero,
    .collection-hero {
        padding-block: 58px 48px;
    }

    .directory-hero h1,
    .account-hero h1,
    .compare-hero h1,
    .guide-index-hero h1,
    .guide-hero h1,
    .collection-hero h1 {
        font-size: clamp(2.65rem, 13vw, 4.2rem);
    }

    .directory-grid,
    .directory-grid-compact,
    .collection-grid,
    .guide-index-grid,
    .moderation-grid,
    .contribution-columns,
    .preference-grid,
    .guide-buying-panel {
        grid-template-columns: 1fr;
    }

    .moderation-insights,
    .contribution-columns > div:last-child:nth-child(3) {
        grid-column: auto;
    }

    .filter-row,
    .app-form {
        grid-template-columns: 1fr;
    }

    .full-field,
    .app-submit {
        grid-column: auto;
    }

    .auth-layout,
    .contribution-layout {
        width: min(calc(100% - 28px), 1120px);
        padding-block: 45px 70px;
    }

    .auth-story h1,
    .contribution-intro h1 {
        font-size: clamp(2.7rem, 13vw, 4.2rem);
    }

    .account-hero-grid {
        align-items: start;
        flex-direction: column;
    }

    .tool-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-pros-cons {
        grid-template-columns: 1fr;
    }

    .compare-dock {
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: calc(100% - 20px);
        grid-template-columns: 1fr auto;
    }

    .compare-dock-copy {
        display: none;
    }

    .compare-dock-items {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .compare-dock-actions {
        grid-column: 1 / -1;
    }

    .compare-dock-actions a {
        flex: 1;
        justify-content: center;
    }

    .results-heading {
        align-items: start;
        flex-direction: column;
    }

    .results-heading p {
        text-align: left;
    }

    .insight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 580px) {
    .account-trigger {
        min-width: 38px;
        width: 38px;
        height: 38px;
        overflow: hidden;
        padding: 0;
        font-size: 0.65rem;
    }

    .discovery-layout,
    .account-grid,
    .collection-content,
    .compare-content {
        padding-block: 30px 80px;
    }

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

    .directory-card-visual {
        height: 185px;
    }

    .tool-detail-visual {
        min-height: 300px;
    }

    .tool-detail-summary {
        padding: 22px 18px;
    }

    .tool-detail-summary h1 {
        font-size: clamp(2.7rem, 15vw, 4.3rem);
    }

    .tool-detail-actions,
    .tool-detail-actions a,
    .tool-detail-actions button,
    .quick-save-form {
        width: 100%;
    }

    .quick-save-form {
        align-items: stretch;
        flex-direction: column;
    }

    .tool-facts {
        grid-template-columns: 1fr 1fr;
    }

    .detail-panel-heading {
        align-items: start;
        flex-direction: column;
    }

    .review-card header {
        align-items: start;
    }

    .guide-index-grid {
        padding-block: 30px 80px;
    }

    .guide-index-card {
        min-height: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .directory-card,
    .guide-index-card,
    .universal-share-button {
        transition: none;
    }
}
