/* =====================================================
   HIREDAI USER GUIDE — Premium Edition
   Matches site aesthetic: dark glass + lime/cyan accents
   Geist + Instrument Serif + JetBrains Mono typography
   All variables scoped to .guide-wrapper.
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500;600&family=Geist:wght@300;400;500;600;700;800;900&display=swap');

/* ============ GUIDE ROOT ============ */
.guide-wrapper {
    /* Brand tokens (scoped) */
    --g-bg: #07070b;
    --g-surface: rgba(255, 255, 255, 0.025);
    --g-surface-2: rgba(255, 255, 255, 0.045);
    --g-surface-3: rgba(255, 255, 255, 0.07);
    --g-surface-hover: rgba(255, 255, 255, 0.06);

    --g-border: rgba(255, 255, 255, 0.08);
    --g-border-strong: rgba(255, 255, 255, 0.16);
    --g-border-accent: rgba(197, 251, 69, 0.3);

    --g-text: #f5f5f7;
    --g-text-2: rgba(245, 245, 247, 0.72);
    --g-text-3: rgba(245, 245, 247, 0.5);
    --g-text-4: rgba(245, 245, 247, 0.35);

    --g-accent: #c5fb45;
    --g-accent-2: #00e5ff;
    --g-accent-3: #7c5cff;
    --g-warm: #fbbf24;

    --g-accent-glow: rgba(197, 251, 69, 0.25);
    --g-accent-subtle: rgba(197, 251, 69, 0.08);
    --g-cyan-subtle: rgba(0, 229, 255, 0.08);
    --g-violet-subtle: rgba(124, 92, 255, 0.08);

    --g-grad-primary: linear-gradient(135deg, var(--g-accent) 0%, var(--g-accent-2) 100%);
    --g-grad-secondary: linear-gradient(135deg, var(--g-accent-2) 0%, var(--g-accent-3) 100%);
    --g-grad-warm: linear-gradient(135deg, var(--g-warm) 0%, var(--g-accent) 100%);
    --g-grad-hero: linear-gradient(135deg, var(--g-accent-3) 0%, var(--g-accent-2) 50%, var(--g-accent) 100%);

    --g-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --g-shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4);
    --g-shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);

    --g-radius-sm: 10px;
    --g-radius-md: 14px;
    --g-radius-lg: 20px;
    --g-radius-xl: 24px;
    --g-radius-pill: 999px;

    --g-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --g-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --g-fast: 0.2s var(--g-ease);
    --g-normal: 0.3s var(--g-ease);
    --g-slow: 0.5s var(--g-ease);

    /* Page layout */
    position: relative;
    margin: 0;
    padding: 100px 2.5rem 2.5rem;
    min-height: 100vh;
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--g-text);
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124, 92, 255, 0.18), transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(0, 229, 255, 0.08), transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 70%, rgba(197, 251, 69, 0.08), transparent 50%),
        var(--g-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

/* Scoped reset */
.guide-wrapper *,
.guide-wrapper *::before,
.guide-wrapper *::after {
    box-sizing: border-box;
}

/* Subtle grid backdrop */
.guide-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: none;
    opacity: 1;
}

/* Soft ambient lime glow in corner */
.guide-wrapper::after {
    content: '';
    position: fixed;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 251, 69, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: guidePulse 12s ease-in-out infinite alternate;
}

@keyframes guidePulse {
    from { opacity: 0.4; transform: scale(1); }
    to { opacity: 0.7; transform: scale(1.1); }
}

/* Neutralize legacy keyframes */
@keyframes gridDrift {
    0% { transform: none; }
    100% { transform: none; }
}

@keyframes pulseGlow {
    from { opacity: 0; }
    to { opacity: 0; }
}

@keyframes titlePulse {
    from { filter: none; }
    to { filter: none; }
}

/* ============ LAYOUT GRID ============ */
.guide-wrapper .guide-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ============ SIDEBAR — Progress Tracker ============ */
.progress-tracker {
    position: sticky;
    top: 110px;
    background: var(--g-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-xl);
    padding: 28px 24px;
    box-shadow: var(--g-shadow-md);
    height: fit-content;
    animation: guideSlideInLeft 0.8s var(--g-ease);
    overflow: hidden;
}

