:root {
    --wt-ink: #163234;
    --wt-ink-soft: #567175;
    --wt-bg: #f7f2e8;
    --wt-panel: rgba(255, 255, 255, 0.88);
    --wt-panel-strong: #ffffff;
    --wt-line: rgba(22, 50, 52, 0.12);
    --wt-accent: #0f6c69;
    --wt-accent-soft: rgba(15, 108, 105, 0.12);
    --wt-warm: #d0712d;
    --wt-warm-soft: rgba(208, 113, 45, 0.14);
    --wt-danger: #b3564d;
    --wt-danger-soft: rgba(179, 86, 77, 0.12);
    --wt-radius-xl: 28px;
    --wt-radius-lg: 20px;
    --wt-radius-md: 14px;
    --wt-shadow: 0 24px 70px rgba(18, 42, 45, 0.12);
}

.wilmes-tools-app,
.wt-shell,
.wilmes-tools-noscript {
    color: var(--wt-ink);
    font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

.wt-shell *,
.wt-shell *::before,
.wt-shell *::after,
.wilmes-tools-app *,
.wilmes-tools-app *::before,
.wilmes-tools-app *::after {
    box-sizing: border-box;
}

.wilmes-tools-noscript {
    margin: 2rem 0;
    padding: 1rem 1.25rem;
    border-radius: var(--wt-radius-md);
    background: #fff3ea;
    color: #7b3d1f;
}

.wt-shell {
    position: relative;
    display: grid;
    gap: 1.75rem;
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(15, 108, 105, 0.14), transparent 26%),
        radial-gradient(circle at bottom left, rgba(208, 113, 45, 0.14), transparent 28%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.72), rgba(249, 244, 235, 0.96));
    box-shadow: var(--wt-shadow);
    overflow: hidden;
}

.wt-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(22, 50, 52, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 50, 52, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 85%);
    pointer-events: none;
}

.wt-hero,
.wt-panel,
.wt-results,
.wt-roadmap,
.wt-sources {
    position: relative;
    z-index: 1;
}

.wt-hero {
    display: grid;
    gap: 1.25rem;
    align-items: end;
    padding: 1.5rem;
    border-radius: var(--wt-radius-xl);
    background:
        linear-gradient(135deg, rgba(17, 76, 74, 0.96), rgba(11, 49, 54, 0.9));
    color: #f9faf6;
}

.wt-eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wt-hero h1 {
    margin: 0.65rem 0 0.75rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 0.98;
    font-weight: 800;
}

.wt-hero p {
    max-width: 56rem;
    margin: 0;
    color: rgba(249, 250, 246, 0.82);
    font-size: 1rem;
}

