/* =============================================
   ORION LANDING PAGE - DESIGN TOKENS
   ============================================= */
:root {
    --bg: rgb(210,214,225);
    --page: rgb(245,247,252);
    --panelGrey: #EEEFF4;
    --text: rgb(35,38,45);
    --muted: rgb(70,85,115);
    
    --accent: rgb(120,165,210);
    --accentDark: rgb(90,130,180);
    --accentText: rgb(10,18,28);
    
    --surface: rgba(255,255,255,.72);
    --surface2: rgba(255,255,255,.58);
    --surface3: rgba(255,255,255,.42);
    
    --stroke: rgba(35,38,45,.10);
    --stroke2: rgba(35,38,45,.06);
    
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #dc2626;
    
    --shadow: 0 18px 50px rgba(35,38,45,.14);
    --shadowMd: 0 12px 34px rgba(35,38,45,.12);
    --shadowSm: 0 6px 20px rgba(35,38,45,.08);
    
    --radius: 16px;
    --radiusMd: 12px;
    --radiusSm: 8px;
    
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: sticky;
    top: 0;
    background: var(--panelGrey);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--stroke);
    z-index: 1000;
    padding: 10px 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    color: var(--text);
}

.brand-logo {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    border-radius: var(--radiusSm);
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(120,165,210,.14);
    transform: translateY(-1px);
}

.nav-link svg {
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    background: var(--panelGrey);
    border-bottom: 1px solid var(--stroke);
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text);
    font-size: 16px;
    border-radius: var(--radiusSm);
    transition: background 0.2s;
}

.mobile-nav-link:hover {
    background: rgba(120,165,210,.14);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--stroke);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radiusSm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--accentDark);
    border-color: var(--accentDark);
    transform: translateY(-2px);
    box-shadow: var(--shadowSm);
}

.btn--secondary {
    background: var(--panelGrey);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn--secondary:hover {
    color: white;
    background: var(--accent);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn--ghost:hover {
    background: var(--surface2);
    border-color: var(--accent);
    color: var(--accent);
}

.btn--hero {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
}

.btn--cta {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.btn--pricing {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
}

.btn--full {
    width: 100%;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    padding: 80px 0 80px;
    background: var(--page);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-glow--1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -100px;
    opacity: 0.15;
}

.hero-glow--2 {
    width: 400px;
    height: 400px;
    background: #a855f7;
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(120,165,210,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120,165,210,.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
}

.trust-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* =============================================
   STATS BANNER
   ============================================= */
.stats-banner {
    padding: 40px 0;
    background: var(--bg);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 32px 48px;
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    box-shadow: var(--shadowSm);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--stroke);
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent);
    color: white;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}

.section-title--left {
    text-align: left;
}

.section-subtitle {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features {
    padding: 100px 0;
    background: var(--page);
}

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

.feature-card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: var(--radiusMd);
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadowMd);
    border-color: rgba(120,165,210,.3);
}

.feature-card--large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.feature-card--large h3 {
    font-size: 28px;
}

.feature-card--large p {
    font-size: 16px;
    max-width: 480px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid;
    box-shadow: 0 12px 26px rgba(35,38,45,.12);
}

.feature-icon--blue {
    background: rgba(120,165,210,.28);
    border-color: rgba(120,165,210,.30);
    color: var(--accent);
}

.feature-icon--green {
    background: rgba(34, 197, 94, 0.28);
    border-color: rgba(34, 197, 94, 0.30);
    color: #22c55e;
}

.feature-icon--purple {
    background: rgba(168, 85, 247, 0.28);
    border-color: rgba(168, 85, 247, 0.30);
    color: #a855f7;
}

.feature-icon--orange {
    background: rgba(251, 146, 60, 0.28);
    border-color: rgba(251, 146, 60, 0.30);
    color: #fb923c;
}

.feature-icon--cyan {
    background: rgba(34, 211, 238, 0.28);
    border-color: rgba(34, 211, 238, 0.30);
    color: #22d3ee;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 15px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
}

.tag {
    padding: 6px 12px;
    background: rgba(120,165,210,.14);
    border: 1px solid rgba(120,165,210,.20);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */
.how-it-works {
    padding: 100px 0;
    background: var(--bg);
}

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

.step-card {
    position: relative;
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: var(--radiusMd);
    padding: 32px;
    text-align: center;
    transition: all 0.2s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadowMd);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid;
    box-shadow: 0 12px 26px rgba(35,38,45,.12);
}

.step-number--cyan {
    background: rgba(120,165,210,.28);
    border-color: rgba(120,165,210,.30);
    color: var(--accent);
}

.step-number--green {
    background: rgba(34, 197, 94, 0.28);
    border-color: rgba(34, 197, 94, 0.30);
    color: #22c55e;
}

.step-number--purple {
    background: rgba(168, 85, 247, 0.28);
    border-color: rgba(168, 85, 247, 0.30);
    color: #a855f7;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--muted);
    line-height: 1.6;
}

.step-arrow {
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    z-index: 10;
}

.step-card:last-child .step-arrow {
    display: none;
}

.steps-cta {
    text-align: center;
}

/* =============================================
   PRICING PREVIEW SECTION
   ============================================= */
.pricing-preview {
    padding: 100px 0;
    background: var(--page);
}

.pricing-card {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--accent);
    color: white;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--stroke);
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--muted);
    margin-top: 8px;
}

