/* ==============================================================================
   Offhand Official Website - Raider.IO Classic Era Aesthetic
   Obsidian charcoal canvas, multi-layered dark slate cards, and signature Raider.IO gold
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
    /* Raider.IO Classic Era Color Tokens */
    --rio-bg: #0c0d10;
    --rio-bg-gradient: radial-gradient(circle at 50% 0%, rgba(255, 189, 10, 0.05) 0%, transparent 65%);
    --rio-surface: #14161d;
    --rio-surface-card: #181a23;
    --rio-surface-elevated: #1f222e;
    --rio-surface-hover: #252937;
    
    --rio-border-subtle: #252834;
    --rio-border-mid: #323746;
    --rio-border-gold: #5e4618;
    --rio-border-gold-bright: #8a671c;

    --rio-gold: #ffbd0a;
    --rio-gold-bright: #ffd750;
    --rio-gold-glow: rgba(255, 189, 10, 0.35);
    --rio-gold-dim: rgba(255, 189, 10, 0.12);
    --rio-amber: #f59e0b;
    --rio-orange: #ff8000;

    --rio-green: #10b981;
    --rio-green-dim: rgba(16, 185, 129, 0.15);

    --text-primary: #f3f4f6;
    --text-secondary: #c8cbd2;
    --text-muted: #9499a6;
    --text-dim: #606574;

    /* Semantic Compatibility Aliases */
    --gold-bright: var(--rio-gold);
    --gold-highlight: var(--rio-gold-bright);
    --gold-mid: var(--rio-amber);
    --brass-bright: var(--rio-gold);
    --brass-dim: var(--rio-border-gold);
    --metal-rim: var(--rio-border-subtle);
    --metal-border: var(--rio-border-subtle);
    --bg-card: var(--rio-surface-card);
    --bg-surface: var(--rio-surface);
    --wow-text-main: var(--text-secondary);
    --wow-parchment-muted: var(--text-muted);

    --font-warcraft: 'Cinzel', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', Consolas, monospace;

    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;
}

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

body {
    background-color: var(--rio-bg);
    background-image: var(--rio-bg-gradient);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============================================================================
   Typography
   ============================================================================ */
h1, h2, h3, h4, h5, .warcraft-font {
    font-family: var(--font-warcraft);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

p {
    color: var(--text-muted);
}

a {
    color: var(--rio-gold);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--rio-gold-bright);
    text-shadow: 0 0 10px var(--rio-gold-glow);
}

code {
    font-family: var(--font-mono);
    background: rgba(14, 16, 22, 0.9);
    border: 1px solid var(--rio-border-mid);
    color: var(--rio-gold-bright);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 0.88em;
}

/* ============================================================================
   Buttons (Raider.IO Classic Era Gold & Dark Slate)
   ============================================================================ */
.btn {
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-warcraft);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 1px 2px #000;
    position: relative;
    user-select: none;
}

