/* Kosmeta Design System - Vanilla CSS Version */

:root {
    --navy-950: #050D1A;
    --navy-900: #0A1830;
    --navy-800: #0C2461;
    --navy-700: #143087;
    --navy-600: #1E4DB7;
    --navy-500: #2E6ADE;
    --navy-400: #7096CF;
    --navy-300: #96B3DC;
    --navy-200: #BDD0EE;
    --navy-100: #E1EAF8;
    
    --brand-green: #10B981;
    --brand-green-dark: #059669;
    --brand-green-light: #D1FAE5;
    --brand-risk: #F43F5E;
    --brand-warn: #F59E0B;
    
    --white: #ffffff;
    --gray-50: #F8F9FC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    
    --nav-height: 112px;
}

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

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

body {
    background-color: var(--white);
    color: var(--gray-900);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 120px 0;
    }
}

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.text-center { text-align: center; }

.grid { display: grid; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 24, 48, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo img {
    height: 88px;
    width: auto;
    display: block;
}

.nav-links {
    display: none;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    color: var(--brand-green);
}

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

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary:hover {
    background-color: var(--brand-green-dark);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    background-color: var(--navy-900);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg-dots {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
    background-size: 32px 32px;
}

.hero-glow-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    transform: translate(25%, -50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    color: var(--brand-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease-out both;
}

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

.hero h1 {
    font-size: 48px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    white-space: pre-line;
    animation: fadeUp 0.6s ease-out 0.1s both;
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 72px;
    }
}

.hero p {
    font-size: 18px;
    color: var(--navy-200);
    max-width: 700px;
    margin: 0 auto 48px;
    animation: fadeUp 0.6s ease-out 0.2s both;
}

.hero-showcase {
    width: 100%;
    margin: 0 auto 64px;
    animation: fadeUp 0.6s ease-out 0.3s both;
}

/* Break out of the 900px text container to be ~1160px wide, centered */
@media (min-width: 1240px) {
    .hero-showcase {
        width: 1160px;
        margin-left: -130px;
        margin-right: -130px;
    }
}

.mockup-container {
    background: var(--navy-800);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    padding: 0;
}

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

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    animation: fadeUp 0.6s ease-out 0.4s both;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    animation: fadeUp 0.6s ease-out 0.5s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--navy-300);
    font-size: 14px;
    font-weight: 500;
}

.trust-badge svg {
    color: var(--brand-green);
    width: 20px;
    height: 20px;
}

/* Ticker Section */
.ticker-section {
    background: var(--white);
    padding: 24px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 14px;
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-green);
    border-radius: 50%;
}

/* How It Works Section */
.section-tag {
    display: inline-block;
    color: var(--brand-green);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 32px;
    color: var(--navy-900);
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 40px;
    }
}

.section-desc {
    color: var(--gray-500);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 64px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
}

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