.wt-hero-stats {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wt-hero-stats div {
    padding: 1rem 1rem 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.wt-hero-stats strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.35rem;
    color: #ffd9aa;
}

.wt-hero-stats span {
    display: block;
    color: rgba(249, 250, 246, 0.78);
    font-size: 0.9rem;
}

.wt-tabbar {
    display: inline-flex;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: inset 0 0 0 1px var(--wt-line);
}

.wt-tab {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--wt-ink-soft);
    font: inherit;
    font-weight: 700;
    padding: 0.8rem 1.15rem;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.wt-tab:hover,
.wt-tab:focus-visible {
    color: var(--wt-ink);
    outline: none;
}

.wt-tab.is-active {
    background: linear-gradient(135deg, var(--wt-accent), #184f5c);
    color: #fff;
    transform: translateY(-1px);
}

.wt-panel-wrap.is-hidden {
    display: none;
}

.wt-main-grid {
    display: grid;
    gap: 1.35rem;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.wt-main-grid-expert {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.wt-panel,
.wt-results,
.wt-roadmap,
.wt-sources {
    padding: 1.35rem;
    border-radius: var(--wt-radius-xl);
    background: var(--wt-panel);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
}

.wt-results {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.wt-section-head {
    margin-bottom: 1.1rem;
}

.wt-section-head h2 {
    margin: 0 0 0.35rem;
    font-size: 1.45rem;
    line-height: 1.1;
}

.wt-section-head p {
    margin: 0;
    color: var(--wt-ink-soft);
}

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

.wt-tool-card {
    display: grid;
    gap: 0.95rem;
    align-content: start;
    padding: 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        inset 0 0 0 1px rgba(22, 50, 52, 0.08),
        0 16px 40px rgba(18, 42, 45, 0.06);
}

.wt-tool-card h3 {
    margin: 0;
    font-size: 1.24rem;
    line-height: 1.1;
}

.wt-tool-card h3 a {
    color: var(--wt-ink);
    text-decoration: none;
}

.wt-tool-card h3 a:hover,
.wt-tool-card h3 a:focus-visible {
    color: var(--wt-accent);
    text-decoration: underline;
}

.wt-tool-card p {
    margin: 0;
    color: var(--wt-ink-soft);
}

.wt-dynamic-panel[hidden] {
    display: none;
}

.wt-breadcrumbs {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    color: var(--wt-ink-soft);
    font-size: 0.94rem;
}

.wt-breadcrumbs a {
    color: var(--wt-accent);
    text-decoration: none;
    font-weight: 700;
}

.wt-breadcrumbs a:hover,
.wt-breadcrumbs a:focus-visible {
    text-decoration: underline;
}

.wt-tool-anchor-nav {
    position: sticky;
    top: 1rem;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: center;
    padding: 0.95rem 1.05rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 0 1px rgba(22, 50, 52, 0.08);
}

.wt-tool-anchor-nav a {
    color: var(--wt-ink);
    text-decoration: none;
    font-weight: 700;
}

.wt-tool-anchor-nav a:hover,
.wt-tool-anchor-nav a:focus-visible {
    color: var(--wt-accent);
}

.wt-quickfacts {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wt-quickfact-card {
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 0 0 1px rgba(22, 50, 52, 0.08);
}

.wt-quickfact-card strong {
    display: block;
    margin-top: 0.3rem;
    line-height: 1.2;
}

.wt-tool-grid-featured .wt-tool-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 250, 0.96));
}

.wt-hub-filter-grid {
    margin-bottom: 1rem;
}

.wt-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

.wt-kicker {
    color: var(--wt-ink-soft);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wt-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
}

.wt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--wt-accent), #184f5c);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15, 108, 105, 0.2);
    transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.wt-button:hover,
.wt-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(15, 108, 105, 0.24);
    color: #fff;
    outline: none;
}

.wt-button-secondary {
    background: rgba(15, 108, 105, 0.08);
    color: var(--wt-accent);
    box-shadow: inset 0 0 0 1px rgba(15, 108, 105, 0.12);
}

.wt-button-secondary:hover,
.wt-button-secondary:focus-visible {
    color: var(--wt-accent);
    box-shadow: inset 0 0 0 1px rgba(15, 108, 105, 0.18);
}

.wt-button-small {
    min-height: 2.4rem;
    padding: 0.6rem 0.92rem;
    font-size: 0.9rem;
}

.wt-button.is-active {
    background: linear-gradient(135deg, var(--wt-accent), #184f5c);
    color: #fff;
    box-shadow: 0 14px 30px rgba(15, 108, 105, 0.22);
}

.wt-tool-workbench,
.wt-tool-stack {
    display: grid;
    gap: 1.2rem;
}

.wt-tool-layout {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.wt-tool-layout-wide {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.wt-panel-nested {
    padding: 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 0 0 1px rgba(22, 50, 52, 0.07);
}

.wt-status {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.wt-status-good {
    background: rgba(15, 108, 105, 0.12);
    color: var(--wt-accent);
}

.wt-status-warn {
    background: rgba(208, 113, 45, 0.14);
    color: #a35d22;
}

.wt-status-danger {
    background: rgba(179, 86, 77, 0.12);
    color: var(--wt-danger);
}

.wt-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.wt-product-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wt-product-card {
    display: grid;
    gap: 0.95rem;
    align-content: start;
    padding: 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        inset 0 0 0 1px rgba(22, 50, 52, 0.08),
        0 16px 40px rgba(18, 42, 45, 0.06);
}

.wt-product-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 108, 105, 0.12), rgba(24, 79, 92, 0.18));
}

.wt-product-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wt-product-media-fallback {
    display: flex;
    align-items: end;
    padding: 1rem;
    color: var(--wt-accent);
    font-size: 1.1rem;
    font-weight: 800;
}

.wt-product-card h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.12;
}

.wt-product-card h3 a {
    color: var(--wt-ink);
    text-decoration: none;
}

.wt-product-card h3 a:hover,
.wt-product-card h3 a:focus-visible {
    color: var(--wt-accent);
    text-decoration: underline;
}

.wt-product-card p {
    margin: 0;
    color: var(--wt-ink-soft);
}

.wt-disclosure {
    margin: 1rem 0 0;
    color: var(--wt-ink-soft);
    font-size: 0.92rem;
}

.wt-phase-grid,
.wt-budget-grid {
    display: grid;
    gap: 0.85rem;
}

.wt-phase-card,
.wt-budget-row {
    display: grid;
    gap: 0.5rem;
}

.wt-phase-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.wt-phase-meta p,
.wt-phase-card p {
    margin: 0;
    color: var(--wt-ink-soft);
}

.wt-bar-track {
    width: 100%;
    height: 14px;
    border-radius: 999px;
    background: rgba(22, 50, 52, 0.08);
    overflow: hidden;
}

.wt-bar-fill {
    height: 100%;
    border-radius: 999px;
}

.wt-bar-fill-good {
    background: linear-gradient(135deg, rgba(15, 108, 105, 0.92), rgba(38, 145, 116, 0.86));
}

.wt-bar-fill-warn {
    background: linear-gradient(135deg, rgba(208, 113, 45, 0.92), rgba(229, 163, 68, 0.86));
}

.wt-bar-fill-danger {
    background: linear-gradient(135deg, rgba(179, 86, 77, 0.92), rgba(208, 110, 93, 0.86));
}

.wt-toggle-group {
    display: inline-grid;
    gap: 0.45rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-bottom: 1rem;
}

.wt-toggle-group input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wt-toggle-group label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.7rem 0.9rem;
    border-radius: 16px;
    background: rgba(15, 108, 105, 0.06);
    color: var(--wt-ink-soft);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(15, 108, 105, 0.08);
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.wt-toggle-group input:checked + label {
    background: linear-gradient(135deg, rgba(15, 108, 105, 0.9), rgba(24, 79, 92, 0.9));
    color: #fff;
    transform: translateY(-1px);
}

.wt-form-grid {
    display: grid;
    gap: 0.95rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wt-form-grid-tight {
    grid-template-columns: 1fr;
}

.wt-field {
    display: grid;
    gap: 0.45rem;
}

.wt-field-inline {
    min-width: 15rem;
}

.wt-field span,
.wt-field-double span,
.wt-inline-check {
    color: var(--wt-ink-soft);
    font-size: 0.92rem;
    font-weight: 700;
}

.wt-field input,
.wt-field select,
.wt-field-double input {
    width: 100%;
    min-height: 3rem;
    padding: 0.72rem 0.85rem;
    border: 1px solid rgba(22, 50, 52, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--wt-ink);
    font: inherit;
}

.wt-field input:focus,
.wt-field select:focus,
.wt-field-double input:focus {
    outline: 2px solid rgba(15, 108, 105, 0.18);
    border-color: rgba(15, 108, 105, 0.4);
}

.wt-field-double {
    display: grid;
    gap: 0.45rem;
}

.wt-field-double > label {
    display: grid;
    gap: 0.35rem;
}

.wt-inline-check {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    background: rgba(15, 108, 105, 0.06);
    font-weight: 600;
}

.wt-inline-check input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--wt-accent);
}

