/*
Theme Name: Missteen
Theme URI: https://missteen.vn
Author: Antigravity
Author URI: https://missteen.vn
Description: Theme được chuyển đổi từ template missteen.html cho website MISSTEEN.VN.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: missteen
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #102a43;
    --coral: #ff3d5a;
    --purple: #6938ef;
    --text: #202124;
    --muted: #667085;
    --border: #e8e8ec;
    --soft: #f8f8fa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: var(--text);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

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

/* =========================
   HEADER
========================= */

header {
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.logo-mark {
    width: 34px;
    height: 34px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-mark::before,
.logo-mark::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 27px;
    border-radius: 4px;
    top: 4px;
}

.logo-mark::before {
    left: 2px;
    background: var(--navy);
}

.logo-mark::after {
    right: 2px;
    background: var(--coral);
}

.logo-mark span {
    position: absolute;
    width: 25px;
    height: 11px;
    background: linear-gradient(90deg, var(--navy), var(--purple), var(--coral));
    transform: rotate(0deg);
    border-radius: 4px;
    z-index: 2;
}

.logo-text {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -1.3px;
    color: var(--navy);
}

.logo-text strong {
    color: var(--coral);
}

.logo-text small {
    font-size: 13px;
    letter-spacing: 0;
    margin-left: 2px;
}

nav {
    display: flex;
    align-items: center;
    gap: 23px;
    font-size: 14px;
    font-weight: 700;
}

nav a {
    transition: opacity .2s ease;
}

nav a:hover {
    opacity: .55;
}

.header-search {
    width: 210px;
    flex-shrink: 0;
    position: relative;
}

.header-search input {
    width: 100%;
    height: 40px;
    border: 1px solid #dddfe5;
    border-radius: 50px;
    padding: 0 16px;
    outline: none;
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s;
}

.header-search input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(105,56,239,.08);
}

/* =========================
   RESPONSIVE MENU & HAMBURGER
========================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 1050px) {
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .logo {
        order: 1;
    }

    .header-search {
        order: 2;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        flex: 1;
        flex-shrink: 1;
    }

    .menu-toggle {
        display: flex;
        order: 3;
    }

    nav {
        display: none;
    }

    nav.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--border);
        z-index: 1050;
        justify-content: flex-start;
        align-items: stretch;
        padding: 10px 0;
        box-shadow: 0 15px 35px rgba(16, 42, 67, 0.08);
        backdrop-filter: blur(12px);
        animation: slideDownMenu 0.25s ease forwards;
    }

    @keyframes slideDownMenu {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    nav.active a {
        font-size: 15px;
        color: var(--navy);
        font-weight: 700;
        padding: 6px 24px;
        border-bottom: 1px solid #f5f6f8;
        width: 100%;
        box-sizing: border-box;
        transition: background 0.2s ease, padding-left 0.2s ease, color 0.2s ease;
        display: block;
    }

    nav.active a:last-child {
        border-bottom: none;
    }

    nav.active a:hover {
        background: var(--soft);
        padding-left: 30px;
        color: var(--coral);
    }
}

/* =========================
   HERO
========================= */

.hero {
    padding: 82px 0 76px;
    background:
        radial-gradient(circle at 90% 20%, rgba(255,61,90,.08), transparent 28%),
        radial-gradient(circle at 70% 80%, rgba(105,56,239,.07), transparent 30%),
        linear-gradient(135deg, #fff8fa 0%, #f7f6ff 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.16fr .84fr;
    gap: 55px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(42px, 5.5vw, 67px);
    line-height: 1.04;
    letter-spacing: -3.4px;
    color: var(--navy);
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
}

.hero h1 .highlight {
    color: var(--coral);
}

.hero-description {
    font-size: 19px;
    max-width: 650px;
    color: #586474;
    margin-bottom: 32px;
}

.hero-search-wrapper {
    position: relative;
    max-width: 625px;
}

.hero-search {
    display: flex;
    background: #fff;
    border: 1px solid #e1e2e7;
    border-radius: 60px;
    padding: 6px;
    box-shadow: 0 12px 35px rgba(16,42,67,.07);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-size: 16px;
    background: transparent;
}

.hero-search button {
    border: none;
    background: var(--navy);
    color: #fff;
    border-radius: 50px;
    padding: 0 25px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, background .2s;
}

.hero-search button:hover {
    background: var(--purple);
    transform: translateY(-1px);
}

.hero-note {
    margin-top: 14px;
    font-size: 13px;
    color: #7b8490;
}

/* =========================
   HERO SLIDER
========================= */

.hero-slider {
    position: relative;
    width: 100%;
    min-width: 0;
}

.hero-card {
    position: relative;
    min-height: 390px;
    border-radius: 30px;
    padding: 36px;
    background: #fff;
    box-shadow:
        0 25px 70px rgba(16,42,67,.11),
        0 3px 12px rgba(0,0,0,.03);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,61,90,.08);
    top: -80px;
    right: -60px;
}

