:root {
    --ink: #f7f9fb;
    --ink-2: #ff8617;
    --muted: #a7b0bd;
    --line: #263241;
    --surface: #121923;
    --surface-2: #0f151e;
    --soft: #171f2a;
    --lime: #ff8617;
    --mint: #ffb15f;
    --cyan: #75d6ff;
    --coral: #ff8617;
    --gold: #f6c453;
    --danger: #ff6b6b;
    --success: #40d98a;
    --shadow-sm: 0 8px 22px rgba(0, 0, 0, .22);
    --shadow-md: 0 18px 52px rgba(0, 0, 0, .34);
    --shadow-lg: 0 28px 80px rgba(0, 0, 0, .48);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 0, rgba(255, 134, 23, .18), transparent 34%),
        radial-gradient(circle at 80% 10%, rgba(117, 214, 255, .1), transparent 26%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .028) 0 1px, transparent 1px 96px),
        #080c12;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
input, textarea, select, button { font: inherit; }
button, .button { min-height: 44px; }
:focus-visible { outline: 3px solid rgba(103, 232, 249, .9); outline-offset: 3px; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 30; padding: 10px 14px; border-radius: 8px; background: var(--lime); font-weight: 800; }
.skip-link:focus { left: 12px; }
.sr-only, .honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(220, 232, 227, .8);
    background: rgba(251, 253, 252, .82);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, .92); }
.header-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 26px;
    align-items: center;
}
.brand {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    white-space: nowrap;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--lime), var(--mint));
    color: var(--ink);
    box-shadow: 0 10px 26px rgba(110, 231, 183, .32);
}
.main-menu {
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}
.main-menu a {
    padding: 10px 12px;
    border-radius: 8px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.main-menu a:hover, .main-menu a:focus { color: var(--ink); background: rgba(216, 240, 77, .22); transform: translateY(-1px); }
.header-search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 240px;
    overflow: visible;
    border: 1px solid rgba(220, 232, 227, .95);
    border-radius: 8px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 10px 30px rgba(16, 33, 26, .04);
}
.header-search input { width: 100%; border: 0; padding: 12px 13px; outline: 0; background: transparent; }
.header-search button {
    width: 46px;
    border: 0;
    border-radius: 0 7px 7px 0;
    background: var(--ink-2);
    color: white;
    cursor: pointer;
    transition: background .2s ease;
}
.header-search button:hover { background: #0f2d22; }
.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(360px, 90vw);
    display: none;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow-lg);
}
.search-suggestions a { display: block; padding: 14px; border-bottom: 1px solid var(--line); }
.search-suggestions a:hover { background: var(--surface-2); }
.menu-toggle { display: none; border: 1px solid var(--line); border-radius: 8px; background: white; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px; background: var(--ink); }
.breadcrumb { display: flex; gap: 8px; align-items: center; padding-bottom: 12px; color: var(--muted); font-size: 14px; }

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0 42px;
    background:
        linear-gradient(135deg, rgba(216, 240, 77, .22), rgba(103, 232, 249, .16) 48%, rgba(255, 122, 89, .08)),
        #fbfdfc;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(16,33,26,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,33,26,.055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.72), transparent 78%);
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 54px;
    align-items: center;
}
.hero-copy { max-width: 620px; }
.eyebrow, .section-kicker, .pill {
    margin: 0 0 12px;
    color: var(--ink-2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
h1, h2, h3 { letter-spacing: 0; }
h1 { margin: 0 0 22px; font-size: 60px; line-height: .98; text-wrap: balance; }
h2 { margin: 0 0 14px; font-size: 34px; line-height: 1.12; text-wrap: balance; }
h3 { font-size: 24px; line-height: 1.18; }
.hero-section p { max-width: 640px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 46px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(135deg, rgba(255,134,23,.14), rgba(117,214,255,.06) 52%, transparent),
        #080c12;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.72), transparent 82%);
}
.page-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 46px;
    align-items: center;
}
.page-kicker,
.section-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--coral);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}
.page-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 19px;
}
.about-signal-panel,
.faq-summary-panel {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(18,25,35,.96), rgba(10,14,20,.96));
    box-shadow: var(--shadow-md);
}
.about-signal-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 22px;
}
.about-signal-panel span {
    min-height: 70px;
    display: grid;
    align-items: end;
    padding: 14px;
    border: 1px solid rgba(255,134,23,.16);
    border-radius: 8px;
    background: rgba(255,134,23,.08);
    color: #fff;
    font-weight: 900;
}
.faq-summary-panel {
    padding: 28px;
}
.faq-summary-panel strong {
    display: block;
    color: var(--coral);
    font-size: 72px;
    line-height: .9;
}
.faq-summary-panel span {
    color: #fff;
    font-size: 22px;
    font-weight: 950;
}
.faq-summary-panel p {
    margin-bottom: 0;
    font-size: 16px;
}
.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: var(--ink-2);
    color: white;
    padding: 12px 18px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(31, 60, 49, .22);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button::after { content: "→"; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(31, 60, 49, .28); background: #173529; }
.button:hover::after { transform: translateX(3px); }
.button.secondary, .ghost-button {
    background: white;
    color: var(--ink-2);
    border: 1px solid var(--line);
    box-shadow: 0 10px 26px rgba(16, 33, 26, .06);
}
.hero-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 32px;
}
.hero-kpis span {
    min-height: 76px;
    padding: 13px;
    border: 1px solid rgba(220, 232, 227, .95);
    border-radius: 8px;
    background: rgba(255,255,255,.72);
    color: var(--muted);
    box-shadow: 0 10px 30px rgba(16, 33, 26, .05);
}
.hero-kpis strong { display: block; color: var(--ink); font-size: 24px; line-height: 1.1; }
.hero-proof-strip {
    position: relative;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 42px;
}
.hero-proof-strip span {
    padding: 9px 12px;
    border: 1px solid rgba(31, 60, 49, .12);
    border-radius: 8px;
    background: rgba(255,255,255,.72);
    color: var(--ink-2);
    font-size: 13px;
    font-weight: 850;
}