.wt-actionbar {
    gap: 1rem;
}

.wt-actionbar-top {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: end;
}

.wt-action-controls {
    display: grid;
    gap: 0.8rem;
    justify-items: end;
}

.wt-compare-shell {
    display: grid;
    gap: 0.9rem;
}

.wt-compare-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wt-compare-card {
    display: grid;
    gap: 0.6rem;
    padding: 0.95rem;
    border-radius: 18px;
    background: rgba(15, 108, 105, 0.05);
    box-shadow: inset 0 0 0 1px rgba(15, 108, 105, 0.08);
}

.wt-compare-card strong,
.wt-compare-card p {
    margin: 0;
}

.wt-compare-card-empty {
    background: rgba(22, 50, 52, 0.04);
    box-shadow: inset 0 0 0 1px rgba(22, 50, 52, 0.08);
}

#wt-tool-calculator,
#wt-tool-products,
#wt-tool-support,
#wt-tool-faq,
#wt-tool-related,
#wt-tool-sources {
    scroll-margin-top: 7rem;
}

.wt-details {
    margin-top: 1rem;
    border-radius: 18px;
    background: rgba(22, 50, 52, 0.04);
    overflow: hidden;
}

.wt-details summary {
    cursor: pointer;
    padding: 1rem 1.1rem;
    font-weight: 800;
}

.wt-details > *:not(summary) {
    padding: 0 1.1rem 1rem;
}

.wt-details-note {
    margin: 0;
    color: var(--wt-ink-soft);
    font-size: 0.92rem;
}

.wt-result-card {
    display: grid;
    gap: 0.95rem;
    padding: 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 0 0 1px var(--wt-line);
}

.wt-result-card h2,
.wt-result-card h3 {
    margin: 0;
    line-height: 1.05;
}

.wt-result-card h2 {
    font-size: 1.9rem;
}

.wt-result-card h3 {
    font-size: 1.3rem;
}

.wt-result-card p,
.wt-inline-note,
.wt-note-list p {
    margin: 0;
}