.hero-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(105,56,239,.06);
    bottom: -70px;
    left: -45px;
}

.slide {
    position: absolute;
    inset: 0;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(25px);
    pointer-events: none;
    transition:
        opacity .45s ease,
        transform .45s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

.slide-top {
    position: relative;
    z-index: 3;
}

.slide-category {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--coral);
    margin-bottom: 17px;
}

.slide-category::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
}

.slide h2 {
    font-size: 30px;
    line-height: 1.17;
    letter-spacing: -.9px;
    color: var(--navy);
    max-width: 460px;
    margin-bottom: 15px;
}

.slide p {
    font-size: 15px;
    color: #667085;
    max-width: 450px;
}

.slide-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}

.read-more span {
    transition: transform .2s ease;
}

.read-more:hover span {
    transform: translateX(4px);
}

.slide-number {
    font-size: 13px;
    color: #9aa1aa;
    font-weight: 700;
}

.slider-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}

.slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d8dbe0;
    cursor: pointer;
    transition: all .25s ease;
}

.slider-dot.active {
    width: 23px;
    border-radius: 10px;
    background: var(--coral);
}

.slider-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 20%;
    background: var(--coral);
    z-index: 20;
    transition: width 3s linear;
}

/* =========================
   SECTION
========================= */

section {
    padding: 76px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 35px;
}

.section-heading h2 {
    font-size: 34px;
    letter-spacing: -1.1px;
    color: var(--navy);
    margin-bottom: 5px;
}

.section-heading p {
    max-width: 580px;
    color: var(--muted);
}

.view-all {
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    color: var(--navy);
}

.view-all:hover {
    color: var(--coral);
}

/* =========================
   FOUR PILLARS
========================= */

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

.pillar {
    position: relative;
    border-radius: 24px;
    padding: 30px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(16,42,67,.09);
}

.pillar:nth-child(1) {
    background: #fff0f4;
}

.pillar:nth-child(2) {
    background: #f0efff;
}

.pillar:nth-child(3) {
    background: #eef8f2;
}

.pillar:nth-child(4) {
    background: #fff7e9;
}

.pillar-icon {
    font-size: 35px;
    line-height: 1;
}

.pillar h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 18px 0 9px;
    color: var(--navy);
}

.pillar p {
    color: #5f6670;
    font-size: 14px;
}

.pillar-link {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
}

/* =========================
   DICTIONARY
========================= */

.dictionary {
    background: #f8f8fa;
}

.dictionary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.term {
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid #ebebef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition:
        border-color .2s,
        transform .2s,
        box-shadow .2s;
}

.term:hover {
    border-color: #d5d6dc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16,42,67,.05);
}

.term strong {
    font-size: 17px;
    color: var(--navy);
}

.term span {
    color: #969ca5;
    font-size: 13px;
    white-space: nowrap;
}

/* =========================
   SCAM
========================= */

.scam-intro {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 50px;
    align-items: center;
}

.scam-box {
    position: relative;
    background: var(--navy);
    color: #fff;
    border-radius: 28px;
    padding: 42px;
    overflow: hidden;
}

.scam-box::after {
    content: "!";
    position: absolute;
    right: 25px;
    bottom: -55px;
    font-size: 190px;
    line-height: 1;
    font-weight: 900;
    color: rgba(255,255,255,.04);
}

.scam-box small {
    color: #ff8798;
    font-size: 11px;
    letter-spacing: 1.3px;
    font-weight: 800;
}

.scam-box h2 {
    position: relative;
    z-index: 2;
    font-size: 35px;
    line-height: 1.16;
    letter-spacing: -1px;
    margin: 15px 0;
}

