/* ============================================================
   CHATZYO — main.css
   One file controls all pages
   Version: 1.0 | Built: 2026
   ============================================================ */

/* ── VARIABLES ── */
:root {
    --bg: #0f0f14;
    --bg2: #16161e;
    --bg3: #1e1e28;
    --surface: #23232f;

    --border: rgba(255, 255, 255, .08);
    --border2: rgba(255, 255, 255, .14);

    --saffron: #f97316;
    --saffron2: #fb923c;
    --gold: #fbbf24;
    --teal: #14b8a6;
    --violet: #8b5cf6;
    --green: #22c55e;
    --red: #ef4444;
    --emerald: #059669;

    --white: #ffffff;
    --off: #f1f0ee;
    --muted: #c8c6d0;
    --muted2: #9997a3;

    --font: system-ui, -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --r: 12px;
    --r2: 20px;
    --r3: 28px;

    --shadow: 0 24px 48px rgba(0, 0, 0, .45);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--off);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity .18s
}

a:hover {
    opacity: .78
}

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

button {
    font-family: var(--font);
    cursor: pointer
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg2)
}

::-webkit-scrollbar-thumb {
    background: var(--surface);
    border-radius: 99px
}

/* ── ANIMATIONS ── */
@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .4)
    }

    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 58px;
    background: rgba(15, 15, 20, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

.nav.scrolled {
    box-shadow: 0 1px 0 var(--border2)
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white)
}

.nav-logo span {
    color: var(--saffron)
}

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

.nav-links a {
    font-size: .82rem;
    font-weight: 500;
    color: var(--muted2);
    padding: 6px 12px;
    border-radius: 99px;
    transition: color .18s, background .18s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--off);
    background: var(--surface);
    opacity: 1
}

.nav-online {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted2)
}

.nav-online .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: glow 2s infinite;
}

.nav-lang-select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 99px;
    padding: 5px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--off);
    cursor: pointer;
    font-family: var(--font);
    margin-left: 8px;
    transition: border-color .2s;
}

.nav-lang-select:hover,
.nav-lang-select:focus {
    outline: none;
    border-color: var(--saffron)
}

.nav-lang-select option {
    background: var(--bg2);
    color: var(--off)
}

.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--off);
    font-size: 22px;
    padding: 4px;
}

@media(max-width:768px) {
    .nav-menu-btn {
        display: block
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 58px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--bg2);
        border-bottom: 1px solid var(--border);
        padding: 8px 0;
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        border-radius: 0;
        padding: 12px 24px;
        width: 100%
    }

    .nav-online {
        display: none
    }
}


/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
    min-height: calc(100vh - 58px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(249, 115, 22, .12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(139, 92, 246, .10) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: center;
    max-width: 1020px;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(249, 115, 22, .12);
    border: 1px solid rgba(249, 115, 22, .25);
    color: var(--saffron2);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 24px;
}

.bdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--saffron);
    animation: glow 2s infinite
}

.hero-h1 {
    font-size: clamp(1.8rem, 5.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-h1 .a1 {
    color: var(--saffron)
}

.hero-h1 .a2 {
    color: var(--gold)
}

.hero-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted2);
    margin-bottom: 28px;
}

.hero-live .ldot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: glow 2s infinite;
}

/* CTA CARD */
.chat-card {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--r3);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 460px;
    box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, .04) inset;
}

.mode-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--bg3);
    border-radius: var(--r);
    padding: 4px;
    gap: 4px;
}

.mode-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 8px;
    border-radius: 9px;
    border: none;
    background: transparent;
    color: var(--muted2);
    font-size: .82rem;
    font-weight: 600;
    transition: all .2s;
    cursor: pointer;
}

.mode-tab.active {
    background: var(--surface);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.mode-tab.active svg {
    stroke: var(--saffron)
}

.chat-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 24px;
    border-radius: var(--r);
    border: none;
    background: var(--saffron);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    transition: transform .18s, box-shadow .18s;
    text-decoration: none;
}

.chat-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, .35);
    opacity: 1;
}

.hero-sub {
    font-size: clamp(.95rem, 2vw, 1.05rem);
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    margin-top: 18px;
    max-width: 460px;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted2);
    font-size: .75rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 99px;
}

.hero-phone-wrap {
    flex-shrink: 0
}

.hero-phone-wrap img {
    width: 380px;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .7));
}

@media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    .hero-left {
        align-items: center;
        text-align: center
    }

    .hero-sub {
        max-width: 100%
    }

    .trust-pills {
        justify-content: center
    }

    .hero-phone-wrap {
        display: flex;
        justify-content: center;
        margin-top: 24px
    }

    .hero-phone-wrap img {
        width: 280px
    }
}

@media(max-width:600px) {
    .hero {
        padding: 48px 20px 60px;
        min-height: auto
    }

    .chat-card {
        max-width: 100%
    }
}


/* ============================================================
   HERO — INNER PAGES (shorter, no full viewport)
   ============================================================ */
.page-hero {
    padding: 64px 24px 56px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(249, 115, 22, .08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(249, 115, 22, .12);
    border: 1px solid rgba(249, 115, 22, .25);
    color: var(--saffron2);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 18px;
}

.page-h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.04em;
    color: var(--white);
    margin-bottom: 14px;
}

.page-h1 .a1 {
    color: var(--saffron)
}

.page-sub {
    font-size: clamp(.95rem, 2vw, 1.05rem);
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 620px;
    margin-bottom: 24px;
}