.progress-tracker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--g-accent), var(--g-accent-2), transparent);
    opacity: 0.6;
}

.progress-tracker h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 20px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--g-accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-tracker h2::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--g-accent);
}

.progress-container {
    margin-bottom: 12px;
    background: var(--g-surface-2);
    border-radius: var(--g-radius-pill);
    height: 8px;
    overflow: hidden;
    border: 1px solid var(--g-border);
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--g-grad-primary);
    border-radius: var(--g-radius-pill);
    transition: width 1s var(--g-ease);
    position: relative;
    box-shadow: 0 0 12px var(--g-accent-glow);
}

.progress-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: guideShimmer 2.5s ease-in-out infinite;
    border-radius: var(--g-radius-pill);
}

@keyframes guideShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.progress-text {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: var(--g-accent);
    text-align: right;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

#progress-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#progress-list li {
    font-family: 'Geist', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--g-text-2);
    padding: 10px 12px;
    border-radius: var(--g-radius-sm);
    margin-bottom: 4px;
    transition: all var(--g-fast);
    cursor: pointer;
    border: 1px solid transparent;
    letter-spacing: -0.005em;
}

#progress-list li:hover {
    color: var(--g-text);
    background: var(--g-surface-2);
    border-color: var(--g-border);
    transform: translateX(2px);
}

#progress-list li.completed {
    color: var(--g-accent);
}

#progress-list li.completed::before {
    content: '✓ ';
    font-weight: 700;
}

/* Sidebar Quick Links */
.sidebar-quick-links {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--g-border);
}

.sidebar-quick-links h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--g-text-3);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-quick-links h3::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--g-text-3);
}

.sidebar-quick-links a {
    display: block;
    padding: 9px 12px;
    color: var(--g-text-2);
    text-decoration: none;
    font-family: 'Geist', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: var(--g-radius-sm);
    transition: all var(--g-fast);
    margin-bottom: 2px;
    letter-spacing: -0.005em;
}

.sidebar-quick-links a:hover {
    color: var(--g-accent);
    background: var(--g-surface-2);
    transform: translateX(2px);
}

/* ============ MAIN CONTENT ============ */
.guide-content {
    position: relative;
    min-width: 0;
}

/* ============ WELCOME SECTION ============ */
.welcome-section {
    background: var(--g-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-xl);
    padding: 3.5rem 4rem;
    margin-bottom: 2rem;
    box-shadow: var(--g-shadow-md);
    animation: guideFadeUp 0.8s var(--g-ease);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--g-accent), var(--g-accent-2), transparent);
    opacity: 0.6;
}

.welcome-section::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 251, 69, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--g-text-2);
    background: var(--g-surface);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-pill);
    padding: 6px 14px 6px 10px;
    margin: 0 auto 24px;
    width: fit-content;
}

.welcome-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--g-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--g-accent);
    animation: badgePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.guide-content h1 {
    font-family: 'Geist', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0 0 8px;
    text-align: center;
    color: var(--g-text);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    filter: none;
    animation: none;
    text-shadow: none;
}

/* Optional italic accent — wrap inner words in <em> */
.guide-content h1 em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    background: var(--g-grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.05em;
}

.version {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--g-text-3);
    text-align: center;
    margin: 0 0 28px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.welcome-text p {
    color: var(--g-text-2);
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    padding: 24px 28px;
    background: var(--g-surface-2);
    border-radius: var(--g-radius-md);
    border: 1px solid var(--g-border);
    margin: 0 auto 32px;
    max-width: 800px;
    text-align: center;
    letter-spacing: -0.005em;
}

/* ============ PLATFORM HIGHLIGHTS ============ */
.platform-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.highlight-card {
    background: var(--g-surface-2);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--g-normal);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--g-grad-primary);
    opacity: 0;
    transition: opacity var(--g-normal);
}