.featured-card, .article-card, .admin-card, .form-panel {
    border: 1px solid rgba(220, 232, 227, .96);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}
.featured-card { overflow: hidden; }
.featured-card-large {
    position: relative;
    transform: rotate(.4deg);
    box-shadow: var(--shadow-lg);
}
.featured-card-large:hover { transform: translateY(-4px) rotate(0deg); transition: transform .25s ease; }
.featured-media {
    position: relative;
    display: block;
    background:
        linear-gradient(135deg, rgba(216,240,77,.2), rgba(103,232,249,.16)),
        var(--soft);
}
.featured-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.featured-label {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--ink);
    color: white;
    font-size: 12px;
    font-weight: 900;
}
.featured-content { padding: 28px; }
.featured-content h2 { font-size: 32px; }
.read-more, .card-link, .section-link {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    color: var(--ink-2);
    font-weight: 900;
}
.read-more::after, .card-link::after, .section-link::after { content: "→"; transition: transform .2s ease; }
.read-more:hover::after, .card-link:hover::after, .section-link:hover::after { transform: translateX(3px); }

.section { padding: 70px 0; }
.section.muted {
    border-block: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(238,247,242,.85), rgba(247,251,249,.92)),
        var(--surface-2);
}
.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 28px;
}
.section-heading h2 { margin-bottom: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.article-card {
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.article-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--lime), var(--cyan), var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.article-card:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 60, 49, .22);
    box-shadow: var(--shadow-md);
}
.article-card:hover::before { transform: scaleX(1); }
.article-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--soft);
}
.article-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .35s ease; }
.article-card:hover .article-media img { transform: scale(1.045); }
.article-media span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 9px;
    border-radius: 8px;
    background: rgba(16, 33, 26, .86);
    color: white;
    font-size: 12px;
    font-weight: 900;
}
.article-card-body { padding: 20px; }
.article-card h2 { margin-top: 8px; font-size: 21px; line-height: 1.15; }
.article-card h2 a:hover { color: var(--ink-2); }
.article-card p { color: var(--muted); }
.pill {
    display: inline-flex;
    width: fit-content;
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(216, 240, 77, .28);
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}
.card-link { margin-top: 18px; font-size: 14px; }

.category-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.category-tile {
    position: relative;
    min-height: 172px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 10px 26px rgba(16,33,26,.04);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.category-tile::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mint), var(--lime));
}
.category-tile:hover { transform: translateY(-4px); border-color: rgba(31,60,49,.2); box-shadow: var(--shadow-md); }
.category-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--ink);
    color: white;
    font-weight: 900;
}
.category-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.category-count {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    color: #ffd5ad;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}
.category-tile span:last-child { color: var(--muted); font-size: 14px; }

.compact-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.compact-list a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 10px 28px rgba(16,33,26,.04);
    transition: transform .2s ease, box-shadow .2s ease;
}
.compact-list a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.compact-list span { color: var(--muted); font-size: 13px; font-weight: 850; }
.compact-list strong { grid-column: 1; }
.compact-list small { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--ink-2); font-weight: 900; }

