/* ═══════════════════════════════════════════
   StrangerBay — Landing Page Styles
   Dark monochrome B&W theme
   ═══════════════════════════════════════════ */

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

:root {
    --bg: #0f0f13;
    --bg2: #16161c;
    --bg3: #1e1e26;
    --bg4: #26262f;
    --border: #ffffff12;
    --border2: #333340;
    --border3: #44444f;
    --text: #ececf0;
    --text2: #c8c8d0;
    --muted: #8888a0;
    --muted2: #aaaabc;
    --accent: #ffffff;
    --accent2: #cccccc;
    --glass: rgba(255, 255, 255, 0.04);
    --glass2: rgba(255, 255, 255, 0.07);
    --glow: rgba(255, 255, 255, 0.08);
    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'Outfit', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* noise overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
}

a {
    color: var(--accent2);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ─── GRADIENT TEXT ─── */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #999999 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── CONTAINER ─── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ══════════════════════════════════
   HEADER / NAVBAR
   ══════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    background: rgba(15, 15, 19, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: auto;
    height: 28px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 400;
    transition: color 0.2s;
}

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

.nav-cta {
    background: #ffffff !important;
    color: #0f0f13 !important;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--glow);
}

/* mobile hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

.hamburger svg {
    width: 24px;
    height: 24px;
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

/* animated gradient orbs — B&W version */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
    top: -100px;
    right: -100px;
}

.hero::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.25), transparent 70%);
    bottom: -50px;
    left: -100px;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -30px) scale(1.15);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    padding: 6px 16px;
    background: var(--glass2);
    border: 1px solid var(--border2);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--muted2);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    background: linear-gradient(to bottom, #ffffff 60%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 span {
    background: linear-gradient(to bottom, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #ffffff;
    color: #0f0f13;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow);
    color: #0f0f13;
}

.hero-cta svg {
    width: 20px;
    height: 20px;
}

.hero-trust {
    margin-top: 32px;
    font-size: 0.8rem;
    color: var(--muted);
}

/* ══════════════════════════════════
   SECTION BASE
   ══════════════════════════════════ */
.section {
    padding: 100px 24px;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted2);
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    background: linear-gradient(to bottom, #ffffff 70%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.8;
    font-weight: 300;
}

.section-center {
    text-align: center;
}

.section-center .section-desc {
    margin: 0 auto 48px;
}

/* divider */
.section-divider {
    border: none;
    height: 1px;
    background: var(--border);
    max-width: 1100px;
    margin: 0 auto;
}

/* ══════════════════════════════════
   HOW TO USE
   ══════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step-card {
    background: var(--glass);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, border-color 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--border3);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #0f0f13;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ══════════════════════════════════
   WHY STRANGERBAY (BENEFITS)
   ══════════════════════════════════ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.benefit-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color 0.3s;
}

.benefit-card:hover {
    border-color: var(--border3);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--glass2);
    border: 1px solid var(--border2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text);
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ══════════════════════════════════
   PRIVACY SECTION
   ══════════════════════════════════ */
.privacy-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

.privacy-text h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 16px;
}

.privacy-text p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}

.privacy-visual {
    background: var(--glass);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.privacy-visual .shield-icon {
    width: 60px;
    height: 60px;
    color: var(--text);
    margin-bottom: 16px;
}

.privacy-visual p {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 300;
}

.privacy-list {
    list-style: none;
    padding: 0;
}

.privacy-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 300;
}

.privacy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text);
    font-weight: 600;
}

/* ══════════════════════════════════
   FAQs
   ══════════════════════════════════ */
.faq-list {
    max-width: 750px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--muted2);
}

.faq-q svg {
    width: 20px;
    height: 20px;
    color: var(--muted);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-q svg {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 0;
}

.faq-item.open .faq-a {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-a p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.8;
    font-weight: 300;
    text-align: left;
}

/* ══════════════════════════════════
   REVIEWS
   ══════════════════════════════════ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.review-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.review-stars {
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-card blockquote {
    color: var(--muted2);
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.review-author {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 400;
}

/* ══════════════════════════════════
   ARTICLES
   ══════════════════════════════════ */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.article-card {
    background: var(--glass);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-3px);
    border-color: var(--border3);
}

.article-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted2);
    margin-bottom: 12px;
}

.article-card h3 {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
    flex: 1;
    margin-bottom: 16px;
}

.article-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: gap 0.2s;
}

.article-link:hover {
    gap: 10px;
    color: var(--muted2);
}

.article-link svg {
    width: 14px;
    height: 14px;
}

/* ══════════════════════════════════
   CTA BANNER
   ══════════════════════════════════ */
.cta-section {
    text-align: center;
    padding: 80px 24px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg3), var(--bg2));
    border: 1px solid var(--border2);
    border-radius: 24px;
    padding: 60px 40px;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-box p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 32px;
    font-weight: 300;
}

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 60px 24px 32px;
    background: var(--bg2);
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 12px;
    font-weight: 300;
}