.page-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: var(--r);
    background: var(--saffron);
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
    border: none;
    text-decoration: none;
    transition: transform .18s, box-shadow .18s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, .35);
    opacity: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: var(--r);
    background: transparent;
    color: var(--off);
    font-size: .95rem;
    font-weight: 600;
    border: 1px solid var(--border2);
    text-decoration: none;
    transition: border-color .18s, background .18s;
}

.btn-secondary:hover {
    border-color: var(--saffron);
    background: rgba(249, 115, 22, .06);
    opacity: 1
}


/* ============================================================
   MODERATION STRIP
   ============================================================ */
.mod-strip {
    background: #13131a;
    border-top: 1px solid rgba(249, 115, 22, .2);
    border-bottom: 1px solid rgba(249, 115, 22, .2);
    padding: 14px 24px;
}

.mod-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.mod-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.mod-item:last-child {
    border-right: none
}

.mod-item .mod-text {
    font-size: .8rem;
    color: var(--muted2)
}

.mod-item strong {
    color: var(--off)
}

@media(max-width:640px) {
    .mod-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .mod-item:last-child {
        border-bottom: none
    }
}


/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.section {
    padding: 80px 24px
}

.section-inner {
    max-width: 1080px;
    margin: 0 auto
}

.section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-body {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 620px;
    font-weight: 300;
}

.section-header {
    margin-bottom: 48px
}

@media(max-width:600px) {
    .section {
        padding: 60px 20px
    }
}


/* ============================================================
   INTENT / STORY SECTION
   ============================================================ */
.intent-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 56px 24px;
}

.intent-inner {
    max-width: 820px;
    margin: 0 auto
}

.intent-inner h2 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--white);
    margin: 32px 0 12px;
}

.intent-inner h2:first-child {
    margin-top: 0
}

.intent-inner p {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 12px;
    font-weight: 300;
}

.intent-inner p:last-child {
    margin-bottom: 0
}

.intent-inner a {
    color: var(--saffron);
    font-weight: 600
}


/* ============================================================
   LANGUAGE ROOMS
   ============================================================ */
.lang-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lang-grid-2col {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 52px;
    align-items: center;
}

.lang-selector-wrap {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 10px 18px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--off);
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.lang-btn:hover {
    border-color: var(--saffron);
    background: rgba(249, 115, 22, .08);
    opacity: 1
}

.lang-btn.primary {
    border-color: rgba(249, 115, 22, .35);
    background: rgba(249, 115, 22, .08)
}

.lang-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: var(--r2);
    border: 1px solid var(--border2);
}

/* Language cards grid (for language room pages) */
.lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.lang-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: border-color .2s, transform .2s;
    position: relative;
    overflow: hidden;
}

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

.lang-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px
}

.lang-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.lang-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white)
}

.lang-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1
}

.lang-cta {
    font-size: .82rem;
    font-weight: 700;
    color: var(--saffron);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
}

.lang-cta:hover {
    gap: 8px;
    opacity: 1
}

@media(max-width:900px) {
    .lang-grid-2col {
        grid-template-columns: 1fr
    }

    .lang-img-wrap {
        margin-top: 24px
    }
}


/* ============================================================
   OMEGLE ALTERNATIVE
   ============================================================ */
.omegle-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border)
}

.omegle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.omegle-body {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 14px;
}

.omegle-feats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px
}

.of {
    display: flex;
    gap: 14px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 18px 20px;
}

.of-ic {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px
}

.of h5 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px
}

.of p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.6
}

/* COMPARISON TABLE */
.compare-wrap {
    overflow-x: auto;
    margin-top: 8px
}

.compare-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem
}

.compare-tbl th {
    padding: 10px 14px;
    text-align: left;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted2);
    border-bottom: 1px solid var(--border);
}

.compare-tbl th.ours {
    color: var(--saffron);
    background: rgba(249, 115, 22, .06)
}

.compare-tbl td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    vertical-align: middle;
}

.compare-tbl td:first-child {
    color: var(--off);
    font-weight: 500
}

.compare-tbl td.ours {
    background: rgba(249, 115, 22, .04)
}

.compare-tbl tr:last-child td {
    border-bottom: none
}

.compare-tbl .yes {
    color: #4ade80;
    font-weight: 700
}

.compare-tbl .no {
    color: var(--muted2)
}

.compare-tbl .partial {
    color: var(--gold)
}

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


/* ============================================================
   WHY CHATZYO CARDS
   ============================================================ */
.why-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.why-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 28px 24px;
    transition: border-color .2s;
}

.why-card:hover {
    border-color: var(--border2)
}

.why-card .ic {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 7px
}

.why-card p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.65
}

@media(max-width:768px) {
    .why-grid {
        grid-template-columns: 1fr
    }
}


/* ============================================================
   APP PROMO SECTION (Android App)
   ============================================================ */
.app-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.app-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .25);
    color: var(--green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.app-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.app-body {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 24px;
}

.app-features {
    list-style: none;
    margin-bottom: 28px
}

.app-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.app-features li:last-child {
    margin-bottom: 0
}

.app-feat-check {
    color: var(--green);
    flex-shrink: 0;
    font-weight: 700
}

.app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center
}

.play-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    padding: 10px 20px;
    text-decoration: none;
    transition: border-color .2s, transform .18s;
}

.play-store-btn:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    opacity: 1;
}

.play-store-btn img {
    width: 22px;
    height: 24px
}

.play-store-text {
    display: flex;
    flex-direction: column
}

.play-store-small {
    font-size: .65rem;
    color: var(--muted2);
    letter-spacing: .05em;
    text-transform: uppercase
}

.play-store-big {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white)
}

.app-img-wrap {
    position: relative
}

