/* ==========================================================================
   Cascade Protocol - Shared Stylesheet
   Version: 1.0
   ========================================================================== */

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    /* Primary Colors */
    --primary: #0f4c5c;
    --primary-light: #1a6b7c;
    --primary-dark: #0a3640;

    /* Accent Colors */
    --accent: #00b4d8;
    --accent-light: #48cae4;
    --accent-dark: #0096b7;

    /* Text Colors */
    --text: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #6b7280;

    /* Background Colors */
    --bg: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;

    /* Border Colors */
    --border: #e2e8f0;
    --border-light: #f0f0f0;

    /* Notice Colors */
    --warning-bg: #fff3cd;
    --warning-border: #ffc107;
    --warning-text: #856404;

    --danger-bg: #f8d7da;
    --danger-border: #dc3545;
    --danger-text: #721c24;

    --info-bg: #e7f3ff;
    --info-border: #007bff;
    --info-text: #004085;

    --success-bg: #d4edda;
    --success-border: #28a745;
    --success-text: #155724;

    /* Code Colors */
    --code-bg: #1e293b;
    --code-text: #e2e8f0;
    --code-inline-bg: #f3f4f6;
    --code-inline-text: #7c3aed;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Fira Code', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.2s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 1.875rem;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-dark);
}

ul, ol {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

li {
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: var(--space-md) 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

.logo img {
    height: 36px;
}

.logo-text {
    font-weight: 600;
    font-size: 1.125rem;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

nav > a {
    color: white;
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    font-weight: 500;
    opacity: 0.9;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

nav > a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    color: white;
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    font-weight: 500;
    opacity: 0.9;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-dropdown > a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.nav-dropdown > a::after {
    content: '';
    border: 4px solid transparent;
    border-top-color: white;
    margin-top: 2px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 1000;
    padding: var(--space-sm) 0;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    color: var(--text);
    padding: var(--space-sm) var(--space-lg);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

/* ==========================================================================
   Page Header
   ========================================================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: var(--space-3xl) 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: white;
}

.page-header .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: var(--space-4xl) 0;
    text-align: center;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: var(--space-xl);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
}

.card h3 {
    margin-top: 0;
    color: var(--primary);
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Vocabulary Cards */
.vocab-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}

.vocab-card h3 {
    margin-top: 0;
    color: var(--primary);
}

.vocab-meta {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.vocab-meta code {
    background: white;
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

/* ==========================================================================
   Grids
   ========================================================================== */

.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ==========================================================================
   Notice Boxes
   ========================================================================== */

.notice {
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    border-left: 4px solid;
}

.notice h3, .notice h4 {
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

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

.notice-warning {
    background: var(--warning-bg);
    border-color: var(--warning-border);
}

.notice-danger {
    background: var(--danger-bg);
    border-color: var(--danger-border);
}

.notice-info {
    background: var(--info-bg);
    border-color: var(--info-border);
}

.notice-success {
    background: var(--success-bg);
    border-color: var(--success-border);
}

/* Legacy notice class names for compatibility */
.warning-notice { background: var(--warning-bg); border-left: 4px solid var(--warning-border); padding: var(--space-lg); margin: var(--space-xl) 0; border-radius: 0 var(--radius) var(--radius) 0; }
.danger-notice { background: var(--danger-bg); border-left: 4px solid var(--danger-border); padding: var(--space-lg); margin: var(--space-xl) 0; border-radius: 0 var(--radius) var(--radius) 0; }
.info-notice { background: var(--info-bg); border-left: 4px solid var(--info-border); padding: var(--space-lg); margin: var(--space-xl) 0; border-radius: 0 var(--radius) var(--radius) 0; }
.important-notice { background: var(--warning-bg); border-left: 4px solid var(--warning-border); padding: var(--space-lg); margin: var(--space-xl) 0; border-radius: 0 var(--radius) var(--radius) 0; }

/* ==========================================================================
   Code Blocks
   ========================================================================== */

code {
    font-family: var(--font-mono);
    font-size: 0.9em;
    background: var(--code-inline-bg);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    color: var(--code-inline-text);
}

pre {
    background: var(--code-bg);
    color: var(--code-text);
    padding: var(--space-lg);
    border-radius: var(--radius);
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    margin: var(--space-lg) 0;
    line-height: 1.5;
}

pre code {
    background: none;
    color: inherit;
    padding: 0;
    font-size: inherit;
}

/* ==========================================================================
   Tables
   ========================================================================== */

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: 0.95rem;
}

.data-table th,
.data-table td {
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    text-align: left;
}

.data-table th {
    background: var(--bg-secondary);
    font-weight: 600;
}

.data-table tr:nth-child(even) {
    background: var(--bg-secondary);
}

.data-table tr:hover {
    background: var(--bg-tertiary);
}

/* ==========================================================================
   Badges
   ========================================================================== */

.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    background: var(--success-border);
    color: white;
    margin-left: var(--space-sm);
}

.badge-beta {
    background: var(--accent);
}

.badge-coming-soon {
    background: var(--text-secondary);
}

.badge-success {
    background: var(--success-border);
}

.badge-warning {
    background: var(--warning-border);
    color: var(--text);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
    margin-bottom: var(--space-3xl);
}

.section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    font-size: 1.125rem;
}

/* ==========================================================================
   Vocabulary Documentation
   ========================================================================== */

.vocab-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}

.vocab-item h3 {
    margin-top: 0;
    color: var(--primary);
    font-family: var(--font-mono);
}

.vocab-item .type {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-family: var(--font-mono);
    margin-bottom: var(--space-sm);
}

/* Definition Lists */
dl {
    margin-bottom: var(--space-md);
}

dt {
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: var(--space-md);
}

dd {
    margin-left: 0;
    margin-top: var(--space-xs);
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: var(--space-xl);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

/* ==========================================================================
   Effective Date Box
   ========================================================================== */

.effective-date {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* ==========================================================================
   Contact Box
   ========================================================================== */

.contact-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border-radius: var(--radius);
}

.contact-box h3 {
    margin-top: 0;
}

/* ==========================================================================
   Acknowledgment Box
   ========================================================================== */

.acknowledgment-box {
    background: var(--success-bg);
    border: 2px solid var(--success-border);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border-radius: var(--radius);
}

.acknowledgment-box ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

.acknowledgment-box li {
    padding-left: var(--space-lg);
    position: relative;
}

.acknowledgment-box li:before {
    content: "\2705";
    position: absolute;
    left: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    background: var(--text);
    color: white;
    padding: var(--space-2xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-brand p {
    opacity: 0.7;
    margin-top: var(--space-md);
    font-size: 0.875rem;
}

.footer-links h4 {
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    text-align: center;
    opacity: 0.6;
    font-size: 0.875rem;
}

/* Simple Footer (for legal pages) */
footer.simple {
    text-align: center;
    padding: var(--space-xl) 0;
}

footer.simple p {
    margin: var(--space-sm) 0;
    opacity: 0.8;
    font-size: 0.875rem;
}

footer.simple a {
    color: var(--accent-light);
}

/* ==========================================================================
   Steps / How It Works
   ========================================================================== */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.step {
    text-align: center;
    padding: var(--space-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--space-md);
}

.step h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Tech Stack
   ========================================================================== */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.tech-item {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

.tech-item h4 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.tech-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Showcase Section
   ========================================================================== */

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.showcase-text h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.showcase-text p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.showcase-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.app-store-badge {
    height: 44px;
}

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

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: var(--space-3xl) 0;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: white;
}

.cta p {
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   FAQ Items
   ========================================================================== */

.faq-item {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.faq-item h3 {
    margin-top: 0;
    color: var(--text);
}

.faq-item p:last-child,
.faq-item ul:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Quick Links
   ========================================================================== */

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.quick-link-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
}

.quick-link-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quick-link-card h3 {
    margin-top: 0;
    color: var(--text);
}

.quick-link-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   Main Content
   ========================================================================== */

main {
    padding: var(--space-2xl) 0 var(--space-4xl);
}

main.with-header {
    padding-top: 0;
}

/* ==========================================================================
   Background Variations
   ========================================================================== */

.bg-secondary {
    background: var(--bg-secondary);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

/* ==========================================================================
   Rights List
   ========================================================================== */

.rights-list {
    background: var(--info-bg);
    border-left: 4px solid var(--info-border);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.rights-list h3 {
    margin-top: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    :root {
        font-size: 15px;
    }

    .container,
    .container-narrow {
        padding: 0 var(--space-md);
    }

    /* Header */
    .header-content {
        flex-direction: column;
        gap: var(--space-md);
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav > a,
    .nav-dropdown > a {
        padding: var(--space-sm);
        font-size: 0.9rem;
    }

    /* Hero */
    .hero {
        padding: var(--space-2xl) 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Page Header */
    .page-header {
        padding: var(--space-xl) 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Grids */
    .showcase-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    /* Tables */
    .data-table {
        font-size: 0.85rem;
    }

    .data-table th,
    .data-table td {
        padding: var(--space-sm);
    }

    /* Code */
    pre {
        padding: var(--space-md);
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    header {
        background: white;
        color: black;
        border-bottom: 2px solid black;
    }

    nav, .nav-dropdown {
        display: none;
    }

    .hero {
        background: white;
        color: black;
        padding: var(--space-xl) 0;
    }

    pre {
        background: white;
        border: 1px solid black;
        color: black;
    }

    a {
        color: black;
        text-decoration: underline;
    }

    .btn {
        display: none;
    }

    footer {
        background: white;
        color: black;
        border-top: 1px solid black;
    }
}