.wt-result-card-warn {
    background: linear-gradient(135deg, #fff2ee, #fff8f3);
    box-shadow: inset 0 0 0 1px rgba(179, 86, 77, 0.18);
}

.wt-lead {
    color: var(--wt-ink-soft);
}

.wt-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 0.34rem 0.65rem;
    border-radius: 999px;
    background: var(--wt-accent-soft);
    color: var(--wt-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wt-badge-soft {
    background: var(--wt-warm-soft);
    color: var(--wt-warm);
}

.wt-badge-warn {
    background: var(--wt-danger-soft);
    color: var(--wt-danger);
}

.wt-metric-grid {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wt-metric {
    padding: 0.95rem;
    border-radius: 16px;
    background: rgba(15, 108, 105, 0.05);
}

.wt-metric span {
    display: block;
    color: var(--wt-ink-soft);
    font-size: 0.86rem;
    margin-bottom: 0.25rem;
}

.wt-metric strong {
    display: block;
    font-size: 1.02rem;
    line-height: 1.25;
}

.wt-inline-note {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(208, 113, 45, 0.08);
    color: #8d562a;
}

.wt-note-list {
    display: grid;
    gap: 0.7rem;
}

.wt-note-list p {
    padding-left: 1rem;
    border-left: 3px solid rgba(15, 108, 105, 0.18);
    color: var(--wt-ink-soft);
}

.wt-plain-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding-left: 1.15rem;
}

.wt-plain-list li {
    color: var(--wt-ink-soft);
}

.wt-faq-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wt-faq-item {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 0 0 1px rgba(22, 50, 52, 0.08);
    overflow: hidden;
}

.wt-faq-item summary {
    cursor: pointer;
    padding: 1rem 1.05rem;
    font-weight: 800;
    line-height: 1.25;
}

.wt-faq-item p {
    margin: 0;
    padding: 0 1.05rem 1.05rem;
    color: var(--wt-ink-soft);
}

.wt-tool-grid-related .wt-tool-card {
    min-height: 100%;
}

.wt-table-wrap {
    overflow-x: auto;
}

.wt-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 28rem;
}

.wt-table th,
.wt-table td {
    padding: 0.75rem 0.7rem;
    border-bottom: 1px solid rgba(22, 50, 52, 0.08);
    text-align: left;
    vertical-align: top;
}

.wt-table thead th {
    color: var(--wt-ink-soft);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wt-segment-grid {
    display: grid;
    gap: 1rem;
}

.wt-segment-card {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(22, 50, 52, 0.04);
}

.wt-segment-header {
    margin-bottom: 0.85rem;
}

.wt-segment-header h3 {
    margin: 0 0 0.28rem;
    font-size: 1.1rem;
}

.wt-segment-header p {
    margin: 0;
    color: var(--wt-ink-soft);
    font-size: 0.92rem;
}

.wt-segment-result {
    display: none;
}

.wt-teaser-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wt-teaser-card {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 0 0 1px rgba(22, 50, 52, 0.08);
}

.wt-teaser-card h3 {
    margin: 0.55rem 0 0.45rem;
    font-size: 1.12rem;
}

.wt-teaser-card p {
    margin: 0;
    color: var(--wt-ink-soft);
}

.wt-source-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wt-source-list li {
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(15, 108, 105, 0.05);
}

.wt-source-list a {
    color: var(--wt-accent);
    font-weight: 800;
    text-decoration: none;
}

.wt-source-list a:hover,
.wt-source-list a:focus-visible {
    text-decoration: underline;
}

.wt-source-list span {
    color: var(--wt-ink-soft);
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .wt-main-grid,
    .wt-main-grid-expert,
    .wt-hero,
    .wt-teaser-grid,
    .wt-tool-grid,
    .wt-tool-layout,
    .wt-tool-layout-wide,
    .wt-quickfacts,
    .wt-actionbar-top,
    .wt-compare-grid,
    .wt-faq-grid,
    .wt-product-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 720px) {
    .wt-shell {
        padding: 1rem;
        border-radius: 24px;
    }

    .wt-panel,
    .wt-results,
    .wt-roadmap,
    .wt-sources,
    .wt-hero {
        padding: 1rem;
        border-radius: 20px;
    }

    .wt-toggle-group,
    .wt-form-grid,
    .wt-metric-grid,
    .wt-faq-grid {
        grid-template-columns: 1fr;
    }

    .wt-tool-anchor-nav {
        position: static;
    }

    .wt-action-controls {
        justify-items: stretch;
    }

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

    .wt-tabbar {
        width: 100%;
        flex-wrap: wrap;
    }

    .wt-tab {
        flex: 1 1 100%;
        text-align: center;
    }
}