.page-head { padding: 64px 0 28px; }
.page-head p, .lead { max-width: 780px; color: var(--muted); font-size: 18px; }
.split-section {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 46px;
    align-items: start;
}
.lead-prose {
    color: var(--muted);
    font-size: 18px;
}
.lead-prose p:first-child { margin-top: 0; }
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.value-grid article {
    min-height: 270px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(18,25,35,.96), rgba(13,18,26,.96));
    box-shadow: var(--shadow-sm);
}
.value-grid strong {
    display: inline-flex;
    margin-bottom: 26px;
    color: var(--coral);
    font-size: 13px;
    font-weight: 950;
}
.value-grid p {
    color: var(--muted);
}
.value-grid a {
    color: #ffad52;
    font-weight: 900;
}
.method-panel,
.trust-band,
.faq-cta {
    display: grid;
    gap: 28px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(18,25,35,.96), rgba(10,14,20,.96));
    box-shadow: var(--shadow-sm);
}
.method-panel {
    grid-template-columns: .92fr 1.08fr;
    padding: 28px;
    align-items: start;
}
.method-panel p,
.trust-band span,
.faq-cta p {
    color: var(--muted);
}
.method-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.method-list li {
    padding: 15px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 8px;
    background: rgba(255,255,255,.035);
    color: var(--muted);
}
.method-list span {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-weight: 950;
}
.trust-band {
    grid-template-columns: 1fr auto;
    padding: 26px;
    align-items: center;
}
.trust-band strong {
    display: block;
    max-width: 850px;
    color: #fff;
    font-size: 22px;
    line-height: 1.3;
}
.faq-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}
.faq-nav {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(18,25,35,.78);
}
.faq-nav strong {
    color: #fff;
}
.faq-nav a {
    color: var(--muted);
    font-weight: 850;
}
.faq-nav a:hover { color: #ffad52; }
.faq-page-list {
    display: grid;
    gap: 28px;
}
.faq-group {
    scroll-margin-top: 110px;
}
.faq-group h2 {
    margin-bottom: 16px;
}
.faq-group details {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    margin-bottom: 12px;
    background: linear-gradient(180deg, rgba(18,25,35,.96), rgba(13,18,26,.96));
    box-shadow: var(--shadow-sm);
}
.faq-group summary {
    cursor: pointer;
    padding: 18px;
    color: #fff;
    font-weight: 950;
}
.faq-group summary::marker {
    color: var(--coral);
}
.faq-group details p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
}
.faq-cta {
    grid-template-columns: 1fr auto;
    padding: 28px;
    align-items: center;
}
.faq-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.dynamic-page-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 820px);
    gap: 46px;
    align-items: start;
}
.dynamic-page-aside {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(18,25,35,.78);
}
.dynamic-page-aside strong {
    color: #fff;
}
.dynamic-page-aside a {
    color: var(--muted);
    font-weight: 850;
}
.dynamic-page-aside a:hover {
    color: #ffad52;
}
.dynamic-page-content {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}
.dynamic-page-content h2,
.dynamic-page-content h3 {
    color: #fff;
}
.dynamic-page-content a {
    color: #ffad52;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.dynamic-page-content details {
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(18,25,35,.96), rgba(13,18,26,.96));
    box-shadow: var(--shadow-sm);
}
.dynamic-page-content summary {
    cursor: pointer;
    padding: 18px;
    color: #fff;
    font-weight: 950;
}
.dynamic-page-content details p {
    margin: 0;
    padding: 0 18px 18px;
}
.filter-bar, .inline-form, .inline-admin-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-bar input, .filter-bar select, .inline-form input, .inline-admin-form input, .inline-admin-form select, label input, label textarea, label select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 12px;
}
.filter-bar > *, .inline-admin-form > * { width: auto; min-width: 170px; }
.pagination { display: flex; gap: 8px; margin-top: 28px; }
.pagination a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; background: white; }
.pagination .active { background: var(--ink-2); color: white; }

