/* ===========================================
   CSS Reset & Base Styles
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --color-slate-950: #020617;
    
    --color-blue-400: #60a5fa;
    --color-blue-500: #3b82f6;
    --color-blue-600: #2563eb;
    
    --color-purple-400: #c084fc;
    --color-purple-500: #a855f7;
    --color-purple-600: #9333ea;
    
    --color-emerald-400: #34d399;
    --color-emerald-500: #10b981;
    --color-emerald-600: #059669;
    
    --color-amber-400: #fbbf24;
    --color-amber-500: #f59e0b;
    
    --color-orange-400: #fb923c;
    
    --color-red-400: #f87171;
    --color-red-500: #ef4444;
    --color-red-900: #7f1d1d;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-black);
    color: var(--color-slate-400);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===========================================
   Background Effects
   =========================================== */
.noise-overlay {
    position: fixed;
    inset: 0;
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.glow-effect {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    top: 0;
    left: 25%;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.1);
    filter: blur(120px);
}

.glow-2 {
    bottom: 0;
    right: 25%;
    width: 600px;
    height: 600px;
    background: rgba(168, 85, 247, 0.05);
    filter: blur(150px);
}

/* ===========================================
   Navigation
   =========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--color-blue-500), var(--color-purple-600));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.brand-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-slate-300);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-slate-400);
}

.nav-links span {
    color: var(--color-slate-300);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* ===========================================
   Main Content
   =========================================== */
main {
    position: relative;
    z-index: 10;
}

/* ===========================================
   Hero Section
   =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 5rem;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 7fr 5fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(30, 41, 59, 1);
    border-radius: 9999px;
    width: fit-content;
}

.badge-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--color-emerald-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-badge span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-slate-400);
}

.hero-title {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(90deg, var(--color-blue-400), var(--color-purple-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-slate-400);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
    .hero-title-sub {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
    .hero-title-sub {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-slate-500);
    max-width: 40rem;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--color-blue-600), var(--color-purple-600));
    color: white;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(90deg, var(--color-blue-500), var(--color-purple-500));
    box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.25);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(0.25rem);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(15, 23, 42, 1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-family: var(--font-mono);
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--color-slate-600);
    margin-top: 0.25rem;
}

/* ===========================================
   Hero Card
   =========================================== */
.hero-card {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-item {
    display: flex;
    gap: 0.75rem;
}

.card-icon-warning,
.card-icon-lock,
.card-icon-cpu {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-warning {
    color: var(--color-amber-400);
}

.card-icon-lock {
    color: var(--color-purple-400);
}

.card-icon-cpu {
    color: var(--color-blue-400);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.card-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-slate-500);
    line-height: 1.625;
}

.divider {
    height: 1px;
    background: rgba(30, 41, 59, 1);
}

/* ===========================================
   Section Divider
   =========================================== */
.section-divider {
    border: none;
    height: 1px;
    background: rgba(15, 23, 42, 0.5);
    margin: 0;
}

/* ===========================================
   Engine Section
   =========================================== */
.engine-section {
    padding: 6rem 1.5rem;
}

.engine-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border: 1px solid;
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.engine-badge {
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--color-blue-400);
    background: rgba(59, 130, 246, 0.05);
}

.protocol-badge {
    border-color: rgba(168, 85, 247, 0.3);
    color: var(--color-purple-400);
    background: rgba(168, 85, 247, 0.05);
}

.trust-badge {
    border-color: rgba(30, 41, 59, 0.5);
    color: var(--color-slate-500);
    background: rgba(15, 23, 42, 0.3);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-slate-500);
    max-width: 32rem;
    margin: 0 auto;
}

/* ===========================================
   Bento Grid
   =========================================== */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bento-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.3));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.bento-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.bento-large {
    grid-column: 1;
}

@media (min-width: 768px) {
    .bento-large {
        grid-column: span 2;
    }
}

.bento-tall {
    grid-row: 1;
}

@media (min-width: 768px) {
    .bento-tall {
        grid-row: span 2;
    }
}

.bento-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.bento-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-blue-400);
}

.bento-icon-purple {
    background: rgba(168, 85, 247, 0.1);
    color: var(--color-purple-400);
}

.bento-icon-emerald {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-emerald-400);
}

.bento-number {
    font-family: var(--font-mono);
    font-size: 3.75rem;
    font-weight: 700;
    color: rgba(30, 41, 59, 1);
}

.bento-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.bento-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-slate-500);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.bento-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric {
    background: rgba(2, 6, 23, 0.5);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.metric-value {
    font-size: 1.25rem;
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--color-blue-400);
}

.metric-label {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--color-slate-600);
    margin-top: 0.25rem;
}

.bento-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    background: rgba(2, 6, 23, 0.5);
    padding: 1rem;
    border-radius: 0.5rem;
}

.spec-label {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--color-slate-600);
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 0.875rem;
    color: white;
    font-family: var(--font-mono);
}

/* ===========================================
   Protocol Section
   =========================================== */
.protocol-section {
    padding: 6rem 1.5rem;
}

.protocol-container {
    max-width: 1280px;
    margin: 0 auto;
}

