/* Color System */
:root {
  /* color / brand */
  --color-brand-electric-cyan: #00d9f2;
  --color-brand-hot-pink: #f233a6;
  --color-brand-miami-green: #0f8;
  --color-brand-neon-coral: #ff073a;
  --color-brand-medium-purple: #639;
  
  /* color / utility */
  --color-utility-deep-navy: #0d0d26;
  --color-utility-purple-slate: #1f1f38;
  --color-utility-elevated-purple: #292e38;
  --color-utility-button-gray: #1f242e;
  --color-utility-pure-white: #fff;
  --color-utility-light-gray: #e2e8f0;
  --color-utility-soft-gray: #ebf0f5;
  --color-utility-button-light: #cbd5e0;
  --color-utility-light-gray-text: #b2bfcc;
  --color-utility-medium-gray-text: #99a6b2;
  --color-utility-dark-text: #1a202c;
  --color-utility-dark-gray-text: #4a5568;
  --color-utility-profile-gray: #333840;
  --color-utility-muted-text: #718096;
  --color-utility-dark-border: #4d5966;
  --color-utility-light-border: #e2e8f0;
}

.Dark {
  /* primary-background */
  --primary-background: var(--color-utility-deep-navy);
  
  /* card-background */
  --card-background: var(--color-utility-purple-slate);
  
  /* elevated-background */
  --elevated-background: var(--color-utility-elevated-purple);
  
  /* secondary-background */
  --secondary-background: var(--color-utility-button-gray);
  
  /* primary-text */
  --primary-text: var(--color-utility-pure-white);
  
  /* secondary-text */
  --secondary-text: var(--color-utility-light-gray-text);
  
  /* placeholder-text */
  --placeholder-text: var(--color-utility-medium-gray-text);
  
  /* border */
  --border: var(--color-utility-dark-border);
  
  /* primary-brand */
  --primary-brand: var(--color-brand-electric-cyan);
  
  /* secondary-brand */
  --secondary-brand: var(--color-brand-hot-pink);
  
  /* success-brand */
  --success-brand: var(--color-brand-miami-green);
  
  /* error-brand */
  --error-brand: var(--color-brand-neon-coral);
  
  /* tertiary-brand */
  --tertiary-brand: var(--color-brand-medium-purple);
}

.Light {
  /* primary-background */
  --primary-background: var(--color-utility-pure-white);
  
  /* card-background */
  --card-background: var(--color-utility-light-gray);
  
  /* elevated-background */
  --elevated-background: var(--color-utility-soft-gray);
  
  /* secondary-background */
  --secondary-background: var(--color-utility-button-light);
  
  /* primary-text */
  --primary-text: var(--color-utility-dark-text);
  
  /* secondary-text */
  --secondary-text: var(--color-utility-dark-gray-text);
  
  /* placeholder-text */
  --placeholder-text: var(--color-utility-muted-text);
  
  /* border */
  --border: var(--color-utility-light-border);
  
  /* primary-brand */
  --primary-brand: var(--color-brand-electric-cyan);
  
  /* secondary-brand */
  --secondary-brand: var(--color-brand-hot-pink);
  
  /* success-brand */
  --success-brand: var(--color-brand-miami-green);
  
  /* error-brand */
  --error-brand: var(--color-brand-neon-coral);
  
  /* tertiary-brand */
  --tertiary-brand: var(--color-brand-medium-purple);
}