.scam-box p {
    position: relative;
    z-index: 2;
    color: #cbd4df;
    font-size: 15px;
}

.scam-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.scam-item {
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    background: #fff;
    transition:
        border-color .2s,
        background .2s,
        transform .2s;
}

.scam-item:hover {
    border-color: #ffb6c0;
    background: #fff8f9;
    transform: translateY(-2px);
}

/* =========================
   ARTICLES
========================= */

.latest {
    background: #fafafa;
}

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

.article {
    border: 1px solid #e9e9ed;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.article:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16,42,67,.07);
}

.article-image {
    height: 180px;
    background:
        linear-gradient(135deg, #f1f1f4, #e5e6eb);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.article-image::after {
    content: "MISSTEEN";
    position: absolute;
    right: 15px;
    bottom: 10px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(16,42,67,.15);
    z-index: 1;
}

.article-content {
    padding: 23px;
}

.article-category {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--coral);
    font-weight: 800;
    letter-spacing: .7px;
}

.article h3 {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -.3px;
    margin: 9px 0;
    color: var(--navy);
}

.article p {
    color: #69717d;
    font-size: 14px;
}

/* =========================
   CTA
========================= */

.cta {
    position: relative;
    background:
        linear-gradient(135deg, #f6f5ff, #fff4f7);
    text-align: center;
    border-radius: 30px;
    padding: 65px 30px;
    overflow: hidden;
}

.cta::before,
.cta::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

.cta::before {
    background: rgba(105,56,239,.06);
    left: -80px;
    top: -80px;
}

.cta::after {
    background: rgba(255,61,90,.06);
    right: -80px;
    bottom: -80px;
}

.cta h2 {
    position: relative;
    z-index: 2;
    font-size: 37px;
    letter-spacing: -1px;
    color: var(--navy);
    margin-bottom: 13px;
}

.cta p {
    position: relative;
    z-index: 2;
    color: #68717d;
    max-width: 620px;
    margin: auto;
}

/* =========================
   FOOTER
========================= */

footer {
    border-top: 1px solid var(--border);
    padding: 45px 0;
    color: #777;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    font-size: 23px;
    font-weight: 900;
    color: var(--navy);
}

.footer-inner p {
    max-width: 560px;
}

/* =========================
   LIVE AJAX SEARCH
========================= */

.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-top: 8px;
    box-shadow: 0 12px 40px rgba(16, 42, 67, 0.12);
    max-height: 320px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    flex-direction: column;
    padding: 8px 0;
    backdrop-filter: blur(12px);
    animation: slideDownSearch 0.2s ease forwards;
}

@keyframes slideDownSearch {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.live-search-results.active {
    display: flex;
}

.live-search-item {
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f8f8fa;
    text-align: left;
}

.live-search-item:last-child {
    border-bottom: none;
}

.live-search-item:hover {
    background: var(--soft);
}

.live-search-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}