.app-img-wrap img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: var(--r2);
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .6));
    margin: 0 auto;
}

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

    .app-img-wrap {
        display: flex;
        justify-content: center
    }

    .app-img-wrap img {
        max-width: 300px
    }
}


/* ============================================================
   HOW IT WORKS — 3 STEPS
   ============================================================ */
.how-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.how-step {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
}

.how-step:last-child {
    border-right: none
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--saffron);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.how-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px
}

.how-step p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65
}

@media(max-width:768px) {
    .how-steps {
        grid-template-columns: 1fr
    }

    .how-step {
        border-right: none;
        border-bottom: 1px solid var(--border)
    }

    .how-step:last-child {
        border-bottom: none
    }
}


/* ============================================================
   ABOUT / FOUNDER
   ============================================================ */
.about-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border)
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-body {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 14px;
}

.founder-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0
}

.founder-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249, 115, 22, .12);
    border: 2px solid rgba(249, 115, 22, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    overflow: hidden;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.founder-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white)
}

.founder-title {
    font-size: .8rem;
    color: var(--muted2)
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px
}

.astat {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.astat:first-child {
    border-radius: var(--r2) 0 0 0
}

.astat:nth-child(2) {
    border-radius: 0 var(--r2) 0 0
}

.astat:nth-child(3) {
    border-radius: 0 0 0 var(--r2)
}

.astat:last-child {
    border-radius: 0 0 var(--r2) 0
}

.astat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.04em
}

.astat-label {
    font-size: .76rem;
    color: var(--muted2);
    font-weight: 500
}

.safety-banner {
    background: rgba(249, 115, 22, .06);
    border: 1px solid rgba(249, 115, 22, .18);
    border-radius: var(--r2);
    padding: 28px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 48px;
}

.safety-banner .si {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px
}

.safety-banner h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--saffron2);
    margin-bottom: 6px
}

.safety-banner p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.65
}

.safety-list {
    list-style: none;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.safety-list li {
    display: flex;
    gap: 8px;
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6
}

@media(max-width:768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .safety-banner {
        flex-direction: column;
        gap: 12px
    }
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    background: var(--bg2);
    border-bottom: 1px solid var(--border)
}

.faq-wrap {
    max-width: 720px
}

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

.faq-item:first-child {
    border-top: 1px solid var(--border)
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: .95rem;
    font-weight: 600;
    color: var(--off);
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: color .18s;
}

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

.faq-arrow {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--muted2);
    transition: transform .25s, border-color .18s;
}

.faq-item.open .faq-q .faq-arrow {
    transform: rotate(45deg);
    border-color: var(--saffron);
    color: var(--saffron);
}

.faq-a {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 18px
}


/* ============================================================
   BLOG STRIP
   ============================================================ */
.blog-strip {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 56px 24px
}

.blog-strip-inner {
    max-width: 1080px;
    margin: 0 auto
}

.blog-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.blog-link-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 20px 22px;
    text-decoration: none;
    transition: border-color .2s, transform .2s;
}

.blog-link-card:hover {
    border-color: var(--saffron);
    transform: translateY(-2px);
    opacity: 1
}

.blog-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 8px
}

.blog-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 6px
}

.blog-read {
    font-size: .8rem;
    color: var(--muted2);
    font-weight: 500
}

/* Blog post page */
.blog-post-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px
}

.blog-post-wrap h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px
}

.blog-post-wrap h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 32px 0 12px
}

.blog-post-wrap h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 24px 0 8px
}

.blog-post-wrap p {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 16px;
    font-weight: 300
}

.blog-post-wrap a {
    color: var(--saffron);
    font-weight: 600
}

.blog-post-wrap ul,
.blog-post-wrap ol {
    padding-left: 20px;
    margin-bottom: 16px
}

.blog-post-wrap li {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 6px
}

.blog-meta {
    font-size: .82rem;
    color: var(--muted2);
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

@media(max-width:768px) {
    .blog-links {
        grid-template-columns: 1fr
    }
}


/* ============================================================
   CITY + COUNTRY CHIPS
   ============================================================ */
.city-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border)
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

.city-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color .2s, transform .2s;
    text-decoration: none;
}

.city-card:hover {
    border-color: var(--saffron);
    transform: translateY(-2px);
    opacity: 1
}

.city-flag {
    font-size: 24px
}

.city-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white)
}

.city-desc {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.5
}

.city-link {
    font-size: .78rem;
    font-weight: 700;
    color: var(--saffron);
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.country-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 8px 16px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--off);
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.country-chip:hover {
    border-color: var(--saffron);
    background: rgba(249, 115, 22, .06);
    opacity: 1
}

/* ============================================================
   EXPLORE LINKS
   ============================================================ */
.explore-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border)
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.explore-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 14px 16px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    transition: border-color .18s, color .18s;
}

.explore-link:hover {
    border-color: var(--saffron);
    color: var(--off);
    opacity: 1
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    padding: 52px 24px 28px
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

@media(max-width:992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media(max-width:600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 10px;
    display: block
}

.footer-logo span {
    color: var(--saffron)
}

.footer-tagline {
    font-size: .84rem;
    color: var(--muted2);
    line-height: 1.6;
    margin-bottom: 10px
}

.footer-contact {
    font-size: .78rem;
    color: var(--muted2)
}

.footer-contact a {
    color: var(--muted)
}

.footer-col-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--off);
    margin-bottom: 14px;
    padding-bottom: 7px;
    border-bottom: 2px solid var(--saffron);
    display: inline-block;
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 9px
}

.footer-col ul li a {
    font-size: .84rem;
    color: var(--muted2);
    transition: color .18s
}