.protocol-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .protocol-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.protocol-card {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(30, 41, 59, 0.5);
    padding: 1.5rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.protocol-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.protocol-card-blue {
    border-color: rgba(30, 41, 59, 0.5);
}

.protocol-card-blue:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.protocol-card-blue::before {
    background: rgba(59, 130, 246, 0.1);
}

.protocol-card-purple {
    border-color: rgba(30, 41, 59, 0.5);
}

.protocol-card-purple:hover {
    border-color: rgba(168, 85, 247, 0.5);
}

.protocol-card-purple::before {
    background: rgba(168, 85, 247, 0.1);
}

.protocol-card-emerald {
    border-color: rgba(30, 41, 59, 0.5);
}

.protocol-card-emerald:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

.protocol-card-emerald::before {
    background: rgba(16, 185, 129, 0.1);
}

.protocol-card-amber {
    border-color: rgba(30, 41, 59, 0.5);
}

.protocol-card-amber:hover {
    border-color: rgba(245, 158, 11, 0.5);
}

.protocol-card-amber::before {
    background: rgba(245, 158, 11, 0.1);
}

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

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    margin-bottom: 1rem;
}

.protocol-card-blue .step-number {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-blue-400);
}

.protocol-card-purple .step-number {
    background: rgba(168, 85, 247, 0.1);
    color: var(--color-purple-400);
}

.protocol-card-emerald .step-number {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-emerald-400);
}

.protocol-card-amber .step-number {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-amber-400);
}

.protocol-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.protocol-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-slate-500);
    line-height: 1.625;
}

.sample-link {
    margin-top: 3rem;
    text-align: center;
}

.external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-slate-400);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.external-link:hover {
    color: white;
}

/* ===========================================
   Black Box Section
   =========================================== */
.blackbox-section {
    padding: 6rem 1.5rem;
}

.blackbox-container {
    max-width: 56rem;
    margin: 0 auto;
}

.blackbox-card {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.1), rgba(15, 23, 42, 0.3));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(127, 29, 29, 0.3);
    padding: 2rem;
    border-radius: 1rem;
}

@media (min-width: 768px) {
    .blackbox-card {
        padding: 3rem;
    }
}

.blackbox-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.blackbox-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red-400);
}

.blackbox-badge {
    padding: 0.375rem 0.75rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-red-400);
    background: rgba(239, 68, 68, 0.05);
}

.blackbox-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.blackbox-content {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-slate-400);
    line-height: 1.75;
}

.blackbox-content p {
    margin-bottom: 1rem;
}

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

.blackbox-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 41, 59, 1);
    color: var(--color-red-400);
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

/* ===========================================
   Trust Section
   =========================================== */
.trust-section {
    padding: 6rem 1.5rem;
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-card {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(30, 41, 59, 0.5);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.trust-card-blue {
    border-color: rgba(30, 41, 59, 0.5);
}

.trust-card-blue:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.trust-card-orange {
    border-color: rgba(30, 41, 59, 0.5);
}

.trust-card-orange:hover {
    border-color: rgba(251, 146, 60, 0.5);
}

.trust-card-purple {
    border-color: rgba(30, 41, 59, 0.5);
}

.trust-card-purple:hover {
    border-color: rgba(168, 85, 247, 0.5);
}

.trust-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.trust-card-blue .trust-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-blue-400);
}

.trust-card-orange .trust-icon {
    background: rgba(251, 146, 60, 0.1);
    color: var(--color-orange-400);
}

.trust-card-purple .trust-icon {
    background: rgba(168, 85, 247, 0.1);
    color: var(--color-purple-400);
}

.trust-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.trust-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-slate-500);
    margin-bottom: 1rem;
}

.trust-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.trust-card-blue .trust-link {
    color: var(--color-blue-400);
}

.trust-card-blue .trust-link:hover {
    color: var(--color-blue-300);
}

.trust-card-orange .trust-link {
    color: var(--color-orange-400);
}

.trust-card-orange .trust-link:hover {
    color: var(--color-orange-300);
}

.trust-card-purple .trust-link {
    color: var(--color-purple-400);
}

.trust-card-purple .trust-link:hover {
    color: var(--color-purple-300);
}

/* ===========================================
   Footer
   =========================================== */
.footer {
    padding: 6rem 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--color-blue-500), var(--color-purple-600));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-brand-text {
    font-family: var(--font-mono);
    font-size: 1.125rem;
    color: white;
}

.footer-brand-desc {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-slate-500);
    line-height: 1.75;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    font-family: var(--font-mono);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-slate-400);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-legal-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-legal-text p {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-slate-500);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(15, 23, 42, 1);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-slate-600);
}

/* ===========================================
   Responsive Utilities
   =========================================== */
@media (max-width: 640px) {
    .hero {
        padding: 6rem 1rem 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1.5rem;
    }
    
    .engine-section,
    .protocol-section,
    .blackbox-section,
    .trust-section,
    .footer {
        padding: 4rem 1rem;
    }
}

/* ===========================================
   Smooth Scroll Offset
   =========================================== */
html {
    scroll-padding-top: 80px;
}