.highlight-card:hover {
    background: var(--g-surface-3);
    border-color: var(--g-border-strong);
    transform: translateY(-3px);
    box-shadow: var(--g-shadow-sm);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.highlight-card h4 {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--g-text);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.highlight-card p {
    font-family: 'Geist', sans-serif;
    font-size: 12.5px;
    color: var(--g-text-3);
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.005em;
}

/* ============ ROLE SELECTOR ============ */
.role-selector-wrapper {
    text-align: center;
}

.role-selector-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--g-text-3);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.role-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 14px 0 0;
}

.role-label {
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--g-text-3);
    transition: all var(--g-fast);
    cursor: pointer;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.role-label.active {
    color: var(--g-text);
}

.role-label-applicant.active {
    color: var(--g-accent-2);
}

.role-label-recruiter.active {
    color: var(--g-accent);
}

.role-emoji {
    font-size: 16px;
}

.toggle-switch {
    position: relative;
    width: 64px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
    z-index: 1;
}

.slider {
    position: absolute;
    inset: 0;
    background: var(--g-surface-3);
    border: 1px solid var(--g-border-strong);
    border-radius: var(--g-radius-pill);
    transition: all var(--g-normal);
}

.slider::before {
    content: '';
    position: absolute;
    height: 24px;
    width: 24px;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--g-accent-2);
    border-radius: 50%;
    transition: all var(--g-normal) var(--g-spring);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
}

input:checked + .slider {
    border-color: var(--g-accent);
}

input:checked + .slider::before {
    transform: translateY(-50%) translateX(30px);
    background: var(--g-accent);
    box-shadow: 0 0 16px var(--g-accent-glow);
}

/* ============ ROLE SECTIONS ============ */
.role-section {
    background: var(--g-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--g-shadow-md);
    animation: guideFadeUp 0.6s var(--g-ease);
    position: relative;
    overflow: hidden;
}

.role-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--g-accent), var(--g-accent-2), transparent);
    opacity: 0.6;
}

.role-section[style*="none"] {
    display: none !important;
}

.role-title {
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-weight: 700;
    padding: 18px 28px;
    text-align: center;
    border-radius: var(--g-radius-md);
    margin: 0 0 16px;
    color: #0a0a0f;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
}

.role-title::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.role-title:hover::before {
    transform: translateX(100%);
}

.recruiter {
    background: var(--g-accent);
    box-shadow: 0 8px 32px var(--g-accent-glow);
}

.applicant {
    background: var(--g-accent-2);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.3);
}

.role-intro {
    text-align: center;
    color: var(--g-text-2);
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto 32px;
    max-width: 700px;
    letter-spacing: -0.005em;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    background: var(--g-surface-2);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--g-accent-2), transparent);
    opacity: 0.6;
}

.how-it-works-title {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 28px;
    color: var(--g-text);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    letter-spacing: -0.02em;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.how-step {
    text-align: center;
    padding: 8px;
}

.how-step-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--g-accent);
    color: #0a0a0f;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 0 20px var(--g-accent-glow);
    line-height: 1;
}

.how-step h4 {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--g-text);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.how-step p {
    font-family: 'Geist', sans-serif;
    font-size: 12.5px;
    color: var(--g-text-3);
    line-height: 1.55;
    margin: 0;
    letter-spacing: -0.005em;
}

/* ============ ACCORDION ============ */
.accordion-item {
    margin-bottom: 8px;
}

.accordion-header {
    width: 100%;
    padding: 18px 56px 18px 20px;
    background: var(--g-surface-2);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-md);
    color: var(--g-text);
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--g-fast);
    text-align: left;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 14px;
}

.accordion-icon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--g-accent);
    background: var(--g-accent-subtle);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(197, 251, 69, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--g-fast);
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 400;
    color: var(--g-accent);
    transition: transform var(--g-normal) var(--g-spring);
    line-height: 1;
}

.accordion-header:hover {
    background: var(--g-surface-3);
    border-color: var(--g-border-strong);
    box-shadow: var(--g-shadow-sm);
    transform: translateY(-1px);
}

.accordion-header:hover .accordion-icon {
    background: rgba(197, 251, 69, 0.15);
    border-color: rgba(197, 251, 69, 0.4);
}