.footer-col ul li a:hover {
    color: var(--off);
    opacity: 1
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .76rem;
    color: var(--muted2)
}

.footer-badges {
    display: flex;
    gap: 8px
}

.fbadge {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: 4px;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .07em;
    color: var(--muted2);
}

@media(max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }
}


/* ============================================================
   COOKIE BAR
   ============================================================ */
.cookie-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 680px;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: var(--r2);
    padding: 16px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    z-index: 8000;
    box-shadow: var(--shadow);
}

.cookie-bar p {
    font-size: .82rem;
    color: var(--muted);
    flex: 1
}

.cookie-bar p a {
    color: var(--saffron);
    text-decoration: underline
}

.cookie-btns {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

.cbtn-accept {
    padding: 8px 18px;
    border-radius: var(--r);
    border: none;
    background: var(--saffron);
    color: var(--white);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
}

.cbtn-reject {
    padding: 8px 18px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    background: none;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-saffron {
    color: var(--saffron)
}

.text-gold {
    color: var(--gold)
}

.text-muted {
    color: var(--muted)
}

.text-white {
    color: var(--white)
}

.fw-700 {
    font-weight: 700
}

.fw-300 {
    font-weight: 300
}

.mt-8 {
    margin-top: 8px
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.mt-32 {
    margin-top: 32px
}

.mb-8 {
    margin-bottom: 8px
}

.mb-16 {
    margin-bottom: 16px
}

.mb-24 {
    margin-bottom: 24px
}

.flex-wrap-gap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}
/* ============================================================
   ABOUT PAGE
   ============================================================ */
.breadcrumb {
    padding: 10px 28px;
    font-size: .76rem;
    color: var(--muted2);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--muted2)
}

.page-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px
}

.sec-h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.03em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.sec-body {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 14px;
    font-weight: 300;
}

.sec-body:last-child {
    margin-bottom: 0
}

.sec-body a {
    color: var(--saffron);
    font-weight: 500
}

/* Origin story — editorial pull quote */
.origin-quote {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-left: 4px solid var(--saffron);
    border-radius: 0 var(--r2) var(--r2) 0;
    padding: 24px 28px;
    margin: 22px 0;
    font-size: 1rem;
    color: var(--off);
    line-height: 1.85;
    font-style: italic;
    font-weight: 300;
}

.origin-quote strong {
    font-style: normal;
    color: var(--white);
    font-weight: 700
}

/* Founder card */
.founder-card {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--r2);
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 22px;
}

.founder-card .founder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, .3), rgba(251, 191, 36, .2));
    border: 2px solid rgba(249, 115, 22, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.founder-info h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 3px
}

.founder-info .fi-title {
    font-size: .8rem;
    color: var(--saffron2);
    font-weight: 600;
    margin-bottom: 8px
}

.founder-info p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7
}

.founder-info .fi-loc {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    color: var(--muted2);
    margin-top: 10px;
    font-weight: 500;
}

@media(max-width:500px) {
    .founder-card {
        flex-direction: column;
        gap: 16px
    }
}

/* 2-column fact cards */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}

.tc-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 22px
}

.tc-card h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tc-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.7
}

@media(max-width:560px) {
    .two-col {
        grid-template-columns: 1fr
    }
}

/* Stat boxes */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 22px;
    border-radius: var(--r2);
    overflow: hidden;
}

.stat-grid .stat-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-grid .stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.04em;
    line-height: 1;
}

.stat-grid .stat-label {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500
}

@media(max-width:600px) {
    .stat-grid {
        grid-template-columns: 1fr 1fr
    }
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.val-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 24px
}

.val-card .val-icon {
    font-size: 24px;
    margin-bottom: 12px
}

.val-card h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 7px
}

.val-card p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65
}

@media(max-width:600px) {
    .values-grid {
        grid-template-columns: 1fr
    }
}

/* Transparency box */
.transparency-box {
    background: rgba(249, 115, 22, .05);
    border: 1px solid rgba(249, 115, 22, .15);
    border-radius: var(--r2);
    padding: 28px 32px;
    margin-top: 22px;
}

.transparency-box h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--saffron2);
    margin-bottom: 14px
}

.transparency-box .t-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.6;
}

.transparency-box .t-row:last-child {
    margin-bottom: 0
}

.transparency-box .t-ic {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 14px
}

/* Contact cards */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}

.contact-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 22px
}

.contact-card h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px
}

.contact-card p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 8px;
}

.contact-card a.email-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--saffron);
}

@media(max-width:500px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

/* Policy link pills */
.policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.plink {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 7px 14px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
    transition: border-color .18s, color .18s;
}

.plink:hover {
    border-color: var(--saffron);
    color: var(--off);
    opacity: 1
}

/* Bottom CTA block */
.cta-block {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--r2);
    padding: 36px;
    text-align: center;
}

.cta-block h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px
}

.cta-block p {
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: 22px;
    font-weight: 300
}

.cta-langs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.cta-lang {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 5px 12px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--muted);
}

@media(max-width:600px) {
    .page-wrap {
        padding: 0 20px
    }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}

.method-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: border-color .2s;
}

.method-card:hover {
    border-color: var(--border2)
}

.method-card.urgent {
    border-top: 3px solid var(--red)
}

.method-card.press {
    border-top: 3px solid var(--violet)
}

.method-card.support {
    border-top: 3px solid var(--saffron)
}

.method-card .method-icon {
    font-size: 26px;
    margin-bottom: 12px
}

.method-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px
}

.method-card p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
    flex: 1;
}

.method-resp {
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 14px;
    width: fit-content;
}