.article-page { padding: 52px 0 74px; }
.article-header { max-width: 930px; }
.article-hero-image { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; margin: 28px 0; box-shadow: var(--shadow-md); }
.article-layout { display: grid; grid-template-columns: 250px minmax(0, 780px); gap: 46px; align-items: start; }
.article-side {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}
.toc { display: grid; gap: 10px; border-left: 4px solid var(--lime); padding: 16px 0 16px 16px; color: var(--muted); background: rgba(255,255,255,.72); }
.toc strong { color: var(--ink); }
.toc-level-3 { padding-left: 12px; font-size: 14px; }
.share-box {
    position: relative;
    padding-top: 48px;
}
.share-box::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--gold), transparent);
}
.share-eyebrow {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 6px 6px 0 0;
    background: #030507;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}
.share-box h2 {
    margin: 0 0 12px;
    font-size: 22px;
}
.share-grid {
    display: grid;
    gap: 10px;
}
.share-button {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(18,25,35,.84);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.share-button span {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
}
.share-button strong {
    min-width: 0;
    color: inherit;
    font: inherit;
}
.share-button:hover {
    transform: translateY(-2px);
    border-color: rgba(255,134,23,.48);
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.share-button.facebook span { background: #1877f2; }
.share-button.x span { background: #111; }
.share-button.linkedin span { background: #0a66c2; }
.share-button.whatsapp span { background: #25d366; color: #08120c; }
.share-button.pinterest span { background: #e60023; }
.share-button.copy span { background: var(--coral); color: #0b0f14; }
.share-button.copy.is-copied {
    border-color: rgba(64,217,138,.55);
    background: rgba(64,217,138,.13);
    color: #d9ffe9;
}
.article-content { font-size: 18px; }
.article-content h2, .article-content h3 { scroll-margin-top: 110px; }
.article-content a { color: var(--ink-2); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.tag-list, .popular-searches { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.tag-list a, .popular-searches a { padding: 7px 10px; border-radius: 8px; background: var(--soft); color: var(--ink-2); font-weight: 800; }
.faq-section details { border: 1px solid var(--line); border-radius: 8px; padding: 14px; margin-bottom: 10px; background: white; box-shadow: var(--shadow-sm); }

.form-panel, .admin-form { display: grid; gap: 16px; padding: 24px; }
.check-row { display: flex; align-items: center; gap: 8px; }
.check-row input { width: auto; }
.editor-card { overflow: visible; }
.editor-label-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}
.editor-label-row label {
    font-size: 18px;
    font-weight: 900;
}
.editor-label-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}
.wysiwyg-editor {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: #0b0f14;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.wysiwyg-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: linear-gradient(180deg, rgba(18,25,35,.98), rgba(10,14,20,.98));
}
.wysiwyg-toolbar button,
.wysiwyg-toolbar select {
    width: auto;
    min-height: 38px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 850;
}
.wysiwyg-toolbar select {
    min-width: 150px;
    padding: 0 12px;
}
.wysiwyg-toolbar button {
    min-width: 40px;
    padding: 0 12px;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.wysiwyg-toolbar button:hover,
.wysiwyg-toolbar select:hover {
    border-color: rgba(255,134,23,.5);
    background: rgba(255,134,23,.14);
}
.wysiwyg-toolbar button:active { transform: translateY(1px); }
.wysiwyg-surface {
    min-height: 560px;
    padding: 28px;
    overflow: auto;
    background: #f8fafc;
    color: #111827;
    font-size: 18px;
    line-height: 1.7;
    outline: 0;
}
.wysiwyg-surface:empty::before {
    content: "Rediger le contenu de l'article ici...";
    color: #64748b;
}
.wysiwyg-surface h2,
.wysiwyg-surface h3,
.wysiwyg-surface h4 {
    color: #0f172a;
    line-height: 1.2;
}
.wysiwyg-surface h2 { margin-top: 1.4em; font-size: 30px; }
.wysiwyg-surface h3 { margin-top: 1.2em; font-size: 24px; }
.wysiwyg-surface h4 { margin-top: 1.1em; font-size: 20px; }
.wysiwyg-surface a {
    color: #c35b00;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.wysiwyg-surface blockquote {
    margin: 22px 0;
    padding: 16px 18px;
    border-left: 4px solid var(--coral);
    background: #fff7ed;
    color: #1f2937;
}
.wysiwyg-surface img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.wysiwyg-surface table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.wysiwyg-surface th,
.wysiwyg-surface td {
    border: 1px solid #d7dee8;
    padding: 10px;
    color: #111827;
}
.wysiwyg-editor.is-enhanced .rich-editor {
    display: none;
    width: 100%;
    min-height: 560px;
    border: 0;
    border-radius: 0;
    background: #0f172a;
    color: #e5edf7;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    line-height: 1.6;
}
.wysiwyg-editor.is-source-mode .wysiwyg-surface { display: none; }
.wysiwyg-editor.is-source-mode .rich-editor { display: block; }
.notice { padding: 12px 14px; border-radius: 8px; margin-top: 14px; font-weight: 750; }
.notice.success { background: #eaf8ef; color: var(--success); }
.notice.error { background: #fff1f0; color: var(--danger); }

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 56px 0 28px;
    background:
        radial-gradient(circle at 18% 10%, rgba(216,240,77,.18), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(103,232,249,.13), transparent 28%),
        linear-gradient(180deg, #10211a, #091711);
    color: white;
}
.footer-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 82px 82px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.75), transparent 82%);
}
.footer-cta {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.footer-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(216,240,77,.16);
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.footer-cta h2 {
    max-width: 720px;
    margin-bottom: 12px;
    color: white;
    font-size: 36px;
}
.footer-cta p { max-width: 700px; color: rgba(255,255,255,.72); }
.footer-newsletter-card {
    display: grid;
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.92);
    color: var(--ink);
}
.footer-newsletter-card label { font-weight: 900; }
.footer-newsletter-card small { color: var(--muted); }
.footer-inline-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}
.footer-inline-form input {
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    background: white;
}
.footer-inline-form button {
    border: 0;
    border-radius: 8px;
    background: var(--ink-2);
    color: white;
    padding: 0 18px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.footer-inline-form button:hover { transform: translateY(-2px); background: #173529; }
.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr repeat(3, .78fr) 1.05fr;
    gap: 28px;
    padding: 42px 0 28px;
}
.footer-brand-block p, .footer-contact-card p { color: rgba(255,255,255,.72); }
.footer-brand { margin-bottom: 16px; }
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.footer-badges span {
    padding: 7px 9px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 850;
}
.footer-column {
    display: grid;
    gap: 10px;
    align-content: start;
}
.footer-column strong, .footer-contact-card strong { color: white; font-size: 16px; }
.footer-column a {
    width: fit-content;
    color: rgba(255,255,255,.7);
    font-weight: 720;
    transition: color .2s ease, transform .2s ease;
}
.footer-column a:hover { color: var(--lime); transform: translateX(3px); }
.footer-contact-card {
    align-self: start;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
}
.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--lime);
    font-weight: 900;
}
.footer-contact-link::after { content: "→"; transition: transform .2s ease; }
.footer-contact-link:hover::after { transform: translateX(3px); }
.footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.62);
    font-size: 14px;
}
.site-footer input { border: 0; }

.admin-body { display: grid; grid-template-columns: 270px 1fr; min-height: 100vh; background: var(--soft); }
.admin-sidebar { background: var(--ink); color: white; padding: 20px; display: flex; flex-direction: column; gap: 28px; }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar nav a { padding: 10px 12px; border-radius: 8px; color: #dbe7e0; }
.admin-sidebar nav a:hover { background: rgba(255,255,255,.08); }
.admin-main { min-width: 0; padding: 28px; }
.admin-topbar { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 22px; }
.admin-topbar h1 { font-size: 34px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 22px; }
.metric-grid article { padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: white; box-shadow: var(--shadow-sm); }
.metric-grid strong { display: block; font-size: 32px; }
.admin-card { padding: 20px; margin-bottom: 22px; overflow-x: auto; }
.admin-helper-text {
    margin: 0 0 16px;
    color: var(--muted);
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-count-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(255,134,23,.12);
    color: #ffad52;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}
.table-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.table-actions form { display: inline; }
.table-actions button { background: none; border: 0; color: var(--danger); cursor: pointer; padding: 0; }
.redirect-manager {
    display: grid;
    gap: 0;
    margin-top: 20px;
    min-width: 980px;
}
.redirect-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) minmax(220px, 1.2fr) 100px 120px 76px minmax(220px, auto);
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.redirect-head {
    color: #fff;
    font-weight: 900;
}
.redirect-row form { display: none; }
.redirect-row input,
.redirect-row select {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(8,12,18,.72);
    color: #fff;
    padding: 10px;
}
.redirect-active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 800;
}
.redirect-active input {
    width: auto;
    min-height: auto;
}
.redirect-hits {
    color: #fff;
    font-size: 18px;
}
.redirect-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.small-button,
.danger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
}
.small-button {
    min-width: 118px;
}
.danger-button {
    border: 1px solid rgba(255,107,107,.32);
    background: rgba(255,107,107,.1);
    color: #ff8b8b;
}
.danger-button:hover {
    border-color: rgba(255,107,107,.62);
    background: rgba(255,107,107,.18);
}
.seo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}
.seo-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(8,12,18,.62);
    color: var(--muted);
    font-weight: 900;
}
.seo-tabs a.active,
.seo-tabs a:hover {
    border-color: rgba(255,134,23,.42);
    background: rgba(255,134,23,.14);
    color: #fff;
}
.seo-tabs span {
    display: inline-grid;
    place-items: center;
    min-width: 28px;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255,134,23,.18);
    color: #ffad52;
    font-size: 12px;
}
.submission-list {
    display: grid;
    gap: 14px;
}
.submission-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.submission-item {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(15,24,36,.92), rgba(8,12,18,.92));
}
.submission-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 12px;
}
.submission-check {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
}
.submission-check input,
td input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--coral);
}
.submission-head strong,
.submission-head span {
    display: block;
}
.submission-head span,
.submission-meta,
.submission-data {
    color: var(--muted);
}
.submission-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
    min-width: 220px;
}
.submission-item p {
    margin: 0 0 14px;
    color: #dbe7e0;
}
.submission-data {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}
.submission-data div {
    min-width: 0;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255,255,255,.035);
}
.submission-data dt {
    color: #fff;
    font-weight: 900;
}
.submission-data dd {
    margin: 4px 0 0;
    overflow-wrap: anywhere;
}
.empty-state {
    margin: 0;
    padding: 18px;
    border: 1px dashed rgba(255,255,255,.12);
    border-radius: 8px;
    color: var(--muted);
}
.seo-manager {
    display: grid;
    gap: 0;
    min-width: 1320px;
}
.seo-row {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) minmax(220px, 1fr) minmax(260px, 1.1fr) minmax(170px, .75fr) minmax(150px, .7fr) 82px minmax(150px, auto);
    gap: 12px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.seo-manager-pages .seo-row {
    grid-template-columns: minmax(240px, 1.15fr) minmax(240px, 1fr) minmax(300px, 1.2fr) 110px 82px minmax(150px, auto);
}
.seo-manager-categories .seo-row {
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(280px, 1.15fr) minmax(190px, .85fr) 110px 82px minmax(150px, auto);
}
.seo-head {
    color: #fff;
    font-weight: 950;
}
.seo-row input,
.seo-row textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(8,12,18,.72);
    color: #fff;
    padding: 10px;
}
.seo-row textarea {
    resize: vertical;
}
.seo-row small {
    color: var(--muted);
}
.seo-checks,
.seo-actions {
    display: grid;
    gap: 8px;
}
.seo-checks label,
.seo-inline-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 850;
}
.seo-checks input[type="checkbox"],
.seo-inline-check input {
    width: auto;
    min-height: auto;
}
.seo-actions a {
    color: #ffad52;
    font-weight: 900;
}
.settings-generator-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    align-items: start;
}
.settings-generator-card h2 {
    margin-bottom: 10px;
}
.settings-generator-card p {
    color: var(--muted);
    font-size: 17px;
}
.settings-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.settings-llms-fields {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(8,12,18,.42);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.media-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 20px; }
.media-grid article { border: 1px solid var(--line); border-radius: 8px; padding: 10px; }
.media-grid img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 6px; }
.login-panel { min-height: 70vh; display: grid; place-items: center; }
.login-panel form { width: min(420px, 100%); display: grid; gap: 16px; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: white; box-shadow: var(--shadow-lg); }
.sitemap-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.sitemap-columns div { display: grid; gap: 8px; align-content: start; }
.author-head { display: flex; gap: 20px; align-items: center; }
.author-head img { border-radius: 50%; }