/* Primary CTA: Raider.IO Era Amber-Gold */
.btn-wow-red,
.btn-rio-gold {
    background: linear-gradient(180deg, #ffbd0a 0%, #e6a500 100%);
    border: 1px solid #ffe285;
    color: #111215;
    font-family: var(--font-body);
    font-weight: 700;
    text-shadow: none;
    box-shadow: 0 4px 14px rgba(255, 189, 10, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-wow-red:hover,
.btn-rio-gold:hover {
    background: linear-gradient(180deg, #ffd043 0%, #ffbd0a 100%);
    border-color: #ffffff;
    color: #000000;
    box-shadow: 0 6px 22px rgba(255, 189, 10, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Secondary CTA: Sleek Raider.IO Dark Slate */
.btn-wow-stone,
.btn-rio-dark {
    background: linear-gradient(180deg, #1e222d 0%, #141720 100%);
    border: 1px solid var(--rio-border-mid);
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-wow-stone:hover,
.btn-rio-dark:hover {
    background: linear-gradient(180deg, #272d3b 0%, #1b1f2b 100%);
    border-color: var(--rio-gold);
    color: var(--rio-gold-bright);
    box-shadow: 0 0 16px var(--rio-gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0 16px;
    height: 34px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 13px 30px;
    font-size: 1.02rem;
}

/* ============================================================================
   Navigation Bar (Raider.IO Floating Top Bar)
   ============================================================================ */
.navbar {
    position: sticky;
    top: 10px;
    z-index: 100;
    max-width: 1140px;
    margin: 10px auto 0;
    background: rgba(20, 22, 29, 0.96);
    border: 1.5px solid var(--rio-border-subtle);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.92), inset 0 1px 0 rgba(255, 189, 10, 0.15);
    backdrop-filter: blur(12px);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-medallion {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 10px rgba(255, 189, 10, 0.35));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.brand:hover .brand-medallion {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 16px rgba(255, 189, 10, 0.6));
}

.brand-text {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.brand-title {
    font-family: var(--font-warcraft);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 0 12px rgba(255, 189, 10, 0.3);
}

.brand-subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--rio-gold);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 16px;
}

.nav-links a {
    white-space: nowrap;
    font-family: var(--font-warcraft);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover {
    color: var(--rio-gold-bright);
    text-shadow: 0 0 10px var(--rio-gold-glow);
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rio-gold);
    border-radius: 1px;
    box-shadow: 0 0 8px var(--rio-gold);
}

/* ============================================================================
   Hero Section
   ============================================================================ */
.hero {
    padding: 30px 20px 16px;
    text-align: center;
}

.hero-container {
    max-width: 1140px;
    margin: 0 auto;
}

.hero-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

/* Offhand Emblem Centerpiece Stage (Floating Seamlessly - Aligned with Mockup) */
.hero-emblem-stage {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.hero-emblem-aura {
    display: none;
}

.hero-emblem-floating {
    position: relative;
    z-index: 2;
    max-width: 820px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
    filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 28px rgba(240, 184, 54, 0.2));
}

.hero-emblem-floating:hover {
    transform: translateY(-4px) scale(1.015);
    filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 40px rgba(240, 184, 54, 0.35));
}

.hero-emblem-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title {
    font-family: var(--font-warcraft);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.12em;
    margin: 14px 0 6px;
    color: #ffffff;
    text-shadow: 0 0 24px rgba(240, 184, 54, 0.35);
}

.hero-subtitle {
    font-family: var(--font-warcraft);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold-bright);
    text-transform: uppercase;
    margin: 0 auto 28px;
    text-shadow: 0 0 16px rgba(240, 184, 54, 0.4);
}

/* ============================================================================
   Unified Main Content Deck (Wireframe Mockup Layout)
   ============================================================================ */
.content-deck {
    max-width: 1140px;
    margin: 0 auto 60px;
    padding: 36px 32px 50px;
    background: var(--rio-surface);
    border: 1.5px solid var(--rio-border-subtle);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.deck-intro-banner {
    text-align: center;
    padding-bottom: 36px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--rio-border-subtle);
}

.deck-intro-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 820px;
    margin: 16px auto 24px;
}

/* Raider.IO Style Chip / Badge */
.hero-badge,
.rio-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 189, 10, 0.08);
    border: 1px solid var(--rio-border-gold);
    padding: 6px 18px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--rio-gold);
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 12px rgba(255, 189, 10, 0.15);
}

.hero-badge::before,
.rio-chip::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--rio-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--rio-gold);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.hero-stats-bar div {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-stats-bar svg {
    color: var(--rio-gold);
    flex-shrink: 0;
}

/* ============================================================================
   Battlestation Showcase (Dark Metal Frame)
   ============================================================================ */
.showcase-section {
    margin-top: 0;
}

.showcase-frame {
    background: var(--rio-surface-card);
    border: 1px solid var(--rio-border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.9), 
        0 0 24px rgba(255, 189, 10, 0.1),
        inset 0 0 16px rgba(0, 0, 0, 0.8);
    padding: 16px;
    position: relative;
}

.showcase-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(255, 189, 10, 0.1) 0%, rgba(20, 22, 29, 0.95) 100%);
    border: 1px solid var(--rio-border-subtle);
    border-radius: var(--radius-sm);
    padding: 9px 16px;
    margin-bottom: 14px;
}

.showcase-header-title {
    font-family: var(--font-warcraft);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--rio-gold);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase-header-tag {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.showcase-img-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--rio-border-subtle);
    background: #000;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9);
}

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

/* Dual Display Overlay Badges */
.showcase-annotations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.annotation-card {
    background: var(--rio-surface-card);
    border: 1px solid var(--rio-border-subtle);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.annotation-card.left-screen {
    border-left: 4px solid var(--rio-gold);
}

.annotation-card.right-screen {
    border-left: 4px solid var(--rio-gold-bright);
}

.annotation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.annotation-title {
    font-family: var(--font-warcraft);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.annotation-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-portrait {
    background: rgba(255, 189, 10, 0.12);
    color: var(--rio-gold);
    border: 1px solid var(--rio-border-gold);
}

.badge-landscape {
    background: rgba(255, 215, 80, 0.12);
    color: var(--rio-gold-bright);
    border: 1px solid rgba(255, 215, 80, 0.3);
}

.annotation-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================================================
   Content Sections (Nested within Content Deck)
   ============================================================================ */
.content-section,
.section {
    padding: 50px 0;
    border-bottom: 1px solid var(--rio-border-subtle);
}

.content-section:first-child,
.section:first-child {
    padding-top: 0;
}

.content-section:last-child,
.section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.section-container {
    max-width: 100%;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-title {
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

.companion-preview-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    align-items: center;
    gap: 36px;
}

.companion-preview-copy p + p { margin-top: 16px; }
.quest-step-card { min-width: 0; overflow-wrap: anywhere; }
.companion-preview-figure { margin: 0; min-width: 0; }
.companion-preview-figure img { display: block; width: 100%; height: auto; border-radius: 8px; }
.companion-preview-figure a { display: block; border-radius: 8px; }
.companion-preview-figure a:focus-visible { outline: 3px solid var(--rio-gold); outline-offset: 5px; }
.companion-preview-figure figcaption { margin-top: 12px; color: var(--text-secondary); font-size: 0.85rem; line-height: 1.5; }

@media (max-width: 960px) {
    .companion-preview-card { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .companion-preview-figure { width: 100%; max-width: 520px; justify-self: center; }
}

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

.wow-card {
    background: var(--rio-surface-card);
    border: 1px solid var(--rio-border-subtle);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
}

.wow-card:hover {
    border-color: var(--rio-gold);
    background: var(--rio-surface-elevated);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.85), 0 0 20px var(--rio-gold-glow);
}

.wow-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 189, 10, 0.1);
    border: 1px solid rgba(255, 189, 10, 0.25);
    color: var(--rio-gold);
    margin-bottom: 16px;
    transition: all 0.25s ease;
}

.wow-card:hover .wow-card-icon {
    background: rgba(255, 189, 10, 0.2);
    border-color: var(--rio-gold);
    color: var(--rio-gold-bright);
    box-shadow: 0 0 16px var(--rio-gold-glow);
    transform: translateY(-2px);
}

.wow-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--rio-gold-bright);
}