.resp-fast {
    background: rgba(239, 68, 68, .1);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, .2)
}

.resp-normal {
    background: rgba(249, 115, 22, .1);
    color: var(--saffron2);
    border: 1px solid rgba(249, 115, 22, .2)
}

.resp-slow {
    background: rgba(139, 92, 246, .1);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, .2)
}

.method-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--saffron)
}

@media(max-width:700px) {
    .method-grid {
        grid-template-columns: 1fr
    }
}

/* Contact form */
.form-wrap {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--r3);
    padding: 36px;
}

.form-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px
}

.form-sub {
    font-size: .88rem;
    color: var(--muted);
    margin-bottom: 28px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-label {
    font-size: .8rem;
    font-weight: 700;
    color: var(--muted2);
    letter-spacing: .04em
}

.form-input {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 12px 14px;
    color: var(--off);
    font-size: .9rem;
    outline: none;
    transition: border-color .18s;
    width: 100%;
    font-family: var(--font);
}

.form-input:focus {
    border-color: var(--saffron);
    background: var(--bg2)
}

.form-input::placeholder {
    color: var(--muted2)
}

textarea.form-input {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6
}

select.form-input option {
    background: var(--bg3);
    color: var(--off)
}

.form-notice {
    background: rgba(249, 115, 22, .06);
    border: 1px solid rgba(249, 115, 22, .15);
    border-radius: var(--r);
    padding: 12px 16px;
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.form-notice strong {
    color: var(--saffron2)
}

.form-submit {
    width: 100%;
    padding: 15px 24px;
    border-radius: var(--r);
    border: none;
    background: var(--saffron);
    color: var(--white);
    font-size: .97rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, .35)
}

.form-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none
}

.form-success {
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .2);
    border-radius: var(--r);
    padding: 16px 20px;
    font-size: .9rem;
    color: #4ade80;
    display: none;
    margin-top: 16px;
    text-align: center;
}

.form-error {
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .2);
    border-radius: var(--r);
    padding: 12px 16px;
    font-size: .86rem;
    color: #f87171;
    display: none;
    margin-bottom: 12px;
}

@media(max-width:560px) {
    .form-row {
        grid-template-columns: 1fr
    }

    .form-wrap {
        padding: 24px 20px
    }
}

/* Contact layout — form + side info */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: start;
}

.info-col {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.info-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 20px 22px
}

.info-card h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65
}

.info-card a {
    color: var(--saffron);
    font-weight: 600
}

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

.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 8px 14px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    transition: border-color .18s, color .18s;
}

.soc-btn:hover {
    border-color: var(--saffron);
    color: var(--off);
    opacity: 1
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px
}

.qlink {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .86rem;
    color: var(--muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    transition: color .18s;
}

.qlink:last-child {
    border-bottom: none
}

.qlink:hover {
    color: var(--off);
    opacity: 1
}

@media(max-width:760px) {
    .contact-layout {
        grid-template-columns: 1fr
    }
}

/* ============================================================
   LEGAL PAGES (Terms, Privacy, Disclosure)
   ============================================================ */
.toc-wrap {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 24px 28px;
    margin: 28px 0;
}

.toc-wrap h3 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 14px
}

.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.toc-list a {
    font-size: .88rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    transition: color .18s;
}

.toc-list a:hover {
    color: var(--off);
    opacity: 1
}

.toc-num {
    font-size: .72rem;
    font-weight: 700;
    color: var(--muted2);
    width: 22px;
    flex-shrink: 0
}

/* Anchor offset for sticky nav scroll targets */
.section-anchor {
    display: block;
    visibility: hidden;
    margin-top: -80px;
    padding-top: 80px
}

/* Notice callouts */
.notice {
    background: rgba(249, 115, 22, .06);
    border: 1px solid rgba(249, 115, 22, .18);
    border-radius: var(--r2);
    padding: 20px 24px;
    margin: 18px 0;
    font-size: .9rem;
    color: var(--off);
    line-height: 1.75;
}

.notice strong {
    color: var(--saffron2)
}

.notice.red {
    background: rgba(239, 68, 68, .06);
    border-color: rgba(239, 68, 68, .2)
}

.notice.red strong {
    color: #fca5a5
}

.notice.green {
    background: rgba(34, 197, 94, .05);
    border-color: rgba(34, 197, 94, .15)
}

.notice.green strong {
    color: var(--green)
}

/* Prohibited conduct list */
.prohibited-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 16px;
}

.proh-row {
    background: var(--bg2);
    border: 1px solid rgba(239, 68, 68, .18);
    border-left: 3px solid var(--red);
    border-radius: var(--r2);
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.proh-row .proh-ic {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px
}

.proh-row h5 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px
}

.proh-row p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.6
}

/* Allowed / bulleted list */
.allowed-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
}

.allow-row {
    display: flex;
    gap: 10px;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.6;
    align-items: flex-start;
}

.allow-row .allow-ic {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 3px;
    font-weight: 700
}

/* Suspension / enforcement table */
.sus-tbl-wrap {
    overflow-x: auto;
    margin: 16px 0
}

.sus-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: .86rem
}

.sus-tbl th {
    padding: 10px 14px;
    text-align: left;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted2);
    border-bottom: 1px solid var(--border);
    background: var(--bg3);
}

.sus-tbl td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    vertical-align: top;
    line-height: 1.6;
}

.sus-tbl td:first-child {
    color: var(--off);
    font-weight: 600;
    font-size: .88rem
}

.sus-tbl tr:last-child td {
    border-bottom: none
}

.sev-warn {
    color: var(--gold);
    font-weight: 700
}