.live-search-category {
    font-size: 10px;
    color: var(--coral);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.live-search-status {
    padding: 16px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

/* =========================
   MOBILE RESPONSIVE TWEAKS
========================= */

@media (max-width: 1050px) {

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

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

    .hero-slider {
        max-width: 680px;
    }

    .scam-intro {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {

    .container {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        min-height: 64px;
    }

    .logo-text {
        font-size: 21px;
    }

    .logo-mark {
        width: 29px;
        height: 29px;
    }

    .hero {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2.2px;
    }

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

    .hero-search {
        display: block;
        border-radius: 20px;
        padding: 5px;
    }

    .hero-search input {
        width: 100%;
        height: 52px;
    }

    .hero-search button {
        width: 100%;
        height: 46px;
    }

    .hero-card {
        min-height: 350px;
    }

    .slide {
        padding: 30px;
    }

    .slide h2 {
        font-size: 26px;
    }

    section {
        padding: 55px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .view-all {
        display: inline-block;
        margin-top: 12px;
    }

    .pillars,
    .dictionary-grid,
    .articles,
    .scam-list {
        grid-template-columns: 1fr;
    }

    .pillar {
        min-height: 210px;
    }

    .scam-box {
        padding: 32px;
    }

    .scam-box h2 {
        font-size: 29px;
    }

    .footer-inner {
        flex-direction: column;
    }

}

@media (max-width: 450px) {

    .header-search input {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-card {
        min-height: 365px;
    }

}

/* ==========================================================================
   SINGLE POST LAYOUT & STYLES (from single.html)
   ========================================================================== */

/* Breadcrumb */
.breadcrumb {
    padding: 25px 0 10px;
    font-size: 13px;
    color: #8a919c;
}

.breadcrumb a:hover {
    color: var(--coral);
}

.breadcrumb span {
    margin: 0 8px;
}

/* Article Grid Layout */
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 780px) 280px;
    gap: 70px;
    align-items: start;
    padding-bottom: 80px;
}

/* Article Header */
.article-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.article-category::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
}

.article-title {
    color: var(--navy);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
}

.article-excerpt {
    font-size: 19px;
    line-height: 1.65;
    color: #626b77;
    max-width: 720px;
    margin-bottom: 22px;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #9299a3;
    font-size: 13px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.article-meta strong {
    color: #626a75;
}

/* Featured Image with overlay text */
.featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    margin: 35px 0 42px;
    background:
        radial-gradient(circle at 75% 25%, rgba(255,61,90,.25), transparent 25%),
        radial-gradient(circle at 20% 80%, rgba(105,56,239,.18), transparent 30%),
        linear-gradient(135deg, #eef0f6, #faf5f7);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-image::after {
    content: "MISSTEEN";
    position: absolute;
    right: 25px;
    bottom: 20px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    color: rgba(16,42,67,.16);
    z-index: 1;
}

.featured-image-text {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.featured-image-text small {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--coral);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.featured-image-text strong {
    display: block;
    color: var(--navy);
    font-size: clamp(30px, 5vw, 55px);
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
}

/* Article Content & Typography */
.article-content {
    font-size: 17px;
    color: #34383e;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    color: var(--navy);
    font-size: 31px;
    line-height: 1.25;
    letter-spacing: -.8px;
    margin: 52px 0 18px;
}

.article-content h3 {
    color: var(--navy);
    font-size: 23px;
    line-height: 1.35;
    margin: 35px 0 13px;
}

.article-content strong {
    color: var(--navy);
}

.article-content a {
    color: var(--purple);
    font-weight: 700;
    transition: color 0.2s ease;
}

.article-content a:hover {
    color: var(--coral);
}

.article-content ul, .article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
}

/* Custom Block Elements */
.intro-box {
    background: #f7f5ff;
    border-left: 4px solid var(--purple);
    border-radius: 0 16px 16px 0;
    padding: 23px 25px;
    margin: 0 0 35px;
    color: #444956;
}

.dictionary-card {
    border: 1px solid #e7e5ff;
    background: #faf9ff;
    border-radius: 22px;
    padding: 28px;
    margin: 35px 0;
}

.dictionary-card-label {
    font-size: 11px;
    color: var(--purple);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 7px;
}

.dictionary-card h2 {
    margin: 0 0 10px;
    font-size: 32px;
    letter-spacing: -1px;
}

.dictionary-card p {
    margin: 0;
}

.action-box {
    background: #f0faf5;
    border-radius: 22px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #dcefe5;
}

.action-label {
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 8px;
}

.action-box h2 {
    margin: 0 0 15px;
    color: var(--navy);
}

.action-box ul {
    margin: 0;
    padding-left: 22px;
}

.action-box li {
    margin-bottom: 9px;
}

.warning-box {
    background: #fff7df; /* var(--yellow) */
    border: 1px solid #f1e5bd;
    border-radius: 18px;
    padding: 24px;
    margin: 35px 0;
    color: #444956;
}

.warning-box strong {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
}

.article-quote {
    margin: 42px 0;
    padding: 10px 0 10px 28px;
    border-left: 4px solid var(--coral);
    color: var(--navy);
    font-size: 23px;
    line-height: 1.5;
    font-weight: 700;
}

/* Related Terms/Tags */
.related-terms {
    border-top: 1px solid var(--border);
    margin-top: 50px;
    padding-top: 30px;
}

.related-terms h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.term-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.term-tag {
    background: #f5f5f7;
    border: 1px solid #e5e5e8;
    border-radius: 50px;
    padding: 7px 13px;
    font-size: 13px;
    color: var(--navy);
    font-weight: 700;
    transition: all 0.2s ease;
}

.term-tag:hover {
    background: #fff1f4;
    border-color: #ffc4cd;
    color: var(--coral);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 105px;
}

.sidebar-box {
    border-top: 3px solid var(--navy);
    padding-top: 16px;
    margin-bottom: 35px;
}

.sidebar-box h3 {
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 15px;
}

.toc {
    list-style: none;
}

.toc li {
    border-bottom: 1px solid #eeeeef;
}

.toc a {
    display: block;
    padding: 9px 0;
    color: #707783;
    font-size: 13px;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.toc a:hover {
    color: var(--coral);
}

.sidebar-dictionary {
    background: #f7f5ff;
    border-radius: 18px;
    padding: 22px;
}

.sidebar-dictionary small {
    color: var(--purple);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.sidebar-dictionary h3 {
    margin: 8px 0;
    font-size: 20px;
    line-height: 1.3;
}

.sidebar-dictionary p {
    color: #6c7180;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 13px;
}

.sidebar-dictionary a {
    color: var(--purple);
    font-size: 13px;
    font-weight: 800;
}

/* Author / Disclaimer notes */
.article-footer {
    border-top: 1px solid var(--border);
    margin-top: 50px;
    padding-top: 28px;
}

.editor-note {
    background: #f8f8fa;
    border-radius: 18px;
    padding: 20px;
    color: #727985;
    font-size: 13px;
    line-height: 1.65;
}

/* Related articles section */
.related-section {
    background: #f8f8fa;
    padding: 65px 0;
}

.related-section h2 {
    color: var(--navy);
    font-size: 30px;
    margin-bottom: 25px;
    letter-spacing: -.7px;
}

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

.related-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 23px;
    transition: transform .2s ease, box-shadow .2s ease;
    display: block;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16,42,67,.06);
}

.related-card small {
    color: var(--coral);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .8px;
    font-weight: 800;
}

.related-card h3 {
    color: var(--navy);
    font-size: 19px;
    line-height: 1.35;
    margin-top: 8px;
}

/* Responsive Overrides for Single layout */
@media (max-width: 1050px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .sidebar {
        display: none;
    }

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

@media (max-width: 700px) {
    .breadcrumb {
        padding-top: 18px;
        font-size: 12px;
    }

    .article-title {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .article-excerpt {
        font-size: 17px;
    }

    .featured-image {
        border-radius: 18px;
        margin: 25px 0 32px;
    }

    .article-content {
        font-size: 16px;
    }

    .article-content h2 {
        font-size: 27px;
        margin-top: 42px;
    }

    .article-content h3 {
        font-size: 21px;
    }

    .article-quote {
        font-size: 20px;
    }

    .dictionary-card, .action-box {
        padding: 23px;
    }

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

/* ==========================================================================
   ARCHIVE PAGE LAYOUT & STYLES (from archive.html)
   ========================================================================== */

/* Category Hero */
.category-hero {
    background:
        radial-gradient(circle at 85% 25%, rgba(255,61,90,.12), transparent 30%),
        radial-gradient(circle at 15% 90%, rgba(105,56,239,.10), transparent 35%),
        #f8f8fa;
    border-radius: 28px;
    padding: 55px 60px;
    margin-bottom: 55px;
    position: relative;
    overflow: hidden;
}

.category-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.category-label::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
}

.category-hero h1 {
    color: var(--navy);
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.1;
    letter-spacing: -2.8px;
    max-width: 750px;
    margin-bottom: 20px;
}

.category-description {
    max-width: 680px;
    color: #626b77;
    font-size: 18px;
    line-height: 1.65;
}

.category-count {
    margin-top: 25px;
    color: #858c96;
    font-size: 13px;
    font-weight: 700;
}

/* Featured Section Grid */
.featured-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 20px;
    margin-bottom: 60px;
}

.featured-main {
    min-height: 390px;
    border-radius: 23px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #eef0f6, #fff0f3);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.featured-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,61,90,.20), transparent 25%),
        radial-gradient(circle at 20% 75%, rgba(105,56,239,.15), transparent 28%);
    z-index: 1;
}

.featured-main-content {
    position: relative;
    z-index: 2;
    padding: 35px;
    width: 100%;
    background: linear-gradient(to top, rgba(16,42,67,.82), rgba(16,42,67,0));
    padding-top: 120px;
}

.featured-main-content small {
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.featured-main-content h3 {
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    margin-top: 9px;
    max-width: 700px;
}

.featured-main-content p {
    color: rgba(255,255,255,.82);
    margin-top: 9px;
    max-width: 650px;
    font-size: 14px;
}

.featured-side {
    display: grid;
    gap: 20px;
}

.featured-small {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    background: #fff;
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16,42,67,.07);
}

.featured-small small {
    color: var(--coral);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featured-small h3 {
    color: var(--navy);
    font-size: 20px;
    line-height: 1.3;
    margin-top: 8px;
}

.featured-small p {
    color: #747b85;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
}

/* Content & Sidebar Layout */
.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 55px;
    align-items: start;
    padding-bottom: 80px;
}

.article-list {
    display: grid;
    gap: 0;
}

.article-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 22px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.article-card:last-child {
    border-bottom: none;
}

.article-thumb {
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef0f5, #f9edf1);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(16,42,67,.18);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
}

.article-card small {
    color: var(--coral);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 900;
}

.article-card h3 {
    color: var(--navy);
    font-size: 21px;
    line-height: 1.3;
    margin: 6px 0 8px;
    transition: color 0.2s ease;
}

.article-card h3 a:hover {
    color: var(--coral);
}

.article-card p {
    color: #737b86;
    font-size: 14px;
    line-height: 1.55;
}

.article-meta {
    color: #9aa0a8;
    font-size: 11px;
    margin-top: 9px;
}

/* Sidebar List */
.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    border-bottom: 1px solid #eeeeef;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    color: #6c737e;
    transition: color 0.2s ease;
}

.sidebar-list a:hover {
    color: var(--coral);
}

/* Dictionary/Scam Promo Widget */
.dictionary-promo {
    background: #f7f5ff;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 30px;
}

.dictionary-promo small {
    color: var(--purple);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dictionary-promo h3 {
    color: var(--navy);
    font-size: 21px;
    line-height: 1.3;
    margin: 8px 0;
}

.dictionary-promo p {
    color: #717783;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 13px;
}

.dictionary-promo a {
    color: var(--purple);
    font-size: 13px;
    font-weight: 800;
}

/* Topic Tags */
.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.topic-tag {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 50px;
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 700;
    color: #68707b;
    transition: all 0.2s ease;
}

.topic-tag:hover {
    color: var(--coral);
    border-color: #ffc5ce;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 50px 0 70px;
}

.pagination a, .pagination span {
    min-width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #68707b;
    padding: 0 10px;
    transition: all 0.2s ease;
}

.pagination a:hover,
.pagination .active,
.pagination .current {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* Bottom Pillars Section on Archive */
.pillars-section {
    background: #f8f8fa;
    padding: 65px 0;
}

.pillars-section h2 {
    color: var(--navy);
    font-size: 30px;
    margin-bottom: 24px;
    letter-spacing: -.8px;
}

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

.pillars-section .pillar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillars-section .pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16,42,67,.06);
}

.pillar-number {
    font-size: 12px;
    font-weight: 900;
    color: var(--coral);
}

.pillars-section .pillar h3 {
    color: var(--navy);
    font-size: 18px;
    margin: 7px 0;
}

.pillars-section .pillar p {
    color: #747b84;
    font-size: 12px;
    line-height: 1.55;
}

/* Responsive Overrides for Archive */
@media (max-width: 1050px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar {
        display: none;
    }

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

@media (max-width: 750px) {
    .category-hero {
        padding: 35px 25px;
        border-radius: 22px;
        margin-bottom: 35px;
    }

    .category-hero h1 {
        font-size: 43px;
        letter-spacing: -1.8px;
    }

    .category-description {
        font-size: 16px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .featured-main {
        min-height: 340px;
    }

    .featured-main-content h3 {
        font-size: 26px;
    }

    .article-card {
        grid-template-columns: 125px 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .article-card h3 {
        font-size: 17px;
    }

    .article-card p {
        display: none;
    }

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

@media (max-width: 480px) {
    .article-card {
        grid-template-columns: 1fr;
    }

    .article-thumb {
        aspect-ratio: 16 / 8;
    }
}

/* ==========================================================================
   404 ERROR PAGE LAYOUT & STYLES (from 404.html)
   ========================================================================== */

.error-page {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 0 100px;
}

.error-content {
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.error-number {
    position: relative;
    display: inline-block;
    font-size: clamp(130px, 23vw, 250px);
    line-height: .8;
    font-weight: 900;
    letter-spacing: -14px;
    color: var(--navy);
    user-select: none;
}

.error-number::after {
    content: "";
    position: absolute;
    width: 105px;
    height: 105px;
    right: 15px;
    top: 15px;
    border-radius: 50%;
    background: var(--coral);
    z-index: -1;
    opacity: .95;
}

.error-kicker {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.error-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
}

.error-content h1 {
    margin-top: 13px;
    color: var(--navy);
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.error-description {
    max-width: 590px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

/* Search Box inside 404 */
.error-page .search-box {
    max-width: 520px;
    margin: 30px auto 0;
}

.error-page .search-form {
    display: flex;
    gap: 8px;
}

.error-page .search-form input {
    flex: 1;
    height: 50px;
    border: 1px solid #dfe1e6;
    border-radius: 12px;
    padding: 0 17px;
    font-size: 14px;
    outline: none;
}

.error-page .search-form input:focus {
    border-color: var(--purple);
}

.error-page .search-form button {
    height: 50px;
    border: 0;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease;
}

.error-page .search-form button:hover {
    background: var(--coral);
}

/* Quick Links grid */
.quick-links {
    margin: 45px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 850px;
}

.quick-link {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 17px;
    padding: 19px 15px;
    transition: all .2s ease;
    display: block;
    text-align: left;
}

.quick-link:hover {
    transform: translateY(-3px);
    border-color: #d9d3ff;
    box-shadow: 0 10px 25px rgba(16,42,67,.07);
}

.quick-number {
    color: var(--coral);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.quick-link h2 {
    color: var(--navy);
    font-size: 16px;
    margin-top: 5px;
}

.quick-link p {
    color: #808792;
    font-size: 11px;
    margin-top: 3px;
    line-height: 1.45;
}

.error-note {
    margin-top: 35px;
    color: #9aa0a8;
    font-size: 12px;
}

.error-note a {
    color: var(--purple);
    font-weight: 700;
    transition: color 0.2s ease;
}

.error-note a:hover {
    color: var(--coral);
}

/* Media Query overrides for 404 page */
@media (max-width: 800px) {
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .error-page {
        padding: 55px 0 70px;
    }

    .error-number {
        font-size: 145px;
        letter-spacing: -9px;
    }

    .error-number::after {
        width: 65px;
        height: 65px;
        right: 5px;
        top: 5px;
    }

    .error-content h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .error-description {
        font-size: 15px;
    }

    .error-page .search-form {
        flex-direction: column;
    }

    .error-page .search-form button {
        width: 100%;
    }

    .quick-links {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================
   PAGE TEMPLATE (ABOUT / PAGE.HTML)
========================= */

.about-hero {
    padding: 90px 0 85px;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(255,61,90,.11),
            transparent 25%
        ),
        radial-gradient(
            circle at 15% 75%,
            rgba(105,56,239,.09),
            transparent 30%
        ),
        var(--soft, #f8f8fa);
}

.about-hero-inner {
    max-width: 900px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
}

.about-hero h1 {
    margin-top: 18px;
    color: var(--navy);
    font-size: clamp(45px, 7vw, 78px);
    line-height: .98;
    letter-spacing: -4px;
    max-width: 850px;
}

.about-hero h1 span {
    color: var(--coral);
}

.about-hero-description {
    max-width: 720px;
    margin-top: 25px;
    color: #626b76;
    font-size: 19px;
    line-height: 1.7;
}

.intro {
    padding: 85px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.intro-label {
    color: var(--purple);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.intro h2 {
    color: var(--navy);
    font-size: 36px;
    line-height: 1.2;
    margin-top: 12px;
    letter-spacing: -1.2px;
}

.intro-content p {
    color: #626b76;
    font-size: 16px;
    margin-bottom: 20px;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

.mission {
    padding: 80px 0;
    background: var(--navy);
    color: #fff;
}

.mission-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.mission-label {
    color: #ff9aaa;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mission h2 {
    margin-top: 15px;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: #fff;
}

.mission p {
    max-width: 700px;
    margin: 22px auto 0;
    color: rgba(255,255,255,.75);
    font-size: 16px;
}

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

.pillars-grid .pillar {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    transition: .2s ease;
    background: #fff;
    min-height: auto;
}

.pillars-grid .pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(16,42,67,.07);
}

.pillar-number {
    color: var(--coral);
    font-size: 11px;
    font-weight: 900;
}

.pillars-grid .pillar h3 {
    color: var(--navy);
    font-size: 20px;
    margin-top: 8px;
    line-height: 1.3;
}

.pillars-grid .pillar p {
    color: #727984;
    font-size: 13px;
    margin-top: 9px;
    line-height: 1.55;
}

.principles {
    padding: 80px 0;
    background: var(--soft, #f8f8fa);
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.principle {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
}

.principle h3 {
    color: var(--navy);
    font-size: 19px;
    margin-bottom: 8px;
}

.principle p {
    color: #717983;
    font-size: 14px;
    line-height: 1.65;
}

.privacy {
    padding: 85px 0;
}

.privacy-box {
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 40px;
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 60px;
}

.privacy-box h2 {
    color: var(--navy);
    font-size: 30px;
    line-height: 1.2;
}

.privacy-box h2 span {
    color: var(--coral);
}

.privacy-content p {
    color: #69717c;
    font-size: 14px;
    margin-bottom: 15px;
}

.privacy-content ul {
    margin: 15px 0 0 20px;
    color: #69717c;
    font-size: 14px;
}

.privacy-content li {
    margin-bottom: 7px;
}

.note {
    padding: 0 0 85px;
}

.note-inner {
    background: #fff6df;
    border-radius: 22px;
    padding: 30px;
    border: 1px solid #f2e4bd;
}

.note-inner strong {
    display: block;
    color: #725b20;
    font-size: 15px;
    margin-bottom: 7px;
}

.note-inner p {
    color: #776a45;
    font-size: 13px;
    line-height: 1.65;
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7f4ff, #fff2f5);
}

.cta-inner {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.cta-inner h2 {
    color: var(--navy);
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cta-inner p {
    color: #707782;
    max-width: 600px;
    margin: 14px auto 25px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: .2s ease;
}

.cta-button:hover {
    background: var(--coral);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .privacy-box {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 48px;
        letter-spacing: -2.5px;
    }

    .about-hero-description {
        font-size: 16px;
    }

    .intro,
    .pillars,
    .privacy {
        padding: 60px 0;
    }

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

    .principles {
        padding: 60px 0;
    }

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

    .privacy-box {
        padding: 25px;
    }

    .about-cta {
        padding: 60px 0;
    }

    .cta-inner h2 {
        font-size: 30px;
    }
}

/* =========================
   PAGE TOPICS SECTION REDESIGN
========================= */

.page-topics-section {
    padding: 70px 0 80px;
    background: #fafafa;
    border-top: 1px solid var(--border);
}

.topics-header {
    margin-bottom: 35px;
    max-width: 650px;
}

.topics-header h2 {
    color: var(--navy);
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 8px;
    font-weight: 800;
}

.topics-header p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.page-topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.topic-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(16, 42, 67, 0.08);
    border-color: rgba(16, 42, 67, 0.15);
}

.topic-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.topic-badge {
    font-size: 12px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.topic-card-1 .topic-badge {
    background: #fff0f4;
    color: #ff3d5a;
}

.topic-card-2 .topic-badge {
    background: #f0efff;
    color: #6938ef;
}

.topic-card-3 .topic-badge {
    background: #eef8f2;
    color: #059669;
}

.topic-card-4 .topic-badge {
    background: #fff7e9;
    color: #d97706;
}

.topic-arrow {
    font-size: 16px;
    color: var(--navy);
    font-weight: 700;
    transition: transform 0.25s ease, color 0.25s ease;
}

.topic-card:hover .topic-arrow {
    transform: translateX(4px);
    color: var(--coral);
}

.topic-card h3 {
    color: var(--navy);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.topic-card p {
    color: #667085;
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 900px) {
    .page-topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .page-topics-grid {
        grid-template-columns: 1fr;
    }
}