.step-card {
    text-align: center;
    position: relative;
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.bg-white {
    background-color: var(--white);
}

.step-num-circle {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background-color: var(--navy-900);
    color: var(--brand-green);
    font-family: monospace;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.step-arrow {
    display: none;
    position: absolute;
    right: -48px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(16, 185, 129, 0.5);
}

@media (min-width: 1024px) {
    .step-arrow {
        display: block;
    }
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray-500);
    font-size: 16px;
}

.connector-line {
    display: none;
    position: absolute;
    top: 40px;
    left: 16.6%;
    right: 16.6%;
    height: 2px;
    background-color: var(--gray-100);
    z-index: 0;
}

@media (min-width: 1024px) {
    .connector-line {
        display: block;
    }
}

.connector-line.gradient {
    background: linear-gradient(to right, transparent, rgba(16, 185, 129, 0.6), transparent);
}

/* Activation Section */
.activation {
    background-color: var(--gray-50);
}

.activation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .activation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.activation-card {
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.activation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.activation-card:hover .icon-box {
    transform: scale(1.08);
}

.icon-box-pair {
    gap: 6px;
    width: auto;
    min-width: 72px;
    padding: 0 12px;
}

.icon-box.blue { background-color: #eff6ff; color: #1877F2; }
.icon-box.navy { background-color: var(--navy-900); color: white; }
.icon-box.green-soft { background-color: #f0fdf4; color: #16a34a; }
.icon-box.brand-soft { background-color: rgba(16, 185, 129, 0.15); color: var(--brand-green); }

.activation-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--navy-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.activation-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}

/* Features Arc Section */
.features-arc {
    background-color: var(--gray-50);
    overflow: hidden;
    position: relative;
}

.arc-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    min-height: 600px;
    position: relative;
}

@media (min-width: 1024px) {
    .arc-container {
        flex-direction: row;
        justify-content: center;
        gap: 80px;
    }
}

.arc-visual {
    position: relative;
    width: 300px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (min-width: 1024px) {
    .arc-visual {
        width: 400px;
        height: 500px;
    }
}

.arc-line {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-right: 2px solid var(--gray-200);
    border-radius: 50%;
    opacity: 0.3;
}

.feature-btn {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 20;
    transition: all 0.5s ease;
}

.feature-btn-line {
    height: 2px;
    background: var(--brand-green);
    width: 0;
    opacity: 0;
    transition: all 0.5s ease;
}

.feature-btn.active .feature-btn-line {
    width: 48px;
    opacity: 1;
}

.feature-btn-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

@media (min-width: 1024px) {
    .feature-btn-circle {
        width: 64px;
        height: 64px;
    }
}

.feature-btn.active .feature-btn-circle {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.feature-label {
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy-900);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-btn.active .feature-label {
    opacity: 1;
}

.feature-display {
    width: 100%;
    max-width: 500px;
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-outcome {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-green);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.feature-display h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.feature-display p {
    color: var(--gray-500);
    font-size: 18px;
    margin-bottom: 32px;
}

/* Regulatorisches Fundament (Authority) Section */
.authority-section {
    background-color: var(--white);
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (min-width: 1024px) {
    .authority-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }
}

.authority-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    transition: all 0.3s ease;
    min-height: 92px;
}

.authority-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 24, 48, 0.06);
}

.authority-code {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    color: var(--navy-900);
    letter-spacing: 0.02em;
}

.authority-label {
    font-size: 11px;
    color: var(--gray-500);
    line-height: 1.4;
}

.authority-note {
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
    max-width: 600px;
}

.authority-note svg {
    color: var(--brand-green);
    flex-shrink: 0;
}

/* Stats Section */
.problem-section {
    background-color: var(--gray-50);
}

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

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

.stat-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: 24px;
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-family: var(--font-serif);
    color: var(--navy-900);
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

.problem-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

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

.problem-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
    text-align: left;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.problem-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.problem-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: var(--gray-200);
    border-radius: 24px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    background: var(--white);
    padding: 32px 24px;
    text-align: center;
}

.stat-item .stat-value {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: bold;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

/* Personas Section */
.persona-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.persona-tab {
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.persona-tab.active {
    background: var(--navy-900);
    color: white;
    border-color: var(--navy-900);
}

.persona-card-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.persona-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid var(--gray-100);
    display: none;
    text-align: left;
    box-shadow: var(--shadow-card);
}

.persona-card.active {
    display: block;
}

.persona-emoji {
    font-size: 40px;
    margin-bottom: 20px;
}

.persona-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--navy-900);
    margin-bottom: 16px;
}

.persona-card p {
    color: var(--gray-600);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.persona-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.persona-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
}

.persona-bullet svg {
    color: var(--brand-green);
    width: 20px;
    height: 20px;
}

/* Final CTA */
.final-cta {
    background-color: var(--navy-900);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta .section-title {
    color: white;
}

/* Footer */
footer {
    background-color: var(--navy-900);
    color: var(--white);
}

.footer-main {
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-brand-row img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-brand-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--white);
}

.footer-brand p {
    color: var(--navy-300);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    margin: 0;
}

.footer-brand-mini {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--navy-400);
    font-weight: 500;
}

.footer-brand-mini::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--brand-green);
    animation: pulse 2s infinite;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--navy-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--navy-300);
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--navy-400);
}

@media (min-width: 640px) {
    .footer-bottom-inner {
        flex-direction: row;
    }
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

@media (min-width: 640px) {
    .footer-bottom-left {
        flex-direction: row;
        gap: 16px;
    }
}

.footer-bottom-sep {
    display: none;
    color: var(--navy-500);
}

@media (min-width: 640px) {
    .footer-bottom-sep {
        display: inline;
    }
}

.footer-bottom-signature {
    color: var(--navy-500);
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Mobile Nav */
.mobile-nav-btn {
    display: block;
    color: white;
}

@media (min-width: 1024px) {
    .mobile-nav-btn {
        display: none;
    }
}