.sev-temp {
    color: var(--saffron2);
    font-weight: 700
}

.sev-perm {
    color: var(--red);
    font-weight: 700
}

/* Operator details box */
.operator-box {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--r2);
    padding: 22px 24px;
    margin-top: 16px;
}

.op-row {
    display: flex;
    gap: 10px;
    margin-bottom: 9px;
    font-size: .88rem;
    color: var(--muted);
}

.op-row:last-child {
    margin-bottom: 0
}

.op-label {
    color: var(--muted2);
    font-weight: 600;
    min-width: 130px;
    flex-shrink: 0;
    font-size: .82rem
}

.op-val {
    color: var(--off)
}

/* Legal link pills */
.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.llink {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 7px 14px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
    transition: border-color .18s, color .18s;
}

.llink:hover {
    border-color: var(--saffron);
    color: var(--off);
    opacity: 1
}

/* Contact box (icon + text, horizontal) */
.contact-box {
    background: rgba(249, 115, 22, .05);
    border: 1px solid rgba(249, 115, 22, .15);
    border-radius: var(--r2);
    padding: 24px;
    margin-top: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-box .ci {
    font-size: 24px;
    flex-shrink: 0
}

.contact-box h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px
}

.contact-box p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 6px
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.data-tbl-wrap {
    overflow-x: auto;
    margin: 18px 0
}

.data-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: .86rem
}

.data-tbl th {
    padding: 11px 14px;
    text-align: left;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted2);
    border-bottom: 1px solid var(--border);
    background: var(--bg3);
}

.data-tbl td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    vertical-align: top;
    line-height: 1.6;
}

.data-tbl td:first-child {
    color: var(--off);
    font-weight: 600;
    font-size: .88rem;
    white-space: nowrap
}

.data-tbl tr:last-child td {
    border-bottom: none
}

.tbl-yes {
    color: #4ade80;
    font-weight: 700
}

.tbl-no {
    color: var(--muted2)
}

/* Cookie type rows */
.cookie-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.ck-row {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 140px 1fr 120px;
    gap: 16px;
    align-items: center;
}

.ck-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white)
}

.ck-desc {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.55
}

.ck-state {
    font-size: .76rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    text-align: center
}

.ck-consent {
    background: rgba(34, 197, 94, .1);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, .2)
}

.ck-always {
    background: rgba(255, 255, 255, .06);
    color: var(--muted);
    border: 1px solid var(--border)
}

@media(max-width:560px) {
    .ck-row {
        grid-template-columns: 1fr;
        gap: 8px
    }
}

/* User rights cards */
.rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.right-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 16px 18px
}

.right-card h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.right-card p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.6
}

@media(max-width:520px) {
    .rights-grid {
        grid-template-columns: 1fr
    }
}

/* Third-party service rows */
.tp-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.tp-row {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tp-row .tp-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px
}

.tp-row h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px
}

.tp-row p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.6
}

.tp-row a {
    font-size: .8rem;
    font-weight: 600;
    color: var(--saffron);
    display: inline-block;
    margin-top: 6px
}

/* ============================================================
   MEET APP — scoped wrapper, not body-level.
   Keeps the private 1-on-1 video tool's layout, controls and
   socket logic fully intact while letting normal page content
   (intro, FAQ, footer) flow below it in the regular scroll
   flow instead of being hidden by a full-page fixed overlay.
   ============================================================ */

/* ============================================================
   COMPARISON PAGES — history block + ranked sites list
   (shared across chatroulette/chatrandom/monkey-app/emerald
   alternative pages)
   ============================================================ */
.history-block {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 22px 26px;
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hb-year {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--violet);
    letter-spacing: -.04em;
    flex-shrink: 0;
    line-height: 1;
}

.hb-text {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7
}

.hb-text strong {
    color: var(--off)
}

/* Ranked sites list */
.sites-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 22px;
    border: 1px solid var(--border);
    border-radius: var(--r2);
    overflow: hidden;
}

.site-row {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.site-row:last-child {
    border-bottom: none
}

.site-rank {
    width: 52px;
    flex-shrink: 0;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--muted2);
    border-right: 1px solid var(--border);
}

.site-row.top-pick .site-rank {
    background: rgba(249, 115, 22, .1);
    color: var(--saffron)
}

.site-body {
    flex: 1;
    padding: 18px 20px;
    background: var(--bg2)
}

.site-row.top-pick .site-body {
    background: rgba(249, 115, 22, .03)
}

.site-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    flex-wrap: wrap;
}

.site-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white)
}

.site-tag {
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 99px
}

.tag-best {
    background: rgba(249, 115, 22, .15);
    color: var(--saffron2);
    border: 1px solid rgba(249, 115, 22, .2);
}

.tag-good {
    background: rgba(255, 255, 255, .06);
    color: var(--muted);
    border: 1px solid var(--border);
}

.tag-india {
    background: rgba(20, 184, 166, .12);
    color: var(--teal);
    border: 1px solid rgba(20, 184, 166, .2);
}

.site-desc {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 10px
}

.site-pros {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.site-pro {
    font-size: .75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--muted);
}

.site-pro.good {
    color: #4ade80;
    border-color: rgba(74, 222, 128, .2);
    background: rgba(74, 222, 128, .06);
}

.site-pro.bad {
    color: #f87171;
    border-color: rgba(248, 113, 113, .2);
    background: rgba(248, 113, 113, .06);
}

@media(max-width:500px) {
    .site-rank {
        width: 40px;
        font-size: .9rem
    }
}

/* Red-accent variant for "why switch" cards on comparison pages */
.why-card.accent-red {
    border-left: 3px solid var(--red)
}