.accordion-header.active {
    background: var(--g-surface-3);
    border-color: var(--g-accent);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-header.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.accordion-content {
    display: none;
    padding: 24px 28px;
    background: var(--g-surface-2);
    border: 1px solid var(--g-accent);
    border-top: none;
    border-radius: 0 0 var(--g-radius-md) var(--g-radius-md);
    color: var(--g-text-2);
    font-family: 'Geist', sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    margin-top: -1px;
    animation: guideExpandIn 0.3s var(--g-ease);
    letter-spacing: -0.005em;
}

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

.accordion-content p {
    margin: 0 0 16px;
}

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

.accordion-content ol {
    margin: 8px 0 16px;
    padding-left: 22px;
}

.accordion-content ol li::marker {
    color: var(--g-accent);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.accordion-content ul {
    margin: 8px 0 16px;
    padding-left: 22px;
    list-style: none;
}

.accordion-content ul li {
    position: relative;
    padding-left: 6px;
}

.accordion-content ul li::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 0.7em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--g-accent);
}

.accordion-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.accordion-content a {
    color: var(--g-accent);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(197, 251, 69, 0.4);
    padding-bottom: 1px;
    transition: all var(--g-fast);
}

.accordion-content a:hover {
    color: var(--g-text);
    border-bottom-color: var(--g-text);
}

.accordion-content strong {
    color: var(--g-text);
    font-weight: 700;
}

.accordion-content em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 1.05em;
    color: var(--g-text);
}

/* Content Tips */
.content-tip {
    background: var(--g-accent-subtle);
    border: 1px solid rgba(197, 251, 69, 0.2);
    border-left: 3px solid var(--g-accent);
    border-radius: var(--g-radius-sm);
    padding: 16px 20px;
    margin-top: 16px;
    font-family: 'Geist', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--g-text-2);
    letter-spacing: -0.005em;
}

.content-tip strong {
    color: var(--g-accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-block;
    margin-right: 8px;
}

/* Content Callout */
.content-callout {
    background: var(--g-cyan-subtle);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: var(--g-radius-md);
    margin-top: 16px;
    overflow: hidden;
}

.callout-header {
    background: rgba(0, 229, 255, 0.08);
    padding: 12px 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--g-accent-2);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}

.callout-body {
    padding: 16px 18px;
}

.callout-body p {
    margin: 0;
    font-family: 'Geist', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--g-text-2);
    letter-spacing: -0.005em;
}

/* ============ SECURITY SECTION ============ */
.security-section {
    background: var(--g-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--g-shadow-md);
    margin-top: 2rem;
    animation: guideFadeUp 0.8s var(--g-ease) 0.1s both;
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--g-accent-2), transparent);
    opacity: 0.6;
}

.security-title {
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 8px;
    color: var(--g-text);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    letter-spacing: -0.02em;
}

.security-intro {
    text-align: center;
    color: var(--g-text-2);
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto 28px;
    max-width: 700px;
    letter-spacing: -0.005em;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.security-card {
    background: var(--g-surface-2);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-md);
    padding: 22px;
    transition: all var(--g-normal);
}

.security-card:hover {
    background: var(--g-surface-3);
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--g-shadow-sm);
}

.security-card-icon {
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.security-card h4 {
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--g-text);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.security-card p {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    color: var(--g-text-2);
    line-height: 1.6;
    margin: 0;
    letter-spacing: -0.005em;
}

.security-card a {
    color: var(--g-accent-2);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(0, 229, 255, 0.4);
    transition: all var(--g-fast);
}

.security-card a:hover {
    color: var(--g-text);
    border-bottom-color: var(--g-text);
}

/* ============ FAQ SECTION ============ */
.faq-section {
    background: var(--g-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--g-shadow-md);
    margin-top: 2rem;
    animation: guideFadeUp 0.8s var(--g-ease) 0.2s both;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--g-warm), transparent);
    opacity: 0.6;
}

.faq-title {
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 24px;
    color: var(--g-text);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    letter-spacing: -0.02em;
}

#faq-dropdown {
    width: 100%;
    padding: 14px 48px 14px 18px;
    background-color: var(--g-surface-2);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-md);
    color: var(--g-text);
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all var(--g-fast);
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M3 6l5 5 5-5" stroke="%23c5fb45" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    letter-spacing: -0.005em;
}