/* Custom Font */
@font-face {
    font-family: 'Better Faster';
    src: url('fonts/better_faster_italic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Fallback font stack */
:root {
    --font-brand: 'Better Faster', 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Font loading states */
.fonts-loading .nav-logo h2 {
    visibility: visible;
    opacity: 1;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
}

.fonts-loaded .nav-logo h2 {
    font-family: var(--font-brand);
    opacity: 1;
    transition: opacity 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--primary-text, #333);
    background-color: var(--primary-background, #ffffff);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Apply Light theme as default */
body {
    --primary-background: var(--color-utility-pure-white);
    --card-background: var(--color-utility-light-gray);
    --elevated-background: var(--color-utility-soft-gray);
    --secondary-background: var(--color-utility-button-light);
    --primary-text: var(--color-utility-dark-text);
    --secondary-text: var(--color-utility-dark-gray-text);
    --placeholder-text: var(--color-utility-muted-text);
    --border: var(--color-utility-light-border);
    --primary-brand: var(--color-brand-electric-cyan);
    --secondary-brand: var(--color-brand-hot-pink);
    --success-brand: var(--color-brand-miami-green);
    --error-brand: var(--color-brand-neon-coral);
    --tertiary-brand: var(--color-brand-medium-purple);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: var(--primary-brand);
    background: -webkit-linear-gradient(315deg, var(--primary-brand) 0%, var(--secondary-brand) 100%);
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--secondary-brand) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 217, 242, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-brand);
    border: 2px solid var(--primary-brand);
}

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    /* Fallback for browsers that don't support backdrop-filter */
    background: rgba(30, 30, 50, 0.95);
    /* Modern browsers with backdrop filter support */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

/* Fallback styles for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(20px)) {
    .navbar {
        background: rgba(20, 20, 40, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-family: var(--font-brand);
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                 0 0 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--primary-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-brand);
}

.theme-toggle {
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-text);
}

.theme-toggle:hover {
    border-color: var(--primary-brand);
    background: var(--elevated-background);
}

.theme-toggle-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-toggle-icon {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--primary-brand);
    background: -webkit-linear-gradient(315deg, var(--primary-brand) 0%, var(--secondary-brand) 100%);
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--secondary-brand) 100%);
    text-align: left;
    transition: background-color 0.3s ease;
    position: relative;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 120px 0 80px;
}

.hero .container {
    width: 100%;
    max-width: 1200px;
}

.hero-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
}

.hero-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 500px;
    margin: 0;
}

.hero-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.hero-phone-img {
    max-height: 700px;
    width: auto;
    display: block;
}

.hero-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: -20px;
    color: white;
    line-height: 1.6;
}

.hero-title .underline {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-cta .btn-primary,
.hero .btn-primary {
    background: white;
    color: var(--primary-brand);
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
}

.hero-cta .btn-primary:hover,
.hero .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin: 40px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10;
}

/* Arrow colors for different sections */
.hero .scroll-down-arrow {
    color: white;
    bottom: 30px;
}

.feature-section .scroll-down-arrow {
    color: var(--primary-brand);
    bottom: 10px;
}

.cta .scroll-down-arrow {
    color: white;
}

.scroll-down-arrow:hover {
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-text);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Overview Section */
.features-overview {
    padding: 80px 0 40px;
    background: var(--elevated-background);
}

/* Individual Feature Sections */
.feature-section {
    padding: 80px 0;
    background: var(--elevated-background);
    transition: background-color 0.3s ease;
    position: relative;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-section.feature-reverse .feature-row {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 0 0 500px;
    max-width: 500px;
    background: transparent;
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.15));
}

.feature-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    transition: transform 0.3s ease, filter 0.3s ease;
    object-fit: contain;
    background: transparent;
    display: block;
    border: none;
}

.feature-img:hover {
    transform: translateY(-5px);
}

.feature-image:hover {
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
}



/* Feature Content */
.feature-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.feature-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-text);
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--secondary-brand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-content p {
    color: var(--secondary-text);
    line-height: 1.7;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.period {
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--secondary-brand) 100%);
    text-align: center;
    color: white;
    position: relative;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta .btn-primary:hover {
    background: var(--elevated-background);
}

/* Waitlist Page Styles */
.waitlist-hero {
    padding: 140px 0 100px;
    background: var(--primary-background);
    text-align: center;
    transition: background-color 0.3s ease;
}

.waitlist-content {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-title {
    font-family: var(--font-main);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--secondary-brand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 50px;
    line-height: 1.6;
}

.waitlist-form-container {
    background: var(--card-background);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    transition: background-color 0.3s ease;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-text);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    background: var(--primary-background);
    color: var(--primary-text);
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-brand);
}

.form-input::placeholder {
    color: var(--placeholder-text);
}

.btn-loading {
    display: none;
}

.waitlist-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.waitlist-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--success-brand);
}

.waitlist-success p {
    color: var(--secondary-text);
}

.waitlist-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.waitlist-features {
    padding: 100px 0;
    background: var(--elevated-background);
    transition: background-color 0.3s ease;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--card-background);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-text);
}

.feature-card p {
    color: var(--secondary-text);
    line-height: 1.5;
}

/* Navigation link styling for logo */
.nav-logo a {
    text-decoration: none;
    color: inherit;
}

/* Responsive Design for Waitlist */
@media (max-width: 768px) {
    .waitlist-title {
        font-size: 3rem;
    }
    
    .waitlist-form-container {
        padding: 30px 20px;
    }
    
    .waitlist-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .waitlist-title {
        font-size: 2.5rem;
    }
    
    .waitlist-hero {
        padding: 120px 0 80px;
    }
}

/* Footer */
.footer {
    background: var(--color-utility-deep-navy);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--secondary-brand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-brand);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .hero-phone-img {
        max-height: 500px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 600px) {
    .feature-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .feature-section.feature-reverse .feature-row {
        flex-direction: column;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .feature-image {
        max-width: 100%;
    }
    
    .feature-img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-phone-img {
        max-height: 400px;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .feature-section.feature-reverse .feature-row {
        flex-direction: column;
    }
    
    .feature-content h3 {
        font-size: 1.8rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .feature-image {
        max-width: 100%;
    }
    
    .feature-img {
        max-height: 250px;
    }
    
    
    .pricing-card {
        padding: 30px 20px;
    }
}