/* ============================================================
   COMPARISON PAGES — two-column contrast layouts
   (friction steps, approach comparisons)
   ============================================================ */
.contrast-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 22px;
}

.contrast-col {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 24px;
}

.contrast-col.accent-a {
    border-top: 3px solid #10b981
}

.contrast-col.accent-b {
    border-top: 3px solid var(--saffron)
}

.contrast-title {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contrast-title.a {
    color: #34d399
}

.contrast-title.b {
    color: var(--saffron2)
}

.cstep {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.5;
}

.cstep:last-child {
    margin-bottom: 0
}

.cstep .cn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.cstep .cn.grn {
    background: rgba(34, 197, 94, .15);
    color: #4ade80
}

.cstep .cn.done {
    background: rgba(16, 185, 129, .15);
    color: #34d399
}

@media(max-width:560px) {
    .contrast-compare {
        grid-template-columns: 1fr
    }
}

/* Approach comparison cards (e.g. interest tags vs language rooms) */
.approach-vs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}

.approach-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 22px;
}

.approach-card h3.a {
    color: #34d399
}

.approach-card h3.b {
    color: var(--saffron2)
}

.approach-card h3 {
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.approach-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.7
}

.approach-example {
    margin-top: 12px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 12px;
    font-size: .8rem;
    color: var(--muted2);
    line-height: 1.6;
}

.approach-example strong {
    color: var(--off)
}

@media(max-width:560px) {
    .approach-vs {
        grid-template-columns: 1fr
    }
}

/* ============================================================
   HELP CENTER ARTICLES — page header + numbered sections +
   rule cards. Reusable across all /help/ articles.
   ============================================================ */
.help-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 52px 24px 80px;
}

@media(max-width:600px) {
    .help-wrap {
        padding: 40px 20px 60px
    }
}

.help-header {
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.help-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249, 115, 22, .1);
    border: 1px solid rgba(249, 115, 22, .22);
    color: var(--saffron2);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.help-h1 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.04em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.help-meta {
    font-size: .82rem;
    color: var(--muted2)
}

.help-intro {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300;
    margin-top: 16px;
}

/* Numbered doc sections */
.doc-section {
    margin-bottom: 44px
}

.doc-section h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-section h2 span.docnum {
    font-size: .72rem;
    font-weight: 700;
    background: var(--saffron);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: .04em;
}

.doc-section p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 12px;
    font-weight: 300;
}

.doc-section p:last-child {
    margin-bottom: 0
}

.doc-section p strong {
    color: var(--off);
    font-weight: 600
}

/* Rule / info cards — color-coded left border */
.rule-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.rule-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--saffron);
    border-radius: 0 var(--r) var(--r) 0;
    padding: 16px 20px;
}

.rule-card h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rule-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0
}

.rule-card.red {
    border-left-color: var(--red)
}

.rule-card.green {
    border-left-color: var(--green)
}

/* ============================================================
   HELP CENTER CATEGORY INDEX — card grid layout.
   Reusable for /help/, /help/technical/, /help/privacy/,
   /help/safety/.
   ============================================================ */
.help-index-banner {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-left: 4px solid var(--saffron);
    border-radius: 0 var(--r2) var(--r2) 0;
    padding: 22px 26px;
    margin: 24px 0 8px;
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.7;
}

.help-index-banner strong {
    color: var(--saffron2)
}

.help-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.help-card {
    border: 1px solid var(--border);
    background: var(--bg2);
    padding: 20px 22px;
    border-radius: var(--r2);
    transition: border-color .2s, transform .2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.help-card:hover {
    transform: translateY(-2px);
    border-color: var(--saffron);
    opacity: 1
}

.help-card h3 {
    margin: 0 0 8px;
    color: var(--saffron2);
    font-size: 1rem;
    font-weight: 700;
}

.help-card p {
    margin: 0;
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}

@media(max-width:560px) {
    .help-card-grid {
        grid-template-columns: 1fr
    }
}
/* ============================================================
   HELP CENTER MAIN INDEX — search hero + silo sections
   ============================================================ */
.help-search-hero {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 64px 24px;
    text-align: center;
}

.help-search-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.03em;
    margin-bottom: 28px;
}

.help-search-wrap {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

.help-search-wrap input {
    width: 100%;
    padding: 16px 130px 16px 20px;
    border-radius: 99px;
    border: 1px solid var(--border2);
    background: var(--bg3);
    color: var(--off);
    font-size: .95rem;
    font-family: var(--font);
    outline: none;
}

.help-search-wrap input::placeholder {
    color: var(--muted2)
}

.help-search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 22px;
    border: none;
    border-radius: 99px;
    background: var(--saffron);
    color: var(--white);
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    font-family: var(--font);
}

.help-search-btn:hover {
    opacity: .9
}

.help-silo-grid {
    max-width: 1080px;
    margin: 56px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

@media(max-width:768px) {
    .help-silo-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

.help-silo {
    display: flex;
    gap: 16px;
}

.help-silo-icon {
    width: 46px;
    height: 46px;
    background: rgba(249, 115, 22, .12);
    border: 1px solid rgba(249, 115, 22, .25);
    color: var(--saffron2);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.help-silo-info h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.help-silo-links {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

.help-silo-links li {
    margin-bottom: 9px;
}

.help-silo-links a {
    font-size: .87rem;
    color: var(--muted);
    transition: color .18s;
}

.help-silo-links a:hover {
    color: var(--saffron2);
    opacity: 1;
}

.help-silo-viewall {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--saffron);
}

/* ============================================================
   BLOG INDEX — full article grid with images
   ============================================================ */
.blog-index-hero {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 64px 24px 48px;
    text-align: center;
}

.blog-index-hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.03em;
    margin-bottom: 14px;
}

.blog-index-hero p {
    max-width: 640px;
    margin: 0 auto;
    font-size: .98rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
}

.blog-index-wrap {
    max-width: 1140px;
    margin: 56px auto;
    padding: 0 24px;
}

.blog-index-intro {
    max-width: 720px;
    margin-bottom: 44px;
}

.blog-index-intro p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 12px;
}

.article-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.article-card-full {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .2s, transform .2s;
}

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

.article-card-full .img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--bg3);
}