.wow-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}


/* ============================================================================
   Steps Walkthrough (Quest Log Style)
   ============================================================================ */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.quest-step-card {
    background: var(--rio-surface-card);
    border: 1px solid var(--rio-border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    transition: all 0.25s ease;
}

.quest-step-card:hover {
    border-color: var(--rio-gold);
    background: var(--rio-surface-elevated);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.8), 0 0 14px var(--rio-gold-glow);
}

.step-seal {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffbd0a 0%, #c48b00 100%);
    border: 2px solid #ffe285;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-warcraft);
    font-size: 1.1rem;
    font-weight: 900;
    color: #111215;
    box-shadow: 0 0 12px rgba(255, 189, 10, 0.45);
    margin-bottom: 14px;
}

.quest-step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--rio-gold-bright);
}

.quest-step-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

/* ============================================================================
   FAQ Section
   ============================================================================ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.faq-card {
    background: var(--rio-surface-card);
    border: 1px solid var(--rio-border-subtle);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.faq-card[open] {
    border-color: var(--rio-border-gold);
    background: var(--rio-surface-elevated);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.7), 0 0 16px rgba(255, 189, 10, 0.12);
}

.faq-card:hover {
    border-color: var(--rio-gold);
}

.faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary h4 {
    font-size: 1.05rem;
    color: var(--rio-gold-bright);
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-summary:hover h4 {
    color: #ffffff;
}

.faq-toggle-icon {
    width: 20px;
    height: 20px;
    color: var(--rio-gold);
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.faq-card[open] .faq-toggle-icon {
    transform: rotate(180deg);
    color: var(--rio-gold-bright);
}

.faq-body {
    padding-top: 14px;
    margin-top: 12px;
    border-top: 1px solid var(--rio-border-subtle);
}

.faq-body p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.faq-body p:last-child {
    margin-bottom: 0;
}

.faq-steps-list {
    margin: 10px 0 12px 20px;
    padding: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.faq-steps-list li {
    margin-bottom: 8px;
}

.faq-steps-list strong {
    color: var(--text-primary);
}

.faq-tip {
    background: rgba(255, 189, 10, 0.08);
    border-left: 3px solid var(--rio-gold);
    padding: 10px 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.5;
}

.faq-tip strong {
    color: var(--rio-gold);
}

kbd {
    background: #0d0e14;
    border: 1px solid var(--rio-border-mid);
    border-radius: 4px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.7);
    color: var(--rio-gold-bright);
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82em;
    font-weight: 700;
    padding: 1px 6px;
    margin: 0 2px;
}

/* ============================================================================
   Footer
   ============================================================================ */
.footer {
    max-width: 1140px;
    margin: 20px auto 40px;
    background: var(--rio-surface);
    border: 1.5px solid var(--rio-border-subtle);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 189, 10, 0.12);
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rio-border-subtle);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 8px rgba(255, 189, 10, 0.3));
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-warcraft);
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.footer-subtitle {
    font-size: 0.82rem;
    color: var(--rio-gold);
    font-weight: 600;
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: var(--font-warcraft);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--rio-gold-bright);
}

.footer-legal {
    padding-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-legal a {
    color: var(--rio-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-legal a:hover {
    color: var(--rio-gold-bright);
}

.footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.75;
}

/* ============================================================================
   Responsive Adjustments
   ============================================================================ */
@media (max-width: 960px) {
    .content-deck {
        margin: 10px 12px 50px;
        padding: 28px 16px 40px;
        border-radius: var(--radius-md);
    }
    .grid-3, .steps-container, .faq-grid {
        grid-template-columns: 1fr;
    }
    .showcase-annotations {
        grid-template-columns: 1fr;
    }
    .hero-emblem-floating {
        max-width: 100%;
        padding: 0 10px;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .nav-links {
        display: none;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand {
        flex-direction: column;
    }
    .footer-nav {
        justify-content: center;
    }
    .footer-legal {
        text-align: center;
    }
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