#faq-dropdown option {
    background: #0c0c14;
    color: var(--g-text);
}

#faq-dropdown:hover {
    border-color: var(--g-border-strong);
    background-color: var(--g-surface-3);
}

#faq-dropdown:focus {
    outline: none;
    border-color: rgba(197, 251, 69, 0.5);
    box-shadow: 0 0 0 3px rgba(197, 251, 69, 0.12);
}

#faq-answer {
    margin-top: 16px;
    padding: 20px 24px;
    background: var(--g-surface-2);
    border: 1px solid var(--g-border);
    border-left: 3px solid var(--g-accent);
    border-radius: var(--g-radius-md);
    color: var(--g-text-2);
    font-family: 'Geist', sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    display: none;
    letter-spacing: -0.005em;
}

/* ============ HELP CTA SECTION ============ */
.help-cta-section {
    background: var(--g-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-xl);
    padding: 3rem 2.5rem;
    margin-top: 2rem;
    text-align: center;
    box-shadow: var(--g-shadow-md);
    animation: guideFadeUp 0.8s var(--g-ease) 0.3s both;
    position: relative;
    overflow: hidden;
}

.help-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--g-accent), var(--g-accent-2), transparent);
    opacity: 0.6;
}

.help-cta-content h3 {
    font-family: 'Geist', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--g-text);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.help-cta-content p {
    color: var(--g-text-2);
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 28px;
    letter-spacing: -0.005em;
}