.article-card-full .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.article-card-full:hover .img-wrap img {
    transform: scale(1.05);
}

.article-card-full .card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card-full .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.article-card-full .card-tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--saffron2);
    background: rgba(249, 115, 22, .1);
    border: 1px solid rgba(249, 115, 22, .2);
    padding: 3px 10px;
    border-radius: 99px;
}

.article-card-full .read-time {
    font-size: .74rem;
    color: var(--muted2);
}

.article-card-full h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 10px;
}

.article-card-full p {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.article-card-full .card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.article-read-btn {
    font-size: .82rem;
    font-weight: 700;
    color: var(--saffron);
}

.article-author {
    font-size: .72rem;
    color: var(--muted2);
}

.article-author strong {
    color: var(--muted)
}

/* ============================================================
   PRIVACY SCORECARD — interactive quiz component
   ============================================================ */
.quiz-card {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--r3);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 640px;
    margin: 0 auto;
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
    animation: fadeUp .4s ease;
}

.quiz-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 8px;
}

.quiz-progress {
    font-size: .76rem;
    color: var(--muted2);
    margin-bottom: 18px;
    font-weight: 600;
}

.quiz-options {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.quiz-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 99px;
    font-weight: 700;
    font-size: .92rem;
    font-family: var(--font);
    transition: transform .18s, opacity .18s;
}

.quiz-btn:hover {
    transform: scale(1.04);
    opacity: .92
}

.quiz-btn.good {
    background: var(--saffron);
    color: var(--white)
}

.quiz-btn.bad {
    background: var(--surface);
    color: var(--muted);
    border: 1px solid var(--border2)
}

#quiz-results {
    display: none;
    text-align: center;
}

.score-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 18px auto;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
}

.score-text {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto;
}

.score-advice {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 20px 24px;
    margin-top: 24px;
    text-align: left;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
}

.score-advice strong {
    color: var(--saffron2)
}

.score-retake {
    margin-top: 20px;
    background: none;
    border: 1px solid var(--border2);
    color: var(--muted);
    padding: 10px 22px;
    border-radius: 99px;
    font-weight: 600;
    font-size: .85rem;
    font-family: var(--font);
}

.score-retake:hover {
    border-color: var(--saffron);
    color: var(--off)
}

/* ============================================================
   ICEBREAKER LISTS — grouped category sections
   ============================================================ */
.icebreaker-category {
    margin: 32px 0;
}

.icebreaker-category h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icebreaker-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.icebreaker-list li {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 12px 18px;
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.6;
}

.icebreaker-list li::marker {
    color: var(--saffron2)
}

/* ============================================================
   CHATROOMS PAGE — centered card, dense room-tile grid
   (recreates the old layout, restyled to dark/saffron theme)
   ============================================================ */
.rooms-hero {
    background:
        radial-gradient(ellipse 70% 60% at 30% 20%, rgba(249, 115, 22, .14) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(139, 92, 246, .12) 0%, transparent 60%),
        var(--bg);
    min-height: 100vh;
    padding: 48px 20px 80px;
    display: flex;
    justify-content: center;
}

.rooms-card {
    width: 100%;
    max-width: 820px;
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--r3);
    padding: 40px;
    box-shadow: var(--shadow);
}

.rooms-card h1 {
    text-align: center;
    color: var(--white);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 8px;
}

.rooms-sub {
    text-align: center;
    color: var(--muted);
    font-size: .92rem;
    margin-bottom: 28px;
}

.rooms-section-title {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--saffron2);
    margin: 28px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rooms-section-title:first-of-type {
    margin-top: 4px
}

.room-tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
}

.room-tile {
    padding: 14px 10px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--off);
    font-size: .88rem;
    font-weight: 600;
    transition: transform .18s, border-color .18s, background .18s;
}

.room-tile:hover {
    background: var(--surface);
    border-color: var(--saffron);
    transform: translateY(-2px);
    opacity: 1;
}

.room-tile .rt-ic {
    font-size: 1.15rem;
    flex-shrink: 0
}

.room-tile.rt-primary {
    border-color: rgba(249, 115, 22, .4);
    background: rgba(249, 115, 22, .08);
}

.rooms-back-btn {
    margin-top: 30px;
    width: 100%;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--border2);
    color: var(--off);
    font-weight: 700;
    border-radius: var(--r);
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: .92rem;
    transition: border-color .18s, background .18s;
}

.rooms-back-btn:hover {
    border-color: var(--saffron);
    background: var(--bg3);
    opacity: 1;
}

.rooms-note {
    background: rgba(249, 115, 22, .06);
    border: 1px solid rgba(249, 115, 22, .18);
    border-radius: var(--r2);
    padding: 16px 18px;
    margin: 20px 0 4px;
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}

.rooms-note strong {
    color: var(--saffron2)
}

@media (max-width: 560px) {
    .rooms-card {
        padding: 26px 20px
    }

    .room-tile-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr))
    }
}