.price {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-period {
    font-size: 14px;
    color: var(--muted);
    margin-top: 8px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
}

.pricing-feature svg {
    color: var(--success);
    flex-shrink: 0;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =============================================
   COMMUNITY PREVIEW SECTION
   ============================================= */
.community-preview {
    padding: 100px 0;
    background: var(--bg);
}

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

.community-content .section-badge {
    margin-bottom: 16px;
}

.community-text {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.community-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radiusSm);
    background: rgba(120,165,210,.14);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-text strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.highlight-text span {
    font-size: 14px;
    color: var(--muted);
}

.community-visual {
    display: flex;
    justify-content: center;
}

.discord-card {
    width: 100%;
    max-width: 360px;
    background: #36393f;
    border-radius: var(--radiusMd);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #2f3136;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.discord-logo {
    color: #5865f2;
}

.discord-header span {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.discord-content {
    padding: 16px 12px;
}

.discord-channel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    color: #8e9297;
    font-size: 14px;
    transition: all 0.15s;
}

.discord-channel:hover {
    background: rgba(79, 84, 92, 0.6);
    color: #dcddde;
}

.channel-icon {
    font-size: 18px;
    font-weight: 500;
    color: #72767d;
}

.channel-badge {
    margin-left: auto;
    padding: 2px 8px;
    background: #22c55e;
    color: white;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.discord-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #8e9297;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

/* =============================================
   FINAL CTA SECTION
   ============================================= */
.final-cta {
    padding: 100px 0;
    background: var(--page);
}

.cta-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadowMd);
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-card p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--page);
    border-top: 1px solid var(--stroke);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo {
    height: 32px;
}

.footer-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: var(--muted);
    line-height: 1.6;
}

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

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--stroke);
    font-size: 14px;
    color: var(--muted);
}

.footer-meta {
    display: flex;
    gap: 12px;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card--large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .community-visual {
        order: -1;
    }
    
    .section-title--left {
        text-align: center;
    }
    
    .community-content {
        text-align: center;
    }
    
    .community-content .section-badge {
        justify-content: center;
    }
    
    .community-highlights {
        align-items: center;
    }
    
    .highlight-item {
        max-width: 320px;
    }
    
    .community-content .btn {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 24px;
        padding: 32px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features,
    .how-it-works,
    .pricing-preview,
    .community-preview,
    .final-cta {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card--large {
        grid-column: span 1;
        padding: 32px;
    }
    
    .feature-card--large h3 {
        font-size: 22px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .pricing-card {
        padding: 32px;
    }
    
    .price {
        font-size: 48px;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-card h2 {
        font-size: 28px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-tags {
        justify-content: center;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }
.hero-trust { animation-delay: 0.5s; }

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .nav,
    .hero-bg,
    .mobile-nav {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}