.help-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.help-cta-btn {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 14px 28px;
    border-radius: var(--g-radius-pill);
    text-decoration: none;
    transition: all var(--g-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.help-cta-btn.primary {
    background: var(--g-accent);
    color: #0a0a0f;
    box-shadow: 0 4px 20px var(--g-accent-glow);
}

.help-cta-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.help-cta-btn.primary:hover::before {
    left: 100%;
}

.help-cta-btn.primary:hover {
    background: #d4ff5c;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(197, 251, 69, 0.45);
}

.help-cta-btn.secondary {
    background: transparent;
    border: 1px solid var(--g-border-strong);
    color: var(--g-text-2);
}

.help-cta-btn.secondary:hover {
    background: var(--g-surface-2);
    border-color: var(--g-accent);
    color: var(--g-accent);
    transform: translateY(-2px);
}

/* ============ ANIMATIONS ============ */
@keyframes guideFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes guideSlideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .guide-wrapper .guide-container {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
    }

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

    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 960px) {
    .guide-wrapper {
        padding: 1.5rem;
    }

    .guide-wrapper .guide-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .progress-tracker {
        position: static;
        margin-bottom: 1rem;
    }

    .welcome-section {
        padding: 2.5rem 2rem;
    }

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

@media (max-width: 768px) {
    .guide-wrapper {
        margin-top: 80px;
        padding: 1rem;
    }

    .guide-content h1 {
        font-size: 2rem;
    }

    .platform-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr 1fr;
    }

    .welcome-section,
    .role-section,
    .faq-section,
    .security-section,
    .help-cta-section {
        padding: 1.75rem 1.5rem;
    }

    .role-title {
        font-size: 17px;
        padding: 14px 20px;
    }

    .accordion-header {
        font-size: 14px;
        padding: 16px 48px 16px 16px;
    }

    .accordion-content {
        padding: 18px 20px;
    }

    .role-selector {
        gap: 14px;
    }

    .role-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .guide-content h1 {
        font-size: 1.6rem;
    }

    .platform-highlights {
        grid-template-columns: 1fr;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .welcome-section,
    .role-section,
    .faq-section,
    .security-section,
    .help-cta-section {
        padding: 1.5rem 1.25rem;
    }

    .role-title {
        font-size: 16px;
    }

    .faq-title,
    .security-title {
        font-size: 18px;
    }

    .progress-tracker {
        padding: 1.25rem;
    }

    .welcome-text p {
        padding: 16px 18px;
        font-size: 14px;
    }

    .help-cta-buttons {
        flex-direction: column;
    }

    .help-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
    .guide-wrapper *,
    .guide-wrapper *::before,
    .guide-wrapper *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.accordion-header:focus-visible,
#faq-dropdown:focus-visible,
.toggle-switch input:focus-visible + .slider,
.help-cta-btn:focus-visible,
.sidebar-quick-links a:focus-visible {
    outline: 2px solid var(--g-accent);
    outline-offset: 3px;
}

.guide-wrapper ::selection {
    background: var(--g-accent);
    color: #0a0a0f;
}

/* ============ PRINT ============ */
@media print {
    .guide-wrapper::before,
    .guide-wrapper::after,
    .progress-tracker,
    .help-cta-section {
        display: none !important;
    }

    .guide-wrapper .guide-container {
        grid-template-columns: 1fr;
    }

    .welcome-section,
    .role-section,
    .faq-section,
    .security-section {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}
/* =====================================================
   LIGHT MODE OVERRIDES — USER GUIDE
   ===================================================== */

/* Flip the variable palette */
html[data-theme="light"] .guide-wrapper {
    --g-bg: #ffffff;
    --g-surface: rgba(0, 0, 0, 0.025);
    --g-surface-2: rgba(0, 0, 0, 0.045);
    --g-surface-3: rgba(0, 0, 0, 0.07);
    --g-surface-hover: rgba(0, 0, 0, 0.06);

    --g-border: rgba(0, 0, 0, 0.08);
    --g-border-strong: rgba(0, 0, 0, 0.16);

    --g-text: #0a0a0f;
    --g-text-2: rgba(10, 10, 15, 0.72);
    --g-text-3: rgba(10, 10, 15, 0.5);
    --g-text-4: rgba(10, 10, 15, 0.35);

    --g-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
    --g-shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
    --g-shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
}

/* Page bg has hardcoded radials + var(--g-bg) — override the full stack */
html[data-theme="light"] .guide-wrapper {
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124, 92, 255, 0.10), transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(0, 229, 255, 0.05), transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 70%, rgba(197, 251, 69, 0.08), transparent 50%),
        #fafafa !important;
    color: #0a0a0f !important;
}

/* Grid backdrop — invert lines */
html[data-theme="light"] .guide-wrapper::before {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px) !important;
}

/* Ambient corner glow — soften for white */
html[data-theme="light"] .guide-wrapper::after {
    background: radial-gradient(circle, rgba(197, 251, 69, 0.08) 0%, transparent 70%) !important;
}

/* ============ SIDEBAR — PROGRESS TRACKER ============ */
html[data-theme="light"] .guide-wrapper .progress-tracker {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .guide-wrapper .progress-tracker h2 {
    color: #5a8c00 !important;
}

html[data-theme="light"] .guide-wrapper .progress-tracker h2::before {
    background: #5a8c00 !important;
}

html[data-theme="light"] .guide-wrapper .progress-container {
    background: rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .guide-wrapper .progress-text {
    color: #5a8c00 !important;
}

html[data-theme="light"] .guide-wrapper #progress-list li {
    color: rgba(10, 10, 15, 0.72) !important;
}

html[data-theme="light"] .guide-wrapper #progress-list li:hover {
    color: #0a0a0f !important;
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .guide-wrapper #progress-list li.completed {
    color: #5a8c00 !important;
}

/* Sidebar Quick Links */
html[data-theme="light"] .guide-wrapper .sidebar-quick-links {
    border-top-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .guide-wrapper .sidebar-quick-links h3 {
    color: rgba(10, 10, 15, 0.55) !important;
}

html[data-theme="light"] .guide-wrapper .sidebar-quick-links h3::before {
    background: rgba(10, 10, 15, 0.55) !important;
}

html[data-theme="light"] .guide-wrapper .sidebar-quick-links a {
    color: rgba(10, 10, 15, 0.72) !important;
}

html[data-theme="light"] .guide-wrapper .sidebar-quick-links a:hover {
    color: #5a8c00 !important;
    background: rgba(0, 0, 0, 0.04) !important;
}

/* ============ WELCOME SECTION ============ */
html[data-theme="light"] .guide-wrapper .welcome-section {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .guide-wrapper .welcome-section::after {
    background: radial-gradient(circle, rgba(197, 251, 69, 0.12) 0%, transparent 60%) !important;
}

html[data-theme="light"] .guide-wrapper .welcome-badge {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: rgba(10, 10, 15, 0.72) !important;
}

html[data-theme="light"] .guide-wrapper .guide-content h1 {
    color: #0a0a0f !important;
}

html[data-theme="light"] .guide-wrapper .version {
    color: rgba(10, 10, 15, 0.55) !important;
}

html[data-theme="light"] .guide-wrapper .welcome-text p {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: rgba(10, 10, 15, 0.72) !important;
}

/* ============ PLATFORM HIGHLIGHTS ============ */
html[data-theme="light"] .guide-wrapper .highlight-card {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .guide-wrapper .highlight-card:hover {
    background: rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(0, 0, 0, 0.16) !important;
}

html[data-theme="light"] .guide-wrapper .highlight-card h4 {
    color: #0a0a0f !important;
}

html[data-theme="light"] .guide-wrapper .highlight-card p {
    color: rgba(10, 10, 15, 0.55) !important;
}

/* ============ ROLE SELECTOR (Toggle) ============ */
html[data-theme="light"] .guide-wrapper .role-selector-label {
    color: rgba(10, 10, 15, 0.55) !important;
}

html[data-theme="light"] .guide-wrapper .role-label {
    color: rgba(10, 10, 15, 0.5) !important;
}

html[data-theme="light"] .guide-wrapper .role-label.active {
    color: #0a0a0f !important;
}

html[data-theme="light"] .guide-wrapper .role-label-applicant.active {
    color: #007a8c !important;
}

html[data-theme="light"] .guide-wrapper .role-label-recruiter.active {
    color: #5a8c00 !important;
}

html[data-theme="light"] .guide-wrapper .slider {
    background: rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

/* Toggle thumb keeps lime/cyan — already correct on both modes */

/* ============ ROLE SECTIONS ============ */
html[data-theme="light"] .guide-wrapper .role-section {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Role title pills (lime/cyan with dark text) — keep as is, dark text on bright is already correct */

html[data-theme="light"] .guide-wrapper .role-intro {
    color: rgba(10, 10, 15, 0.72) !important;
}

/* ============ HOW IT WORKS ============ */
html[data-theme="light"] .guide-wrapper .how-it-works {
    background: rgba(0, 0, 0, 0.025) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .guide-wrapper .how-it-works-title {
    color: #0a0a0f !important;
}

html[data-theme="light"] .guide-wrapper .how-step h4 {
    color: #0a0a0f !important;
}

html[data-theme="light"] .guide-wrapper .how-step p {
    color: rgba(10, 10, 15, 0.55) !important;
}

/* ============ ACCORDION ============ */
html[data-theme="light"] .guide-wrapper .accordion-header {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #0a0a0f !important;
}

html[data-theme="light"] .guide-wrapper .accordion-header:hover {
    background: rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(0, 0, 0, 0.16) !important;
}

html[data-theme="light"] .guide-wrapper .accordion-header.active {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: #c5fb45 !important;
}

html[data-theme="light"] .guide-wrapper .accordion-icon {
    background: rgba(197, 251, 69, 0.15) !important;
    border-color: rgba(106, 158, 0, 0.3) !important;
    color: #5a8c00 !important;
}

html[data-theme="light"] .guide-wrapper .accordion-header:hover .accordion-icon {
    background: rgba(197, 251, 69, 0.25) !important;
    border-color: rgba(106, 158, 0, 0.5) !important;
}

html[data-theme="light"] .guide-wrapper .accordion-header::after {
    color: #5a8c00 !important;
}

html[data-theme="light"] .guide-wrapper .accordion-content {
    background: rgba(0, 0, 0, 0.025) !important;
    border-color: #c5fb45 !important;
    color: rgba(10, 10, 15, 0.72) !important;
}

html[data-theme="light"] .guide-wrapper .accordion-content ol li::marker {
    color: #5a8c00 !important;
}

html[data-theme="light"] .guide-wrapper .accordion-content ul li::before {
    background: #5a8c00 !important;
}

html[data-theme="light"] .guide-wrapper .accordion-content a {
    color: #5a8c00 !important;
    border-bottom-color: rgba(106, 158, 0, 0.4) !important;
}

html[data-theme="light"] .guide-wrapper .accordion-content a:hover {
    color: #0a0a0f !important;
    border-bottom-color: #0a0a0f !important;
}

html[data-theme="light"] .guide-wrapper .accordion-content strong {
    color: #0a0a0f !important;
}

html[data-theme="light"] .guide-wrapper .accordion-content em {
    color: #0a0a0f !important;
}

/* Content Tips */
html[data-theme="light"] .guide-wrapper .content-tip {
    background: rgba(197, 251, 69, 0.12) !important;
    border-color: rgba(106, 158, 0, 0.3) !important;
    border-left-color: #c5fb45 !important;
    color: rgba(10, 10, 15, 0.72) !important;
}

html[data-theme="light"] .guide-wrapper .content-tip strong {
    color: #4a6e00 !important;
}

/* Content Callout */
html[data-theme="light"] .guide-wrapper .content-callout {
    background: rgba(0, 229, 255, 0.06) !important;
    border-color: rgba(0, 122, 140, 0.3) !important;
}

html[data-theme="light"] .guide-wrapper .callout-header {
    background: rgba(0, 229, 255, 0.1) !important;
    color: #007a8c !important;
    border-bottom-color: rgba(0, 122, 140, 0.2) !important;
}

html[data-theme="light"] .guide-wrapper .callout-body p {
    color: rgba(10, 10, 15, 0.72) !important;
}

/* ============ SECURITY SECTION ============ */
html[data-theme="light"] .guide-wrapper .security-section {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .guide-wrapper .security-title {
    color: #0a0a0f !important;
}

html[data-theme="light"] .guide-wrapper .security-intro {
    color: rgba(10, 10, 15, 0.72) !important;
}

html[data-theme="light"] .guide-wrapper .security-card {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .guide-wrapper .security-card:hover {
    background: rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(0, 122, 140, 0.4) !important;
}

html[data-theme="light"] .guide-wrapper .security-card h4 {
    color: #0a0a0f !important;
}

html[data-theme="light"] .guide-wrapper .security-card p {
    color: rgba(10, 10, 15, 0.72) !important;
}

html[data-theme="light"] .guide-wrapper .security-card a {
    color: #007a8c !important;
    border-bottom-color: rgba(0, 122, 140, 0.4) !important;
}

html[data-theme="light"] .guide-wrapper .security-card a:hover {
    color: #0a0a0f !important;
    border-bottom-color: #0a0a0f !important;
}

/* ============ FAQ SECTION ============ */
html[data-theme="light"] .guide-wrapper .faq-section {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .guide-wrapper .faq-title {
    color: #0a0a0f !important;
}

/* FAQ dropdown — inline SVG arrow is hardcoded lime, swap to darker */
html[data-theme="light"] .guide-wrapper #faq-dropdown {
    background-color: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #0a0a0f !important;
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M3 6l5 5 5-5" stroke="%235a8c00" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 16px !important;
}

html[data-theme="light"] .guide-wrapper #faq-dropdown:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

html[data-theme="light"] .guide-wrapper #faq-dropdown:focus {
    border-color: rgba(197, 251, 69, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(197, 251, 69, 0.15) !important;
}

html[data-theme="light"] .guide-wrapper #faq-dropdown option {
    background: #ffffff !important;
    color: #0a0a0f !important;
}

html[data-theme="light"] .guide-wrapper #faq-answer {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    border-left-color: #c5fb45 !important;
    color: rgba(10, 10, 15, 0.72) !important;
}

/* ============ HELP CTA SECTION ============ */
html[data-theme="light"] .guide-wrapper .help-cta-section {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .guide-wrapper .help-cta-content h3 {
    color: #0a0a0f !important;
}

html[data-theme="light"] .guide-wrapper .help-cta-content p {
    color: rgba(10, 10, 15, 0.72) !important;
}

html[data-theme="light"] .guide-wrapper .help-cta-btn.secondary {
    color: #0a0a0f !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

html[data-theme="light"] .guide-wrapper .help-cta-btn.secondary:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: #5a8c00 !important;
    color: #5a8c00 !important;
}