/*
Theme Name: WPcolt
Theme URI: https://wpcolt.com
Author: WPcolt
Description: Lightweight classic WordPress theme for WPColt Cache Inspector.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: wpcolt
*/

:root {
    --ink: #09182f;
    --navy: #102544;
    --slate: #607089;
    --line: #dfe6ee;
    --soft: #f5f8fb;
    --paper: #ffffff;
    --orange: #f47b20;
    --orange-dark: #d9610f;
    --green: #21b46b;
    --red: #ed4f54;
    --yellow: #f4b744;
    --cyan: #38a7d8;
    --shadow-sm: 0 8px 24px rgba(9, 24, 47, 0.08);
    --shadow-md: 0 18px 48px rgba(9, 24, 47, 0.13);
    --shadow-lg: 0 28px 80px rgba(9, 24, 47, 0.18);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--orange-dark);
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover {
    color: var(--orange);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 18px;
    color: var(--ink);
    font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.98;
}

p {
    margin: 0 0 18px;
}

ul,
ol {
    padding-left: 1.2rem;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding: 20px 0;
    background: rgba(245, 248, 251, 0.76);
    backdrop-filter: blur(14px);
    transition: padding 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled,
.site-header.nav-active {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 28px rgba(9, 24, 47, 0.09);
}

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

.site-logo a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.site-logo-mark {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 6px;
    color: #fff;
    background: var(--orange);
    box-shadow: 0 10px 24px rgba(244, 123, 32, 0.32);
}

.site-logo span:last-child {
    color: var(--orange);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
    color: var(--orange-dark);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.btn,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn:hover,
.wp-block-button__link:hover {
    transform: translateY(-2px);
}

.btn-primary,
.wp-block-button__link {
    color: #fff;
    background: var(--orange);
    box-shadow: 0 14px 30px rgba(244, 123, 32, 0.28);
}

.btn-primary:hover,
.wp-block-button__link:hover {
    color: #fff;
    background: var(--orange-dark);
}

.btn-outline {
    color: var(--ink);
    border-color: rgba(9, 24, 47, 0.26);
    background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
    color: var(--ink);
    border-color: var(--orange);
    background: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 160px 0 88px;
    background:
        radial-gradient(circle at 78% 22%, rgba(56, 167, 216, 0.18), transparent 25%),
        linear-gradient(135deg, #f7fafc 0%, #e9eef4 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 78px 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(9, 24, 47, 0.16), transparent);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 64px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--orange);
}

.hero-content h1 {
    max-width: 600px;
    margin-bottom: 22px;
    font-size: clamp(54px, 7vw, 86px);
    text-transform: uppercase;
}

.hero-content h1 span {
    color: var(--orange);
}

.hero-copy {
    max-width: 600px;
    color: var(--slate);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 30px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(9, 24, 47, 0.12);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    display: grid;
    min-height: 540px;
    place-items: center;
}

.request-field {
    position: absolute;
    inset: 36px 20px;
    opacity: 0.8;
    pointer-events: none;
}

.request-line {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(56, 167, 216, 0.62), transparent);
    animation: requestMove 4.8s linear infinite;
}

.request-line:nth-child(1) {
    top: 21%;
    left: 2%;
    width: 76%;
}

.request-line:nth-child(2) {
    top: 47%;
    right: 0;
    width: 64%;
    animation-delay: 1s;
}

.request-line:nth-child(3) {
    bottom: 23%;
    left: 10%;
    width: 70%;
    animation-delay: 2s;
}

@keyframes requestMove {
    0% {
        transform: translateX(-28px);
        opacity: 0;
    }
    15%,
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(34px);
        opacity: 0;
    }
}

.dashboard-mockup {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    color: #d7e4f4;
    background: linear-gradient(145deg, #08172e, #132b4b);
    box-shadow: var(--shadow-lg);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.mockup-title {
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mockup-content {
    padding: 20px;
}

.score-row {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 18px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.score-ring {
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--green) 0 87%, rgba(255, 255, 255, 0.13) 87% 100%);
}

.score-ring strong {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #0b1930;
    font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
    font-size: 33px;
    line-height: 1;
}

.score-text small {
    display: block;
    margin-bottom: 8px;
    color: #91a5be;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.score-text p {
    margin: 0;
    color: #f7fbff;
    font-size: 17px;
    font-weight: 800;
}

.layer-list {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.layer-row {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 10px;
    align-items: center;
    min-height: 48px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
}

.layer-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 6px;
    color: #fff;
    background: rgba(56, 167, 216, 0.2);
    font-size: 12px;
    font-weight: 900;
}

.layer-row strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.layer-row small {
    color: #91a5be;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.is-hit {
    background: var(--green);
}

.is-miss {
    background: var(--red);
}

.is-warn {
    color: #162238;
    background: var(--yellow);
}

.report-panel {
    padding: 14px;
    border-radius: 6px;
    color: #fff;
    background: rgba(244, 123, 32, 0.16);
}

.report-panel strong {
    display: block;
    margin-bottom: 5px;
}

.report-panel p {
    margin: 0;
    color: #f4d1bd;
    font-size: 13px;
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 4px;
    min-width: 148px;
    padding: 13px 15px;
    border: 1px solid rgba(9, 24, 47, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    animation: floatCard 7s ease-in-out infinite;
}

.floating-card b {
    color: var(--ink);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.floating-card span {
    color: var(--slate);
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
}

.card-hit {
    top: 44px;
    left: 4px;
    border-left: 4px solid var(--green);
}

.card-miss {
    bottom: 74px;
    left: 24px;
    border-left: 4px solid var(--red);
    animation-delay: 1.1s;
}

.card-stack {
    top: 74px;
    right: 0;
    border-left: 4px solid var(--cyan);
    animation-delay: 2.2s;
}

.card-header {
    right: 20px;
    bottom: 28px;
    min-width: 184px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--ink);
    animation-delay: 3.3s;
}

.card-header b,
.card-header span {
    color: #fff;
}

.card-warning {
    top: 50%;
    right: -8px;
    border-left: 4px solid var(--yellow);
    animation-delay: 4.4s;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

.section {
    padding: 104px 0;
}

.section-gray {
    background: var(--soft);
}

.section-dark {
    color: #d7e4f4;
    background: var(--ink);
}

.section-dark h2,
.section-dark h3,
.section-dark .section-title {
    color: #fff;
}

.section-header {
    display: grid;
    grid-template-columns: 0.62fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 48px;
}

.section-title {
    margin: 0;
    font-size: clamp(40px, 5vw, 70px);
    text-transform: uppercase;
}

.section-lede {
    max-width: 650px;
    color: var(--slate);
    font-size: 18px;
}

.section-dark .section-lede,
.section-dark .metric-card p {
    color: #b7c7d9;
}

.benefit-layout,
.proof-layout,
.split-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 52px;
    align-items: center;
}

.benefit-list {
    display: grid;
    gap: 18px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-item:hover,
.feature-card:hover,
.post-card:hover,
.pricing-card:hover,
.resource-card:hover {
    transform: translateY(-7px);
    border-color: rgba(244, 123, 32, 0.55);
    box-shadow: var(--shadow-md);
}

.benefit-num,
.feature-num {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 6px;
    color: #fff;
    background: var(--ink);
    font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
    font-size: 28px;
    font-weight: 900;
}

.benefit-item h3,
.feature-card h3,
.resource-card h3,
.pricing-card h3,
.faq-item h3 {
    margin-bottom: 10px;
    font-size: 28px;
}

.benefit-item p,
.feature-card p,
.resource-card p,
.pricing-card p,
.faq-item p {
    margin: 0;
    color: var(--slate);
}

.stack-visual {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, #ffffff, #f1f6fb);
    box-shadow: var(--shadow-md);
}

.stack-node {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 15px;
    align-items: center;
    min-height: 76px;
    padding: 15px;
    border: 1px solid rgba(9, 24, 47, 0.08);
    border-radius: 6px;
    background: #fff;
}

.stack-node span:first-child {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 6px;
    color: #fff;
    background: var(--orange);
    font-weight: 900;
}

.stack-node strong {
    display: block;
}

.stack-node small {
    color: var(--slate);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card,
.resource-card,
.pricing-card,
.metric-card,
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.feature-card {
    min-height: 250px;
    padding: 26px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card .feature-num {
    margin-bottom: 26px;
    color: var(--ink);
    background: #fff1e8;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.metric-card {
    padding: 24px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.metric-card strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
    font-size: 42px;
    line-height: 1;
}

.metric-card p {
    margin: 0;
    font-size: 14px;
}

.report-example {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: var(--radius);
    color: #d7e4f4;
    background: linear-gradient(145deg, #09182f, #142c4d);
    box-shadow: var(--shadow-lg);
}

.report-block {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--orange);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
}

.report-block h3 {
    color: #fff;
    font-size: 24px;
}

.report-block p {
    margin: 0;
    color: #c8d5e5;
}

.integration-strip {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: #fff;
}

.integration-track {
    display: flex;
    width: max-content;
    animation: integrations 28s linear infinite;
}

.integration-set {
    display: flex;
}

.integration-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 162px;
    min-height: 82px;
    padding: 0 22px;
    border-right: 1px solid var(--line);
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes integrations {
    to {
        transform: translateX(-50%);
    }
}

.pricing-grid,
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card,
.resource-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 28px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pricing-card.featured {
    border-color: var(--orange);
    box-shadow: 0 20px 54px rgba(244, 123, 32, 0.17);
}

.price {
    margin: 8px 0 18px;
    font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
}

.pricing-card ul {
    display: grid;
    gap: 10px;
    margin: 12px 0 24px;
    padding: 0;
    list-style: none;
}

.pricing-card li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--green);
}

.pricing-card .btn {
    margin-top: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.post-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.post-thumb {
    display: grid;
    aspect-ratio: 16 / 10;
    place-items: center;
    color: rgba(9, 24, 47, 0.35);
    background:
        linear-gradient(135deg, rgba(244, 123, 32, 0.13), rgba(56, 167, 216, 0.13)),
        var(--soft);
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-placeholder {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border: 2px solid rgba(9, 24, 47, 0.18);
    border-radius: 8px;
    font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
    font-size: 28px;
    font-weight: 900;
}

.post-content {
    padding: 24px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--slate);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.post-title {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.05;
}

.post-title a {
    color: var(--ink);
}

.post-title a:hover {
    color: var(--orange-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-item {
    padding: 24px;
}

.cta-band {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
}

.cta-band::before {
    content: "HIT MISS BYPASS STALE";
    position: absolute;
    left: -4vw;
    top: 16px;
    color: rgba(255, 255, 255, 0.05);
    font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
    font-size: clamp(76px, 11vw, 180px);
    font-weight: 900;
    white-space: nowrap;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.cta-inner h2 {
    max-width: 820px;
    color: #fff;
    font-size: clamp(42px, 6vw, 74px);
}

.cta-inner p {
    max-width: 650px;
    color: #b7c7d9;
}

.page-hero {
    padding: 150px 0 68px;
    background:
        radial-gradient(circle at 80% 20%, rgba(244, 123, 32, 0.16), transparent 26%),
        linear-gradient(135deg, #f7fafc, #edf2f7);
}

.page-hero-inner {
    max-width: 880px;
}

.page-title {
    font-size: clamp(52px, 7vw, 90px);
}

.page-content {
    max-width: 850px;
    margin: 0 auto;
    color: #29384d;
    font-size: 18px;
}

.page-content h2,
.page-content h3 {
    margin-top: 44px;
}

.page-content h2 {
    font-size: 44px;
}

.page-content h3 {
    font-size: 30px;
}

.page-content a {
    font-weight: 800;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.page-content th,
.page-content td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.page-content th {
    background: var(--soft);
}

.single-meta {
    color: var(--slate);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-footer {
    color: #b7c7d9;
    background: #0c1f3a;
}

.footer-main {
    padding: 72px 0 52px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 32px;
}

.footer-brand p {
    max-width: 340px;
    color: #b7c7d9;
}

.site-footer .site-logo {
    margin-bottom: 20px;
}

.site-footer .site-logo a,
.site-footer .site-logo span:first-of-type {
    color: #fff;
}

.footer-widget h4 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 20px;
}

.footer-widget ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget a {
    color: #b7c7d9;
    font-size: 14px;
}

.footer-widget a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.social-links a:hover {
    color: #fff;
    border-color: var(--orange);
    background: var(--orange);
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #91a5be;
    font-size: 14px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

@media (max-width: 1040px) {
    .hero-grid,
    .benefit-layout,
    .proof-layout,
    .split-layout,
    .section-header {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 36px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .features-grid,
    .pricing-grid,
    .resources-grid,
    .blog-grid,
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        padding: 12px 0;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 68px 14px auto;
        display: none;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow-lg);
    }

    .nav-open .main-nav {
        display: block;
    }

    .main-nav ul {
        display: grid;
        gap: 4px;
    }

    .main-nav a {
        min-height: 44px;
    }

    .hero,
    .page-hero {
        padding-top: 112px;
    }

    .hero-copy {
        font-size: 17px;
    }

    .hero-actions,
    .cta-inner,
    .footer-bottom .container {
        align-items: stretch;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 600px;
        margin: 0 -8px;
    }

    .dashboard-mockup {
        width: calc(100% - 12px);
    }

    .floating-card {
        position: relative;
        inset: auto;
        width: calc(50% - 6px);
        min-width: 0;
        padding: 10px;
        animation: none;
    }

    .card-hit,
    .card-miss,
    .card-stack,
    .card-header,
    .card-warning {
        position: absolute;
    }

    .card-hit {
        top: 0;
        left: 8px;
    }

    .card-stack {
        top: 0;
        right: 8px;
    }

    .card-miss {
        bottom: 0;
        left: 8px;
    }

    .card-header {
        right: 8px;
        bottom: 0;
    }

    .card-warning {
        display: none;
    }

    .score-row,
    .stack-node {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .pricing-grid,
    .resources-grid,
    .blog-grid,
    .metrics-grid,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 72px 0;
    }

    .section-title {
        font-size: clamp(38px, 14vw, 58px);
    }

    .footer-main {
        padding-top: 56px;
    }
}

@media (max-width: 430px) {
    .hero-content h1,
    .page-title {
        font-size: 48px;
    }

    .hero-visual {
        min-height: 660px;
    }

    .layer-row {
        grid-template-columns: 34px 1fr;
    }

    .layer-row .status-badge {
        grid-column: 1 / -1;
        width: fit-content;
    }
}