.footer-col h4 {
    color: var(--text2);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

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

/* ══════════════════════════════════
   FLOATING SHARE BUTTON
   ══════════════════════════════════ */
.btn-floating-share {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: rgba(30, 30, 38, 0.9);
    border: 1px solid var(--border3);
    border-radius: 50%;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    z-index: 50;
}

.btn-floating-share:hover {
    background: rgba(50, 50, 60, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.btn-floating-share svg {
    width: 22px;
    height: 22px;
}

/* share overlay */
.share-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.share-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.share-popup {
    background: var(--bg2);
    border: 1px solid var(--border3);
    border-radius: 24px;
    padding: 32px;
    width: 90%;
    max-width: 360px;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.share-overlay.show .share-popup {
    transform: scale(1) translateY(0);
}

.btn-share-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-share-close:hover {
    background: var(--glass);
    color: var(--text);
}

.btn-share-close svg {
    width: 18px;
    height: 18px;
}

.share-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 24px;
    text-align: center;
}

.share-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border2);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
    background: var(--glass2);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.share-btn[data-network="facebook"]:hover {
    color: #1877F2;
    border-color: #1877F2;
}

.share-btn[data-network="whatsapp"]:hover {
    color: #25D366;
    border-color: #25D366;
}

.share-btn[data-network="twitter"]:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.share-btn[data-network="telegram"]:hover {
    color: #2AABEE;
    border-color: #2AABEE;
}

.share-btn[data-network="bluesky"]:hover {
    color: #0085ff;
    border-color: #0085ff;
}

.share-copy-bar {
    display: flex;
    background: var(--bg);
    border: 1px solid var(--border3);
    border-radius: 12px;
    padding: 6px;
    gap: 8px;
    align-items: center;
}

.share-url-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--muted2);
    font-family: inherit;
    font-size: 0.85rem;
    padding: 0 10px;
    outline: none;
}

.btn-copy-url {
    background: var(--bg3);
    color: var(--text);
    border: 1px solid var(--border3);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.btn-copy-url svg {
    width: 16px;
    height: 16px;
}

.btn-copy-url:hover {
    background: var(--glass);
    border-color: var(--border);
}

.btn-copy-url.copied {
    color: #25D366;
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

/* ══════════════════════════════════
   ARTICLE PAGE STYLES (shared)
   ══════════════════════════════════ */
.article-page-body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'Outfit', system-ui, sans-serif;
    line-height: 1.7;
    padding-top: 60px;
}

.article-page-body .page-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 15, 19, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
}

.article-page-body .page-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.article-page-body .page-nav-links {
    display: flex;
    gap: 20px;
}

.article-page-body .page-nav-links a {
    color: var(--muted);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.article-page-body .page-nav-links a:hover {
    color: var(--text);
}

.article-breadcrumb {
    max-width: 800px;
    margin: 24px auto 0;
    padding: 0 24px;
    font-size: 0.82rem;
    color: var(--muted);
}

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

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

.article-breadcrumb .sep {
    margin: 0 8px;
    color: var(--border3);
}

.article-container {
    max-width: 800px;
    margin: 32px auto 0;
    padding: 0 24px 60px;
}

.article-header {
    margin-bottom: 40px;
}

.article-header .article-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted2);
    margin-bottom: 16px;
    background: var(--glass2);
    border: 1px solid var(--border2);
    padding: 4px 12px;
    border-radius: 100px;
}

.article-header h1 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta {
    font-size: 0.82rem;
    color: var(--muted);
}

.article-body h2 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text);
    margin: 36px 0 16px;
}

.article-body h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text2);
    margin: 28px 0 12px;
}

.article-body p {
    color: var(--muted2);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 18px;
    font-weight: 300;
}

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

.article-body li {
    color: var(--muted2);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 8px;
    font-weight: 300;
}

.article-body blockquote {
    border-left: 3px solid var(--border3);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--glass);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--muted2);
    font-style: italic;
}

.article-divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 48px 0;
}

/* Read More Articles section */
.read-more-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.read-more-item {
    background: var(--glass);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.read-more-item:hover {
    transform: translateY(-2px);
    border-color: var(--border3);
}

.read-more-item h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.read-more-item .read-more-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 8px;
}

.read-more-item a {
    font-size: 0.82rem;
    color: var(--muted2);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: gap 0.2s;
}

.read-more-item a:hover {
    gap: 8px;
    color: var(--text);
}

.read-more-item a svg {
    width: 12px;
    height: 12px;
}

/* article page footer */
.article-footer {
    border-top: 1px solid var(--border);
    padding: 24px;
    background: var(--bg2);
}

.article-footer-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.article-footer-links a {
    color: var(--muted);
    font-size: 0.82rem;
    transition: color 0.2s;
}

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

.article-footer-copy {
    color: var(--muted);
    font-size: 0.75rem;
}

@media (max-width: 640px) {
    .read-more-grid {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 1.6rem;
    }

    .article-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .steps-grid,
    .reviews-grid,
    .articles-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .privacy-block {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .steps-grid,
    .reviews-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* mobile nav */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(15, 15, 19, 0.96);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: 0.3s ease;
        z-index: 99;
    }

    .nav-links.open {
        transform: translateY(0);
        top: 64px;
    }

    .hamburger {
        display: flex;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 16px;
    }
}