/* Dark brand theme */
.brand-logo {
    display: block;
    width: 190px;
    height: auto;
    object-fit: contain;
}
.footer-logo { width: 230px; }
.admin-brand .brand-logo { width: 190px; }
.brand-mark { background: linear-gradient(135deg, var(--coral), var(--gold)); color: #080c12; }
.site-header {
    border-bottom-color: rgba(255,255,255,.08);
    background: rgba(8, 12, 18, .84);
}
.site-header.is-scrolled { background: rgba(8, 12, 18, .94); box-shadow: 0 18px 44px rgba(0,0,0,.32); }
.main-menu { color: rgba(247,249,251,.72); }
.main-menu a:hover, .main-menu a:focus { color: #fff; background: rgba(255,134,23,.16); }
.header-search {
    border-color: rgba(255,255,255,.1);
    background: rgba(18,25,35,.86);
    box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.header-search input { color: #fff; }
.header-search input::placeholder { color: rgba(247,249,251,.45); }
.header-search button { background: var(--coral); color: #10151d; font-weight: 900; }
.header-search button:hover { background: #ff9b3d; }
.search-suggestions { border-color: rgba(255,255,255,.1); background: #101720; }
.search-suggestions a:hover { background: rgba(255,134,23,.1); }
.menu-toggle { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); }
.menu-toggle span { background: #fff; }
.breadcrumb { color: rgba(247,249,251,.62); }
.skip-link { background: var(--coral); color: #10151d; }
.hero-section {
    background:
        radial-gradient(circle at 17% 12%, rgba(255,134,23,.2), transparent 28%),
        radial-gradient(circle at 78% 20%, rgba(255,177,95,.14), transparent 24%),
        linear-gradient(145deg, #0b0f14, #101720 52%, #080c12);
}
.hero-section::before {
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
}
.eyebrow, .section-kicker { color: var(--coral); }
.pill {
    color: #ffd5ad;
    background: rgba(255,134,23,.14);
    border: 1px solid rgba(255,134,23,.18);
}
.hero-section p, .page-head p, .lead, .article-card p { color: var(--muted); }
.button {
    background: linear-gradient(135deg, var(--coral), #ffad52);
    color: #0b0f14;
    box-shadow: 0 16px 38px rgba(255,134,23,.22);
}
.button:hover { background: linear-gradient(135deg, #ff9b3d, var(--coral)); box-shadow: 0 18px 48px rgba(255,134,23,.3); }
.button.secondary, .ghost-button {
    background: rgba(255,255,255,.06);
    color: #fff;
    border-color: rgba(255,255,255,.12);
    box-shadow: none;
}
.hero-kpis span,
.hero-proof-strip span,
.article-card,
.featured-card,
.admin-card,
.form-panel,
.category-tile,
.compact-list a,
.faq-section details,
.metric-grid article,
.login-panel form {
    border-color: rgba(255,255,255,.1);
    background: linear-gradient(180deg, rgba(18,25,35,.96), rgba(13,18,26,.96));
    box-shadow: var(--shadow-sm);
}
.hero-kpis strong { color: #fff; }
.hero-proof-strip span { color: #ffd5ad; }
.featured-media { background: linear-gradient(135deg, rgba(255,134,23,.18), rgba(117,214,255,.08)), #111923; }
.featured-label { background: var(--coral); color: #0b0f14; }
.featured-content h2 a, .article-card h2 a, .compact-list strong, .category-tile strong { color: #fff; }
.read-more, .card-link, .section-link, .article-card h2 a:hover, .article-content a { color: #ffad52; }
.article-card::before { background: linear-gradient(90deg, var(--coral), var(--gold), var(--cyan)); }
.article-card:hover, .category-tile:hover, .compact-list a:hover { border-color: rgba(255,134,23,.4); }
.article-media span { background: rgba(255,134,23,.92); color: #0b0f14; }
.category-tile::after { background: linear-gradient(90deg, var(--coral), var(--gold)); }
.category-icon { background: var(--coral); color: #0b0f14; }
.category-count {
    border: 1px solid rgba(255,134,23,.18);
    background: rgba(255,134,23,.12);
    color: #ffad52;
}
.category-tile span:last-child, .compact-list span { color: var(--muted); }
.section.muted {
    border-block-color: rgba(255,255,255,.08);
    background:
        linear-gradient(180deg, rgba(15,21,30,.9), rgba(8,12,18,.98)),
        #0b0f14;
}
.filter-bar input,
.filter-bar select,
.inline-form input,
.inline-admin-form input,
.inline-admin-form select,
label input,
label textarea,
label select,
.footer-inline-form input {
    border-color: rgba(255,255,255,.1);
    background: rgba(8,12,18,.72);
    color: #fff;
}
label input::placeholder,
label textarea::placeholder,
.filter-bar input::placeholder,
.footer-inline-form input::placeholder { color: rgba(247,249,251,.45); }
.pagination a { border-color: rgba(255,255,255,.1); background: rgba(18,25,35,.9); }
.pagination .active { background: var(--coral); color: #0b0f14; }
.toc { border-left-color: var(--coral); background: rgba(18,25,35,.78); color: var(--muted); }
.toc strong { color: #fff; }
.tag-list a, .popular-searches a { background: rgba(255,134,23,.12); color: #ffad52; }
.notice.success { background: rgba(64,217,138,.12); color: var(--success); }
.notice.error { background: rgba(255,107,107,.12); color: var(--danger); }
.site-footer {
    background:
        radial-gradient(circle at 18% 10%, rgba(255,134,23,.2), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(255,177,95,.1), transparent 28%),
        linear-gradient(180deg, #0b0f14, #05070a);
}
.footer-eyebrow { background: rgba(255,134,23,.14); color: #ffad52; }
.footer-newsletter-card {
    border-color: rgba(255,255,255,.12);
    background: linear-gradient(180deg, rgba(18,25,35,.98), rgba(10,14,20,.98));
    color: #fff;
}
.footer-newsletter-card small,
.footer-brand-block p,
.footer-contact-card p,
.footer-cta p { color: rgba(247,249,251,.68); }
.footer-inline-form button {
    background: var(--coral);
    color: #0b0f14;
}
.footer-inline-form button:hover { background: #ff9b3d; }
.footer-badges span,
.footer-contact-card,
.footer-cta {
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.045);
}
.footer-column a:hover,
.footer-contact-link { color: #ffad52; }
.admin-body { background: #080c12; }
.admin-sidebar {
    background:
        linear-gradient(180deg, rgba(255,134,23,.08), transparent 34%),
        #0b0f14;
    border-right: 1px solid rgba(255,255,255,.08);
}
.admin-sidebar nav a { color: rgba(247,249,251,.72); }
.admin-sidebar nav a:hover { color: #fff; background: rgba(255,134,23,.14); }
.admin-topbar span { color: var(--muted); }
th, td { border-bottom-color: rgba(255,255,255,.08); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.article-card.is-visible, .category-tile.is-visible, .compact-list a.is-visible { animation: liftIn .5s ease both; }

@keyframes liftIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1000px) {
    .header-inner { grid-template-columns: auto auto; }
    .menu-toggle { display: inline-grid; place-items: center; justify-self: end; }
    .main-menu { grid-column: 1 / -1; display: none; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--line); border-radius: 8px; padding: 8px; }
    .main-menu.open { display: flex; }
    .header-search { grid-column: 1 / -1; min-width: 0; }
    .hero-grid, .page-hero-grid, .split-section, .method-panel, .trust-band, .faq-layout, .faq-cta, .dynamic-page-layout, .settings-generator-card, .article-layout, .footer-cta, .footer-grid, .admin-body, .sitemap-columns { grid-template-columns: 1fr; }
    .faq-nav, .dynamic-page-aside { position: static; }
    .faq-cta-actions { justify-content: flex-start; }
    .article-side { position: static; }
    .share-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .submission-data { grid-template-columns: 1fr; }
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .category-grid, .value-grid, .metric-grid, .form-grid, .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    h1 { font-size: 46px; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 28px, 1180px); }
    h1 { font-size: 38px; }
    h2 { font-size: 28px; }
    .hero-section, .page-hero { padding-top: 46px; }
    .hero-kpis, .card-grid, .category-grid, .value-grid, .compact-list, .metric-grid, .form-grid, .media-grid { grid-template-columns: 1fr; }
    .about-signal-panel { grid-template-columns: 1fr; }
    .method-panel, .trust-band, .faq-cta { padding: 20px; }
    .faq-cta-actions { display: grid; grid-template-columns: 1fr; }
    .compact-list a { grid-template-columns: 1fr; }
    .compact-list small { grid-column: 1; grid-row: auto; }
    .section-heading { align-items: start; flex-direction: column; }
    .footer-cta { padding: 20px; }
    .footer-cta h2 { font-size: 28px; }
    .footer-inline-form { grid-template-columns: 1fr; }
    .footer-inline-form button { min-height: 48px; }
    .footer-bottom { flex-direction: column; }
    .filter-bar > *, .inline-admin-form > * { width: 100%; }
    .redirect-manager {
        min-width: 0;
        gap: 14px;
    }
    .redirect-head { display: none; }
    .redirect-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 8px;
        background: rgba(8,12,18,.44);
    }
    .redirect-actions { display: grid; grid-template-columns: 1fr; }
    .small-button, .danger-button { width: 100%; }
    .seo-tabs { display: grid; grid-template-columns: 1fr; }
    .submission-head {
        display: grid;
    }
    .submission-meta {
        justify-content: flex-start;
        min-width: 0;
    }
    .seo-manager {
        min-width: 0;
        gap: 14px;
    }
    .seo-head { display: none; }
    .seo-row,
    .seo-manager-pages .seo-row,
    .seo-manager-categories .seo-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 8px;
        background: rgba(8,12,18,.44);
    }
    .share-grid { grid-template-columns: 1fr; }
    .editor-label-row { align-items: start; flex-direction: column; }
    .wysiwyg-toolbar select { width: 100%; }
    .wysiwyg-surface,
    .wysiwyg-editor .rich-editor {
        min-height: 420px;
        padding: 18px;
    }
}

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

@media (max-width: 1000px) {
    .main-menu {
        border-color: rgba(255,255,255,.1);
        background: rgba(18,25,35,.98);
    }
    .brand-logo { width: 172px; }
}

@media (max-width: 680px) {
    .brand-logo { width: 152px; }
    .footer-logo { width: 190px; }
    .footer-newsletter-card { padding: 16px; }
}
